diff --git a/.snyk b/.snyk index 4c78d59a7c..b39169dcee 100644 --- a/.snyk +++ b/.snyk @@ -1,5 +1,5 @@ # Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. -version: v1.14.1 +version: v1.13.5 # ignores vulnerabilities until expiry date; change duration by modifying expiry date ignore: SNYK-JS-AWESOMPLETE-174474: @@ -10,6 +10,10 @@ ignore: - showdown > yargs > os-locale > mem: reason: No patch available expires: '2019-06-11T14:12:04.995Z' + SNYK-PYTHON-PYYAML-550022: + - '*': + reason: Project is not directly dependant on the package + expires: 2021-04-01T18:02:21.256Z # patches apply the minimum changes required to fix a vulnerability patch: 'npm:extend:20180424': @@ -18,5 +22,3 @@ patch: SNYK-JS-LODASH-450202: - frappe-datatable > lodash: patched: '2020-01-31T01:33:09.889Z' - - snyk > snyk-nuget-plugin > dotnet-deps-parser > lodash: - patched: '2020-02-21T02:41:07.568Z' diff --git a/cypress/integration/api.js b/cypress/integration/api.js index 11e18d07c9..2279dc399d 100644 --- a/cypress/integration/api.js +++ b/cypress/integration/api.js @@ -2,7 +2,7 @@ context('API Resources', () => { before(() => { cy.visit('/login'); cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); it('Creates two Comments', () => { diff --git a/cypress/integration/awesome_bar.js b/cypress/integration/awesome_bar.js index fcadf3d569..15e85976fc 100644 --- a/cypress/integration/awesome_bar.js +++ b/cypress/integration/awesome_bar.js @@ -2,7 +2,7 @@ context('Awesome Bar', () => { before(() => { cy.visit('/login'); cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); beforeEach(() => { diff --git a/cypress/integration/control_barcode.js b/cypress/integration/control_barcode.js index ac2a687bae..4e05d864e6 100644 --- a/cypress/integration/control_barcode.js +++ b/cypress/integration/control_barcode.js @@ -1,7 +1,7 @@ context('Control Barcode', () => { beforeEach(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); function get_dialog_with_barcode() { diff --git a/cypress/integration/control_link.js b/cypress/integration/control_link.js index 63c99c4d1b..658a7fe320 100644 --- a/cypress/integration/control_link.js +++ b/cypress/integration/control_link.js @@ -1,7 +1,7 @@ context('Control Link', () => { beforeEach(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); cy.create_records({ doctype: 'ToDo', description: 'this is a test todo for link' diff --git a/cypress/integration/control_rating.js b/cypress/integration/control_rating.js index 5fa479b888..e89ab2d3be 100644 --- a/cypress/integration/control_rating.js +++ b/cypress/integration/control_rating.js @@ -1,7 +1,7 @@ context('Control Rating', () => { before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); function get_dialog_with_rating() { diff --git a/cypress/integration/datetime.js b/cypress/integration/datetime.js index 90043434cd..ebc70b83f6 100644 --- a/cypress/integration/datetime.js +++ b/cypress/integration/datetime.js @@ -4,7 +4,7 @@ const doctype_name = datetime_doctype.name; context('Control Date, Time and DateTime', () => { before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); cy.insert_doc('DocType', datetime_doctype, true); }); diff --git a/cypress/integration/depends_on.js b/cypress/integration/depends_on.js index 8cb4e42d3e..88f835daf9 100644 --- a/cypress/integration/depends_on.js +++ b/cypress/integration/depends_on.js @@ -1,11 +1,11 @@ context('Depends On', () => { beforeEach(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); cy.window().its('frappe').then(frappe => { frappe.call('frappe.tests.ui_test_helpers.create_doctype', { name: 'Test Depends On', diff --git a/cypress/integration/file_uploader.js b/cypress/integration/file_uploader.js index 787644b596..f4ef2a19f0 100644 --- a/cypress/integration/file_uploader.js +++ b/cypress/integration/file_uploader.js @@ -1,7 +1,7 @@ context('FileUploader', () => { before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); function open_upload_dialog() { diff --git a/cypress/integration/form.js b/cypress/integration/form.js index 81b52c4421..4502bc0537 100644 --- a/cypress/integration/form.js +++ b/cypress/integration/form.js @@ -1,13 +1,13 @@ context('Form', () => { before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); cy.window().its('frappe').then(frappe => { frappe.call("frappe.tests.ui_test_helpers.create_contact_records"); }); }); beforeEach(() => { - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); it('create a new form', () => { cy.visit('/desk#Form/ToDo/New ToDo 1'); diff --git a/cypress/integration/grid_pagination.js b/cypress/integration/grid_pagination.js index 67fdb8acf0..bc2947a5d1 100644 --- a/cypress/integration/grid_pagination.js +++ b/cypress/integration/grid_pagination.js @@ -1,11 +1,11 @@ context('Grid Pagination', () => { beforeEach(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); cy.window().its('frappe').then(frappe => { frappe.call("frappe.tests.ui_test_helpers.create_contact_phone_nos_records"); }); diff --git a/cypress/integration/list_view.js b/cypress/integration/list_view.js index d6627ea9c4..0d26ca90a2 100644 --- a/cypress/integration/list_view.js +++ b/cypress/integration/list_view.js @@ -1,7 +1,7 @@ context('List View', () => { before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); return cy.window().its('frappe').then(frappe => { return frappe.xcall("frappe.tests.ui_test_helpers.setup_workflow"); }); diff --git a/cypress/integration/list_view_settings.js b/cypress/integration/list_view_settings.js index 84131386f6..51cba94a70 100644 --- a/cypress/integration/list_view_settings.js +++ b/cypress/integration/list_view_settings.js @@ -1,7 +1,7 @@ context('List View Settings', () => { beforeEach(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); it('Default settings', () => { cy.visit('/desk#List/DocType/List'); diff --git a/cypress/integration/query_report.js b/cypress/integration/query_report.js index 375b13fd9f..8ce510173c 100644 --- a/cypress/integration/query_report.js +++ b/cypress/integration/query_report.js @@ -1,7 +1,7 @@ context('Form', () => { before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); it('add custom column in report', () => { diff --git a/cypress/integration/recorder.js b/cypress/integration/recorder.js index e8b55a9d12..878d8af848 100644 --- a/cypress/integration/recorder.js +++ b/cypress/integration/recorder.js @@ -4,7 +4,7 @@ context('Recorder', () => { }); it('Navigate to Recorder', () => { - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); cy.awesomebar('recorder'); cy.get('h1').should('contain', 'Recorder'); cy.location('hash').should('eq', '#recorder'); diff --git a/cypress/integration/relative_filters.js b/cypress/integration/relative_filters.js index 27f594f96e..986c5ce342 100644 --- a/cypress/integration/relative_filters.js +++ b/cypress/integration/relative_filters.js @@ -1,11 +1,11 @@ context('Relative Timeframe', () => { beforeEach(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); }); before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); cy.window().its('frappe').then(frappe => { frappe.call("frappe.tests.ui_test_helpers.create_todo_records"); }); diff --git a/cypress/integration/report_view.js b/cypress/integration/report_view.js index 5ce853c730..deeef6bdd5 100644 --- a/cypress/integration/report_view.js +++ b/cypress/integration/report_view.js @@ -4,7 +4,7 @@ const doctype_name = custom_submittable_doctype.name; context('Report View', () => { before(() => { cy.login(); - cy.visit('/desk'); + cy.visit('/desk#workspace/Website'); cy.insert_doc('DocType', custom_submittable_doctype, true); cy.clear_cache(); cy.insert_doc(doctype_name, { diff --git a/frappe/__init__.py b/frappe/__init__.py index b6f8fa8d9c..03ecf1fecf 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -605,7 +605,7 @@ def has_permission(doctype=None, ptype="read", doc=None, user=None, verbose=Fals doctype = doc.doctype import frappe.permissions - out = frappe.permissions.has_permission(doctype, ptype, doc=doc, verbose=verbose, user=user) + out = frappe.permissions.has_permission(doctype, ptype, doc=doc, verbose=verbose, user=user, raise_exception=throw) if throw and not out: if doc: frappe.throw(_("No permission for {0}").format(doc.doctype + " " + doc.name)) diff --git a/frappe/app.py b/frappe/app.py index 3c46110c2e..24ce35b514 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -25,6 +25,7 @@ from frappe.utils.error import make_error_snapshot from frappe.core.doctype.comment.comment import update_comments_in_parent_after_request from frappe import _ import frappe.recorder +import frappe.monitor local_manager = LocalManager([frappe.local]) @@ -52,6 +53,7 @@ def application(request): init_request(request) frappe.recorder.record() + frappe.monitor.start() if frappe.local.form_dict.cmd: response = frappe.handler.handle() @@ -91,6 +93,7 @@ def application(request): if response and hasattr(frappe.local, 'cookie_manager'): frappe.local.cookie_manager.flush_cookies(response=response) + frappe.monitor.stop(response) frappe.recorder.dump() frappe.destroy() diff --git a/frappe/automation/desk_page/tools/tools.json b/frappe/automation/desk_page/tools/tools.json new file mode 100644 index 0000000000..74732252a0 --- /dev/null +++ b/frappe/automation/desk_page/tools/tools.json @@ -0,0 +1,65 @@ +{ + "cards": [ + { + "icon": "octicon octicon-briefcase", + "links": "[\n {\n \"description\": \"Documents assigned to you and by you.\",\n \"label\": \"To Do\",\n \"name\": \"ToDo\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Event and other calendars.\",\n \"label\": \"Calendar\",\n \"link\": \"List/Event/Calendar\",\n \"name\": \"Event\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Private and public Notes.\",\n \"label\": \"Note\",\n \"name\": \"Note\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"label\": \"Files\",\n \"name\": \"File\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Activity log of all users.\",\n \"label\": \"Activity\",\n \"name\": \"activity\",\n \"type\": \"page\"\n }\n]", + "title": "Tools" + }, + { + "links": "[\n {\n \"description\": \"Newsletters to contacts, leads.\",\n \"label\": \"Newsletter\",\n \"name\": \"Newsletter\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Email Group List\",\n \"label\": \"Email Group\",\n \"name\": \"Email Group\",\n \"type\": \"doctype\"\n }\n]", + "title": "Email" + }, + { + "icon": "fa fa-cog", + "links": "[\n {\n \"type\": \"doctype\",\n \"name\": \"Assignment Rule\",\n \"description\": \"Set up rules for user assignments.\",\n \"label\": \"Assignment Rule\"\n },\n {\n \"type\": \"doctype\",\n \"name\": \"Milestone\",\n \"description\": \"Tracks milestones on the lifecycle of a document if it undergoes multiple stages.\",\n \"label\": \"Milestone\"\n },\n {\n \"type\": \"doctype\",\n \"name\": \"Auto Repeat\",\n \"description\": \"Automatically generates recurring documents.\",\n \"label\": \"Auto Repeat\"\n }\n]", + "title": "Automation" + }, + { + "links": "[\n {\n \"type\": \"doctype\",\n \"name\": \"Event Producer\",\n \"description\": \"The site you want to subscribe to for consuming events.\",\n \"label\": \"Event Producer\"\n },\n {\n \"type\": \"doctype\",\n \"name\": \"Event Consumer\",\n \"description\": \"The site which is consuming your events.\",\n \"label\": \"Event Consumer\"\n },\n {\n \"type\": \"doctype\",\n \"name\": \"Event Update Log\",\n \"description\": \"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.\",\n \"label\": \"Event Update Log\"\n },\n {\n \"type\": \"doctype\",\n \"name\": \"Event Sync Log\",\n \"description\": \"Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.\",\n \"label\": \"Event Sync Log\"\n },\n {\n \"type\": \"doctype\",\n \"name\": \"Document Type Mapping\",\n \"description\": \"The mapping configuration between two doctypes.\",\n \"label\": \"Document Type Mapping\"\n }\n]", + "title": "Event Streaming" + } + ], + "category": "Administration", + "charts": [], + "creation": "2020-03-02 14:53:24.980279", + "developer_mode_only": 0, + "disable_user_customization": 0, + "docstatus": 0, + "doctype": "Desk Page", + "idx": 0, + "label": "Tools", + "modified": "2020-03-05 11:27:26.106013", + "modified_by": "Administrator", + "module": "Automation", + "name": "Tools", + "owner": "Administrator", + "pin_to_bottom": 0, + "pin_to_top": 0, + "shortcuts": [ + { + "is_query_report": 0, + "link_to": "ToDo", + "type": "DocType" + }, + { + "is_query_report": 0, + "link_to": "Note", + "type": "DocType" + }, + { + "is_query_report": 0, + "link_to": "File", + "type": "DocType" + }, + { + "is_query_report": 0, + "link_to": "Assignment Rule", + "type": "DocType" + }, + { + "is_query_report": 0, + "link_to": "Auto Repeat", + "type": "DocType" + } + ] +} \ No newline at end of file diff --git a/frappe/boot.py b/frappe/boot.py index d43f6d9cbd..7fc071b6b8 100644 --- a/frappe/boot.py +++ b/frappe/boot.py @@ -235,7 +235,7 @@ def add_home_page(bootinfo, docs): except (frappe.DoesNotExistError, frappe.PermissionError): if frappe.message_log: frappe.message_log.pop() - page = frappe.desk.desk_page.get('desktop') + page = frappe.desk.desk_page.get('workspace') bootinfo['home_page'] = page.name docs.append(page) diff --git a/frappe/core/desk_page/settings/settings.json b/frappe/core/desk_page/settings/settings.json new file mode 100644 index 0000000000..2b6cfaeabd --- /dev/null +++ b/frappe/core/desk_page/settings/settings.json @@ -0,0 +1,70 @@ +{ + "cards": [ + { + "icon": "fa fa-th", + "links": "[\n {\n \"description\": \"Import Data from CSV / Excel files.\",\n \"icon\": \"octicon octicon-cloud-upload\",\n \"label\": \"Import Data\",\n \"name\": \"Data Import\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Export Data in CSV / Excel format.\",\n \"icon\": \"octicon octicon-cloud-upload\",\n \"label\": \"Export Data\",\n \"name\": \"Data Export\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Update many values at one time.\",\n \"hide_count\": true,\n \"label\": \"Bulk Update\",\n \"name\": \"Bulk Update\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"List of backups available for download\",\n \"icon\": \"fa fa-download\",\n \"label\": \"Download Backups\",\n \"name\": \"backups\",\n \"type\": \"page\"\n },\n {\n \"description\": \"Restore or permanently delete a document.\",\n \"label\": \"Deleted Documents\",\n \"name\": \"Deleted Document\",\n \"type\": \"doctype\"\n }\n]", + "title": "Data" + }, + { + "icon": "fa fa-envelope", + "links": "[\n {\n \"description\": \"Add / Manage Email Accounts.\",\n \"label\": \"Email Account\",\n \"name\": \"Email Account\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Add / Manage Email Domains.\",\n \"label\": \"Email Domain\",\n \"name\": \"Email Domain\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Setup Notifications based on various criteria.\",\n \"label\": \"Notification\",\n \"name\": \"Notification\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Email Templates for common queries.\",\n \"label\": \"Email Template\",\n \"name\": \"Email Template\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Setup Reports to be emailed at regular intervals\",\n \"label\": \"Auto Email Report\",\n \"name\": \"Auto Email Report\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Create and manage newsletter\",\n \"label\": \"Newsletter\",\n \"name\": \"Newsletter\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Configure notifications for mentions, assignments, energy points and more.\",\n \"label\": \"Notification Settings\",\n \"name\": \"Notification Settings\",\n \"route\": \"Form/Notification Settings/Administrator\",\n \"type\": \"doctype\"\n }\n]", + "title": "Email / Notifications" + }, + { + "icon": "fa fa-globe", + "links": "[\n {\n \"description\": \"Setup of top navigation bar, footer and logo.\",\n \"label\": \"Website Settings\",\n \"name\": \"Website Settings\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"description\": \"List of themes for Website.\",\n \"label\": \"Website Theme\",\n \"name\": \"Website Theme\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Javascript to append to the head section of the page.\",\n \"label\": \"Website Script\",\n \"name\": \"Website Script\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Settings for About Us Page.\",\n \"label\": \"About Us Settings\",\n \"name\": \"About Us Settings\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Settings for Contact Us Page.\",\n \"label\": \"Contact Us Settings\",\n \"name\": \"Contact Us Settings\",\n \"type\": \"doctype\"\n }\n]", + "title": "Website" + }, + { + "icon": "fa fa-wrench", + "links": "[\n {\n \"description\": \"Language, Date and Time settings\",\n \"hide_count\": true,\n \"label\": \"System Settings\",\n \"name\": \"System Settings\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Log of error on automated events (scheduler).\",\n \"label\": \"Error Log\",\n \"name\": \"Error Log\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Log of error during requests.\",\n \"label\": \"Error Snapshot\",\n \"name\": \"Error Snapshot\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Enable / Disable Domains\",\n \"hide_count\": true,\n \"label\": \"Domain Settings\",\n \"name\": \"Domain Settings\",\n \"type\": \"doctype\"\n }\n]", + "title": "Core" + }, + { + "icon": "fa fa-print", + "links": "[\n {\n \"description\": \"Drag and Drop tool to build and customize Print Formats.\",\n \"label\": \"Print Format Builder\",\n \"name\": \"print-format-builder\",\n \"type\": \"page\"\n },\n {\n \"description\": \"Set default format, page size, print style etc.\",\n \"label\": \"Print Settings\",\n \"name\": \"Print Settings\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Customized HTML Templates for printing transactions.\",\n \"label\": \"Print Format\",\n \"name\": \"Print Format\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Stylesheets for Print Formats\",\n \"label\": \"Print Style\",\n \"name\": \"Print Style\",\n \"type\": \"doctype\"\n }\n]", + "title": "Printing" + }, + { + "icon": "fa fa-random", + "links": "[\n {\n \"description\": \"Define workflows for forms.\",\n \"label\": \"Workflow\",\n \"name\": \"Workflow\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"States for workflow (e.g. Draft, Approved, Cancelled).\",\n \"label\": \"Workflow State\",\n \"name\": \"Workflow State\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Actions for workflow (e.g. Approve, Cancel).\",\n \"label\": \"Workflow Action\",\n \"name\": \"Workflow Action\",\n \"type\": \"doctype\"\n }\n]", + "title": "Workflow" + } + ], + "category": "Administration", + "charts": [], + "creation": "2020-03-02 15:09:40.527211", + "developer_mode_only": 0, + "disable_user_customization": 1, + "docstatus": 0, + "doctype": "Desk Page", + "idx": 0, + "label": "Settings", + "modified": "2020-03-05 11:27:25.766522", + "modified_by": "Administrator", + "module": "Core", + "name": "Settings", + "owner": "Administrator", + "pin_to_bottom": 0, + "pin_to_top": 1, + "shortcuts": [ + { + "icon": "octicon octicon-settings", + "is_query_report": 0, + "link_to": "System Settings", + "type": "DocType" + }, + { + "icon": "fa fa-print", + "is_query_report": 0, + "link_to": "Print Settings", + "type": "DocType" + }, + { + "icon": "fa fa-globe", + "is_query_report": 0, + "link_to": "Website Settings", + "type": "DocType" + } + ] +} \ No newline at end of file diff --git a/frappe/core/desk_page/users/users.json b/frappe/core/desk_page/users/users.json new file mode 100644 index 0000000000..453bb394dd --- /dev/null +++ b/frappe/core/desk_page/users/users.json @@ -0,0 +1,57 @@ +{ + "cards": [ + { + "icon": "fa fa-group", + "links": "[\n {\n \"description\": \"System and Website Users\",\n \"label\": \"User\",\n \"name\": \"User\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"User Roles\",\n \"label\": \"Role\",\n \"name\": \"Role\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Role Profile\",\n \"label\": \"Role Profile\",\n \"name\": \"Role Profile\",\n \"type\": \"doctype\"\n }\n]", + "title": "Users" + }, + { + "icon": "fa fa-group", + "links": "[\n {\n \"description\": \"Activity Log by \",\n \"label\": \"Activity Log\",\n \"name\": \"Activity Log\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"View Log of all print, download and export events\",\n \"label\": \"Access Log\",\n \"name\": \"Access Log\",\n \"type\": \"doctype\"\n }\n]", + "title": "Logs" + }, + { + "icon": "fa fa-lock", + "links": "[\n {\n \"description\": \"Set Permissions on Document Types and Roles\",\n \"icon\": \"fa fa-lock\",\n \"label\": \"Role Permissions Manager\",\n \"name\": \"permission-manager\",\n \"type\": \"page\"\n },\n {\n \"description\": \"Restrict user for specific document\",\n \"icon\": \"fa fa-lock\",\n \"label\": \"User Permissions\",\n \"name\": \"User Permission\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Set custom roles for page and report\",\n \"label\": \"Role Permission for Page and Report\",\n \"name\": \"Role Permission for Page and Report\",\n \"type\": \"doctype\"\n },\n {\n \"dependencies\": [\n \"User\"\n ],\n \"description\": \"Check which Documents are readable by a User\",\n \"doctype\": \"User\",\n \"icon\": \"fa fa-eye-open\",\n \"is_query_report\": true,\n \"label\": \"Permitted Documents For User\",\n \"name\": \"Permitted Documents For User\",\n \"type\": \"report\"\n },\n {\n \"dependencies\": [\n \"DocShare\"\n ],\n \"description\": \"Report of all document shares\",\n \"doctype\": \"DocShare\",\n \"icon\": \"fa fa-share\",\n \"label\": \"Document Share Report\",\n \"name\": \"Document Share Report\",\n \"type\": \"report\"\n }\n]", + "title": "Permissions" + } + ], + "category": "Administration", + "charts": [], + "creation": "2020-03-02 15:12:16.754449", + "developer_mode_only": 0, + "disable_user_customization": 0, + "docstatus": 0, + "doctype": "Desk Page", + "idx": 0, + "label": "Users", + "modified": "2020-03-05 11:27:26.166080", + "modified_by": "Administrator", + "module": "Core", + "name": "Users", + "owner": "Administrator", + "pin_to_bottom": 0, + "pin_to_top": 0, + "shortcuts": [ + { + "is_query_report": 0, + "link_to": "User", + "type": "DocType" + }, + { + "is_query_report": 0, + "link_to": "Role", + "type": "DocType" + }, + { + "is_query_report": 0, + "link_to": "permission-manager", + "type": "Page" + }, + { + "is_query_report": 0, + "link_to": "user-profile", + "type": "Page" + } + ] +} \ No newline at end of file diff --git a/frappe/core/doctype/module_def/module_def.py b/frappe/core/doctype/module_def/module_def.py index 4bf2838145..0c0e7c4f45 100644 --- a/frappe/core/doctype/module_def/module_def.py +++ b/frappe/core/doctype/module_def/module_def.py @@ -39,3 +39,20 @@ class ModuleDef(Document): frappe.clear_cache() frappe.setup_module_map() + + def on_trash(self): + """Delete module name from modules.txt""" + modules = None + if frappe.local.module_app.get(frappe.scrub(self.name)): + with open(frappe.get_app_path(self.app_name, "modules.txt"), "r") as f: + content = f.read() + if self.name in content.splitlines(): + modules = list(filter(None, content.splitlines())) + modules.remove(self.name) + + if modules: + with open(frappe.get_app_path(self.app_name, "modules.txt"), "w") as f: + f.write("\n".join(modules)) + + frappe.clear_cache() + frappe.setup_module_map() 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 5d5bd35eec..3cd994ebfa 100644 --- a/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py +++ b/frappe/core/doctype/scheduled_job_type/scheduled_job_type.py @@ -84,6 +84,10 @@ class ScheduledJobType(Document): def update_scheduler_log(self, status): if not self.create_log: + # self.get_next_execution will work properly iff self.last_execution is properly set + if self.frequency == "All" and status == 'Start': + self.db_set('last_execution', now_datetime(), update_modified=False) + frappe.db.commit() return if not self.scheduler_log: self.scheduler_log = frappe.get_doc(dict(doctype = 'Scheduled Job Log', scheduled_job_type=self.name)).insert(ignore_permissions=True) diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index c246a7d7c5..b411f809cd 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -98,7 +98,11 @@ class User(Document): clear_notifications(user=self.name) frappe.clear_cache(user=self.name) self.send_password_notification(self.__new_password) - create_contact(self, ignore_mandatory=True) + frappe.enqueue( + 'frappe.core.doctype.user.user.create_contact', + user=self, + ignore_mandatory=True + ) if self.name not in ('Administrator', 'Guest') and not self.user_image: frappe.enqueue('frappe.core.doctype.user.user.update_gravatar', name=self.name) @@ -1034,7 +1038,8 @@ def create_contact(user, ignore_links=False, ignore_mandatory=False): from frappe.contacts.doctype.contact.contact import get_contact_name if user.name in ["Administrator", "Guest"]: return - if not get_contact_name(user.email): + contact_exists = get_contact_name(user.email) + if not contact_exists: contact = frappe.get_doc({ "doctype": "Contact", "first_name": user.first_name, @@ -1052,6 +1057,34 @@ def create_contact(user, ignore_links=False, ignore_mandatory=False): if user.mobile_no: contact.add_phone(user.mobile_no, is_primary_mobile_no=True) contact.insert(ignore_permissions=True, ignore_links=ignore_links, ignore_mandatory=ignore_mandatory) + else: + contact = frappe.get_doc("Contact", contact_exists) + contact.first_name = user.first_name + contact.last_name = user.last_name + contact.gender = user.gender + + # Add mobile number if phone does not exists in contact + if user.phone and not any(new_contact.phone == user.phone for new_contact in contact.phone_nos): + # Set primary phone if there is no primary phone number + contact.add_phone( + user.phone, + is_primary_phone=not any( + new_contact.is_primary_phone == 1 for new_contact in contact.phone_nos + ) + ) + + # Add mobile number if mobile does not exists in contact + if user.mobile_no and not any(new_contact.phone == user.mobile_no for new_contact in contact.phone_nos): + # Set primary mobile if there is no primary mobile number + contact.add_phone( + user.mobile_no, + is_primary_mobile_no=not any( + new_contact.is_primary_mobile_no == 1 for new_contact in contact.phone_nos + ) + ) + + contact.save(ignore_permissions=True) + @frappe.whitelist() def generate_keys(user): diff --git a/frappe/core/page/dashboard/dashboard.js b/frappe/core/page/dashboard/dashboard.js index 16e56877af..2a919cdd20 100644 --- a/frappe/core/page/dashboard/dashboard.js +++ b/frappe/core/page/dashboard/dashboard.js @@ -85,7 +85,7 @@ class Dashboard { chart_container.appendTo(this.container); frappe.model.with_doc("Dashboard Chart", chart.chart).then( chart_doc => { - let dashboard_chart = new DashboardChart(chart_doc, chart_container); + let dashboard_chart = new frappe.ui.DashboardChart(chart_doc, chart_container); dashboard_chart.show(); }); }); @@ -215,7 +215,7 @@ class DashboardChart { render_date_range_fields() { if (!this.date_field_wrapper || !this.date_field_wrapper.is(':visible')) { - this.date_field_wrapper = + this.date_field_wrapper = $(`
`) .insertBefore(this.chart_container.find('.chart-wrapper')); @@ -304,15 +304,15 @@ class DashboardChart { } setup_filter_button() { - + this.is_document_type = this.chart_doc.chart_type!== 'Report' && this.chart_doc.chart_type!=='Custom'; - this.filter_button = + this.filter_button = $(`Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Voeg Reference: {{ reference_doctype }} {{ reference_name }} om dokumentverwysing te stuur
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Slegs gebruikers wat by die dokument betrokke is, word gelys"
DocType: DocField,Fetch From,Haal Van
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opstel> Pas vorm aan
apps/frappe/frappe/modules/utils.py,App not found,Program nie gevind nie
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Kan nie 'n {0} teen 'n kinderdokument skep nie: {1}
DocType: Social Login Key,Social Login Key,Sosiale aanmeld sleutel
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Kletsbo
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Sosiale tuiste
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Insert Na kan nie gestel word as {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Deel {0} met
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-pos rekening instellings vul asb jou wagwoord in vir:
DocType: Workflow State,hand-up,hand-up
DocType: Blog Settings,Writers Introduction,Skrywers Inleiding
DocType: Address,Phone,Foon
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,Voeg styl in
DocType: Prepared Report,Error Message,Foutboodskap
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nuwe verslag naam
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Versteek naweke
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genereer outomaties herhalende dokumente.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Genereer outomaties herhalende dokumente.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,is
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,Info-teken
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Waarde
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hoe moet hierdie geldeenheid geformateer word? As dit nie ingestel is nie, sal die stelsel standaard gebruik word"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Dien {0} dokumente in
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Jy moet ingeteken wees en het die stelselbestuurderrol om back-ups te kan kry.
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: አክል Reference: {{ reference_doctype }} {{ reference_name }} ለመላክ ሰነድ ማጣቀሻ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,በሰነዱ ውስጥ የተሳተፉ ተጠቃሚዎች ብቻ ተዘርዝረዋል ፡፡
DocType: DocField,Fetch From,ከ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ማዋቀር> ቅጽ አብጅ
apps/frappe/frappe/modules/utils.py,App not found,መተግበሪያ አልተገኘም
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},መፍጠር አልተቻለም አንድ {0} አንድ ልጅ ሰነድ ላይ: {1}
DocType: Social Login Key,Social Login Key,የማኅበራዊ ቁልፍ ቁልፍ
@@ -2460,7 +2486,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,መል
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,ማህበራዊ መነሻ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},እንደ ሊዘጋጁ አይችሉም በኋላ ያስገቡ {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,ያጋሩ {0} ጋር
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,የኢሜይል መለያ ማዋቀር የይለፍ ቃልዎን ያስገቡ:
DocType: Workflow State,hand-up,እጅ-ምትኬ
DocType: Blog Settings,Writers Introduction,ማስጻፍ መግቢያ
DocType: Address,Phone,ስልክ
@@ -2519,7 +2544,7 @@ DocType: Web Page,Insert Style,አስገባ ቅጥ
DocType: Prepared Report,Error Message,የተሳሳተ መልዕክት
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,አዲስ ሪፖርት ስም
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,የሳምንት እረፍት ቀናት ደብቅ
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,ተደጋጋሚ ሰነዶችን በራስ-ሰር ያወጣል።
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,ተደጋጋሚ ሰነዶችን በራስ-ሰር ያወጣል።
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ናት
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,መረጃ-ምልክት
@@ -2527,7 +2552,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} ዝ
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ይህን ምንዛሬ እንዴት መቀረጽ አለበት? ካልተዘጋጀ, ሥርዓት ነባሪዎችን ይጠቀማል"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,የ {0} ሰነዶች አስገባ?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,በእናንተ ውስጥ መግባት እና መጠባበቂያ መድረስ መቻል የስርዓት አቀናባሪ ሚና እንዲኖረው ማድረግ ያስፈልጋል.
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: إضافة Reference: {{ reference_doctype }} {{ reference_name }} لإرسال وثيقة مرجعية
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,يتم سرد فقط المستخدمين المشاركين في المستند
DocType: DocField,Fetch From,إحضار من
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,الإعداد> تخصيص النموذج
apps/frappe/frappe/modules/utils.py,App not found,لم يتم العثور على التطبيق
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},لا يمكن إنشاء {0} ضد وثيقة التابع: {1}
DocType: Social Login Key,Social Login Key,مفتاح تسجيل الدخول الاجتماعي
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,.رسا
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,الصفحة الرئيسية الاجتماعية
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},إدراج بعد لا يمكن تعيين ك {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,مشاركة {0} مع
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,اعداد حساب البريد الألكتروني، فضلا أدخل كلمة السر:
DocType: Workflow State,hand-up,ومن ناحية المتابعة
DocType: Blog Settings,Writers Introduction,مقدمة الكاتب
DocType: Address,Phone,هاتف
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,إدراج نمط
DocType: Prepared Report,Error Message,رسالة خطأ
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,اسم التقرير الجديد
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,إخفاء عطلة نهاية الأسبوع
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,يولد تلقائيا الوثائق المتكررة.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,يولد تلقائيا الوثائق المتكررة.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,هل
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,معلومات تسجيل الدخول،
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,قيم
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",كيف ينبغي أن يتم تنسيق هذه العملة؟ إذا لم يتم تعيين و، استخدم افتراضيات النظام
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,إرسال {0} وثائق؟
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,يتوجب عليك تسجيل الدخول بصلاحية مدير النظام حتي تتمكن من الوصول الى النسخ الأحتياطية.
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Добави Reference: {{ reference_doctype }} {{ reference_name }} да изпратите документ за справка
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Посочени са само потребители, включени в документа"
DocType: DocField,Fetch From,Извличане от
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Персонализирайте формуляр
apps/frappe/frappe/modules/utils.py,App not found,App не е намерен
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Не може да се създаде {0} срещу подчинен документ: {1}
DocType: Social Login Key,Social Login Key,Ключ за социално влизане
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Чат
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Социален дом
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Вмъкни след не може да бъде зададено като {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Сподели {0} с
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,настройка на имейл акаунт моля въведете парола за:
DocType: Workflow State,hand-up,ръка-нагоре
DocType: Blog Settings,Writers Introduction,Писатели Въведение
DocType: Address,Phone,Телефон
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,Вмъкни стил
DocType: Prepared Report,Error Message,Съобщение за грешка
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ново име Справка
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Скриване на уикендите
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Автоматично генерира повтарящи се документи.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Автоматично генерира повтарящи се документи.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Е
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,Инфо-знак
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Цен
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Как трябва да се форматира тази валута? Ако не е зададена, ще използва системните настройки"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Изпратете {0} документи?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Трябва да влезете в профила и да имате роля на системен мениджър, за да бъдете в състояние за достъп до архиви."
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: যোগ Reference: {{ reference_doctype }} {{ reference_name }} পাঠাতে নথি রেফারেন্স
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,কেবলমাত্র দস্তাবেজের সাথে জড়িত ব্যবহারকারীদের তালিকাভুক্ত করা হয়েছে
DocType: DocField,Fetch From,থেকে আসুন
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,সেটআপ> স্বনির্ধারিত ফর্ম
apps/frappe/frappe/modules/utils.py,App not found,অ্যাপ্লিকেশন পাওয়া যায় না
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},তৈরি করতে পারবেন একটি {0} একটি সন্তানের দলিল বিরুদ্ধে: {1}
DocType: Social Login Key,Social Login Key,সামাজিক লগইন কী
@@ -2419,7 +2444,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,বা
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,সোশ্যাল হোম
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},হিসাবে সেট করা যাবে না পরে ঢোকান {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,শেয়ার {0} সঙ্গে
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ই-মেইল অ্যাকাউন্ট সেটআপ জন্য আপনার পাসওয়ার্ড লিখুন:
DocType: Workflow State,hand-up,হাত তোল
DocType: Blog Settings,Writers Introduction,রাইটার্স ভূমিকা
DocType: Address,Phone,ফোন
@@ -2477,7 +2501,7 @@ DocType: Web Page,Insert Style,সন্নিবেশ স্টাইল
DocType: Prepared Report,Error Message,ভুল বার্তা
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,নতুন রিপোর্ট নাম
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,সপ্তাহে লুকান
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,স্বয়ংক্রিয়ভাবে পুনরাবৃত্তির ডকুমেন্টগুলি তৈরি করে।
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,স্বয়ংক্রিয়ভাবে পুনরাবৃত্তির ডকুমেন্টগুলি তৈরি করে।
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,হয়
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,তথ্য-চিহ্ন
@@ -2485,7 +2509,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,জন
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","এই কারেন্সি কিভাবে ফরম্যাট করা উচিত? যদি সেট না থাকে, সিস্টেম ডিফল্ট-গুলি ব্যবহার করবে"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} নথি জমা দিন?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,আপনি লগইন এবং ব্যাকআপ অ্যাক্সেস পাবে সিস্টেম ম্যানেজার ভূমিকা আছে হবে.
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} za slanje referentni dokument
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Na popisu su samo korisnici koji su uključeni u dokument
DocType: DocField,Fetch From,Fetch From
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavke> Prilagodite obrazac
apps/frappe/frappe/modules/utils.py,App not found,App nije pronađena
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Ne možete kreirati {0} prema djetetu dokument: {1}
DocType: Social Login Key,Social Login Key,Ključ društvene prijave
@@ -2464,7 +2491,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat po
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Socijalni dom
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Ubacite Nakon ne može se postaviti kao {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Podijelio {0} sa
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-mail postavljanje računa molimo unesite lozinku za:
DocType: Workflow State,hand-up,ruka-gore
DocType: Blog Settings,Writers Introduction,Pisci Uvod
DocType: Address,Phone,Telefon
@@ -2523,7 +2549,7 @@ DocType: Web Page,Insert Style,Umetnite stil
DocType: Prepared Report,Error Message,Poruka o grešci
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Izvještaj ime
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Sakrij vikende
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatski generira ponavljajuće dokumente.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Automatski generira ponavljajuće dokumente.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-znak
@@ -2531,7 +2557,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vrijedn
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako bi ova valuta morala biti formatirana? Ako nije postavljeno, koristit će zadane postavke sustava"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Pošalji {0} dokumente?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Morate biti prijavljeni i imati sustav Manager ulogu da bi mogli pristupiti sigurnosne kopije .
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Afegeix Reference: {{ reference_doctype }} {{ reference_name }} enviar referència del document
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Només es mostren els usuaris implicats en el document
DocType: DocField,Fetch From,Obtenir des de
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuració> Formulari personalitzat
apps/frappe/frappe/modules/utils.py,App not found,App not found
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},No es pot crear un {0} en contra d'un document secundari: {1}
DocType: Social Login Key,Social Login Key,Clau d'accés social
@@ -2464,7 +2491,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Missatg
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Llar social
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Insereix després no es pot establir com {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Compartir {0} amb
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Configuració de comptes de correu electrònic si us plau, introdueixi la contrasenya per a:"
DocType: Workflow State,hand-up,hand-up
DocType: Blog Settings,Writers Introduction,Escriptors Introducció
DocType: Address,Phone,Telèfon
@@ -2523,7 +2549,7 @@ DocType: Web Page,Insert Style,Inserir Estil
DocType: Prepared Report,Error Message,Missatge d'error
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nou nom d'Informe
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Amaga caps de setmana
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genera automàticament documents recurrents.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Genera automàticament documents recurrents.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,És
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-signe
@@ -2531,7 +2557,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valor {
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Com s'ha de formatar aquesta moneda? Si no s'estableix, s'utilitzarà valors predeterminats del sistema"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Enviar documents {0}?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Has d'estar connectat i tenir l'Administrador del sistema de funcions per poder accedir a les còpies de seguretat.
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Přidat Reference: {{ reference_doctype }} {{ reference_name }} poslat referenční dokument
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,V seznamu jsou uvedeni pouze uživatelé zapojení do dokumentu
DocType: DocField,Fetch From,Načíst od
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavení> Přizpůsobit formulář
apps/frappe/frappe/modules/utils.py,App not found,Aplikace nenalezena
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Nelze vytvořit {0} proti dětské dokumentu: {1}
DocType: Social Login Key,Social Login Key,Klíč pro sociální přihlášení
@@ -2464,7 +2491,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat zp
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Sociální domov
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},"Vložit Poté, co nelze nastavit jako {0}"
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Podíl {0} s
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Nastavení e-mailový účet, zadejte své heslo pro:"
DocType: Workflow State,hand-up,hand-up
DocType: Blog Settings,Writers Introduction,Představení přispěvovatelů
DocType: Address,Phone,Telefon
@@ -2523,7 +2549,7 @@ DocType: Web Page,Insert Style,Vložit styl
DocType: Prepared Report,Error Message,Chybové hlášení
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nový název Zpráva
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skrýt víkendy
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automaticky generuje opakující se dokumenty.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Automaticky generuje opakující se dokumenty.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je
DocType: Onboarding Slide,ERPNext,ERPDalší
DocType: Workflow State,info-sign,info-sign
@@ -2531,7 +2557,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Poměr
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jak se má zápis této měny formátovat? Pokud formátování není nastaveno, použije se výchozí systémové nastavení."
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Odeslat {0} dokumenty?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Musíte být přihlášen a mít roli systémového správce, pro přístup k zálohám."
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Tilføj Reference: {{ reference_doctype }} {{ reference_name }} at sende dokumenthenvisning
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Kun brugere, der er involveret i dokumentet, vises"
DocType: DocField,Fetch From,Hent fra
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opsætning> Tilpas form
apps/frappe/frappe/modules/utils.py,App not found,App ikke fundet
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Kan ikke oprette en {0} mod et barn dokument: {1}
DocType: Social Login Key,Social Login Key,Socialt login nøgle
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat be
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Socialt hjem
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Indsæt Efter kan ikke indstilles som {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Del {0} med
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,For opsætning af e-mailkonti skal du indtaste din adgangskode:
DocType: Workflow State,hand-up,hånd-up
DocType: Blog Settings,Writers Introduction,Writers Introduktion
DocType: Address,Phone,Telefonnr.
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,Indsæt Style
DocType: Prepared Report,Error Message,Fejl besked
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ny rapport navn
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skjul weekender
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genererer automatisk gentagne dokumenter.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Genererer automatisk gentagne dokumenter.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Er
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-skilt
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Værdi
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvordan skal denne valuta formateres? Hvis ikke angivet, vil bruge systemets standardindstillinger"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Indsend {0} dokumenter?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Du skal være logget ind og have Systemadministratorrollen for at kunne få adgang til sikkerhedskopier.
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: In Reference: {{ reference_doctype }} {{ reference_name }} senden Dokumentverweis
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Es werden nur Benutzer aufgelistet, die an dem Dokument beteiligt sind"
DocType: DocField,Fetch From,Abholen von
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Formular anpassen
apps/frappe/frappe/modules/utils.py,App not found,App nicht gefunden
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Kann {0} nicht gegen ein Kind Dokument erstellen: {1}
DocType: Social Login Key,Social Login Key,Social Login-Schlüssel
@@ -2466,7 +2493,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat-Na
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Soziales Zuhause
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Dahinter einfügen kann nicht als eingestellt werden {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,{0} teilen mit
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-Mail-Konto-Setup geben Sie bitte Ihre Passwort für:
DocType: Workflow State,hand-up,Pfeil-nach-oben
DocType: Blog Settings,Writers Introduction,Vorwort des Autors
DocType: Address,Phone,Telefon
@@ -2525,7 +2551,7 @@ DocType: Web Page,Insert Style,Stil einfügen
DocType: Prepared Report,Error Message,Fehlermeldung
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Neuer Berichtsname
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Wochenenden ausblenden
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Generiert automatisch wiederkehrende Dokumente.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Generiert automatisch wiederkehrende Dokumente.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Ist
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,Info-Zeichen
@@ -2533,7 +2559,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Wert f
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Wie soll diese Währung formatiert werden? Wenn nichts festgelegt ist, werden die Standardeinstellungen verwendet"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} Dokumente einreichen?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Datensicherungen zuzugreifen.
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,PROTIP: Προσθέστε Reference: {{ reference_doctype }} {{ reference_name }} για να στείλει έγγραφο αναφοράς
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Εμφανίζονται μόνο οι χρήστες που συμμετέχουν στο έγγραφο
DocType: DocField,Fetch From,Λήψη από
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ρυθμίσεις> Προσαρμογή φόρμας
apps/frappe/frappe/modules/utils.py,App not found,Δεν βρέθηκε η εφαρμογή
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Δεν μπορείτε να δημιουργήσετε ένα {0} κατά ένα έγγραφο παιδί: {1}
DocType: Social Login Key,Social Login Key,Κλειδί κοινωνικής σύνδεσης
@@ -2464,7 +2491,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Συν
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Κοινωνική κατοικία
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Εισάγετε Μετά δεν μπορεί να οριστεί ως {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Μοιραστείτε {0} με
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Ρύθμιση λογαριασμού ηλεκτρονικού ταχυδρομείου, παρακαλούμε εισάγετε τον κωδικό σας για:"
DocType: Workflow State,hand-up,Hand-up
DocType: Blog Settings,Writers Introduction,Εισαγωγή συγγραφέων
DocType: Address,Phone,Τηλέφωνο
@@ -2523,7 +2549,7 @@ DocType: Web Page,Insert Style,Εισαγωγή style
DocType: Prepared Report,Error Message,Μήνυμα λάθους
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Νέο όνομα Έκθεση
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Απόκρυψη Σαββατοκύριακων
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Δημιουργεί αυτόματα επαναλαμβανόμενα έγγραφα.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Δημιουργεί αυτόματα επαναλαμβανόμενα έγγραφα.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Είναι
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,Info-sign
@@ -2531,7 +2557,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Σχέ
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Πώς θα πρέπει αυτό το νόμισμα να μορφοποιηθεί; Αν δεν έχει οριστεί, θα χρησιμοποιήσει τις προεπιλογές του συστήματος"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Υποβάλετε {0} έγγραφα;
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Θα πρέπει να είστε συνδεδεμένοι στο σύστημα και να έχετε ρόλο διαχειριστή συστήματος για να έχετε πρόσβαση σε αντίγραφα ασφαλείας.
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Agregar Reference: {{ reference_doctype }} {{ reference_name }} enviar referencia del documento
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Solo se enumeran los usuarios involucrados en el documento
DocType: DocField,Fetch From,Obtener De
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurar> Personalizar formulario
apps/frappe/frappe/modules/utils.py,App not found,Aplicación no encontrada
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},No se puede crear un {0} en contra de un documento secundario: {1}
DocType: Social Login Key,Social Login Key,Clave de Acceso Social
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Mensaje
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Hogar social
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Insertar después no se puede establecer como {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Compartir {0} con
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Configuración de cuenta de correo electrónico por favor, introduzca su contraseña para:"
DocType: Workflow State,hand-up,mano-arriba
DocType: Blog Settings,Writers Introduction,Introducción de los Escritores
DocType: Address,Phone,Teléfono
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,Insertar estilo
DocType: Prepared Report,Error Message,Mensaje de error
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nuevo nombre de Informe
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ocultar Fines de Semana
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genera automáticamente documentos recurrentes.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Genera automáticamente documentos recurrentes.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Es
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,Info-Firma
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valor p
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","¿Cómo se debe formatear esta moneda? Si no se establece, el sistema utilizará los valores por defecto"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,¿Presentar {0} documentos?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Debe haber iniciado sesión y tener la función de administrador del sistema, para poder tener acceso a las copias de seguridad."
-apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
{{ address_line1 }}<br>
diff --git a/frappe/translations/et.csv b/frappe/translations/et.csv
index 1313fbb4ce..bb7a699cf5 100644
--- a/frappe/translations/et.csv
+++ b/frappe/translations/et.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,See roll uuendada kasutaja Õigused kasutaja
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Nimeta {0}
DocType: Workflow State,zoom-out,zoom-out
-DocType: Data Import Beta,Import Options,Impordi valikud
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Ei saa avada {0}, kui selle näiteks on avatud"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabel {0} ei saa olla tühi
DocType: SMS Parameter,Parameter,Parameeter
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Tüh
DocType: DocType,Is Published Field,Kas Avaldatud Field
DocType: GCalendar Settings,GCalendar Settings,GCalendari seaded
DocType: Email Group,Email Group,E Group
-apps/frappe/frappe/__init__.py,Only for {},Ainult {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google'i kalender - sündmust {0} ei saanud Google'i kalendrist kustutada, veakood {1}."
DocType: Event,Pulled from Google Calendar,Tõmmatud Google'i kalendrist
DocType: Note,Seen By,näinud
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Lisa mitu
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ei ole kehtiv kasutaja pilt.
DocType: Energy Point Log,Reverted,Tagastatud
DocType: Success Action,First Success Message,Esimene edukus
+DocType: Document Type Mapping,Document Type Mapping,Dokumendi tüübi kaardistamine
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Mitte nagu
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Vale väärtus: {0} peab olema {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Muuda valdkonnas omadused (peida, readonly luba jne)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,"Saidi, mis kulutab teie üritusi."
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Hindan
DocType: Notification Settings,Document Share,Dokumentide jagamine
DocType: Workflow State,lock,lukk
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Logi
DocType: Workflow State,indent-right,indent-paremale
DocType: Has Role,Has Role,Kas Role
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Aeg sekundites säilitada QR-koodi pilt serveris. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: {2} väljatüüpi {1} ei saa indekseerida
DocType: Dashboard Chart,Timespan,Ajavahemik
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Veebilink
DocType: Deleted Document,Restored,taastatud
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Viga QZ-salverakendusega ühenduse loomisel ...
Töötlemata printimise funktsiooni kasutamiseks peab teil olema installitud ja töötav QZ-salve rakendus.
QZ-salve allalaadimiseks ja installimiseks klõpsake siin .
Töötlemata printimise kohta lisateabe saamiseks klõpsake siin ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minut tagasi
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Peale System Manager, rollide Set User reeglid õigust saab seada õigusi teistele kasutajatele, et Dokumendi liik."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Teema seadistamine
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,UUENDUSLIK
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Failihaldur
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML-päis, robotid ja ümbersuunamised"
DocType: GCalendar Account,Refresh Token,Värskenda žetooni
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Ürituse tootja saidiga ühenduse loomine ebaõnnestus. Proovige mõne aja pärast uuesti.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Sellel saidil pole ühtegi ootel ega praegust tööd
DocType: Webhook,Doc Event,Doc sündmus
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Skriptihaldur
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Tegevust pole
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Kolmanda osapoole rakendused
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Esimene kasutaja saab Süsteemihaldur (võid seda hiljem muuta).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Võite proovida muuta oma aruande filtreid.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Täna pole ühtegi sündmust
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Te ei saa endale ülevaatuspunkte anda
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType peab olema valitud dokumendiürituse esitamiseks
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,"Teil ei ole lubatud saata e-kirju, mis on seotud käesoleva dokumendi"
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Pane valima vähemalt 1 veeru {0} sorteerima / rühmas
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Pole lubatud {0} jaoks: {1}. Piiratud väli: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Ettevõte pole lingitud
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Märgi see, kui olete katsetamise makse kasutades Liivakasti API"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Teil ei ole lubatud kustutada standard veebilehe teema
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Looge oma esimene {0}
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} vär
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,"Pardal olev slaid {0} , mille slaidide järjekord on juba olemas"
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Keela teated
DocType: Translation,Contributed Translation Doctype Name,Kaasatud tõlkedoktüübi nimi
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Seadistamine> Vormi kohandamine
DocType: PayPal Settings,Redirect To,Suuna
DocType: Data Migration Mapping,Pull,Tõmba
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formaat: frappe.query_reports ['REPORTNAME'] = {}
@@ -272,6 +276,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Ei ole lubatud
DocType: DocShare,Internal record of document shares,Sisemine rekord dokumendi aktsiaid
DocType: Energy Point Settings,Review Levels,Tasemete ülevaatamine
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Seadistamine> Kasutaja õigused
DocType: Workflow State,Comment,Kommentaar
DocType: Data Migration Plan,Postprocess Method,Postprotsessimeetod
DocType: DocType Action,Action Type,Toimingu tüüp
@@ -321,13 +326,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Kuv
DocType: Workflow State,remove-circle,kustutada ringi
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Minu profiil
DocType: Help Article,Beginner,algaja
+apps/frappe/frappe/__init__.py,This action is only allowed for {},See toiming on lubatud ainult {}
DocType: Contact,Is Primary Contact,Kas Esmane Kontakt
+DocType: Event Consumer,Event Consumer,Ürituse tarbija
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,"Javascript lisama, et pea osa lehel."
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Lisamine / värskendamine
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Ei ole lubatud trükkida dokumentide eelnõud
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Taasta vaikeseaded
DocType: Workflow,Transition Rules,Üleminek reeglid
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Kuvatakse eelvaates ainult esimesed {0} rida
apps/frappe/frappe/core/doctype/report/report.js,Example:,Näide:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Piirangud
DocType: Workflow,Defines workflow states and rules for a document.,Määrab töökorraldust riikide ja reeglid dokument.
@@ -476,7 +482,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Korda Till
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Uus
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Esmalt peate need looma:
-DocType: Google Maps Settings,Google Maps Settings,Google Mapsi seaded
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Laadimine ...
DocType: DocField,Password,Salasõna
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Teie süsteem on uuendatud. Palun värskenda pärast uuesti mõne hetke
@@ -568,6 +573,7 @@ DocType: System Settings,mm/dd/yyyy,pp / kk / aaaa
DocType: Onboarding Slide,Onboarding Slide,Pardal libisev slaid
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Vale parool:
DocType: Print Settings,Send document web view link in email,Saada dokumendi web vaade lingile e-posti
+DocType: Event Consumer Document Type,Event Consumer Document Type,Ürituse tarbijadokumendi tüüp
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Eelmine
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Nõua usaldusväärse sertifikaadi olemasolu
@@ -643,6 +649,7 @@ DocType: Workflow State,volume-down,hääl maha
DocType: Onboarding Slide,Help Links,Abi lingid
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Sellelt IP-aadressilt pole juurdepääs lubatud
DocType: Notification Settings,Enable Email Notifications,Luba meiliteatised
+DocType: Document Type Field Mapping,Event Streaming,Ürituste voogesitus
apps/frappe/frappe/desk/reportview.py,No Tags,No tags
DocType: Email Account,Send Notification to,Saada teavitamine
DocType: DocField,Collapsible,Kokkupandav
@@ -659,11 +666,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Tingimusi pole esitatud
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y-teljeväljad
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sorteeri valdkonnas {0} peab olema kehtiv fieldname
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Vaikimisi aadressimalli ei leitud. Palun looge uus kaust Seadistamine> Printimine ja bränding> Aadressimall.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Rohkem
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Looge uus kirje
DocType: Contact,Sales Manager,Müügijuht
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Nimeta
DocType: Print Format,Format Data,Formaat andmed
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} ei ole kehtiv aruandevorming. Aruande vorming peaks olema üks järgmistest {1}
DocType: List Filter,Filter Name,Filtri nimi
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Nagu
DocType: Assignment Rule,Automation,Automatiseerimine
@@ -682,6 +691,7 @@ DocType: User,Reset Password Key,Reset Password Key
DocType: Dashboard Chart,All Time,Kogu aeg
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Ebaseadusliku dokumendi olek {0} jaoks
DocType: Email Account,Enable Auto Reply,Luba automaatne vastus
+apps/frappe/frappe/desk/query_report.py,No data to export,Pole andmeid eksportimiseks
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ei ole näinud
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Ühel printimisvormingul ei saa olla mitu printerit.
DocType: Workflow State,zoom-in,suurenda
@@ -832,6 +842,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Muuda kasu
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Esiteks
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Uuenda tõlkeid
DocType: Error Snapshot,Exception,Erand
+DocType: Event Consumer,Event Consumer Document Types,Ürituse tarbijadokumentide tüübid
DocType: Email Account,Use IMAP,Kasuta IMAP
DocType: Activity Log,Activity Log,Activity Log
DocType: View Log,Viewed By,Vaadatud poolt
@@ -870,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Mä
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Graafikute seadistamine
DocType: User,Last IP,Viimati IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Palun lisage oma e-posti aadress
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Vigadega tehingud
DocType: Data Migration Connector,Data Migration Connector,Andmevahetuse pistik
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ennistati {1}
DocType: Email Account,Track Email Status,Jälgi e-posti olekut
@@ -900,6 +912,7 @@ DocType: Email Queue,Attachments,Manused
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Sa ei pea õigused sellele dokumendile juurdepääsuks
DocType: Language,Language Name,keel Nimi
DocType: Email Group Member,Email Group Member,E-post Group liige
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Kasutajaga pole seotud ühtegi e-posti kontot. Lisage konto jaotises Kasutaja> E-posti postkast.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Teie konto on lukustatud ja jätkub pärast {0} sekundit
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Kasutajate õigusi kasutatakse kasutajate piiritlemiseks konkreetsete dokumentidega.
DocType: Notification,Value Changed,Väärtus Muutis
@@ -991,6 +1004,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Nimetatakse teh
DocType: Help Article,Expert,ekspert
DocType: Workflow State,circle-arrow-right,Ringi Nool paremale
DocType: Role Profile,Role Profile,Rolli profiil
+DocType: Document Type Mapping,Remote Document Type,Kaugdokumendi tüüp
apps/frappe/frappe/permissions.py,Document Type is not importable,Dokumendi tüüp pole imporditav
DocType: LDAP Settings,LDAP Server Url,LDAP serveri URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Ei saa avada näiteks kui selle {0} on avatud
@@ -1075,7 +1089,7 @@ DocType: Web Form,Allow Print,Laske Prindi
DocType: Communication,Clicked,Klõpsanud
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Jälgi
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nr luba "{0} '{1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Seadistage vaikimisi kasutatav e-posti konto seadistuses> E-post> E-posti konto
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Kuvatakse {1} -st ainult esimesed {0} rida
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Plaanitud saata
DocType: DocType,Track Seen,Rada näinud
DocType: Dropbox Settings,File Backup,Faili varundamine
@@ -1145,6 +1159,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,val
DocType: Data Export,Filter List,Filtreeri nimekiri
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Ürituste konfiguratsioonid
DocType: Email Account,Auto Reply Message,Auto Vastusõnumit
DocType: Data Migration Mapping,Condition,Seisund
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} tundi tagasi
@@ -1204,9 +1219,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Kasutage ala
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Sisse kommenteerimiseks
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Alusta andmete sisestamisel allpool seda joont
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},Muutunud väärtused {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","E-posti ID peab olema unikaalne, e-posti konto on juba olemas \ {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Võrdluseks kasutage> 5, <10 või = 324. Vahemike jaoks kasutage 5:10 (väärtuste vahemikus 5–10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Kohanda ...
DocType: Print Format,Align Labels to the Right,Joondage sildid paremale
DocType: Assignment Rule,Disabled,Invaliidistunud
@@ -1254,8 +1268,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klaviatuuri otseteed
DocType: Post,Comments,Kommentaarid
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Kinnita
+DocType: Event Sync Log,Update Type,Värskenduse tüüp
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Autentimine ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Sulge kõik
+DocType: Event Producer,Last Update,Viimane uuendus
apps/frappe/frappe/www/login.html,Forgot Password?,Unustasid Salasõna?
DocType: System Settings,yyyy-mm-dd,aaaa-kk-pp
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1296,6 +1312,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabel Fiel
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Veergude
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{0} {1}, {2} importimine"
DocType: Workflow State,move,käik
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Sündmuse tarbija või sündmuse tarbija loomine nurjus praegusele saidile on juba registreeritud.
apps/frappe/frappe/model/document.py,Action Failed,Action ebaõnnestus
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Kasutaja ei ole
DocType: View Log,View log,Vaata logi
@@ -1458,6 +1475,7 @@ DocType: DefaultValue,Key,Klahv
DocType: Address,Contacts,sidemed
DocType: System Settings,Setup Complete,Setup Complete
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Aruanne kõik dokumendi aktsiaid
+DocType: Event Consumer,Callback URL,Tagasihelistamise URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Impordimalli tüüp peaks olema .csv, .xlsx või .xls"
apps/frappe/frappe/www/update-password.html,New Password,uus parool
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} puuduvad
@@ -1523,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Edu
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; ole lubatud tingimusel
DocType: Async Task,Async Task,Async Task
DocType: Workflow State,picture,pilt
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Täielik
+DocType: Scheduled Job Log,Complete,Täielik
DocType: DocType,Image Field,Pilt Field
DocType: Print Format,Custom HTML Help,Custom HTML Help
DocType: LDAP Settings,Default Role on Creation,Vaikimisi loodud roll
@@ -1549,6 +1567,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Spikker Otsi
DocType: Milestone,Milestone Tracker,Verstaposti jälgija
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registreeritud kuid puudega
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Aadress tuleb linkida ettevõttega. Lisage allolevasse lingide tabelisse rida ettevõtte kohta.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Selle dokumendi automaatne kordamine on keelatud.
DocType: DocType,Hide Copy,Peida Copy
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Kustuta kõik rollid
@@ -1587,6 +1606,7 @@ DocType: Bulk Update,Field,väli
DocType: Communication,Received,Saanud
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger on kehtiv meetodeid, nagu "before_insert", "after_update" jne (sõltub DocType valitud)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1} muudetud väärtus
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"E-posti konto seadistamine, sisestage oma parool: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Lisades Süsteemihaldur sellele Kasutaja sest seal peab olema atleast üks Süsteemihaldur
DocType: Chat Message,URLs,URL-id
DocType: Data Migration Run,Total Pages,Lehekülgi kokku
@@ -1594,7 +1614,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Kinnita Image
DocType: Workflow State,list-alt,"nimekirja, alt"
apps/frappe/frappe/www/update-password.html,Password Updated,Salasõna Uuendatud
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Seadistamine> Kasutaja õigused
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Teie sisselogimise kinnitamiseks vajalikud sammud
apps/frappe/frappe/utils/password.py,Password not found,Salasõna ei leitud
DocType: Webhook,Webhook Secret,Webhooki saladus
@@ -1610,8 +1629,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API seaded
DocType: Report,Query Report,Päringuaruanne
DocType: User,Set New Password,Set New Password
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Pole lubatud {0} jaoks: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S ei ole kehtiv aruande vormi. Aruande esitamine peaks \ üks järgmistest% s
DocType: Chat Message,Chat,Vestlus
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Ühtegi dokumenti ei leitud sildiga {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-grupi kaardistamine
@@ -1646,7 +1663,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sisestage
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret
DocType: Tag Link,Document Title,Dokumendi pealkiri
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Kohustuslik)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} aasta tagasi
DocType: Social Login Key,Social Login Provider,Social Login Provider
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Lisa veel üks kommentaar
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Failis ei leitud andmeid. Lisage uus fail uuesti andmetega.
@@ -1694,6 +1710,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Vali ta
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 aasta
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Püsivalt kustutada {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Sama faili juba lisatud rekord
+DocType: Event Sync Log,Synced,Sünkroonitud
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ei ole kehtiv töövoo olek. Värskendage oma töövoogu ja proovige uuesti.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,andis {0} punkti
DocType: Workflow State,wrench,mutrivõti
@@ -1796,6 +1813,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,max pikkus
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,kaart-marker
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Kahe doktüübi vaheline kaardistuskonfiguratsioon.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Esita probleemist
DocType: Event,Repeat this Event,Korrake seda Sündmus
DocType: Address,Maintenance User,Hooldus Kasutaja
@@ -1855,6 +1873,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test e-posti aadress
DocType: Auto Repeat,Reference Document Type,Viide Dokumendi liik
DocType: ToDo,Sender,Lähetaja
+DocType: Event Consumer,Incoming Change,Saabuvad muutused
DocType: Google Drive,Backup Folder Name,Kausta varundamine
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Viga teatise {0} hindamisel. Palun parandage oma mall.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1917,9 +1936,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Uus prin
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Taotluse kinnitamiseks klõpsake alloleval lingil
DocType: Workflow State,align-left,viia vasakule
DocType: Onboarding Slide,Action Settings,Toimingu seaded
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Seadistamine> Kasutaja
DocType: User,Defaults,Vaikeväärtused
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Võrdluseks kasutage> 5, <10 või = 324. Vahemike jaoks kasutage 5:10 (väärtuste vahemikus 5–10)."
DocType: Energy Point Log,Revert Of,Tagasi
+DocType: Document Type Mapping,Field Mapping,Väljade kaardistamine
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Ühendamine olemasoleva
DocType: User,Birth Date,Sünnikuupäev
DocType: Communication Link,Link Title,link Pealkiri
@@ -1947,6 +1967,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Sildilink
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Keti terviklikkus
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Testis
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Valuutakursid = [?] Murru nt 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Osaliselt edukas
@@ -1956,6 +1977,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP-grupi kaardistused
DocType: Chat Message Attachment,Chat Message Attachment,Vestluse teade manusena
DocType: LDAP Settings,Path to CA Certs File,Tee CA-faili juurde
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Kui dokumendil on tootja ja tarbija lõpus erinevad väljade nimed, siis kontrollige seda ja seadistage kaardistamine"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Luba lugemine kõigil lingi suvanditel
DocType: DocType,Database Engine,Database Engine
@@ -2088,6 +2110,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Märge
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Viga aruanne
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Ekspordi andmed CSV / Exceli vormingus.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Dokumendi tüübi välja kaardistamine
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Globaalse otsingu dokumentide seadistamine.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Autentimise rakendused, mida saate kasutada, on järgmised:"
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} on juba olemas. Valige teine nimi
@@ -2161,7 +2184,6 @@ DocType: Workflow State,Upload,Laadi üles
DocType: User Permission,Advanced Control,Täpsem juhtimine
DocType: System Settings,Date Format,Kuupäeva formaat
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Ei Avaldatud
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Vaikimisi aadressimalli ei leitud. Palun looge uus kaust Seadistamine> Printimine ja bränding> Aadressimall.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Meetmed töökorraldust (nt kiita, Loobu)."
DocType: Data Import,Skip rows with errors,Jätke vead ridu
DocType: Workflow State,flag,lipp
@@ -2224,6 +2246,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Riike esindab lubatud ühes dokumendis ja roll määratud oleku muutmiseks.
DocType: Data Migration Connector,Database Name,Andmebaasi nimi
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Värskenda vorm
+DocType: Event Producer,Event Producer,Ürituse produtsent
DocType: DocField,Select,Valima
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Vaata kogu logi
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Lihtne Pythoni avaldus, näide: olek == 'Ava' ja tippige == 'Viga'"
@@ -2324,6 +2347,7 @@ DocType: DocType,User Cannot Search,Kasutaja ei saa otsida
DocType: Communication Link,Communication Link,Suhtluslink
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Vale vorming
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Kas {0} {1} ei saa
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Automaatkordamise {2} kaudu on teile loodud korduv {0} {1}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Rakenda see reegel kui Kasutaja on omanik
DocType: Global Search Settings,Global Search Settings,Globaalsed otsinguseaded
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Kas teie sisselogimise ID
@@ -2341,12 +2365,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-kood sissel
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Lisa teha
DocType: Footer Item,Company,Ettevõte
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Keskmine {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Edukad tehingud
DocType: Scheduled Job Log,Scheduled,Plaanitud
DocType: User,Logout from all devices while changing Password,Väljuge kõikidest seadmetest parooli vahetamisel
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Kinnita parool
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Vigu
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Sisestage Google'i seadetes kliendi ID ja kliendi saladus.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Lähedane
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","E-posti ID peab olema kordumatu, e-posti konto on juba {0} jaoks olemas"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Ei saa muuta docstatus 0-2
DocType: File,Attached To Field,Väli lisatud
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Uuenda
@@ -2452,6 +2478,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Kuu
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Lisa Reference: {{ reference_doctype }} {{ reference_name }} saata dokumendi viide
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Loendis on ainult kasutajad, kes on seotud dokumendiga"
DocType: DocField,Fetch From,Tõmba välja
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Seadistamine> Vormi kohandamine
apps/frappe/frappe/modules/utils.py,App not found,App ei leitud
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Ei saa luua {0} lapse vastu dokument: {1}
DocType: Social Login Key,Social Login Key,Sotsiaalse sisselogimise võti
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Jututub
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Sotsiaalkodu
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},"Sisesta Pärast seda ei saa määrata, kui {0}"
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,"Jaga {0}, kus"
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Post konto seadistamine Sisestage parool:
DocType: Workflow State,hand-up,käsi püsti
DocType: Blog Settings,Writers Introduction,Kirjanike Sissejuhatus
DocType: Address,Phone,Telefon
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,Sisesta Style
DocType: Prepared Report,Error Message,Veateade
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Uus aruanne nimi
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Nädalavahetuse peitmine
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genereerib automaatselt korduvad dokumendid.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Genereerib automaatselt korduvad dokumendid.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Kas
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-märk
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Väärt
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kuidas seda valuutat olema vormistatud? Kui pole määratud, kasutab süsteemi vaikimisi"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Esitada {0} dokumente?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Sa pead olema sisselogitud, ja on Süsteemihaldur rolli pääse varukoopiaid."
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Viga QZ-salverakendusega ühenduse loomisel ...
Töötlemata printimise funktsiooni kasutamiseks peab teil olema installitud ja töötav QZ-salve rakendus.
QZ-salve allalaadimiseks ja installimiseks klõpsake siin .
Töötlemata printimise kohta lisateabe saamiseks klõpsake siin ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Printeri kaardistamine
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Palun salvesta enne kinnitamist.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Kas soovite tühistada kõik lingitud dokumendid?
@@ -2560,6 +2585,7 @@ DocType: Role Permission for Page and Report,Set Role For,Määra roll
DocType: GCalendar Account,The name that will appear in Google Calendar,"Nimi, mis kuvatakse Google'i kalendris"
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Otsene tuba {0} juba on olemas.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Värskendav ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Kontrollige juhtpaneeli diagrammi jaoks seatud filtriväärtusi: {}
DocType: Event,Starts on,Algab
DocType: System Settings,System Settings,Süsteemi seaded
DocType: GCalendar Settings,Google API Credentials,Google API-i volitused
@@ -2584,6 +2610,7 @@ DocType: Workflow State,ok-sign,ok-märk
apps/frappe/frappe/config/settings.py,Deleted Documents,kustutatud dokumendid
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV-vorming on tõstutundlik
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon juba olemas
+DocType: Event Consumer Document Type,Approval Status,Kinnitamine Staatus
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Täpsustage, millistes domeenides slaidid peaksid ilmuma. Kui midagi pole täpsustatud, kuvatakse slaid vaikimisi kõigis domeenides."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicate
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: välja {1} reas {2} ei saa peita ja see on kohustuslik ilma vaikimisi
@@ -2603,6 +2630,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Abi artiklid
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tüüp:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Teie makse on ebaõnnestunud.
+DocType: Event Producer,Producer URL,Tootja URL
DocType: Comment,Unshared,unshared
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Moodul ei leitud
@@ -2614,6 +2642,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Ülesanne Valminud
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Bulk Edit {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Laadige alla aruanne
+apps/frappe/frappe/model/workflow.py,Workflow Status,Töövoo olek
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Ei ole aktiivne
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Ainult administraatoril on lubatud juhtpaneeli diagrammiallikaid luua
DocType: About Us Settings,Settings for the About Us Page,Seaded Meist Page
@@ -2622,6 +2651,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Pri
DocType: Notification Settings,Energy Points,Energiapunktid
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Aeg {0} peab olema vormingus: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,nt pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}: uue korduva dokumendi manustamine ebaõnnestus. Dokumendi manustamise lubamiseks automaatse kordusteatise e-posti teel lubage prindisätetes {1}
DocType: User,Generate Keys,Genereerige võtmed
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,See eemaldab teie andmed jäädavalt.
DocType: DocType,View Settings,Vaata Seaded
@@ -2673,6 +2703,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Kõik
DocType: Email Queue,Recipient,Saaja
DocType: Webhook,Webhook Security,Webhooki turvalisus
+DocType: Event Sync Log,Producer Document Name,Tootja dokumendi nimi
DocType: Communication,Has Attachment,Kas Attachment
DocType: Address,Sales User,Müük Kasutaja
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Lohistamine vahend ehitada ja kohandada printimisformaadid.
@@ -2708,6 +2739,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Lapsetabeleid näidatakse ruudustikuna teistes DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setup Auto E-
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Sait, mille soovite sündmuste tarbimiseks tellida."
DocType: Chat Profile,Message Preview,Sõnumi eelvaade
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,See on top-10 ühise salasõna.
DocType: User,User Defaults,Kasutaja Vaikeväärtused
@@ -2740,6 +2772,7 @@ DocType: Dashboard Chart,Last Synced On,Viimati sünkroonitud sisse
DocType: Comment,Comment Type,Kommentaar Type
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Kasutajad
+DocType: Document Type Mapping,Local Document Type,Kohaliku dokumendi tüüp
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Aruande tüüp
DocType: DocField,Signature,Signatuur
@@ -2781,6 +2814,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} ise omistas selle ülesande: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Sinu riik
DocType: Assignment Rule Day,Sunday,Pühapäev
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Säilitab kõigi lisamiste, värskenduste ja kustutuste logi sündmusetootja saidil nende dokumentide jaoks, millel on tarbijad."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: välja nimi ei saa olla üks järgmistest: {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Edetabelid
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Võrkvaates
@@ -2926,7 +2960,6 @@ DocType: Web Page,Sidebar and Comments,Külgriba ja Kommentaarid
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kui Muuta dokumenti peale Loobu ja salvestada, siis saad uue numbri, mis on versioon vana number."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Ei ole lubatud lisada dokumenti {0}, palun aktiveeri Print Settings (Prindi seadistused) käsul {0}"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posti konto pole seadistatud. Looge uus e-posti konto seadistusest> E-post> E-posti konto
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Vaata dokumenti aadressil {0}
DocType: Stripe Settings,Publishable Key,avaldatav Key
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Alusta importi
@@ -3003,7 +3036,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Luba Level
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Ei saa määrata Esita, Loobu, Muuta ilma kirjutamine"
DocType: List View Setting,Disable Count,Keela krahv
-DocType: Google Maps Settings,Client Key,Kliendi võti
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,"Olete kindel, et soovite kustutada manust?"
apps/frappe/frappe/__init__.py,Thank you,Aitäh
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Salvestamine
@@ -3129,6 +3161,7 @@ DocType: Workflow Document State,Only Allow Edit For,Ainult Laske Muuda
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Varundamine Google Drive'i.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Kohustuslik väli: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Sinu nimi
+DocType: Event Producer Document Type,Event Producer Document Type,Ürituse tootja dokumendi tüüp
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Ühenduse edu
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Pardal olev slaiditüüpi slaid on juba olemas.
@@ -3199,6 +3232,7 @@ DocType: Address,Postal Code,Postiindeks
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Relink Side
DocType: Translation,Contributed,Panustas
apps/frappe/frappe/config/customization.py,Form Customization,Vormi kohandamine
+DocType: Event Update Log,Event Update Log,Sündmuse värskenduste logi
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Aktiivseid seansse pole
DocType: Web Form,Route to Success Link,Edu linki tee
DocType: Onboarding Slide Field,Right,Õigus
@@ -3225,7 +3259,7 @@ DocType: Website Settings,Chat Operators,Vestlusoperaatorid
DocType: S3 Backup Settings,ca-central-1,ca-tsentraalne-1
DocType: Contact Us Settings,Pincode,PIN-koodi
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Palun veenduge, et ei ole tühjad veerud faili."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Jälgib verstaposte dokumendi olelustsüklis, kui see läbib mitu etappi."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Jälgib verstaposte dokumendi olelustsüklis, kui see läbib mitu etappi."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Failide ümbernimetamine ja kontrollerites asendatud kood, palun kontrollige!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Veenduge, et teie profiili on meiliaadress"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Sul on salvestamata muudatusi selles vormis. Palun salvesta enne jätkamist.
@@ -3252,7 +3286,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Salvesta API saladus:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Ei saa seostada tühistatud dokumendi: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Ei saa muuta vormikohase aruande. Palun dubleerida ja luua uue aruande
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Firma on kohustuslik, kui see on teie ettevõte aadress"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Näiteks: Kui soovite lisada dokumendi ID, kasuta {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Select Table Columns eest {0}
DocType: Custom Field,Options Help,Valikud Abi
@@ -3260,7 +3293,6 @@ DocType: Footer Item,Group Label,Märgistus
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google'i kontaktid on konfigureeritud.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 kirje eksporditakse
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Kasutajaga pole seotud ühtegi e-posti kontot. Lisage konto jaotises Kasutaja> E-posti postkast.
DocType: DocField,Report Hide,Aruanne Peida
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Puunäkymä ole saadaval {0}
DocType: DocType,Restrict To Domain,Piira Domain
@@ -3326,7 +3358,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: välja {1} tüüp {2} ei saa olla kohustuslik
DocType: System Settings,In Days,Päevades
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Igatsema
+DocType: Event Producer Document Type,Has Mapping,Tal on kaardistamine
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Palun täpsusta
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Vale filtri väärtus
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Abi artikli
DocType: Page,Page Name,Lehekülje nimi
@@ -3434,7 +3468,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Prindi Formaat
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Lülita võrgu vaade sisse
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Minge järgmisele plaadile
-DocType: System Settings,Time Format,Ajavorming
+DocType: Country,Time Format,Ajavorming
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Vale makse gateway volikirja
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"See on mallifail, mis on loodud ainult rida, millel on mõni viga. Seda faili peaksite parandamiseks ja importimiseks kasutama."
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Seada õigusi Dokumendi liigid ja rollid
@@ -3756,6 +3790,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Luba sisselogimine kasutajanime abil
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Luba aruanne
DocType: DocField,Display Depends On,Näita sõltub
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} aasta tagasi
DocType: Social Login Key,API Endpoint,API lõpp-punkt
DocType: Web Page,Insert Code,Sisesta kood
DocType: Data Migration Run,Current Mapping Type,Praegune kaardistamise tüüp
@@ -3809,6 +3844,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Kin
apps/frappe/frappe/www/login.html,Or login with,Või logige sisse
DocType: Error Snapshot,Locals,Kohalikud
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Kaudu edastatud {0} on {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Ürituste tootja dokumenditüübid
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Seadistage vaikimisi kasutatav e-posti konto seadistuses> E-post> E-posti konto
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Valige rühmita ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,nt (55 + 434) / 4 või = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} on nõutav
@@ -3840,9 +3877,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendari sünkroonimis ID
DocType: Prepared Report,Report Start Time,Aruande algusaeg
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Ekspordi andmed
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Säilitab kõigi tarbitud sündmuste logi koos sünkroonimise olekuga ja nupuga Resync juhul, kui sünkroonimine ebaõnnestub."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Select Columns
DocType: Translation,Source Text,lähteteksti
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,See on taustraport. Seadke sobivad filtrid ja genereerige siis uus.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posti konto pole seadistatud. Looge uus e-posti konto seadistusest> E-post> E-posti konto
apps/frappe/frappe/www/login.py,Missing parameters for login,Kadunud parameetrid login
DocType: Workflow State,folder-open,kausta avada
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Esitatavaid dokumente ei saa pärast esitamist muuta. Neid saab tühistada ja muuta.
@@ -3922,6 +3961,7 @@ DocType: Blog Post,Published On,Avaldatud
DocType: Contact,Gender,Sugu
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Kohustuslik teave puudu:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} tõi teie punktid tagasi {1}
+DocType: Event Consumer,Event Subscriber,Ürituse tellija
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Kontrollige päringu URL-i
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Ainult 200 lisab lubatud üks taotlus
DocType: Footer Item,URL,URL
@@ -3934,6 +3974,7 @@ DocType: Auto Email Report,Half Yearly,Pooleaastane
DocType: Communication,Marked As Spam,Rämpspostina
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Seal on mõned probleem faili url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Puu
+DocType: Event Producer Document Type,Use Same Name,Kasutage sama nime
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Sul ei ole lubatud trükkida käesoleva aruande
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Kasutaja reeglid
DocType: Workflow State,warning-sign,hoiatus-märk
@@ -3943,6 +3984,7 @@ DocType: Workflow State,User,Kasutaja
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Show tiitli brauseri akna "Eesliide - pealkiri"
DocType: Payment Gateway,Gateway Settings,Gateway'i seaded
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,teksti dokumendi tüüp
+DocType: Event Sync Log,Event Sync Log,Sündmuse sünkroonimise logi
apps/frappe/frappe/handler.py,Logged Out,Välja logitud
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Rohkem ...
DocType: System Settings,User can login using Email id or Mobile number,Kasutaja saab sisselogimiseks kasutades e-posti id või Mobiil arv
@@ -3982,12 +4024,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ei In
DocType: Workflow State,star,staar
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Kui see on märgitud, saavad dokumendid sama nime, mis neil on sündmusetootja saidil"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,väärtused komadega eraldatult
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max laius tüüp Valuuta on 100px järjest {0}
apps/frappe/frappe/config/website.py,Content web page.,Sisu veebilehel.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Lisa uus roll
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Külastage veebisaiti
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Uus ülesanne
+DocType: Event Consumer Document Type,Approved,Kinnitatud
DocType: Google Contacts,Last Sync On,Viimane sünkroonimine on sisse lülitatud
DocType: Deleted Document,Deleted Document,Kustutatud Dokumendi
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Midagi läks valesti
@@ -4039,7 +4083,6 @@ DocType: DocField,Unique,Unikaalne
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} hinnatud {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Osaline edu
DocType: Email Account,Service,Teenus
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Seadistamine> Kasutaja
DocType: File,File Name,Faili nimi
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Ei leidnud {0} ja {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4051,11 +4094,10 @@ DocType: Calendar View,Calendar View,Kalendri vaade
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Edit Formaat
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Täielik Registreeri
DocType: GCalendar Settings,Enable,võimaldama
-DocType: Google Maps Settings,Home Address,Kodu aadress
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Võite üles laadida ainult upto 5000 arvestust korraga. (võib olla väiksem mõnel juhul)
DocType: Report,"output in the form of `data = [columns, result]`","väljund kujul "andmed = [veerud, tulemus]""
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Kohaldatavad dokumenditüübid
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Seadistage reeglid kasutaja määramiseks.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Seadistage reeglid kasutaja määramiseks.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Ebapiisav Loa {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Aruanne ei salvestatud (seal olid vead)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Päise sisu ei saa muuta
diff --git a/frappe/translations/fa.csv b/frappe/translations/fa.csv
index 424d6c9157..4ba2c0b1ba 100644
--- a/frappe/translations/fa.csv
+++ b/frappe/translations/fa.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,این به روز رسانی نقش اجازه برای یک کاربر
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},تغییر نام {0}
DocType: Workflow State,zoom-out,کوچک نمایی
-DocType: Data Import Beta,Import Options,گزینه های واردات
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,نمی تواند باز {0} زمانی که به عنوان مثال آن باز است
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,جدول {0} نمی تواند خالی باشد
DocType: SMS Parameter,Parameter,پارامتر
@@ -82,16 +81,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,لغ
DocType: DocType,Is Published Field,منتشر درست
DocType: GCalendar Settings,GCalendar Settings,تنظیمات GCalendar
DocType: Email Group,Email Group,ایمیل گروه
-apps/frappe/frappe/__init__.py,Only for {},فقط برای {}
DocType: Event,Pulled from Google Calendar,از تقویم Google بیرون کشیده شد
DocType: Note,Seen By,دیده شده توسط
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,اضافه کردن چند
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,یک تصویر کاربر معتبر نیست
DocType: Energy Point Log,Reverted,برگردانده شد
DocType: Success Action,First Success Message,پیام موفقیت اول
+DocType: Document Type Mapping,Document Type Mapping,نگاشت نوع نقشه
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,نه مثل
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},مقدار نادرست: {0} باید {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",خواص تغییر درست (مخفی، فقط خواندنی، اجازه و غیره)
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,سایتی که رویدادهای شما را مصرف می کند.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,قدردانی
DocType: Notification Settings,Document Share,اشتراک اسناد
DocType: Workflow State,lock,قفل
@@ -111,11 +111,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,ورود
DocType: Workflow State,indent-right,تورفتگی راست
DocType: Has Role,Has Role,است نقش
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,راه اندازی مجدد
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,زمان در ثانیه برای حفظ تصویر کد QR بر روی سرور. حداقل: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} برای {2} نمی تواند ایندکس شود
DocType: Dashboard Chart,Timespan,مدت زمان
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,لینک سایت
DocType: Deleted Document,Restored,ترمیم
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","خطایی در اتصال به برنامه سینی QZ Tray ...
برای استفاده از ویژگی چاپ خام ، باید برنامه QT Tray را نصب و اجرا کنید.
برای بارگیری و نصب QZ Tray اینجا کلیک کنید .
برای کسب اطلاعات بیشتر در مورد چاپ خام اینجا کلیک کنید ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 دقیقه پیش
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",به غیر از سیستم مدیریت، نقش با تنظیم اجازه می تواند مجوز برای کاربران دیگری که برای نوع سند تنظیم شده است.
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,پیکربندی موضوع
@@ -185,6 +187,7 @@ DocType: Email Account,UNSEEN,غیب
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,مدیریت فایل
DocType: Website Settings,"HTML Header, Robots and Redirects",هدر HTML ، روبات ها و تغییر مسیرها
DocType: GCalendar Account,Refresh Token,تازه کردن رمز
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,اتصال به سایت سازنده رویداد انجام نشد. پس از مدتی دوباره امتحان کنید.
DocType: Address,Goa,گوا
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,هیچ مشکلی در انتظار یا فعلی برای این سایت نیست
DocType: Webhook,Doc Event,رویداد Doc
@@ -206,6 +209,7 @@ DocType: Server Script,Script Manager,مدیر اسکریپت
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,بدون فعالیت
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,برنامه های شخص ثالث
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,اولین کاربر تبدیل خواهد شد مدیر سیستم (شما می توانید این تنظیمات را تغییر دهید).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,می توانید فیلترهای گزارش خود را تغییر دهید.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,هیچ رویدادی امروز
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,شما نمی توانید نکات نقد و بررسی به خودتان بدهید
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType باید برای Event Document انتخاب شده Submittable باشد
@@ -235,6 +239,7 @@ apps/frappe/frappe/config/desk.py,Files,فایل ها
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permissions get applied on Users based on what Roles they are assigned.,مجوز های بر روی کاربران بر اساس آنچه نقش آن اختصاص داده می شود.
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,لطفا حداقل 1 ستون از {0} برای مرتب کردن گروه / انتخاب
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,شرکت پیوند ندارد
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,این چک کنید اگر شما در حال آزمایش پرداخت خود را با استفاده از API گودال ماسهبازی
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,شما مجاز به حذف یک قالب استاندارد وب سایت نیستید
DocType: Data Import,Log Details,ورود به سیستم
@@ -253,7 +258,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},به روز رسانی {0}
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,غیر فعال کردن گزارش
DocType: Translation,Contributed Translation Doctype Name,نام مستند ترجمه
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> سفارشی کردن فرم
DocType: PayPal Settings,Redirect To,تغییر مسیر به
DocType: Data Migration Mapping,Pull,کشیدن
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},جاوا اسکریپت فرمت: frappe.query_reports ['REPORTNAME'] = {}
@@ -265,6 +269,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,ممنوع
DocType: DocShare,Internal record of document shares,رکورد داخلی از سهام سند
DocType: Energy Point Settings,Review Levels,بررسی سطوح
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> مجوزهای کاربر
DocType: Workflow State,Comment,توضیح
DocType: Data Migration Plan,Postprocess Method,روش پس پردازش
DocType: DocType Action,Action Type,نوع عمل
@@ -313,7 +318,9 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,ن
DocType: Workflow State,remove-circle,حذف دایره
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,پروفایل من
DocType: Help Article,Beginner,مبتدی
+apps/frappe/frappe/__init__.py,This action is only allowed for {},این اقدام فقط برای {} مجاز است
DocType: Contact,Is Primary Contact,آیا اولیه تماس
+DocType: Event Consumer,Event Consumer,مصرف کننده رویداد
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,جاوا اسکریپت برای اضافه به بخش سر صفحه استفاده کنید.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,اضافه کردن / بروزرسانی
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,مجاز به چاپ اسناد پیش نویس
@@ -460,7 +467,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,تکرار تا
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,جدید
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,ابتدا باید این موارد را ایجاد کنید:
-DocType: Google Maps Settings,Google Maps Settings,تنظیمات Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,در حال بارگذاری ...
DocType: DocField,Password,رمز عبور
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,سیستم شما در حال بروز رسانی. لطفا پس از چند لحظه دکمه بروز آوری را فشار دهید
@@ -551,6 +557,7 @@ DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY
DocType: Onboarding Slide,Onboarding Slide,اسلاید روی صفحه
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,رمز عبور نامعتبر:
DocType: Print Settings,Send document web view link in email,ارسال سند لینک مشاهده وب سایت در ایمیل
+DocType: Event Consumer Document Type,Event Consumer Document Type,نوع سند مصرف کننده رویداد
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,قبلی
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,پاسخ:
DocType: LDAP Settings,Require Trusted Certificate,به گواهینامه معتبر احتیاج دارید
@@ -624,6 +631,7 @@ DocType: Workflow State,volume-down,حجم پایین
DocType: Onboarding Slide,Help Links,پیوندهای راهنما
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,دسترسی از این آدرس IP مجاز نیست
DocType: Notification Settings,Enable Email Notifications,اعلان های ایمیل را فعال کنید
+DocType: Document Type Field Mapping,Event Streaming,جریان رویداد
apps/frappe/frappe/desk/reportview.py,No Tags,بدون برچسب
DocType: Email Account,Send Notification to,ارسال هشدار از طریق به
DocType: DocField,Collapsible,پیش ساخته
@@ -640,6 +648,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,مح
apps/frappe/frappe/database/database.py,No conditions provided,هیچ شرطی ارائه نشده است
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,زمینه های Y محور
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,قسمت مرتب سازی {0} باید یک FIELDNAME معتبر باشد
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,هیچ الگوی پیش فرض آدرس یافت نشد. لطفاً یک مورد جدید از Setup> چاپ و برندسازی> الگوی آدرس ایجاد کنید.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,بیش
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,یک رکورد جدید ایجاد کنید
DocType: Contact,Sales Manager,مدیر فروش
@@ -663,6 +672,7 @@ DocType: User,Reset Password Key,کلید بازیابی کلمه عبور
DocType: Dashboard Chart,All Time,همیشه
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},وضعیت سند غیرقانونی برای {0}
DocType: Email Account,Enable Auto Reply,خودکار را فعال پاسخ
+apps/frappe/frappe/desk/query_report.py,No data to export,داده ای برای صادرات وجود ندارد
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,دیده نمی
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,نمی توان چندین چاپگر را در یک قالب چاپی نقشه برداری کرد.
DocType: Workflow State,zoom-in,بزرگنمایی
@@ -811,6 +821,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,تغییر
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,اولین
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,بهروزرسانی ترجمهها
DocType: Error Snapshot,Exception,استثناء
+DocType: Event Consumer,Event Consumer Document Types,انواع اسناد مصرف کننده رویداد
DocType: Email Account,Use IMAP,استفاده از IMAP
DocType: Activity Log,Activity Log,گزارش فعالیت
DocType: View Log,Viewed By,بازدید شده توسط
@@ -848,6 +859,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ت
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,پیکربندی نمودارها
DocType: User,Last IP,تاریخ و زمان آخرین IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,لطفا یک موضوع را به ایمیل خود اضافه کنید
+apps/frappe/frappe/model/workflow.py,Errored Transactions,معاملات معیوب
DocType: Data Migration Connector,Data Migration Connector,اتصال مهاجرت داده
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} برگشت {1}
DocType: Email Account,Track Email Status,ردیابی وضعیت ایمیل
@@ -877,6 +889,7 @@ DocType: Email Queue,Attachments,فایل های پیوست
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,شما اجازه دسترسی به این سند را ندارید
DocType: Language,Language Name,نام زبان
DocType: Email Group Member,Email Group Member,ایمیل گروه کاربران
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,هیچ حساب ایمیل مرتبط با کاربر نیست. لطفاً یک حساب کاربری در زیر کاربر> صندوق پست الکترونیکی اضافه کنید.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,حساب شما قفل شده است و بعد از {0} ثانیه باز خواهد گشت
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,مجوزهای کاربر برای محدود کردن کاربران به سوابق خاص استفاده می شود.
DocType: Notification,Value Changed,مقدار تغییر
@@ -967,6 +980,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,ذکر معام
DocType: Help Article,Expert,کارشناس
DocType: Workflow State,circle-arrow-right,دایره-فلش-راست
DocType: Role Profile,Role Profile,نقش نمایه
+DocType: Document Type Mapping,Remote Document Type,نوع سند از راه دور
apps/frappe/frappe/permissions.py,Document Type is not importable,نوع سند قابل وارد نیست
DocType: LDAP Settings,LDAP Server Url,LDAP آدرس سرور
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,می تواند به عنوان مثال باز کردن نیست که آن {0} باز است
@@ -1050,7 +1064,6 @@ DocType: Web Form,Allow Print,اجازه چاپ
DocType: Communication,Clicked,کلیک
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,لغو ادامه
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},بدون اجازه '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,لطفاً حساب پیش فرض پست الکترونیکی را از تنظیم> ایمیل> حساب ایمیل تنظیم کنید
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,برنامه ریزی به ارسال
DocType: DocType,Track Seen,آهنگ دیده
DocType: Dropbox Settings,File Backup,پشتیبان فایل
@@ -1119,6 +1132,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ر
DocType: Data Export,Filter List,فیلتر لیست
DocType: Data Export,Excel,اکسل
DocType: System Settings,HH:mm,HH: میلی متر
+DocType: Event Sync Log,Event Configurations,تنظیمات رویداد
DocType: Email Account,Auto Reply Message,خودکار پاسخ پیام
DocType: Data Migration Mapping,Condition,شرط
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ساعت پیش
@@ -1177,9 +1191,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,همیشه
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,ورود به اظهار نظر
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,شروع ورود اطلاعات زیر این خط
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},ارزش تغییر برای {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}",شناسه ایمیل باید منحصر به فرد باشد، حساب ایمیل قبلا وجود دارد \ برای {0}
DocType: Workflow State,retweet,بازتوییت
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",برای مقایسه ، از> 5 ، <10 یا 324 استفاده کنید. برای محدوده ها ، از 5:10 (برای مقادیر بین 5 تا 10) استفاده کنید.
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,شخصی سازی...
DocType: Print Format,Align Labels to the Right,برچسب ها را به سمت راست تقسیم کنید
DocType: Assignment Rule,Disabled,غیر فعال
@@ -1223,8 +1236,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,میانبرهای صفحه کلید
DocType: Post,Comments,نظرات
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,تایید
+DocType: Event Sync Log,Update Type,نوع بروزرسانی
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,در حال تأیید صحت ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,جمع کردن همه
+DocType: Event Producer,Last Update,اخرین بروزرسانی
apps/frappe/frappe/www/login.html,Forgot Password?,رمز عبور را فراموش کرده اید؟
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,شناسه
@@ -1263,6 +1278,7 @@ DocType: LDAP Settings,Password for Base DN,رمز عبور برای پایه DN
apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,جدول درست
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,ستون بر اساس
DocType: Workflow State,move,حرکت
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,ایجاد یک Consumer یا رویداد مصرف کننده برای سایت فعلی انجام نشد ، قبلاً ثبت شده است.
apps/frappe/frappe/model/document.py,Action Failed,شکست در عمل
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,برای کاربر
DocType: View Log,View log,مشاهده ورود به سیستم
@@ -1419,6 +1435,7 @@ DocType: DefaultValue,Key,کلید
DocType: Address,Contacts,اطلاعات تماس
DocType: System Settings,Setup Complete,راه اندازی کامل
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,گزارش تمام سهام سند
+DocType: Event Consumer,Callback URL,URL پاسخ به تماس
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",الگوی واردات باید از نوع ccv ، xxx یا xx باشد
apps/frappe/frappe/www/update-password.html,New Password,رمز عبور جدید
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,فیلتر {0} از دست رفته
@@ -1482,7 +1499,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,م
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,؛ در شرایط مجاز نیست
DocType: Async Task,Async Task,async است وظیفه
DocType: Workflow State,picture,تصویر
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,تکمیل
+DocType: Scheduled Job Log,Complete,تکمیل
DocType: DocType,Image Field,تصویر درست
DocType: Print Format,Custom HTML Help,سفارشی HTML راهنما
DocType: LDAP Settings,Default Role on Creation,نقش پیش فرض در آفرینش
@@ -1507,6 +1524,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,کمک در جستجو
DocType: Milestone,Milestone Tracker,ردیاب نقطه عطف
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ثبت نام اما غیر فعال
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,آدرس باید به یک شرکت مرتبط شود. لطفاً در جدول پیوندهای زیر یک ردیف برای شرکت اضافه کنید.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,تکرار خودکار برای این سند غیرفعال شده است.
DocType: DocType,Hide Copy,مخفی کپی
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,پاک کردن تمام نقش
@@ -1549,7 +1567,6 @@ DocType: Data Migration Run,Total Pages,تعداد صفحات
DocType: DocField,Attach Image,ضمیمه تصویر
DocType: Workflow State,list-alt,لیست ALT
apps/frappe/frappe/www/update-password.html,Password Updated,رمز عبور به روز رسانی
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> مجوزهای کاربر
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,مراحل تأیید ورود شما
apps/frappe/frappe/utils/password.py,Password not found,رمز عبور یافت نشد
DocType: Webhook,Webhook Secret,راز وب
@@ -1564,8 +1581,6 @@ DocType: Website Settings,Brand,مارک
apps/frappe/frappe/config/integrations.py,Google API Settings.,تنظیمات API Google.
DocType: Report,Query Report,گزارش پرس و جو
DocType: User,Set New Password,تنظیم کلمه عبور جدید
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",٪ s از فرمت گزارش معتبر نیست. فرمت گزارش باید یکی از موارد زیر٪ S \
DocType: Chat Message,Chat,گپ زدن
DocType: LDAP Group Mapping,LDAP Group Mapping,نقشه برداری گروه LDAP
DocType: Dashboard Chart,Chart Options,گزینه های نمودار
@@ -1597,7 +1612,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,رمز ع
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox به دسترسی راز
DocType: Tag Link,Document Title,عنوان اسناد
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(اجباری، الزامی)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پیش
DocType: Social Login Key,Social Login Provider,ارائه دهنده خدمات اجتماعی
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,اضافه کردن یکی دیگر از نظر
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,هیچ داده ای در فایل یافت نشد لطفا فایل جدید با داده را دوباره نصب کنید.
@@ -1644,6 +1658,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",انت
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 سال
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,حذف دائم {0}؟
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,همان فایل در حال حاضر به رکورد متصل
+DocType: Event Sync Log,Synced,همگام سازی
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} دولت کار جریان معتبر نیست. لطفا گردش کار خود را به روز کنید و دوباره امتحان کنید.
DocType: Workflow State,wrench,اچار فرانسه
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,تنظیم نشده
@@ -1739,6 +1754,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,بیشترین طول
DocType: Print Format,Jinja,جینجا
DocType: Workflow State,map-marker,نقشه نشانگر
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,پیکربندی نقشه برداری بین دو دکترین.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ثبت کردن شماره
DocType: Event,Repeat this Event,تکرار این رویداد
DocType: Address,Maintenance User,کاربر نگهداری
@@ -1794,6 +1810,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,تست آدرس ایمیل
DocType: Auto Repeat,Reference Document Type,مرجع نوع سند
DocType: ToDo,Sender,فرستنده
+DocType: Event Consumer,Incoming Change,تغییر ورودی
DocType: Google Drive,Backup Folder Name,نام پوشه پشتیبان
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,خطا هنگام ارزیابی اعلان {0}. لطفا قالب خود را اصلاح کنید
DocType: GSuite Settings,Google Apps Script,اسکریپت برنامه گوگل
@@ -1854,9 +1871,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,نام
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,برای تأیید درخواست ، روی پیوند زیر کلیک کنید
DocType: Workflow State,align-left,تراز چپ
DocType: Onboarding Slide,Action Settings,تنظیمات عملکرد
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,تنظیم> کاربر
DocType: User,Defaults,پیش فرض
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",برای مقایسه ، از> 5 ، <10 یا 324 استفاده کنید. برای محدوده ها ، از 5:10 (برای مقادیر بین 5 تا 10) استفاده کنید.
DocType: Energy Point Log,Revert Of,برگرداندن از
+DocType: Document Type Mapping,Field Mapping,نقشه برداری درست
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ادغام با موجود
DocType: User,Birth Date,تاریخ تولد
DocType: Communication Link,Link Title,عنوان لینک
@@ -1884,6 +1902,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,پیوند برچسب
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,یکپارچگی زنجیره
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,در آزمون
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 واحد پول = [?] بخش برای مثال 1 دلار = 100 سنت است
DocType: Data Import,Partially Successful,بخشی از موفقیت
@@ -1893,6 +1912,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,نگاشتهای گروه LDAP
DocType: Chat Message Attachment,Chat Message Attachment,پیوست پیغام چت
DocType: LDAP Settings,Path to CA Certs File,مسیر فایل گواهی CA
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,در صورت داشتن نام های مختلف در قسمت تولیدکننده و مصرف کننده ، این را بررسی کنید و نقشه برداری را تنظیم کنید
DocType: Address,Manipur,مانیپور
DocType: Web Form Field,Allow Read On All Link Options,اجازه خواندن در تمام گزینه های لینک
DocType: DocType,Database Engine,موتور پایگاه داده
@@ -2023,6 +2043,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,یادداشت
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,گزارش خطا
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,صادرات داده ها در قالب CSV / اکسل.
+DocType: Document Type Field Mapping,Document Type Field Mapping,نقشه نوع فیلد سند
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,تنظیم اسناد جستجوی جهانی.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,پرونده های تأیید اعتبار که می توانید استفاده کنید عبارتند از:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} در حال حاضر وجود دارد. نام دیگری را انتخاب کنید
@@ -2096,7 +2117,6 @@ DocType: Workflow State,Upload,بارگذاری
DocType: User Permission,Advanced Control,کنترل پیشرفته
DocType: System Settings,Date Format,قالب تاریخ
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,منتشر نشده
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,هیچ الگوی پیش فرض آدرس یافت نشد. لطفاً یک مورد جدید از Setup> چاپ و برندسازی> الگوی آدرس ایجاد کنید.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",عملیات برای گردش کار (به عنوان مثال تایید، لغو).
DocType: Data Import,Skip rows with errors,ردیف ها را با اشتباه پر کن
DocType: Workflow State,flag,پرچم
@@ -2157,6 +2177,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,نشان دهنده ایالات مجاز در یک سند و نقش داده شده به تغییر دولت است.
DocType: Data Migration Connector,Database Name,نام پایگاه داده
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,فرم تازه کردن
+DocType: Event Producer,Event Producer,تهیه کننده رویداد
DocType: DocField,Select,انتخاب
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,مشاهده کامل گزارش
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",بیان ساده پایتون ، مثال: status == 'Open' و نوع == 'اشکال'
@@ -2270,6 +2291,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,کد QR برا
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,اضافه کردن به برای انجام
DocType: Footer Item,Company,شرکت
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},میانگین {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,معاملات موفق
DocType: Scheduled Job Log,Scheduled,برنامه ریزی
DocType: User,Logout from all devices while changing Password,خروج از همه دستگاه ها هنگام تغییر رمز عبور
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,تائید رمز عبور
@@ -2378,6 +2400,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,ماه
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: اضافه کردن Reference: {{ reference_doctype }} {{ reference_name }} برای ارسال سند مرجع
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,فقط کاربرانی که در این سند نقش دارند لیست شده اند
DocType: DocField,Fetch From,واکشی از
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> سفارشی کردن فرم
apps/frappe/frappe/modules/utils.py,App not found,برنامه یافت نشد
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},نمی توانید ایجاد یک {0} در برابر یک سند کودک: {1}
DocType: Social Login Key,Social Login Key,کلید ورود به سیستم اجتماعی
@@ -2388,7 +2411,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,پیا
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,خانه اجتماعی
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},قرار دادن به عنوان پس می توانید تنظیم شود {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,اشتراک {0} با
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ایمیل راه اندازی حساب کاربری لطفا رمز عبور خود را وارد کنید:
DocType: Workflow State,hand-up,دست تا
DocType: Blog Settings,Writers Introduction,نویسندگان مقدمه
DocType: Address,Phone,تلفن
@@ -2446,7 +2468,7 @@ DocType: Web Page,Insert Style,درج سبک
DocType: Prepared Report,Error Message,پیغام خطا
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,نام گزارش جدید
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,پنهان کردن آخر هفته ها
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,اسناد تکرار به صورت خودکار تولید می کند.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,اسناد تکرار به صورت خودکار تولید می کند.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,است
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,اطلاعات ثبت نام
@@ -2454,7 +2476,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,ارز
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",چگونه باید این ارز فرمت شود؟ اگر تنظیم نشود، خواهد پیش فرض سیستم استفاده کنید
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ارسال اسناد {0}؟
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,شما باید به سیستم وارد شوید و نقش سیستم مدیریت قادر به دسترسی برای پشتیبان گیری داشته باشید
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","خطایی در اتصال به برنامه سینی QZ Tray ...
برای استفاده از ویژگی چاپ خام ، باید برنامه QT Tray را نصب و اجرا کنید.
برای بارگیری و نصب QZ Tray اینجا کلیک کنید .
برای کسب اطلاعات بیشتر در مورد چاپ خام اینجا کلیک کنید ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,نقشه برداری چاپگر
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,لطفا قبل از اتصال را نجات دهد.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,آیا می خواهید کلیه اسناد مرتبط را لغو کنید؟
@@ -2482,6 +2503,7 @@ DocType: Role Permission for Page and Report,Set Role For,تنظیم نقش بر
DocType: GCalendar Account,The name that will appear in Google Calendar,نامی که در Google Calendar ظاهر می شود
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,اتاق مستقیم با {0} در حال حاضر وجود دارد.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,تازه کردن ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},لطفا مقادیر فیلتر تعیین شده برای نمودار داشبورد را بررسی کنید: {}
DocType: Event,Starts on,شروع می شود در
DocType: System Settings,System Settings,تنظیمات سیستم
DocType: GCalendar Settings,Google API Credentials,اعتبار گوگل API
@@ -2505,6 +2527,7 @@ DocType: Workflow State,ok-sign,OK-علامت
apps/frappe/frappe/config/settings.py,Deleted Documents,اسناد حذف شده
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,فرمت CSV حساس به حروف است
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,دسکتاپ آیکون قبلا وجود داشته
+DocType: Event Consumer Document Type,Approval Status,وضعیت تایید
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,اسلایدها را در چه حوزه هایی مشخص کنید. اگر چیزی مشخص نشده باشد ، اسلاید به طور پیش فرض در همه حوزه ها نشان داده می شود.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,تکراری
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: زمینه {1} در ردیف {2} نمی تواند بدون پیش فرض پنهان و اجباری شود
@@ -2524,6 +2547,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,راهنما مقاله
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,نوع:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,پرداخت شما ناموفق بوده است.
+DocType: Event Producer,Producer URL,URL تولید کننده
DocType: Comment,Unshared,اشتراک گذاشتن
DocType: Address,Karnataka,کارناتاکا
apps/frappe/frappe/desk/moduleview.py,Module Not Found,ماژول پیدا نشد
@@ -2535,6 +2559,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,واگذاری های انجام شده
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},فله ویرایش {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,گزارش دانلود
+apps/frappe/frappe/model/workflow.py,Workflow Status,وضعیت گردش کار
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,فعال نیست
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,فقط سرپرست مجاز به ایجاد منابع نمودار داشبورد است
DocType: About Us Settings,Settings for the About Us Page,تنظیمات برای درباره ما صفحه
@@ -2592,6 +2617,7 @@ DocType: User Social Login,User Social Login,ورودی کاربر اجتماع
DocType: Contact,All,همه
DocType: Email Queue,Recipient,گیرنده
DocType: Webhook,Webhook Security,امنیت Webhook
+DocType: Event Sync Log,Producer Document Name,نام سند سازنده
DocType: Communication,Has Attachment,دارای فایل پیوست
DocType: Address,Sales User,فروش کاربر
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,کشیدن و رها کردن ابزار برای ساخت و سفارشی فرمت چاپ.
@@ -2626,6 +2652,7 @@ DocType: Address,Arunachal Pradesh,آروناچال پرادش
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,جداول کودک در DocTypes های دیگر به عنوان یک شبکه نشان داده شده است
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,راه اندازی خودکار ایمیل
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,کلیدهای Ctrl + پایین
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,سایتی که می خواهید برای مصرف رویدادها در آن مشترک شوید.
DocType: Chat Profile,Message Preview,پیش نمایش پیام
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,این رمز مشترک از بالا به 10 است.
DocType: User,User Defaults,به طور پیش فرض کاربر
@@ -2658,6 +2685,7 @@ DocType: Dashboard Chart,Last Synced On,آخرین همگام سازی روشن
DocType: Comment,Comment Type,نظر نوع
DocType: OAuth Client,OAuth Client,OAuth حفظ مشتری
DocType: Assignment Rule,Users,کاربران
+DocType: Document Type Mapping,Local Document Type,نوع سند محلی
DocType: Address,Odisha,اوریسا
DocType: Report,Report Type,نوع گزارش
DocType: DocField,Signature,امضا
@@ -2698,6 +2726,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} خود این وظیفه را اختصاص داده است: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,کشور شما
DocType: Assignment Rule Day,Sunday,یکشنبه
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",ثبت اسناد درج ، به روزرسانی و حذف در سایت سازنده رویداد برای اسنادی که مصرف کننده دارند.
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,جدول رده بندی
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,در شبکه نمایش
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,هیچ فعالیتی بیشتر
@@ -2838,7 +2867,6 @@ DocType: Web Page,Sidebar and Comments,نوار کناری و نظرات
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",هنگامی که شما اصلاح سند پس از لغو و ذخیره آن، آن را به یک شماره جدید این است که یک نسخه از شماره قدیمی دریافت کنید.
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings",مجاز به ضمیمه {0} سند نیست، لطفا اجازه دهید چاپ برای {0} در تنظیمات چاپ فعال شود
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل تنظیم نشده است. لطفاً یک حساب کاربری جدید از طریق تنظیمات> ایمیل> حساب ایمیل ایجاد کنید
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},سند را در {0} مشاهده کنید
DocType: Stripe Settings,Publishable Key,کلید انتشار
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,شروع واردات
@@ -2913,7 +2941,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,اطلاعات:
DocType: Custom Field,Permission Level,سطح اجازه
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: آیا می توانم تنظیم نشده ارسال، لغو، اصلاح بدون نوشتن
DocType: List View Setting,Disable Count,تعداد را غیرفعال کنید
-DocType: Google Maps Settings,Client Key,کلید مشتری
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,آیا شما مطمئن هستید که میخواهید فایل پیوست را حذف کنید؟
apps/frappe/frappe/__init__.py,Thank you,متشکرم
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,پس انداز
@@ -3036,6 +3063,7 @@ DocType: Workflow Document State,Only Allow Edit For,تنها اجازه می د
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,پشتیبان گیری از Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},فیلد اجباری: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,اسم شما
+DocType: Event Producer Document Type,Event Producer Document Type,نوع سند تولید کننده رویداد
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,موفقیت اتصال
DocType: DocType,InnoDB,سازی InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,یک اسلاید در حال حرکت از نوع اسلاید ادامه همچنان موجود است.
@@ -3104,6 +3132,7 @@ DocType: Address,Postal Code,کد پستی
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,ارتباطات پیوند دهید
DocType: Translation,Contributed,مشارکت کرد
apps/frappe/frappe/config/customization.py,Form Customization,سفارشی سازی فرم
+DocType: Event Update Log,Event Update Log,گزارش بروزرسانی رویداد
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,هیچ جلسه فعال
DocType: Web Form,Route to Success Link,مسیر پیوند موفق
DocType: Onboarding Slide Field,Right,راست
@@ -3129,7 +3158,7 @@ DocType: Website Settings,Chat Operators,اپراتورهای چت
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,لطفا مطمئن شوید که هیچ ستون خالی در فایل وجود دارد.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,اگر مراحل مختلفی را پشت سر بگذارد ، نقاط عطف چرخه عمر یک سند را ردیابی می کند.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,اگر مراحل مختلفی را پشت سر بگذارد ، نقاط عطف چرخه عمر یک سند را ردیابی می کند.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",تغییر پرونده ها و جایگزین کردن کد در کنترل کننده ها ، لطفاً بررسی کنید!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,لطفا اطمینان حاصل شود که نمایه شما به یک آدرس ایمیل
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,تغییرات ذخیره نشدهای در این فرم. لطفا قبل از ادامه ذخیره کنید.
@@ -3154,7 +3183,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,راز ذخیره راز ذخیره:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},می توانید سند را لغو پیوند نمی: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,می توانید یک گزارش استاندارد را ویرایش کنید. لطفا کپی و ایجاد یک گزارش جدید
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address",شرکت اجباری است، آن را به عنوان آدرس شرکت شما است
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}",به عنوان مثال: اگر می خواهید شامل ID سند، استفاده از {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},انتخاب ستون های جدول برای {0}
DocType: Custom Field,Options Help,گزینه های راهنما
@@ -3162,7 +3190,6 @@ DocType: Footer Item,Group Label,برچسب گروه
DocType: Kanban Board,Kanban Board,Kanban و انجمن
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,مخاطبین Google پیکربندی شده است.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 رکورد صادر می شود
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,هیچ حساب ایمیل مرتبط با کاربر نیست. لطفاً یک حساب کاربری در زیر کاربر> صندوق پست الکترونیکی اضافه کنید.
DocType: DocField,Report Hide,گزارش مخفی
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},نمای درختی برای در دسترس نیست {0}
DocType: DocType,Restrict To Domain,محدود به DOMAIN
@@ -3224,7 +3251,9 @@ DocType: DocField,Fold,تاه
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,فرمت استاندارد چاپ نمی تواند به روز شود
DocType: System Settings,In Days,در روزها
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,از دست دادن
+DocType: Event Producer Document Type,Has Mapping,نقشه برداری دارد
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,لطفا مشخص کنید
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,مقدار فیلتر نامعتبر است
DocType: Comment,Bot,ربات
DocType: Help Article,Help Article,راهنما مقاله
DocType: Page,Page Name,صفحه نام
@@ -3329,7 +3358,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,چاپ فرمت
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,نمایشگر شبکه را تغییر دهید
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,به رکورد بعدی بروید
-DocType: System Settings,Time Format,قالب زمان
+DocType: Country,Time Format,قالب زمان
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,اعتبار دروازه پرداخت نامعتبر
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,این فایل قالب است که فقط با ردیف دارای خطا تولید می شود. شما باید از این فایل برای اصلاح و وارد کردن استفاده کنید.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,اجازه انتخاب در نوع مستندات و نقش
@@ -3638,6 +3667,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,مجاز به ورود به سیستم با استفاده از نام کاربری
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,فعال گزارش
DocType: DocField,Display Depends On,ها بستگی به
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پیش
DocType: Social Login Key,API Endpoint,نقطه پایانی API
DocType: Web Page,Insert Code,قرار دادن کد
DocType: Data Migration Run,Current Mapping Type,نوع نقشه فعلی
@@ -3691,6 +3721,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ت
apps/frappe/frappe/www/login.html,Or login with,و یا برای ورود با
DocType: Error Snapshot,Locals,مردم محلی
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ارتباط از طریق {0} در {1}: {2}
+DocType: Event Producer,Event Producer Document Types,انواع اسناد تولید کننده رویداد
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,لطفاً حساب پیش فرض پست الکترونیکی را از تنظیم> ایمیل> حساب ایمیل تنظیم کنید
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,انتخاب گروه توسط ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,به عنوان مثال (55 + 434) / 4 = OR Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} مورد نیاز است
@@ -3719,9 +3751,11 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,گزارش زمان شروع
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,صادرات داده ها
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,ثبت هر رویدادی که به همراه وضعیت همگام سازی مصرف می شود و یک دکمه Resync در همگام سازی پرونده از بین می رود.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,انتخاب ستون
DocType: Translation,Source Text,منبع متن
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,این یک گزارش پس زمینه است. لطفا فیلترهای مناسب را تنظیم کرده و سپس یک مورد جدید ایجاد کنید.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل تنظیم نشده است. لطفاً یک حساب کاربری جدید از طریق تنظیم> ایمیل> حساب ایمیل ایجاد کنید
apps/frappe/frappe/www/login.py,Missing parameters for login,پارامترهای از دست رفته برای ورود
DocType: Workflow State,folder-open,پوشه باز
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",پس از ارسال ، اسناد تسلیم شده قابل تغییر نیستند. آنها فقط می توانند لغو و اصلاح شوند.
@@ -3798,6 +3832,7 @@ DocType: Event,Send an email reminder in the morning,ارسال یک ایمیل
DocType: Blog Post,Published On,منتشر شده در
DocType: Contact,Gender,جنس
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,اطلاعات اجباری از دست رفته:
+DocType: Event Consumer,Event Subscriber,مشترکین رویداد
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,بررسی URL درخواست
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,تنها 200 درج مجاز در یک درخواست
DocType: Footer Item,URL,URL
@@ -3810,6 +3845,7 @@ DocType: Auto Email Report,Half Yearly,نیمی سالانه
DocType: Communication,Marked As Spam,اسپم
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},بعضی از مشکل با آدرس فایل وجود دارد: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,درخت
+DocType: Event Producer Document Type,Use Same Name,از همان نام استفاده کنید
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,چاپ این گزارش برای شما امکان پذیر نیست
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,مجوز کاربر
DocType: Workflow State,warning-sign,علامت هشدار دهنده
@@ -3819,6 +3855,7 @@ DocType: Workflow State,User,کاربر
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",نمایش عنوان در پنجره مرورگر به عنوان "پیشوند - عنوان"
DocType: Payment Gateway,Gateway Settings,تنظیمات دروازه
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,متن در نوع سند
+DocType: Event Sync Log,Event Sync Log,ورود به سیستم همگام سازی رویداد
apps/frappe/frappe/handler.py,Logged Out,از سیستم خارج
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,بیش...
DocType: System Settings,User can login using Email id or Mobile number,کاربر می تواند با استفاده از شناسه ورود ایمیل و یا شماره تلفن همراه
@@ -3857,12 +3894,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,نه در
DocType: Workflow State,star,ستاره
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,قطب
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,اگر این بررسی شود ، اسناد به همان نامی که در سایت تولید کننده رویداد دارند ، دارند
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,ارزش با کاما جدا شده
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},عرض حداکثر برای نوع ارز را 100px در ردیف {0}
apps/frappe/frappe/config/website.py,Content web page.,صفحه وب محتوا.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,اضافه کردن یک نقش جدید
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,بازدید از صفحه وب
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,تکلیف جدید
+DocType: Event Consumer Document Type,Approved,تایید
DocType: Google Contacts,Last Sync On,آخرین همگام سازی در
DocType: Deleted Document,Deleted Document,سند حذف
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,وای! چیزی را اشتباه رفت
@@ -3912,7 +3951,6 @@ DocType: Communication,Communication Type,نوع ارتباطات
DocType: DocField,Unique,منحصر به فرد
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,موفقیت جزئی
DocType: Email Account,Service,سرویس
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,تنظیم> کاربر
DocType: File,File Name,نام پرونده
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),آیا پیدا کند {0} برای {0} ({1})
apps/frappe/frappe/utils/bot.py,"Oops, you are not allowed to know that",اوه، شما امکان پذیر نیست می دانم که
@@ -3923,11 +3961,10 @@ DocType: Calendar View,Calendar View,نمایش تقویم
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,ویرایش قالب
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,ثبت نام کامل
DocType: GCalendar Settings,Enable,قادر ساختن
-DocType: Google Maps Settings,Home Address,آدرس خانه
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),شما فقط می توانید تا 5000 پرونده در یک آپلود کنید. (ممکن است در برخی از موارد کمتر باشد)
DocType: Report,"output in the form of `data = [columns, result]`",خروجی به شکل 'data = [ستون ، نتیجه] `
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,انواع اسناد قابل اجرا
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,برای تکالیف کاربر قوانینی تنظیم کنید.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,برای تکالیف کاربر قوانینی تنظیم کنید.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},مجوز ناکافی برای {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),گزارش ذخیره نشد (بودند خطاهای وجود دارد)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,محتوای هدر را نمیتوان تغییر داد
diff --git a/frappe/translations/fi.csv b/frappe/translations/fi.csv
index 3914dd06c6..382401295b 100644
--- a/frappe/translations/fi.csv
+++ b/frappe/translations/fi.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Tämä rooli päivittää käyttöoikeudet käyttäjälle
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Nimeä {0}
DocType: Workflow State,zoom-out,loitonna
-DocType: Data Import Beta,Import Options,Tuo asetukset
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,ei voi avata {0} sillä esimerkki on auki
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Taulukko {0} ei voi olla tyhjä
DocType: SMS Parameter,Parameter,Parametri
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Peru
DocType: DocType,Is Published Field,Julkaistaan Field
DocType: GCalendar Settings,GCalendar Settings,GCalendar-asetukset
DocType: Email Group,Email Group,Sähköposti Group
-apps/frappe/frappe/__init__.py,Only for {},Vain {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google-kalenteri - Tapahtumaa {0} ei voitu poistaa Google-kalenterista, virhekoodi {1}."
DocType: Event,Pulled from Google Calendar,Poistettu Google-kalenterista
DocType: Note,Seen By,Nähnyt
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Lisää useita
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ei kelvollinen käyttäjäkuva.
DocType: Energy Point Log,Reverted,Palautettu
DocType: Success Action,First Success Message,Ensimmäinen menestysviesti
+DocType: Document Type Mapping,Document Type Mapping,Asiakirjan tyypin kartoitus
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ei niinkuin
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},virheellinen arvo : {0} täytyy olla {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","muuta kentän ominaisuuksia (piilota, vain luku, oikeus jne)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,"Sivusto, joka kuluttaa tapahtumiasi."
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,arvostaa
DocType: Notification Settings,Document Share,Asiakirjan jakaminen
DocType: Workflow State,lock,lukko
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Loki
DocType: Workflow State,indent-right,luetelmakohta-oikeus
DocType: Has Role,Has Role,on rooli
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Aika sekunneissa säilyttää QR-kuvatiedosto palvelimella. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Kenttätyyppiä {1} {2} ei voida indeksoida
DocType: Dashboard Chart,Timespan,Aikajänne
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Verkkosivu linkki
DocType: Deleted Document,Restored,palautettu
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Virhe yhteyden muodostamisessa QZ-lokerosovellukseen ...
Raaka tulostustoiminnon käyttäminen edellyttää, että QZ Tray -sovellus on asennettu ja käynnissä.
Lataa ja asenna QZ-lokero napsauttamalla tätä .
Napsauta tätä saadaksesi lisätietoja Raw-tulostamisesta ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuutti sitten
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",Rooleilla joilla on oikeus muokata käyttäjän oikeuksia voivat asettaa oikeuksia muille käyttäjille (paitsi järjestelmänhaltijalle) tällä Dokumenttityypillä.
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Määritä teema
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,UNSEEN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Tiedostonhallinta
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML-otsikko, robotit ja uudelleenohjaukset"
DocType: GCalendar Account,Refresh Token,Päivitä Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Yhteys tapahtumien tuottaja -sivustoon epäonnistui. Yritä uudelleen jonkin ajan kuluttua.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Tällä sivustolla ei ole odottavia tai nykyisiä töitä
DocType: Webhook,Doc Event,Doc-tapahtuma
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Script Manager
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Ei toimintaa
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Kolmannen osapuolen sovellukset
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Ensimmäisestä käyttäjästä tulee järjestelmän pääkäyttäjä (voit muuttaa asetusta myöhemmin)
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Voit yrittää muuttaa raportin suodattimia.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Ei tapahtumia tänään
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Et voi antaa arvostelupisteitä itsellesi
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType: n on oltava Submittable valitulle Doc-tapahtumalle
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,"Et voi lähettää sähköposteja, jotka liittyvät tähän dokumenttiin"
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Valitse atleast 1 sarake {0} lajitella / ryhmä
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Ei sallittu {0}: {1}. Rajoitettu kenttä: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Yritystä ei ole linkitetty
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Valitse tämä jos testaat maksun avulla Sandbox API
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Verkkosivuston perusteemaa ei voi poistaa
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Luo ensimmäinen {0}
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Päivity
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,"Inboarding Slide {0}, jolla on sama diajärjestys, on jo olemassa"
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,poista raportti käytöstä
DocType: Translation,Contributed Translation Doctype Name,Osallistettu käännösdoktyypin nimi
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Asennus> Mukauta lomaketta
DocType: PayPal Settings,Redirect To,uudelleenohjata
DocType: Data Migration Mapping,Pull,Vedä
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},formaatti JavaScript: frappe.query_reports ['raportin_nimi'] = {}
@@ -272,6 +276,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Ei sallittu
DocType: DocShare,Internal record of document shares,sisäinen tietue asiakirjojen jaosta
DocType: Energy Point Settings,Review Levels,Tarkista tasot
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Asennus> Käyttäjän oikeudet
DocType: Workflow State,Comment,Kommentti
DocType: Data Migration Plan,Postprocess Method,Jälkiprosessimenetelmä
DocType: DocType Action,Action Type,Toiminnan tyyppi
@@ -321,13 +326,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Nä
DocType: Workflow State,remove-circle,poista-ympyrä
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profiilini
DocType: Help Article,Beginner,Aloittelija
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Tämä toiminto on sallittu vain {}
DocType: Contact,Is Primary Contact,ensisijainen yhteystieto
+DocType: Event Consumer,Event Consumer,Tapahtuman kuluttaja
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript liittää pään osioon.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Lisää / päivitä
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Ei sallittu tulostaa asiakirjaluonnokset
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Palauta oletukset
DocType: Workflow,Transition Rules,siirto säännöt
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Näytetään vain ensimmäiset {0} riviä esikatselussa
apps/frappe/frappe/core/doctype/report/report.js,Example:,esimerkki:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,rajoitukset
DocType: Workflow,Defines workflow states and rules for a document.,Määrittää dokumentille työketjun vaiheet ja säännöt.
@@ -476,7 +482,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Toista kunnes
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Uusi
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Sinun on luotava nämä ensin:
-DocType: Google Maps Settings,Google Maps Settings,Google Mapsin asetukset
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Ladataan ...
DocType: DocField,Password,Salasana
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Järjestelmä päivitetään. Lataa uudelleen hetken kuluttua
@@ -568,6 +573,7 @@ DocType: System Settings,mm/dd/yyyy,pp / kk / vvvv
DocType: Onboarding Slide,Onboarding Slide,Liukukisko
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Väärä salasana:
DocType: Print Settings,Send document web view link in email,Lähetä asiakirja web näkymä linkki sähköpostiin
+DocType: Event Consumer Document Type,Event Consumer Document Type,Tapahtuman kuluttajaasiakirjatyyppi
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Edellinen
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Vaadi luotettava varmenne
@@ -643,6 +649,7 @@ DocType: Workflow State,volume-down,volyymi-alas
DocType: Onboarding Slide,Help Links,Ohjelinkit
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Tästä IP-osoitteesta pääsy ei ole sallittua
DocType: Notification Settings,Enable Email Notifications,Ota sähköposti-ilmoitukset käyttöön
+DocType: Document Type Field Mapping,Event Streaming,Tapahtumien suoratoisto
apps/frappe/frappe/desk/reportview.py,No Tags,Ilman tagia
DocType: Email Account,Send Notification to,Lähetä ilmoitus
DocType: DocField,Collapsible,Kokoontaitettava
@@ -659,11 +666,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Suod
apps/frappe/frappe/database/database.py,No conditions provided,Ei olosuhteita
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y-akselin kentät
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Lajittelu kenttä {0} täytyy olla kelvollinen fieldname
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Oletusosoitemallia ei löytynyt. Luo uusi kansiosta Asetukset> Tulostaminen ja tuotemerkit> Osoitemalli.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Lisää
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Luo uusi tietue
DocType: Contact,Sales Manager,Myynnin ylläpitäjä
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Nimeä uudelleen
DocType: Print Format,Format Data,muototiedot
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} ei ole kelvollinen raporttimuoto. Raportin muodon tulisi olla jokin seuraavista {1}
DocType: List Filter,Filter Name,Suodattimen nimi
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,niinkuin
DocType: Assignment Rule,Automation,automaatio
@@ -682,6 +691,7 @@ DocType: User,Reset Password Key,Nollaa salasana Key
DocType: Dashboard Chart,All Time,Koko ajan
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Laittoman asiakirjan tila {0}
DocType: Email Account,Enable Auto Reply,aktivoi automaattivastaus
+apps/frappe/frappe/desk/query_report.py,No data to export,Ei vietäviä tietoja
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ei Seen
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Yhdessä tulostusmuodossa ei voi olla useita tulostimia.
DocType: Workflow State,zoom-in,lähennä
@@ -832,6 +842,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Vaihda kä
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Ensimmäinen
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Päivitä käännökset
DocType: Error Snapshot,Exception,Poikkeus
+DocType: Event Consumer,Event Consumer Document Types,Tapahtumaasiakirjatyypit
DocType: Email Account,Use IMAP,Käytä IMAP-menettelyä
DocType: Activity Log,Activity Log,aktiivisuus loki
DocType: View Log,Viewed By,Katsottu
@@ -870,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ase
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Määritä kaaviot
DocType: User,Last IP,Viimeinen IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Lisää aihe sähköpostiin
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Virheelliset tapahtumat
DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} palautti {1}
DocType: Email Account,Track Email Status,Seuraa sähköpostin tilaa
@@ -900,6 +912,7 @@ DocType: Email Queue,Attachments,Liitteet
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Sinulla ei ole oikeuksia käyttää tätä dokumenttia
DocType: Language,Language Name,Kielen Nimi
DocType: Email Group Member,Email Group Member,Sähköposti Group jäsen
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ei käyttäjän tiliä. Lisää tili kohtaan Käyttäjä> Sähköpostin saapuneet.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Tilisi on lukittu ja se jatkuu {0} sekunnin kuluttua
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Käyttäjien oikeuksia käytetään rajoittamaan käyttäjiä tiettyihin tietueisiin.
DocType: Notification,Value Changed,Arvo muuttunut
@@ -991,6 +1004,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Mainitse tapaht
DocType: Help Article,Expert,Asiantuntija
DocType: Workflow State,circle-arrow-right,kierrä-nuoli-oikea
DocType: Role Profile,Role Profile,Rooliprofiili
+DocType: Document Type Mapping,Remote Document Type,Etäasiakirjan tyyppi
apps/frappe/frappe/permissions.py,Document Type is not importable,Asiakirjatyyppiä ei voi tuoda
DocType: LDAP Settings,LDAP Server Url,LDAP-palvelin URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,esimerkkiä ei voi avata silloin kun {0} on auki
@@ -1075,7 +1089,7 @@ DocType: Web Form,Allow Print,salli Print
DocType: Communication,Clicked,Napsautetaan
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Älä
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ei lupaa "{0}" {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Asenna oletus sähköpostitili kohdasta Asennus> Sähköposti> Sähköpostitili
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Näytetään vain ensimmäiset {0} riviä {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Aikataulun lähettää
DocType: DocType,Track Seen,Track Seen
DocType: Dropbox Settings,File Backup,Tiedoston varmuuskopiointi
@@ -1145,6 +1159,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,val
DocType: Data Export,Filter List,Suodatusluettelo
DocType: Data Export,Excel,kunnostautua
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Tapahtumien kokoonpanot
DocType: Email Account,Auto Reply Message,Auto Vastaa Message
DocType: Data Migration Mapping,Condition,ehto
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} tuntia sitten
@@ -1204,9 +1219,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Käytä läh
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Kirjaudu kommentoidaksesi
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,aloita tietojen syöttäminen tämän viivan alapuolelle
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},muuttuneita arvoja {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Sähköpostiosoitteen on oltava yksilöllinen, Sähköpostiosoite on jo olemassa \ for {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Vertailun vuoksi käytä> 5, <10 tai = 324. Käytä alueita 5:10 (arvoille välillä 5-10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Muokata ...
DocType: Print Format,Align Labels to the Right,Kohdista tarrat oikealle
DocType: Assignment Rule,Disabled,Passiivinen
@@ -1254,8 +1268,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Pikanäppäimet
DocType: Post,Comments,Kommentit
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,vahvista
+DocType: Event Sync Log,Update Type,Päivitystyyppi
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Varmennetaan ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Tiivistä kaikki
+DocType: Event Producer,Last Update,Viimeisin päivitys
apps/frappe/frappe/www/login.html,Forgot Password?,Unohtuiko salasana?
DocType: System Settings,yyyy-mm-dd,vvvv-kk-pp
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1296,6 +1312,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Taulukko F
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Sarakkeet perustuvat
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Tuodaan {0} {1}, {2}"
DocType: Workflow State,move,liikkua
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Tapahtumaasiakkaan tai tapahtuman kuluttajan luominen nykyiselle sivustolle on jo rekisteröity.
apps/frappe/frappe/model/document.py,Action Failed,Toimenpide epäonnistui
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,User
DocType: View Log,View log,Näytä loki
@@ -1458,6 +1475,7 @@ DocType: DefaultValue,Key,Näppäin
DocType: Address,Contacts,Yhteystiedot
DocType: System Settings,Setup Complete,Määritys valmis
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,raportti kaikista asiakirjan jakamisista
+DocType: Event Consumer,Callback URL,Takaisinsoitto-URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Tuontimallin tulee olla tyyppiä .csv, .xlsx tai .xls"
apps/frappe/frappe/www/update-password.html,New Password,Uusi salasana
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Suodatin {0} puuttuu
@@ -1523,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Men
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; kielletty kunnossa
DocType: Async Task,Async Task,Async Tehtävä
DocType: Workflow State,picture,kuva
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Täydellinen
+DocType: Scheduled Job Log,Complete,Täydellinen
DocType: DocType,Image Field,Kuva
DocType: Print Format,Custom HTML Help,Mukautettu HTML ohje
DocType: LDAP Settings,Default Role on Creation,Oletusrooli luomisessa
@@ -1549,6 +1567,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,(katso hakuohjeet)
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Rekisteröity mutta vammaiset
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Osoite on linkitettävä yritykseen. Lisää yritysrivi alla olevaan linkkitaulukkoon.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Tämän asiakirjan automaattinen uusinta on poistettu käytöstä.
DocType: DocType,Hide Copy,piilota kopio
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,tyhjennä kaikki roolit
@@ -1587,6 +1606,7 @@ DocType: Bulk Update,Field,Ala
DocType: Communication,Received,Vastaanotettu
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Laukaise kutsuttaessa metodia kuten ""before_insert"", ""after_update"" tms. (metodin nimi riippuu valitusta tietuetyypistä)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},muutettu arvo {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},Kirjoita sähköpostitilin asetukset kirjoittamalla salasanasi: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"lisää järjestelmähallinta tälle käyttäjälle, tulee olla vähintään yksi järjestelmähallinta käyttäjä"
DocType: Chat Message,URLs,URL-osoitteita
DocType: Data Migration Run,Total Pages,Sivut yhteensä
@@ -1594,7 +1614,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Kuvaliite
DocType: Workflow State,list-alt,list-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Salasana päivitetty
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Asennus> Käyttäjän oikeudet
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Varmista kirjautumistesi vaiheet
apps/frappe/frappe/utils/password.py,Password not found,Salasanaa ei löydetty
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1610,8 +1629,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API -asetu
DocType: Report,Query Report,Raporttikysely
DocType: User,Set New Password,Aseta uusi salasana
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ei sallittu {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S ei ole kelvollinen raportin muodossa. Raportti muoto olisi \ jokin seuraavista% s
DocType: Chat Message,Chat,Pikaviestintä
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Yhtään asiakirjaa ei löytynyt merkinnällä {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-ryhmän kartoitus
@@ -1646,7 +1663,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,syötä s
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox pääsy salaus
DocType: Tag Link,Document Title,Asiakirjan otsikko
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Pakollinen)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vuosi sitten
DocType: Social Login Key,Social Login Provider,Sosiaalisen kirjautumisen tarjoaja
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Lisää toinen kommentti
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Tiedostossa ei löytynyt tietoja. Liitä uusi tiedosto uudelleen.
@@ -1694,6 +1710,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Valits
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 vuosi
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Pysyvästi poista {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Sama tiedosto on jo liitetty tietueeseen
+DocType: Event Sync Log,Synced,synkronoitu
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ei ole kelvollinen työnkulun tila. Päivitä työnkulku ja yritä uudelleen.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,antoi {0} pistettä
DocType: Workflow State,wrench,jakoavain
@@ -1796,6 +1813,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,L
DocType: Web Form Field,Max Length,Enimmäispituus
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,map-merkki
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Kartoituskokoonpano kahden doktyypin välillä.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Vahvista aihe
DocType: Event,Repeat this Event,Toista tämä tapahtuma
DocType: Address,Maintenance User,Huollon peruskäyttäjä
@@ -1855,6 +1873,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test Sähköpostiosoite
DocType: Auto Repeat,Reference Document Type,Viite Asiakirjan tyyppi
DocType: ToDo,Sender,Lähettäjä
+DocType: Event Consumer,Incoming Change,Tuleva muutos
DocType: Google Drive,Backup Folder Name,Varmuuskopioidun kansion nimi
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Virhe arvioinnissa {0}. Korjaa mallisi.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1917,9 +1936,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Uusi tul
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Napsauta alla olevaa linkkiä hyväksyäksesi pyyntö
DocType: Workflow State,align-left,tasaa-vasen
DocType: Onboarding Slide,Action Settings,Toimintoasetukset
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Asennus> Käyttäjä
DocType: User,Defaults,oletukset
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Vertailun vuoksi käytä> 5, <10 tai = 324. Käytä alueita 5:10 (arvoille välillä 5-10)."
DocType: Energy Point Log,Revert Of,Palata
+DocType: Document Type Mapping,Field Mapping,Kenttäkartta
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Yhdistä nykyiseen
DocType: User,Birth Date,Syntymäaika
DocType: Communication Link,Link Title,Link Title
@@ -1947,6 +1967,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tag linkki
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Ketjun rehellisyys
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Testissä
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 valuutta = [?] murtoluku, esim 1 EUR = 100 snt"
DocType: Data Import,Partially Successful,Osittain onnistunut
@@ -1956,6 +1977,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP-ryhmän kartoitukset
DocType: Chat Message Attachment,Chat Message Attachment,Chat-viestiyhdistelmä
DocType: LDAP Settings,Path to CA Certs File,Polku CA-serttitiedostoon
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Jos asiakirjan tuottaja- ja kuluttaja-kentässä on eri kentänimet, tarkista tämä ja määritä kartoitus"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Salli kaikkien linkkien lukeminen
DocType: DocType,Database Engine,Database Engine
@@ -2088,6 +2110,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Muistiinpano
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Virheraportti
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Vie tiedot CSV / Excel-muodossa.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Asiakirjan tyyppikentän kartoitus
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Globaalin haun asiakirjojen määrittäminen.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Käytettävät todentamisohjelmat ovat:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} on jo olemassa. Valitse toinen nimi
@@ -2161,7 +2184,6 @@ DocType: Workflow State,Upload,Tuo
DocType: User Permission,Advanced Control,Advanced Control
DocType: System Settings,Date Format,Päivämäärän muoto
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Ei Julkaistu
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Oletusosoitemallia ei löytynyt. Luo uusi kansiosta Asetukset> Tulostaminen ja tuotemerkit> Osoitemalli.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Työketjun toiminnot (esim hyväksy, peru)"
DocType: Data Import,Skip rows with errors,"Ohita rivit, joissa on virheitä"
DocType: Workflow State,flag,lippu
@@ -2224,6 +2246,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,on tila yhdessä sallitussa asiakirjassa sekä hyväksytty rooli tilan muuttamiseksi
DocType: Data Migration Connector,Database Name,Tietokannan nimi
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Päivitä muoto
+DocType: Event Producer,Event Producer,Tapahtuman tuottaja
DocType: DocField,Select,Valitse
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Näytä koko loki
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Yksinkertainen Python-lauseke, esimerkki: status == 'Avaa' ja kirjoita == 'Vika'"
@@ -2324,6 +2347,7 @@ DocType: DocType,User Cannot Search,Käyttäjä ei voi hakea
DocType: Communication Link,Communication Link,Viestintälinkki
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Virheellinen Esitysmuoto
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Ei voi {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Toistuva {0} {1} on luotu sinulle automaattisen toiston {2} kautta.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,"käytä tätä sääntöä, jos käyttäjä on omistaja"
DocType: Global Search Settings,Global Search Settings,Globaalit hakuasetukset
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Tulee olemaan käyttäjätunnuksesi tunnus
@@ -2341,12 +2365,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kirjautumiskor
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Lisää To Do
DocType: Footer Item,Company,Yritys
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Keskimäärin {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Onnistuneet transaktiot
DocType: Scheduled Job Log,Scheduled,Aikataulutettu
DocType: User,Logout from all devices while changing Password,Kirjaudu ulos kaikista laitteista salasanan vaihtamisen aikana
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Vahvista salasana
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Virheitä havaittu
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Kirjoita asiakastunnus ja asiakassalaisuus Google-asetuksiin.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Sulje
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","Sähköpostitunnuksen on oltava yksilöivä, sähköpostitili on jo olemassa {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Dokumentin tilaa ei voi muuttaa 0 -> 2
DocType: File,Attached To Field,Liittyy kentälle
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Muuta
@@ -2452,6 +2478,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Kuukausi
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Lisää Reference: {{ reference_doctype }} {{ reference_name }} lähettämään asiakirjan viite
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Vain asiakirjaan osallistuvat käyttäjät luetellaan
DocType: DocField,Fetch From,Noudata
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Asennus> Mukauta lomaketta
apps/frappe/frappe/modules/utils.py,App not found,sovellusta ei löytynyt
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Ei voi luoda {0} dokumentille {1}
DocType: Social Login Key,Social Login Key,Sosiaalisen kirjautumisen avain
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat-vi
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Sosiaalinen koti
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Aseta jälkeen ei voida asettaa {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Jaa {0} kanssa
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Sähköposti Tiliasetusten kirjoita salasana:
DocType: Workflow State,hand-up,käsi-ylös
DocType: Blog Settings,Writers Introduction,Kirjoittajan esittely
DocType: Address,Phone,Puhelin
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,aseta tyyli
DocType: Prepared Report,Error Message,Virheviesti
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Uusi raportti nimi
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Piilota viikonloput
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Luo toistuvat asiakirjat automaattisesti.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Luo toistuvat asiakirjat automaattisesti.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,on
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-kyltti
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Arvo {0
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","miten tämä valuuttaa tulisi alustaa, ellei käytä järjestelän oletusasetuksia"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Lähetä {0} asiakirjoja?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Sinun tulee kirjautua sisään järjestelmänhallitsijan roolissa jotta voit käyttää varmuuskopioita.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Virhe yhteyden muodostamisessa QZ-lokerosovellukseen ...
Raaka tulostustoiminnon käyttäminen edellyttää, että QZ Tray -sovellus on asennettu ja käynnissä.
Lataa ja asenna QZ-lokero napsauttamalla tätä .
Napsauta tätä saadaksesi lisätietoja Raw-tulostamisesta ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Tulostimen kartoitus
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Tallenna ennen liittämistä.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Haluatko peruuttaa kaikki linkitetyt asiakirjat?
@@ -2560,6 +2585,7 @@ DocType: Role Permission for Page and Report,Set Role For,Set rooli
DocType: GCalendar Account,The name that will appear in Google Calendar,"Nimi, joka näkyy Google-kalenterissa"
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Suora huone {0} on jo olemassa.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Ladataan uudelleen...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Tarkista hallintapaneelikaavioon asetetut suodatusarvot: {}
DocType: Event,Starts on,alkaa
DocType: System Settings,System Settings,järjestelmäasetukset
DocType: GCalendar Settings,Google API Credentials,Google-sovelluksen API-tunnistetiedot
@@ -2584,6 +2610,7 @@ DocType: Workflow State,ok-sign,ok-sign
apps/frappe/frappe/config/settings.py,Deleted Documents,Poistetut dokumentit
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV-muoto on erottuva
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Kassa Ikoni on jo olemassa
+DocType: Event Consumer Document Type,Approval Status,hyväksynnän tila
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Määritä, mitä kaikkia verkkotunnuksia diojen tulisi näyttää. Jos mitään ei määritetä, dia näkyy oletuksena kaikissa verkkotunnuksissa."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Kopioi
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Kenttä {1} rivillä {2} ei voi olla piilotettu ja pakollinen ilman oletusarvoa
@@ -2603,6 +2630,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Ohje Artikkelit
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,tyyppi:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Maksu on epäonnistunut.
+DocType: Event Producer,Producer URL,Tuottajan URL-osoite
DocType: Comment,Unshared,Jakamaton
DocType: Address,Karnataka,Karnatakan
apps/frappe/frappe/desk/moduleview.py,Module Not Found,moduulia ei löydy
@@ -2614,6 +2642,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Tehtävä Valmiit
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},massamuokkaus {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Lataa raportti
+apps/frappe/frappe/model/workflow.py,Workflow Status,Työnkulun tila
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Ei aktiivinen
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Vain järjestelmänvalvoja voi luoda hallintapaneelin kaavailähteitä
DocType: About Us Settings,Settings for the About Us Page,Tietoa sivuston asetukset
@@ -2622,6 +2651,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Tul
DocType: Notification Settings,Energy Points,Energiapisteet
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Ajan {0} on oltava muodossa: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,esim pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Uuden toistuvan asiakirjan liittäminen epäonnistui. Aktivoi {1} tulostusasetuksissa, jotta asiakirjan liittäminen automaattiseen toistoilmoitussähköpostiin"
DocType: User,Generate Keys,Luo avaimet
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Tämä poistaa tietosi pysyvästi.
DocType: DocType,View Settings,Näytä asetukset
@@ -2673,6 +2703,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Kaikki
DocType: Email Queue,Recipient,Vastaanottaja
DocType: Webhook,Webhook Security,Webhook-tietoturva
+DocType: Event Sync Log,Producer Document Name,Tuottaja-asiakirjan nimi
DocType: Communication,Has Attachment,on liitteitä
DocType: Address,Sales User,Myynnin peruskäyttäjä
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,siirrä ja tiputa muodostaaksesi oman tulostusmuodon
@@ -2708,6 +2739,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradeshin
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Lapstaulukot näytetään ruudukkona muissa DocTypes-sovelluksissa
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setup Auto Sähköposti
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + alas
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Sivusto, jonka haluat tilata kuluttavia tapahtumia varten."
DocType: Chat Profile,Message Preview,Viestin esikatselu
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Tämä on yksi kymmenestä yleisimmästä salasanasta.
DocType: User,User Defaults,Käyttäjä-oletusarvot
@@ -2740,6 +2772,7 @@ DocType: Dashboard Chart,Last Synced On,Viimeksi synkronoitu
DocType: Comment,Comment Type,Kommentin tyyppi
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Käyttäjät
+DocType: Document Type Mapping,Local Document Type,Paikallinen asiakirjatyyppi
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,raportin tyyppi
DocType: DocField,Signature,Allekirjoitus
@@ -2781,6 +2814,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} oma tehtävä tähän tehtävään: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Maasi
DocType: Assignment Rule Day,Sunday,sunnuntai
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Ylläpitää loki kaikista lisäyksistä, päivityksistä ja poistoista tapahtumien tuottaja-sivustolla asiakirjoille, joilla on kuluttajia."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Kenttänimi ei voi olla yksi {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,sijoitukset
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Ruudukkonäkymässä
@@ -2926,7 +2960,6 @@ DocType: Web Page,Sidebar and Comments,Sivupalkki ja kommentit
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",Mikäli muutat ja tallennat asiakirjaa peruutuksen jäjleen saa se uuden numeron jossa on sidos vanhaan numeroon
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Ei saa liittää {0} -asiakirjaa, salli Allow Print For {0} tulostusasetuksissa"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Sähköpostitiliä ei ole määritetty. Luo uusi sähköpostitili kohdasta Asetukset> Sähköposti> Sähköpostitili
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Katso dokumentti {0}
DocType: Stripe Settings,Publishable Key,julkaisukelpoisia Key
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Aloita tuonti
@@ -3003,7 +3036,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,info:
DocType: Custom Field,Permission Level,Käyttöoikeustaso
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Ei voi vahvistaa, perua tai korjata ilman kirjoitusoikeutta"
DocType: List View Setting,Disable Count,Poista laskenta käytöstä
-DocType: Google Maps Settings,Client Key,Asiakkaan avain
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,"Oletko varma, että haluat poistaa liitetiedoston?"
apps/frappe/frappe/__init__.py,Thank you,Kiitos
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Tallennetaan...
@@ -3129,6 +3161,7 @@ DocType: Workflow Document State,Only Allow Edit For,Vain Salli Edit For
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Varmuuskopiointi Google Driveen.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Pakollinen kenttä: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Nimesi
+DocType: Event Producer Document Type,Event Producer Document Type,Tapahtuman tuottajan asiakirjatyyppi
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Yhteyden onnistuminen
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Käynnissä oleva diatyyppinen dia jatketaan jo.
@@ -3199,6 +3232,7 @@ DocType: Address,Postal Code,Postikoodi
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,linkitä uudelleen Communication
DocType: Translation,Contributed,vaikuttaneet
apps/frappe/frappe/config/customization.py,Form Customization,Lomakkeen mukauttaminen
+DocType: Event Update Log,Event Update Log,Tapahtumien päivitysloki
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ei aktiivisia istuntoja
DocType: Web Form,Route to Success Link,Reitti menestysyhteyteen
DocType: Onboarding Slide Field,Right,Oikea
@@ -3225,7 +3259,7 @@ DocType: Website Settings,Chat Operators,Chat-operaattorit
DocType: S3 Backup Settings,ca-central-1,ca-Keski-1
DocType: Contact Us Settings,Pincode,PIN koodi
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Varmista, ettei tyhjiä sarakkeita tiedostoon."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Seuraa dokumentin elinkaaren välitavoitteita, jos se käy läpi useita vaiheita."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Seuraa dokumentin elinkaaren välitavoitteita, jos se käy läpi useita vaiheita."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Uudelleen nimetyt tiedostot ja korvattu koodi ohjaimissa, tarkista!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Varmista, että profiilisi on sähköpostiosoite"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Tekemiäsi muutoksia ei ole tallennettu. Tallenna ennen kuin jatkat.
@@ -3252,7 +3286,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Tallenna API-salaisuus:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Ei voi linkittää peruttua dokumenttia: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Ei voi muokata vakioraportti. Ole hyvä päällekkäisiä ja luoda uuden raportin
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Yhtiö on pakollista, koska se on yrityksen osoite"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}",Esim: Mikäli haluat sisällyttää asiakirjan tunnuksen käytä {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Valitse taulukon sarakkeet {0}
DocType: Custom Field,Options Help,"vaihtoehdo, ohjeet"
@@ -3260,7 +3293,6 @@ DocType: Footer Item,Group Label,Nimike
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google-yhteystiedot on määritetty.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 tietue viedään
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ei käyttäjän tiliä. Lisää tili kohtaan Käyttäjä> Sähköpostin saapuneet.
DocType: DocField,Report Hide,piilota raportti
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Puunäkymä ole käytettävissä {0}
DocType: DocType,Restrict To Domain,Rajoita Domain
@@ -3326,7 +3358,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,"{0}: Kenttä {1}, tyyppi {2}, ei voi olla pakollinen"
DocType: System Settings,In Days,Päivinä
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,neiti
+DocType: Event Producer Document Type,Has Mapping,Onko kartoitus
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Ilmoitathan
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Virheellinen suodatinarvo
DocType: Comment,Bot,Robotti
DocType: Help Article,Help Article,Ohje artikla
DocType: Page,Page Name,Sivun nimi
@@ -3434,7 +3468,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Tulostusmuoto
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Vaihda ruudukonäkymä
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Siirry seuraavaan levyyn
-DocType: System Settings,Time Format,Aikamuoto
+DocType: Country,Time Format,Aikamuoto
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Virheelliset maksu yhdyskäytävä käyttäjätietoja
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Tämä on mallitiedosto, joka syntyy vain rivillä, joilla on jonkin verran virheitä. Tätä tiedostoa kannattaa käyttää korjaamiseen ja tuontiin."
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Aseta käyttöoikeuksia asiakirjatyypeille ja rooleille
@@ -3756,6 +3790,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Salli kirjautuminen käyttäjänimellä
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,aktivoi raportti
DocType: DocField,Display Depends On,Näyttö riippuu
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vuosi sitten
DocType: Social Login Key,API Endpoint,API-päätepiste
DocType: Web Page,Insert Code,aseta koodi
DocType: Data Migration Run,Current Mapping Type,Nykyinen kartoitustyyppi
@@ -3809,6 +3844,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,vah
apps/frappe/frappe/www/login.html,Or login with,Tai sisään
DocType: Error Snapshot,Locals,Paikalliset
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Viestitään {0} on {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Tapahtuman tuottajan asiakirjatyypit
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Asenna oletus sähköpostitili kohdasta Asennus> Sähköposti> Sähköpostitili
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Valitse ryhmä
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"esim, (55 + 434) / 4 tai = math.sin (Math.PI / 2) ..."
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} on pakollinen
@@ -3840,9 +3877,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Ilmoita alkamisaika
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Vie tiedot
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Säilyttää lokin jokaisesta kulutetusta tapahtumasta, synkronoinnin tilan ja Resync-painikkeen, jos synkronointi epäonnistuu."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Valitse sarakkeet
DocType: Translation,Source Text,Lähde teksti
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Tämä on taustaraportti. Aseta sopivat suodattimet ja luo sitten uusi.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Sähköpostitiliä ei ole määritetty. Luo uusi sähköpostitili kohdasta Asetukset> Sähköposti> Sähköpostitili
apps/frappe/frappe/www/login.py,Missing parameters for login,Puuttuvat parametrit kirjautuminen
DocType: Workflow State,folder-open,kansio-auki
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Lähetettäviä asiakirjoja ei voi muuttaa toimitettuaan. Niitä voidaan vain peruuttaa ja muuttaa.
@@ -3922,6 +3961,7 @@ DocType: Blog Post,Published On,Julkaistu
DocType: Contact,Gender,Sukupuoli
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Pakolliset tiedot puuttuvat:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} palautti pisteesi {1}
+DocType: Event Consumer,Event Subscriber,Tapahtuman tilaaja
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Tarkista pyynnön URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Vain 200 lisäystä on sallittu yhdessä pyynnössä
DocType: Footer Item,URL,URL
@@ -3934,6 +3974,7 @@ DocType: Auto Email Report,Half Yearly,6 kk
DocType: Communication,Marked As Spam,Merkitty roskapostiksi
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Tiedosto-URL:issa {0} on ongelma
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Puu
+DocType: Event Producer Document Type,Use Same Name,Käytä samaa nimeä
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Et saa tulostaa tämän raportin
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Käyttäjän käyttöoikeudet
DocType: Workflow State,warning-sign,Varoitusmerkki
@@ -3943,6 +3984,7 @@ DocType: Workflow State,User,Käyttäjä
DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Näytä otsikko selainikkunassa muodossa ""etuliite - otsikko"""
DocType: Payment Gateway,Gateway Settings,Yhdyskäytäväasetukset
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Asiakirjatyypin teksti
+DocType: Event Sync Log,Event Sync Log,Tapahtumien synkronointiloki
apps/frappe/frappe/handler.py,Logged Out,Kirjautunut ulos
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Lisää...
DocType: System Settings,User can login using Email id or Mobile number,Käyttäjä voi kirjautua sähköpostin id tai matkapuhelinnumero
@@ -3982,12 +4024,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ei sisälly
DocType: Workflow State,star,tähtimerkki
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,hubi
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Jos tämä valitaan, asiakirjoilla on sama nimi kuin tapahtumien tuottajan sivustolla"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,Arvot pilkulla erotettuna
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},max leveys valuutta tyypille on 100px rivillä {0}
apps/frappe/frappe/config/website.py,Content web page.,"sisältö, verkkosivu"
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Lisää uusi rooli
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Käy verkkosivulla
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Uusi tehtävä
+DocType: Event Consumer Document Type,Approved,hyväksytty
DocType: Google Contacts,Last Sync On,Viimeisin synkronointi päällä
DocType: Deleted Document,Deleted Document,poistettu Document
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hups! Jokin meni vikaan
@@ -4039,7 +4083,6 @@ DocType: DocField,Unique,Uniikki
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} arvostettu {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Osittainen menestys
DocType: Email Account,Service,Palvelu
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Asennus> Käyttäjä
DocType: File,File Name,Tiedoston nimi
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ei löytynyt {0}:a {0} ({1}):lle
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4051,11 +4094,10 @@ DocType: Calendar View,Calendar View,Kalenteri-näkymä
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,muokkaa muotoa
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,rekisteröinti suoritettu loppuun
DocType: GCalendar Settings,Enable,ota käyttöön
-DocType: Google Maps Settings,Home Address,Kotiosoite
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Voit ladata enintään 5000 tietueitta kerralla. (vähemmän joissakin tapauksissa)
DocType: Report,"output in the form of `data = [columns, result]`","tuotos muodossa `data = [sarakkeet, tulos]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Sovellettavat asiakirjatyypit
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Määritä säännöt käyttäjän tehtäville.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Määritä säännöt käyttäjän tehtäville.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Riittämätön Lupa {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),raporttia ei tallenneta (oli virheitä)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Ei voi muuttaa otsikkosisällön sisältöä
diff --git a/frappe/translations/fr.csv b/frappe/translations/fr.csv
index 553c63d116..d6af109b94 100644
--- a/frappe/translations/fr.csv
+++ b/frappe/translations/fr.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Ce rôle met à jour les Autorisations Utilisateur pour un utilisateur
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Renommer {0}
DocType: Workflow State,zoom-out,Réduire
-DocType: Data Import Beta,Import Options,Options d'importation
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Impossible d'ouvrir {0} quand son instance est ouverte
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,La Table {0} ne peut pas être vide
DocType: SMS Parameter,Parameter,Paramètre
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Annu
DocType: DocType,Is Published Field,Est un Champ Publié
DocType: GCalendar Settings,GCalendar Settings,Paramètres GCalendar
DocType: Email Group,Email Group,Groupe Email
-apps/frappe/frappe/__init__.py,Only for {},Seulement pour {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Agenda - Impossible de supprimer l'événement {0} de Google Agenda, code d'erreur {1}."
DocType: Event,Pulled from Google Calendar,Tiré de Google Agenda
DocType: Note,Seen By,Vu Par
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Ajout Multiple
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Image utilisateur non valide.
DocType: Energy Point Log,Reverted,Inversé
DocType: Success Action,First Success Message,Premier message de succès
+DocType: Document Type Mapping,Document Type Mapping,Mappage de type de document
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Pas Comme
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valeur incorrecte : {0} doit être {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Modification des propriétés de champ (masquer , en lecture seule , permission etc )"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Le site qui consomme vos événements.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apprécier
DocType: Notification Settings,Document Share,Partage de documents
DocType: Workflow State,lock,verrouiller
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Journal
DocType: Workflow State,indent-right,décaler-droite
DocType: Has Role,Has Role,A Un Rôle
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Temps en secondes pour conserver l'image du code QR sur le serveur. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: le type de champ {1} pour {2} ne peut pas être indexé
DocType: Dashboard Chart,Timespan,Période
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Lien Web
DocType: Deleted Document,Restored,Restauré
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Erreur de connexion à l'application QZ Tray ...
Vous devez avoir installé et exécuté l'application QZ Tray pour utiliser la fonction d'impression brute.
Cliquez ici pour télécharger et installer QZ Tray .
Cliquez ici pour en savoir plus sur l'impression brute ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Il y a 1 minute
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","En dehors du Responsable Système, les rôles avec le droit ""Définir les Autorisations des Utilisateurs"" peut définir des autorisations pour d'autres utilisateurs pour ce Type de Document."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Configurer le thème
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,NON LUS
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Gestionnaire de Fichiers
DocType: Website Settings,"HTML Header, Robots and Redirects","En-tête HTML, robots et redirections"
DocType: GCalendar Account,Refresh Token,Jeton de Rafraîchissement
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Impossible de se connecter au site Event Producer. Réessayez après un certain temps.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Aucun travail en attente ou en cours pour ce site
DocType: Webhook,Doc Event,Événement Doc
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Gestionnaire de scripts
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Aucune activité
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Applications Tierces
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Le premier utilisateur deviendra le Responsable Système (vous pouvez changer cela plus tard).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Vous pouvez essayer de modifier les filtres de votre rapport.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Aucun événement aujourd'hui
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Vous ne pouvez pas vous donner de points de révision
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,Le DocType doit être soumissible pour l'événement Doc sélectionné
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Vous n'êtes pas autorisé à envoyer un email en relation avec ce document
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Non autorisé pour {0}: {1}. Champ restreint: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Société non liée
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Cochez cette case si vous testez votre paiement en utilisant l'API Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Vous n'êtes pas autorisé à supprimer un Thème standard du Site Web
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Créez votre premier {0}
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Mise à
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Une diapositive d'intégration {0} avec le même ordre de diapositives existe déjà
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Désactiver Rapport
DocType: Translation,Contributed Translation Doctype Name,Nom du type de traduction contribuée
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuration> Personnaliser le formulaire
DocType: PayPal Settings,Redirect To,Rediriger Vers
DocType: Data Migration Mapping,Pull,Extraction
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},"""Format JavaScript :
@@ -273,6 +277,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Non Autorisé
DocType: DocShare,Internal record of document shares,Registre interne des documents partagés
DocType: Energy Point Settings,Review Levels,Niveaux de révision
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuration> Autorisations utilisateur
DocType: Workflow State,Comment,Commenter
DocType: Data Migration Plan,Postprocess Method,Méthode post-traitement
DocType: DocType Action,Action Type,type d'action
@@ -322,13 +327,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Aff
DocType: Workflow State,remove-circle,retirez-cercle
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mon profil
DocType: Help Article,Beginner,Débutant
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Cette action n'est autorisée que pour {}
DocType: Contact,Is Primary Contact,Personne de Contact
+DocType: Event Consumer,Event Consumer,Consommateur de l'événement
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript à ajouter à la section d’en-tête de la page.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Ajouter / mettre à jour
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Non autorisé à imprimer des brouillons de documents
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Rétablir par défaut
DocType: Workflow,Transition Rules,Règles de Transition
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Afficher uniquement les {0} premières lignes de l'aperçu
apps/frappe/frappe/core/doctype/report/report.js,Example:,Exemple :
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Restrictions
DocType: Workflow,Defines workflow states and rules for a document.,Défini les états du flux de travail et les règles pour un document.
@@ -477,7 +483,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Répéter Jusqu'au
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Nouveau(elle)
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Vous devez d'abord créer ces éléments:
-DocType: Google Maps Settings,Google Maps Settings,Paramètres Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Chargement en Cours ...
DocType: DocField,Password,Mot de Passe
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Votre système est mis à jour. Veuillez rafraîchir à nouveau dans quelques instants
@@ -569,6 +574,7 @@ DocType: System Settings,mm/dd/yyyy,mm/jj/aaaa
DocType: Onboarding Slide,Onboarding Slide,Toboggan d'intégration
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Mot de Passe Incorrect:
DocType: Print Settings,Send document web view link in email,Envoyer le lien de l'affichage web du document dans l'email
+DocType: Event Consumer Document Type,Event Consumer Document Type,Type de document de consommateur d'événement
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Précedent
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Exiger un certificat de confiance
@@ -644,6 +650,7 @@ DocType: Workflow State,volume-down,diminuer-volume
DocType: Onboarding Slide,Help Links,Liens d'aide
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accès non autorisé à partir de cette adresse IP
DocType: Notification Settings,Enable Email Notifications,Activer les notifications par e-mail
+DocType: Document Type Field Mapping,Event Streaming,Streaming d'événements
apps/frappe/frappe/desk/reportview.py,No Tags,Aucune balise
DocType: Email Account,Send Notification to,Envoyer une Notification à
DocType: DocField,Collapsible,Réductible
@@ -660,11 +667,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Aucune condition fournie
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Champs de l'Axe Y
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Champ de tri {0} doit être un nom de champ valide
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Aucun modèle d'adresse par défaut n'a été trouvé. Veuillez en créer un nouveau dans Configuration> Impression et image de marque> Modèle d'adresse.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Plus
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Créer un nouvel enregistrement
DocType: Contact,Sales Manager,Responsable des Ventes
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Renommer
DocType: Print Format,Format Data,Format des Données
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} n'est pas un format de rapport valide. Le format du rapport doit être l'un des {1} suivants
DocType: List Filter,Filter Name,Nom du filtre
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Comme
DocType: Assignment Rule,Automation,Automatisation
@@ -683,6 +692,7 @@ DocType: User,Reset Password Key,Réinitialiser le Mot de Passe
DocType: Dashboard Chart,All Time,Tout le temps
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Statut de document non autorisé pour {0}
DocType: Email Account,Enable Auto Reply,Activer la Réponse Automatique
+apps/frappe/frappe/desk/query_report.py,No data to export,Aucune donnée à exporter
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Non Vu
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Impossible d'imprimer plusieurs imprimantes sur un seul format d'impression.
DocType: Workflow State,zoom-in,Agrandir
@@ -833,6 +843,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Changer d&
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Premier
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Mettre à jour les traductions
DocType: Error Snapshot,Exception,Exception
+DocType: Event Consumer,Event Consumer Document Types,Types de documents de consommateur d'événement
DocType: Email Account,Use IMAP,Utiliser IMAP
DocType: Activity Log,Activity Log,Journal d'Activité
DocType: View Log,Viewed By,Vu par
@@ -871,6 +882,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Dé
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configurer les graphiques
DocType: User,Last IP,Dernière Adresse IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,S'il vous plaît ajouter un sujet à votre email
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Transactions erronées
DocType: Data Migration Connector,Data Migration Connector,Connecteur de Migration de Données
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} annulé {1}
DocType: Email Account,Track Email Status,Suivi du statut des emails
@@ -901,6 +913,7 @@ DocType: Email Queue,Attachments,Pièces jointes
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Vous n'avez pas l'autorisation d'accéder à ce document
DocType: Language,Language Name,Nom de la Langue
DocType: Email Group Member,Email Group Member,Membre du Groupe Email
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Aucun compte de messagerie associé à l'utilisateur. Veuillez ajouter un compte sous Utilisateur> Boîte de réception de messagerie.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Votre compte a été verrouillé et reprendra après {0} secondes
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Les autorisations utilisateur sont utilisées pour limiter l'accès des utilisateurs à des données spécifiques.
DocType: Notification,Value Changed,Valeur Modifiée
@@ -992,6 +1005,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Mentionnez la p
DocType: Help Article,Expert,Expert
DocType: Workflow State,circle-arrow-right,flèche-cercle-droite
DocType: Role Profile,Role Profile,Profil de rôle
+DocType: Document Type Mapping,Remote Document Type,Type de document distant
apps/frappe/frappe/permissions.py,Document Type is not importable,Le type de document n'est pas importable
DocType: LDAP Settings,LDAP Server Url,Url du Serveur LDAP
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Impossible d'ouvrir une instance quand son {0} est ouverte
@@ -1076,7 +1090,7 @@ DocType: Web Form,Allow Print,Autoriser l'Impression
DocType: Communication,Clicked,Cliqué
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Se désabonner
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Pas d'autorisation pour '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Veuillez configurer le compte de messagerie par défaut dans Configuration> E-mail> Compte de messagerie
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Afficher uniquement les {0} premières lignes sur {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Prévu pour envoyer
DocType: DocType,Track Seen,Suivre les Vues
DocType: Dropbox Settings,File Backup,Sauvegarde de fichier
@@ -1146,6 +1160,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,cho
DocType: Data Export,Filter List,Liste de filtres
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Configurations d'événements
DocType: Email Account,Auto Reply Message,Message de Réponse Automatique
DocType: Data Migration Mapping,Condition,Conditions
apps/frappe/frappe/utils/data.py,{0} hours ago,Il y a {0} heures
@@ -1205,9 +1220,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Toujours uti
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Connectez-vous pour commenter
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Commencez à entrer les données ci-dessous
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},valeurs modifiées pour {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","L'identifiant de messagerie doit être unique, le compte de messagerie existe déjà \ pour {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs comprises entre 5 et 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Personnaliser...
DocType: Print Format,Align Labels to the Right,Alignez les Étiquettes à Droite
DocType: Assignment Rule,Disabled,Desactivé
@@ -1256,8 +1270,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Raccourcis clavier
DocType: Post,Comments,Commentaires
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Confirmer
+DocType: Event Sync Log,Update Type,Type de mise à jour
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Authentifier ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Tout réduire
+DocType: Event Producer,Last Update,Dernière mise à jour
apps/frappe/frappe/www/login.html,Forgot Password?,Mot de Passe Oublié ?
DocType: System Settings,yyyy-mm-dd,aaaa-mm-jj
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1298,6 +1314,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Champ de T
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Colonnes basées sur
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importation de {0} de {1}, {2}"
DocType: Workflow State,move,mouvement
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Impossible de créer un consommateur d'événements ou un consommateur d'événements pour le site actuel est déjà enregistré.
apps/frappe/frappe/model/document.py,Action Failed,Échec de l'Action
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Pour l\'Utilisateur
DocType: View Log,View log,Voir le journal
@@ -1460,6 +1477,7 @@ DocType: DefaultValue,Key,Clé
DocType: Address,Contacts,Contacts
DocType: System Settings,Setup Complete,Configuration Terminée
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport de tous les partages de documents
+DocType: Event Consumer,Callback URL,URL de rappel
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Le modèle d'importation doit être de type .csv, .xlsx ou .xls"
apps/frappe/frappe/www/update-password.html,New Password,Nouveau Mot de Passe
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtre {0} manquant
@@ -1525,7 +1543,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; non autorisé dans la condition
DocType: Async Task,Async Task,Tâche Async
DocType: Workflow State,picture,image
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Terminé
+DocType: Scheduled Job Log,Complete,Terminé
DocType: DocType,Image Field,Champ d'Image
DocType: Print Format,Custom HTML Help,Aide HTML Personnalisée
DocType: LDAP Settings,Default Role on Creation,Rôle par défaut lors de la création
@@ -1551,6 +1569,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Aide lors de la Recherche
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Enregistré mais Désactivé
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,L'adresse doit être liée à une entreprise. Veuillez ajouter une ligne pour la société dans le tableau des liens ci-dessous.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,La répétition automatique de ce document a été désactivée.
DocType: DocType,Hide Copy,Masquer la Copie
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Effacer tous les rôles
@@ -1589,6 +1608,7 @@ DocType: Bulk Update,Field,Champ
DocType: Communication,Received,Reçu
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Délencher sur des méthodes valides comme ""before_insert"", ""after_update"", etc (dépendra du DocType choisi)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},valeur modifiée de {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Configuration du compte de messagerie, veuillez saisir votre mot de passe pour: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Ajout du rôle Responsable Système pour cet Utilisateur car il doit y avoir au moins un Responsable Système
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,Pages total
@@ -1596,7 +1616,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Joindre l'Image
DocType: Workflow State,list-alt,liste-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Mot de Passe Mis à Jour
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuration> Autorisations utilisateur
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Étapes pour vérifier votre connexion
apps/frappe/frappe/utils/password.py,Password not found,Mot de Passe non trouvé
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1612,8 +1631,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Paramètres Googl
DocType: Report,Query Report,Rapport de Requête
DocType: User,Set New Password,Définir un Nouveau Mot de Passe
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Non autorisé pour {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s n’est pas un format de rapport valide. Le format de Rapport devrait \ l'un des %s suivants
DocType: Chat Message,Chat,Chat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Aucun document trouvé tagué avec {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Mappage de groupe LDAP
@@ -1648,7 +1665,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Entrez vo
DocType: Dropbox Settings,Dropbox Access Secret,Secret d’Accès Dropbox
DocType: Tag Link,Document Title,Titre du document
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatoire)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Il y a {0} an (s)
DocType: Social Login Key,Social Login Provider,Fournisseur de connexion sociale
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Ajouter un Autre Commentaire
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Aucune donnée trouvée dans le fichier. Veuillez rattacher le nouveau fichier avec des données.
@@ -1696,6 +1712,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Sélec
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 an
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Supprimer de Manière Permanente {0} ?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Le même fichier a déjà été joint au dossier
+DocType: Event Sync Log,Synced,Synchronisé
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} n'est pas un état de Workflow valide. Veuillez mettre à jour votre Workflow et réessayer.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,a donné {0} points
DocType: Workflow State,wrench,clé
@@ -1798,6 +1815,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,D
DocType: Web Form Field,Max Length,Longueur Max
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,carte-repère
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,La configuration de mappage entre deux doctypes.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Soumettre un ticket
DocType: Event,Repeat this Event,Répéter cet Evénement
DocType: Address,Maintenance User,Maintenance Utilisateur
@@ -1857,6 +1875,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Adresse Email de Test
DocType: Auto Repeat,Reference Document Type,Type du document de référence
DocType: ToDo,Sender,Expéditeur
+DocType: Event Consumer,Incoming Change,Changement entrant
DocType: Google Drive,Backup Folder Name,Nom du dossier de sauvegarde
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Erreur lors de l'évaluation de la notification {0}. Veuillez corriger votre modèle.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1919,9 +1938,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nouveau
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Cliquez sur le lien ci-dessous pour approuver la demande.
DocType: Workflow State,align-left,aligné-gauche
DocType: Onboarding Slide,Action Settings,Paramètres d'action
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuration> Utilisateur
DocType: User,Defaults,Valeurs Par Défaut
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs comprises entre 5 et 10)."
DocType: Energy Point Log,Revert Of,Revert de
+DocType: Document Type Mapping,Field Mapping,Cartographie des champs
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Fusionner avec existant
DocType: User,Birth Date,Date de Naissance
DocType: Communication Link,Link Title,Titre du Lien
@@ -1949,6 +1969,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Lien tag
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Intégrité de la chaîne
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,En test
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 Devise = [?] Fraction
E.g. 1 USD = 100 centimes"
@@ -1959,6 +1980,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Mappages de groupe LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Chat Message Attachment
DocType: LDAP Settings,Path to CA Certs File,Chemin d'accès au fichier de certificats de certification
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Si le document a des noms de champs différents à la fin du producteur et du consommateur, vérifiez cela et configurez le mappage"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Autoriser la lecture de toutes les options de lien
DocType: DocType,Database Engine,Moteur de Base de Données
@@ -2091,6 +2113,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Note
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Rapport d'Erreurs
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Exporter des données au format CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Mappage de champ de type de document
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Configuration des documents de recherche globale.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Les Applications d'Authentification que vous pouvez utiliser sont:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} existe déjà. Veuillez sélectionner un autre nom
@@ -2164,7 +2187,6 @@ DocType: Workflow State,Upload,Charger
DocType: User Permission,Advanced Control,Contrôle avancé
DocType: System Settings,Date Format,Format de Date
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Non Publié
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Aucun modèle d'adresse par défaut n'a été trouvé. Veuillez en créer un nouveau dans Configuration> Impression et image de marque> Modèle d'adresse.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Actions pour le flux de travail (par exemple Approuver, Annuler)."
DocType: Data Import,Skip rows with errors,Ignorer les lignes avec des erreurs
DocType: Workflow State,flag,drapeau
@@ -2227,6 +2249,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Représente les états permis dans un document et le rôle assigné pour changer cet état.
DocType: Data Migration Connector,Database Name,Nom de la Base de Données
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Actualiser le Formulaire
+DocType: Event Producer,Event Producer,Producteur d'événements
DocType: DocField,Select,Sélectionner
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Voir le journal complet
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Expression Python simple, Exemple: status == 'Open' et tapez == 'Bug'"
@@ -2327,6 +2350,7 @@ DocType: DocType,User Cannot Search,L'utilisateur ne peut pas Rechercher
DocType: Communication Link,Communication Link,Lien de communication
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Format de Sortie Invalide
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Impossible de {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Un {0} {1} récurrent a été créé pour vous via la répétition automatique {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Appliquer cette règle si l'Utilisateur est le Responsable
DocType: Global Search Settings,Global Search Settings,Paramètres de recherche globale
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Sera votre identifiant de connexion
@@ -2344,12 +2368,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR Code pour l
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Ajouter à la Liste des Tâches
DocType: Footer Item,Company,Société
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Moyenne de {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Transactions réussies
DocType: Scheduled Job Log,Scheduled,Prévu
DocType: User,Logout from all devices while changing Password,Déconnecter de tous les appareils lors de la modification du mot de passe
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Vérifier Le Mot De Passe
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Il y a eu des erreurs
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Entrez l'ID et le secret du client dans les paramètres Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Fermer
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","L'ID de messagerie doit être unique, le compte de messagerie existe déjà pour {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Impossible de changer le statut du document de 0 à 2
DocType: File,Attached To Field,Attaché au champ
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Mettre à Jour
@@ -2455,6 +2481,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Mois
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Ajouter Reference: {{ reference_doctype }} {{ reference_name }} envoyer référence du document
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Seuls les utilisateurs impliqués dans le document sont répertoriés.
DocType: DocField,Fetch From,Récupérer depuis le champ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuration> Personnaliser le formulaire
apps/frappe/frappe/modules/utils.py,App not found,App introuvable
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Création impossible d'un {0} pour un document enfant: {1}
DocType: Social Login Key,Social Login Key,Clé de connexion sociale
@@ -2466,7 +2493,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Discute
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Maison sociale
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Insérer Après ne peut être défini en tant que {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Partager {0} avec
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Configuration du Compte Email veuillez entrer votre mot de passe pour :
DocType: Workflow State,hand-up,main vers le haut
DocType: Blog Settings,Writers Introduction,Présentation des Rédacteurs
DocType: Address,Phone,Téléphone
@@ -2525,7 +2551,7 @@ DocType: Web Page,Insert Style,Insérez le Style
DocType: Prepared Report,Error Message,Message d'erreur
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nouveau Nom de Rapport
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Masquer les week-ends
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Génère automatiquement des documents récurrents.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Génère automatiquement des documents récurrents.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Est
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-signe
@@ -2533,7 +2559,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valeur
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Comment cette devise doit-elle être formatée ? Si ce n’est pas défini, les paramètres par défaut du système seront utilisés"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Soumettre {0} documents ?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Vous devez être connecté et avoir le Role Responsable Système pour pouvoir accéder aux sauvegardes.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Erreur de connexion à l'application QZ Tray ...
Vous devez avoir installé et exécuté l'application QZ Tray pour utiliser la fonction d'impression brute.
Cliquez ici pour télécharger et installer QZ Tray .
Cliquez ici pour en savoir plus sur l'impression brute ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Cartographie d'imprimante
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Veuillez enregistrer avant de joindre une pièce.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Voulez-vous annuler tous les documents liés?
@@ -2563,6 +2588,7 @@ DocType: Role Permission for Page and Report,Set Role For,Définir le Rôle Pour
DocType: GCalendar Account,The name that will appear in Google Calendar,Le nom qui apparaîtra dans Google Agenda
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,La pièce directe avec {0} existe déjà.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Actualisation...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Veuillez vérifier les valeurs de filtre définies pour le tableau de bord: {}
DocType: Event,Starts on,Commence le
DocType: System Settings,System Settings,Paramètres Système
DocType: GCalendar Settings,Google API Credentials,Informations d'identification de l'API Google
@@ -2587,6 +2613,7 @@ DocType: Workflow State,ok-sign,ok-signe
apps/frappe/frappe/config/settings.py,Deleted Documents,Documents Supprimés
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Le format CSV est sensible à la casse
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,L'Icône du Bureau existe déjà
+DocType: Event Consumer Document Type,Approval Status,Statut d'Approbation
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Spécifiez dans quels domaines tous les diapositives doivent apparaître. Si rien n'est spécifié, la diapositive est affichée dans tous les domaines par défaut."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Dupliquer
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: le champ {1} de la ligne {2} ne peut pas être masqué et obligatoire sans valeur par défaut
@@ -2606,6 +2633,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Articles d'Aide
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Type :
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Votre paiement a échoué.
+DocType: Event Producer,Producer URL,URL du producteur
DocType: Comment,Unshared,Non Partagé
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Module Introuvable
@@ -2617,6 +2645,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Affectation Terminée
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Modifier en Masse {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Télécharger le rapport
+apps/frappe/frappe/model/workflow.py,Workflow Status,Statut du workflow
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Non actif
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Seul l'administrateur est autorisé à créer des sources de graphique de tableau de bord
DocType: About Us Settings,Settings for the About Us Page,Paramètres de la page À Propos
@@ -2625,6 +2654,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Imp
DocType: Notification Settings,Energy Points,Points d'énergie
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},L'heure {0} doit être au format: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,e.g. pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Impossible de joindre un nouveau document récurrent. Pour activer la pièce jointe dans l'e-mail de notification de répétition automatique, activez {1} dans Paramètres d'impression"
DocType: User,Generate Keys,Générer des clés
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Cela supprimera définitivement vos données.
DocType: DocType,View Settings,Paramètres d'Affichage
@@ -2676,6 +2706,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Tous
DocType: Email Queue,Recipient,Destinataire
DocType: Webhook,Webhook Security,Sécurité du Webhook
+DocType: Event Sync Log,Producer Document Name,Nom du document du producteur
DocType: Communication,Has Attachment,A Une Pièce Jointe
DocType: Address,Sales User,Chargé de Ventes
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Outil Glisser/Déposer pour construire et personnaliser les Formats d'Impression.
@@ -2711,6 +2742,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Les tables enfants sont affichées sous forme de grille dans d'autres DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Configuration Auto Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Bas
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Le site auquel vous souhaitez vous abonner pour consommer des événements.
DocType: Chat Profile,Message Preview,Aperçu du message
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,C’est un mot de passe commun dans le top-10.
DocType: User,User Defaults,Profil par Défaut
@@ -2743,6 +2775,7 @@ DocType: Dashboard Chart,Last Synced On,Dernière synchronisation sur
DocType: Comment,Comment Type,Type de Commentaire
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Utilisateurs
+DocType: Document Type Mapping,Local Document Type,Type de document local
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Type de Rapport
DocType: DocField,Signature,Signature
@@ -2784,6 +2817,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} auto-assigné à cette tâche: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Votre Pays
DocType: Assignment Rule Day,Sunday,Dimanche
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Maintient un journal de toutes les insertions, mises à jour et suppressions sur le site Event Producer pour les documents qui ont des consommateurs."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: le nom de champ ne peut pas être l'un des {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Classement
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Vue en Grille
@@ -2929,7 +2963,6 @@ DocType: Web Page,Sidebar and Comments,Barre Latérale et Commentaires
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Lorsque vous Modifiez un document après l'avoir Annulé et que vous l'enregistrez, il va obtenir un nouveau numéro qui est une version de l'ancien numéro."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Vous n'êtes pas autorisé à joindre un document {0}, veuillez activer ""Autoriser l'impression"" pour {0} dans les paramètres d'impression."
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Le compte de messagerie n'est pas configuré. Veuillez créer un nouveau compte de messagerie dans Configuration> E-mail> Compte de messagerie
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Voir le document à l'adresse {0}
DocType: Stripe Settings,Publishable Key,Clé Publiable
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Démarrer l'import
@@ -3006,7 +3039,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info :
DocType: Custom Field,Permission Level,Niveau d'Autorisation
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Vous ne pouvez pas choisir Envoyer, Annuler, Modifier sans Écrire"
DocType: List View Setting,Disable Count,Désactiver le compte
-DocType: Google Maps Settings,Client Key,Clé client
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Êtes-vous sûr de vouloir supprimer la pièce jointe?
apps/frappe/frappe/__init__.py,Thank you,Merci
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,En Cours d'Enregistrement
@@ -3132,6 +3164,7 @@ DocType: Workflow Document State,Only Allow Edit For,Autoriser la Modification U
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Sauvegarde sur Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Champ obligatoire : {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Votre Nom
+DocType: Event Producer Document Type,Event Producer Document Type,Type de document du producteur d'événements
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Connecté avec succès
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Une diapositive d'intégration du type de diapositive Continuer existe déjà.
@@ -3203,6 +3236,7 @@ DocType: Address,Postal Code,Code Postal
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Communication de Reconnection
DocType: Translation,Contributed,Contribué
apps/frappe/frappe/config/customization.py,Form Customization,Personnalisation de formulaire
+DocType: Event Update Log,Event Update Log,Journal de mise à jour des événements
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Aucune Session Active
DocType: Web Form,Route to Success Link,Lien vers le succès
DocType: Onboarding Slide Field,Right,Droit
@@ -3229,7 +3263,7 @@ DocType: Website Settings,Chat Operators,Opérateurs du Chat
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Code Postal
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Veuillez vous assurer qu'il n'y a pas de colonnes vides dans le fichier.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Suit les jalons du cycle de vie d'un document s'il subit plusieurs étapes.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Suit les jalons du cycle de vie d'un document s'il subit plusieurs étapes.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Fichiers renommés et code remplacé dans les contrôleurs, veuillez vérifier!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Veuillez vous assurer que votre profil a une adresse email
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Vous avez des modifications non enregistrées dans ce formulaire. Veuillez enregistrer avant de continuer.
@@ -3256,7 +3290,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Enregistrer l'API Secret:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Impossible de lier le document annulé : {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Modification du rapport standard impossible. Veuillez le dupliquer et créer un nouveau rapport
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Société est obligatoire, car il s'agit de l'adresse de société"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Par exemple: Si vous voulez inclure l'ID du document, utilisez {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Sélectionner les Colonnes de la Table pour {0}
DocType: Custom Field,Options Help,Aide Options
@@ -3264,7 +3297,6 @@ DocType: Footer Item,Group Label,Étiquette du Groupe
DocType: Kanban Board,Kanban Board,Tableau Kanban
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacts a été configuré.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 enregistrement sera exporté
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Aucun compte de messagerie associé à l'utilisateur. Veuillez ajouter un compte sous Utilisateur> Boîte de réception de messagerie.
DocType: DocField,Report Hide,Cacher le Rapport
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Arborescence indisponible pour {0}
DocType: DocType,Restrict To Domain,Restreindre au Domaine
@@ -3330,7 +3362,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: le champ {1} de type {2} ne peut pas être obligatoire
DocType: System Settings,In Days,En jours
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Mlle
+DocType: Event Producer Document Type,Has Mapping,A la cartographie
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Veuillez spécifier
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Valeur de filtre non valide
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Article d’Aide
DocType: Page,Page Name,Nom de la Page
@@ -3438,7 +3472,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Format d'Impression
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Afficher/Cacher la vue en grille
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Aller au prochain enregistrement
-DocType: System Settings,Time Format,Format de l'heure
+DocType: Country,Time Format,Format de l'heure
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Identifiant de la Passerelle de Paiement Invalides
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,C'est le fichier modèle généré uniquement avec les lignes ayant une erreur. Vous devriez utiliser ce fichier pour la correction et l'import.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Définir les Autorisations des Rôles sur les Types de Documents.
@@ -3771,6 +3805,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Autoriser la connexion en utilisant le Nom d'Utilisateur
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Activer Rapport
DocType: DocField,Display Depends On,Affichage Dépend de
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Il y a {0} an (s)
DocType: Social Login Key,API Endpoint,API Endpoint
DocType: Web Page,Insert Code,Insérez le Code
DocType: Data Migration Run,Current Mapping Type,Type de Mapping Actuel
@@ -3824,6 +3859,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con
apps/frappe/frappe/www/login.html,Or login with,Ou connectez-vous avec
DocType: Error Snapshot,Locals,Locaux
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Communiquée par {0} sur {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Types de documents du producteur d'événements
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Veuillez configurer le compte de messagerie par défaut dans Configuration> E-mail> Compte de messagerie
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Sélectionner groupe par ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,e.g. (55 + 434) / 4 ou = Math.sin(Math.PI/2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} est nécessaire
@@ -3855,9 +3892,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Heure de début du rapport
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exporter des données
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Maintient un journal de chaque événement consommé avec l'état de la synchronisation et un bouton Resync en cas d'échec de la synchronisation.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Sélectionner des Colonnes
DocType: Translation,Source Text,Texte Source
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"Ceci est un rapport de fond. Veuillez définir les filtres appropriés, puis en générer un nouveau."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Le compte de messagerie n'est pas configuré. Veuillez créer un nouveau compte de messagerie dans Configuration> E-mail> Compte de messagerie
apps/frappe/frappe/www/login.py,Missing parameters for login,Paramètres manquants pour la connexion
DocType: Workflow State,folder-open,ouvrir-dossier
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Une fois soumis, les documents à soumettre ne peuvent plus être modifiés. Ils ne peuvent être annulés et amendés."
@@ -3937,6 +3976,7 @@ DocType: Blog Post,Published On,Publié le
DocType: Contact,Gender,Sexe
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Renseignements Obligatoires manquants :
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} a annulé vos points le {1}
+DocType: Event Consumer,Event Subscriber,Abonné à l'événement
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Vérifier l'URL de Demande
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Seuls 200 inserts autorisés dans une requête
DocType: Footer Item,URL,URL
@@ -3949,6 +3989,7 @@ DocType: Auto Email Report,Half Yearly,Semestriel
DocType: Communication,Marked As Spam,Marquer comme Spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Il y a un problème avec l'url du fichier : {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Arbre
+DocType: Event Producer Document Type,Use Same Name,Utiliser le même nom
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Vous n'êtes pas autorisé à imprimer ce rapport
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Autorisations des Utilisateurs
DocType: Workflow State,warning-sign,signe-avertissement
@@ -3958,6 +3999,7 @@ DocType: Workflow State,User,Utilisateur
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Afficher le titre dans la fenêtre du navigateur comme "Prefix - titre"
DocType: Payment Gateway,Gateway Settings,Paramètres de passerelle
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Texte dans le type de document
+DocType: Event Sync Log,Event Sync Log,Journal de synchronisation des événements
apps/frappe/frappe/handler.py,Logged Out,Déconnecté
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Plus...
DocType: System Settings,User can login using Email id or Mobile number,L'utilisateur peut se connecter en utilisant l'identifiant de messagerie ou le numéro de téléphone mobile
@@ -3997,12 +4039,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Non Inclus
DocType: Workflow State,star,étoile
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Si cette case est cochée, les documents porteront le même nom que sur le site du producteur de l'événement"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,valeurs séparées par des virgules
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Largeur max pour le type Devise est 100px dans la ligne {0}
apps/frappe/frappe/config/website.py,Content web page.,Contenu de la page web.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Ajouter un Nouveau Rôle
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Visitez la page Web
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nouvelle affectation
+DocType: Event Consumer Document Type,Approved,Approuvé
DocType: Google Contacts,Last Sync On,Dernière synchronisation le
DocType: Deleted Document,Deleted Document,Document Supprimé
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oups ! Quelque chose a mal tourné
@@ -4054,7 +4098,6 @@ DocType: DocField,Unique,Unique
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apprécié le {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Succès Partiel
DocType: Email Account,Service,Service
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuration> Utilisateur
DocType: File,File Name,Nom du Fichier
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nous n'avons pas trouvé {0} pour {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4066,11 +4109,10 @@ DocType: Calendar View,Calendar View,Vue du calendrier
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Modifier le Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Terminer l'Inscription
DocType: GCalendar Settings,Enable,Activer
-DocType: Google Maps Settings,Home Address,Adresse du Domicile
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Vous pouvez seulement charger jusqu'à 5000 enregistrement en une seule fois. (peut-être moins dans certains cas)
DocType: Report,"output in the form of `data = [columns, result]`","sortie sous la forme de `data = [colonnes, résultat]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Types de documents applicables
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Définissez des règles pour les affectations d'utilisateurs.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Définissez des règles pour les affectations d'utilisateurs.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Autorisation Insuffisante Pour {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Le Rapport n'a pas été sauvegardé (il y a eu des erreurs)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Impossible de changer le contenu de l'en-tête
diff --git a/frappe/translations/gu.csv b/frappe/translations/gu.csv
index 3cf0554704..9f3c4e328d 100644
--- a/frappe/translations/gu.csv
+++ b/frappe/translations/gu.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,વપરાશકર્તા માટે આ ભૂમિકા સુધારો વપરાશકર્તા પરવાનગીઓ
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},નામ બદલો {0}
DocType: Workflow State,zoom-out,ઝૂમ આઉટ
-DocType: Data Import Beta,Import Options,આયાત વિકલ્પો
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,‧ ખોલી શકાતી નથી {0} તેના ઉદાહરણ ખુલ્લું છે જ્યારે
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,કોષ્ટક {0} ખાલી ન હોઈ શકે
DocType: SMS Parameter,Parameter,પરિમાણ
@@ -83,16 +82,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,પ્રકાશિત ક્ષેત્ર છે
DocType: GCalendar Settings,GCalendar Settings,GCalendar સેટિંગ્સ
DocType: Email Group,Email Group,ઇમેઇલ ગ્રુપ
-apps/frappe/frappe/__init__.py,Only for {},માટે જ {}
DocType: Event,Pulled from Google Calendar,ગૂગલ કેલેન્ડરથી ખેંચ્યું
DocType: Note,Seen By,દ્વારા જોઈ
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,મલ્ટીપલ ઉમેરો
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,કોઈ માન્ય વપરાશકર્તા છબી નથી
DocType: Energy Point Log,Reverted,પાછું ફેરવ્યું
DocType: Success Action,First Success Message,પ્રથમ સફળ સંદેશ
+DocType: Document Type Mapping,Document Type Mapping,દસ્તાવેજ પ્રકાર મેપિંગ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ન ગમે
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ખોટો કિંમત: {0} હોવા જ જોઈએ {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","બદલો ક્ષેત્ર ગુણધર્મો (છુપાવો, ફક્ત વાંચવા, પરવાનગી વગેરે)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,જે સાઇટ તમારી ઇવેન્ટ્સનો વપરાશ કરી રહી છે.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,પ્રશંસા કરો
DocType: Notification Settings,Document Share,દસ્તાવેજ શેર
DocType: Workflow State,lock,લોક
@@ -112,10 +112,12 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,પ્રવેશ કરો
DocType: Workflow State,indent-right,ઇન્ડેન્ટ અધિકાર
DocType: Has Role,Has Role,ભૂમિકા છે
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,ફરીથી સમન્વય
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,સર્વર પર QR કોડ છબીને જાળવી રાખવા માટે સેકંડનો સમય. લઘુત્તમ: 240
DocType: Dashboard Chart,Timespan,સમય ગાળો
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,વેબ લિંક
DocType: Deleted Document,Restored,પુનર્સ્થાપિત
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","ક્યૂઝેડ ટ્રે એપ્લિકેશનથી કનેક્ટ કરવામાં ભૂલ ...
કાચો મુદ્રણ સુવિધા વાપરવા માટે તમારી પાસે ક્યૂઝેડ ટ્રે એપ્લિકેશન ઇન્સ્ટોલ અને ચાલુ હોવી જરૂરી છે.
ક્યૂઝેડ ટ્રેને ડાઉનલોડ અને ઇન્સ્ટોલ કરવા અહીં ક્લિક કરો .
કાચો છાપવા વિશે વધુ જાણવા માટે અહીં ક્લિક કરો ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 મિનિટ પહેલા
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","ઉપરાંત સિસ્ટમ વ્યવસ્થાપક, વપરાશકર્તા સેટ પરવાનગીઓ સાથે ભૂમિકા કે અધિકાર દસ્તાવેજ પ્રકારની અન્ય વપરાશકર્તાઓ માટે પરવાનગીઓ સુયોજિત કરી શકો છો."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,થીમ રૂપરેખાંકિત કરો
@@ -185,6 +187,7 @@ DocType: Email Account,UNSEEN,અદ્રશ્ય
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ફાઇલ વ્યવસ્થાપક
DocType: Website Settings,"HTML Header, Robots and Redirects","એચટીએમએલ મથાળું, રોબોટ્સ અને રીડાયરેક્ટ્સ"
DocType: GCalendar Account,Refresh Token,પુનઃતાજું ટોકન
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,ઇવેન્ટ નિર્માતા સાઇટથી કનેક્ટ કરવામાં નિષ્ફળ. થોડા સમય પછી ફરી પ્રયાસ કરો.
DocType: Address,Goa,ગોવા
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,આ સાઇટ માટે કોઈ બાકી અથવા વર્તમાન નોકરીઓ નથી
DocType: Webhook,Doc Event,ડૉક ઇવેન્ટ
@@ -207,6 +210,7 @@ DocType: Server Script,Script Manager,સ્ક્રિપ્ટ મેને
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,કોઈ પ્રવૃત્તિ નથી
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,થર્ડ પાર્ટી એપ્લિકેશન્સ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,સિસ્ટમ વ્યવસ્થાપક બનશે પ્રથમ વપરાશકર્તા (જો તમે આ બદલી શકો છો).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,તમે તમારા રિપોર્ટના ગાળકોને બદલવાનો પ્રયાસ કરી શકો છો.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,આજે કોઈ ઘટનાઓ નથી
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,તમે તમારી જાતને સમીક્ષા પોઇન્ટ આપી શકતા નથી
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,પસંદ કરેલ ડૉક ઇવેન્ટ માટે ડોકટાઇપ સબમીટબલ હોવો આવશ્યક છે
@@ -237,6 +241,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,તમે આ દસ્તાવેજ સંબંધિત ઇમેઇલ્સ મોકલવા માટે પરવાનગી નથી
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,કૃપા કરીને {0} સૉર્ટ / જૂથ માંથી ઓછામાં ઓછા 1 કૉલમ પસંદ
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} માટે મંજૂરી નથી: {1}. પ્રતિબંધિત ક્ષેત્ર: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,કંપની લિંક્ડ નથી
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"આ તપાસો તમે તમારા ચુકવણી સેન્ડબોક્સ API નો ઉપયોગ કરીને પરીક્ષણ કરવામાં આવે છે, તો"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,તમે પ્રમાણભૂત વેબસાઇટ થીમ કાઢી કરવાની પરવાનગી નથી
DocType: Data Import,Log Details,લોગ વિગતો
@@ -255,7 +260,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} અપડેટ કરી રહ્યું છે
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,અક્ષમ કરો જાણ કરો
DocType: Translation,Contributed Translation Doctype Name,ફાળો આપ્યો અનુવાદ ડોકટાઇપ નામ
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,સેટઅપ> ફોર્મ કસ્ટમાઇઝ કરો
DocType: PayPal Settings,Redirect To,રીડાયરેક્ટ
DocType: Data Migration Mapping,Pull,ખેંચો
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},જાવાસ્ક્રિપ્ટ ફોર્મેટ: frappe.query_reports ['REPORTNAME'] = {}
@@ -267,6 +271,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,મંજૂરી નથી
DocType: DocShare,Internal record of document shares,દસ્તાવેજ સરવાળો આંતરિક રેકોર્ડ
DocType: Energy Point Settings,Review Levels,સમીક્ષા સ્તર
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,સેટઅપ> વપરાશકર્તા પરવાનગી
DocType: Workflow State,Comment,ટિપ્પણી
DocType: Data Migration Plan,Postprocess Method,પોસ્ટપ્રોસેસ પદ્ધતિ
DocType: DocType Action,Action Type,ક્રિયા પ્રકાર
@@ -316,13 +321,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,વ
DocType: Workflow State,remove-circle,દૂર વર્તુળ
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,મારી પ્રોફાઈલ
DocType: Help Article,Beginner,પ્રારંભિક
+apps/frappe/frappe/__init__.py,This action is only allowed for {},આ ક્રિયાને ફક્ત for for માટે જ માન્ય છે
DocType: Contact,Is Primary Contact,પ્રાથમિક સંપર્ક
+DocType: Event Consumer,Event Consumer,ઇવેન્ટ કન્ઝ્યુમર
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,જાવાસ્ક્રિપ્ટ પાનું વડા વિભાગમાં ઉમેરો.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,ઉમેરો / અપડેટ કરો
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,ડ્રાફ્ટ દસ્તાવેજો છાપવા માટે મંજૂરી નથી
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,ડિફૉલ્ટ્સ રિસેટ કરો
DocType: Workflow,Transition Rules,ટ્રાન્ઝિશન નિયમો
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,પૂર્વાવલોકનમાં ફક્ત પ્રથમ {0} પંક્તિઓ બતાવી રહ્યું છે
apps/frappe/frappe/core/doctype/report/report.js,Example:,ઉદાહરણ:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,પ્રતિબંધો
DocType: Workflow,Defines workflow states and rules for a document.,એક દસ્તાવેજ માટે વર્કફ્લો સ્ટેટ્સ અને નિયમો વ્યાખ્યાયિત કરે છે.
@@ -467,7 +473,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,સુધી પુનરાવર્તન
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,ન્યૂ
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,તમારે પહેલા આ બનાવવાની જરૂર છે:
-DocType: Google Maps Settings,Google Maps Settings,Google નકશા સેટિંગ્સ
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,લોડ કરી રહ્યું છે ...
DocType: DocField,Password,પાસવર્ડ
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,તમારી સિસ્ટમ અપડેટ કરવામાં આવી રહી છે. થોડા ક્ષણો બાદ ફરી કૃપા કરીને તાજું કરો
@@ -558,6 +563,7 @@ DocType: System Settings,mm/dd/yyyy,mm / dd / YYYY
DocType: Onboarding Slide,Onboarding Slide,Boardનબોર્ડિંગ સ્લાઇડ
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,અમાન્ય પાસવર્ડ:
DocType: Print Settings,Send document web view link in email,મોકલો ઇમેઇલ દસ્તાવેજ વેબ દૃશ્ય લિંક
+DocType: Event Consumer Document Type,Event Consumer Document Type,ઇવેન્ટ કન્ઝ્યુમર ડોક્યુમેન્ટનો પ્રકાર
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Next અગાઉના આગળ
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,વિશ્વસનીય પ્રમાણપત્રની જરૂર છે
@@ -633,6 +639,7 @@ DocType: Workflow State,volume-down,વોલ્યુંમ-નીચે
DocType: Onboarding Slide,Help Links,સહાય લિંક્સ
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,આ આઇપી સરનામાંથી પ્રવેશને મંજૂરી નથી
DocType: Notification Settings,Enable Email Notifications,ઇમેઇલ સૂચનાઓને સક્ષમ કરો
+DocType: Document Type Field Mapping,Event Streaming,ઇવેન્ટ સ્ટ્રીમિંગ
apps/frappe/frappe/desk/reportview.py,No Tags,કોઈ ટૅગ્સ
DocType: Email Account,Send Notification to,સંદેશ મોકલો
DocType: DocField,Collapsible,સંકેલી શકાય એવું
@@ -649,6 +656,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,આ
apps/frappe/frappe/database/database.py,No conditions provided,કોઈ શરતો પ્રદાન કરવામાં આવી નથી
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,વાય એક્સિસ ફીલ્ડ્સ
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,સૉર્ટ ક્ષેત્ર {0} માન્ય FIELDNAME હોવા જ જોઈએ
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ડિફોલ્ટ સરનામું નમૂના મળ્યું નથી. કૃપા કરીને સેટઅપ> પ્રિન્ટિંગ અને બ્રાંડિંગ> સરનામાં ટેમ્પલેટમાંથી એક નવું બનાવો.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,વધુ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,એક નવો રેકોર્ડ બનાવો
DocType: Contact,Sales Manager,વેચાણ મેનેજર
@@ -672,6 +680,7 @@ DocType: User,Reset Password Key,પાસવર્ડ રીસેટ કરો
DocType: Dashboard Chart,All Time,બધા સમયે
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} માટે ગેરકાયદે દસ્તાવેજ સ્થિતિ
DocType: Email Account,Enable Auto Reply,ઓટો જવાબ સક્ષમ
+apps/frappe/frappe/desk/query_report.py,No data to export,નિકાસ કરવા માટે કોઈ ડેટા નથી
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,જોઇ ન
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,એક પ્રિંટ ફોર્મેટમાં મલ્ટીપલ પ્રિંટર્સ મેપ કરી શકાતા નથી.
DocType: Workflow State,zoom-in,મોટું કરો
@@ -821,6 +830,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,વપર
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,પ્રથમ
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,સુધારા ભાષાંતરો
DocType: Error Snapshot,Exception,અપવાદ
+DocType: Event Consumer,Event Consumer Document Types,ઇવેન્ટ કન્ઝ્યુમર ડોક્યુમેન્ટના પ્રકાર
DocType: Email Account,Use IMAP,ઉપયોગ IMAP
DocType: Activity Log,Activity Log,પ્રવૃત્તિ લોગ
DocType: View Log,Viewed By,દ્વારા જોઈ
@@ -859,6 +869,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,વ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ચાર્ટ્સ ગોઠવો
DocType: User,Last IP,છેલ્લે IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,કૃપા કરીને તમારા ઇમેઇલ પર વિષય ઉમેરો
+apps/frappe/frappe/model/workflow.py,Errored Transactions,ખોટી વ્યવહાર
DocType: Data Migration Connector,Data Migration Connector,ડેટા માઇગ્રેશન કનેક્ટર
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} પાછું ફેરવેલ {1}
DocType: Email Account,Track Email Status,ઇમેઇલ સ્થિતિ ટ્રૅક કરો
@@ -888,6 +899,7 @@ DocType: Email Queue,Attachments,જોડાણો
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,તમે આ દસ્તાવેજ ઍક્સેસ કરવા માટે તમારી પાસે પરવાનગીઓ નથી
DocType: Language,Language Name,ભાષા નામ
DocType: Email Group Member,Email Group Member,ઇમેઇલ ગ્રુપ સભ્ય
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,વપરાશકર્તા સાથે સંકળાયેલ કોઈ ઇમેઇલ એકાઉન્ટ નથી. કૃપા કરીને વપરાશકર્તા> ઇમેઇલ ઇનબોક્સ હેઠળ એક એકાઉન્ટ ઉમેરો.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,તમારું એકાઉન્ટ લૉક થઈ ગયું છે અને તે {0} સેકંડ પછી ફરી શરૂ થશે
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,વપરાશકર્તા પરવાનગીઓ ચોક્કસ રેકોર્ડ્સ માટે વપરાશકર્તાઓને મર્યાદિત કરવા માટે વપરાય છે.
DocType: Notification,Value Changed,કિંમત બદલાઈ
@@ -976,6 +988,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,ઉલ્લે
DocType: Help Article,Expert,નિષ્ણાત
DocType: Workflow State,circle-arrow-right,વર્તુળ તીર અધિકાર
DocType: Role Profile,Role Profile,રોલ પ્રોફાઇલ
+DocType: Document Type Mapping,Remote Document Type,રિમોટ દસ્તાવેજ પ્રકાર
apps/frappe/frappe/permissions.py,Document Type is not importable,દસ્તાવેજ પ્રકાર આયાતનીય નથી
DocType: LDAP Settings,LDAP Server Url,LDAP સર્વર URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,તેના {0} ખુલ્લું છે જ્યારે ઉદાહરણ ખોલી શકાતી નથી
@@ -1059,7 +1072,6 @@ DocType: Web Form,Allow Print,પ્રિન્ટ માટે પરવાન
DocType: Communication,Clicked,વાપરો
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,અવગણવું
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},કોઈ પરવાનગી '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટમાંથી ડિફ defaultલ્ટ ઇમેઇલ એકાઉન્ટ સેટ કરો
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,મોકલવા માટે અનુસૂચિત
DocType: DocType,Track Seen,ટ્રેક દેખાય
DocType: Dropbox Settings,File Backup,ફાઇલ બૅકઅપ
@@ -1129,6 +1141,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,એ
DocType: Data Export,Filter List,ફિલ્ટર સૂચિ
DocType: Data Export,Excel,એક્સેલ
DocType: System Settings,HH:mm,એચએચ: મીમી
+DocType: Event Sync Log,Event Configurations,ઇવેન્ટ રૂપરેખાંકનો
DocType: Email Account,Auto Reply Message,ઓટો જવાબ સંદેશ
DocType: Data Migration Mapping,Condition,કન્ડિશન
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} કલાક પહેલા
@@ -1188,9 +1201,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,હંમે
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,ટિપ્પણી કરવા માટે લોગ ઈન થાઓ
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,આ રેખા નીચે માહિતી દાખલ પ્રારંભ
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},માટે બદલાયેલ કિંમતો {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ઇમેઇલ ID અનન્ય હોવો જોઈએ, ઇમેઇલ એકાઉન્ટ પહેલેથી અસ્તિત્વમાં છે \ માટે {0}"
DocType: Workflow State,retweet,રીટ્વીટ
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","સરખામણી માટે,> 5, <10 અથવા = 324 નો ઉપયોગ કરો. શ્રેણીઓ માટે, 5:10 (5 અને 10 ની કિંમતો માટે) નો ઉપયોગ કરો."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,કસ્ટમાઇઝ કરો ...
DocType: Print Format,Align Labels to the Right,જમણે લેબલ્સ સંરેખિત કરો
DocType: Assignment Rule,Disabled,અક્ષમ
@@ -1236,8 +1248,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,કીબોર્ડ શૉર્ટકટ્સ
DocType: Post,Comments,ટિપ્પણીઓ
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,ખાતરી કરો
+DocType: Event Sync Log,Update Type,સુધારા પ્રકાર
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,પ્રમાણિત કરી રહ્યું છે ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,સંકુચિત બધા
+DocType: Event Producer,Last Update,છેલ્લો સુધારો
apps/frappe/frappe/www/login.html,Forgot Password?,પાસવર્ડ ભૂલી ગયા છો?
DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD
apps/frappe/frappe/desk/report/todo/todo.py,ID,આઈડી
@@ -1278,6 +1292,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,કોષ
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,સ્તંભોને પર આધારિત
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{1}, {2} ના {0} આયાત કરી રહ્યું છે"
DocType: Workflow State,move,ચાલ
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,વર્તમાન સાઇટ માટે ઇવેન્ટ ગ્રાહક અથવા ઇવેન્ટ ઉપભોક્તા બનાવવામાં નિષ્ફળ પહેલાથી નોંધાયેલ છે.
apps/frappe/frappe/model/document.py,Action Failed,ક્રિયા નિષ્ફળ
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,વપરાશકર્તા માટે
DocType: View Log,View log,લૉગ જુઓ
@@ -1434,6 +1449,7 @@ DocType: DefaultValue,Key,કી
DocType: Address,Contacts,સંપર્કો
DocType: System Settings,Setup Complete,સેટઅપ પૂર્ણ
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,બધા દસ્તાવેજ સરવાળો રિપોર્ટ
+DocType: Event Consumer,Callback URL,ક Callલબbackક URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","આયાત ટેમ્પલેટ .csv, .xlsx અથવા .xls પ્રકારનાં હોવા જોઈએ"
apps/frappe/frappe/www/update-password.html,New Password,નવો પાસવર્ડ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ફિલ્ટર {0} ગુમ
@@ -1498,7 +1514,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,સ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; શરતમાં અનુમતિ નથી
DocType: Async Task,Async Task,Async ટાસ્ક
DocType: Workflow State,picture,ચિત્ર
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,પૂર્ણ
+DocType: Scheduled Job Log,Complete,પૂર્ણ
DocType: DocType,Image Field,છબી ક્ષેત્ર
DocType: Print Format,Custom HTML Help,કસ્ટમ HTML મદદ
DocType: LDAP Settings,Default Role on Creation,બનાવટ પર મૂળભૂત ભૂમિકા
@@ -1523,6 +1539,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,શોધ પર મદદ
DocType: Milestone,Milestone Tracker,માઇલ સ્ટોન ટ્રેકર
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,રજિસ્ટર્ડ પરંતુ વિકલાંગ
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,સરનામાંને કંપની સાથે જોડવાની જરૂર છે. કૃપા કરીને નીચેની લિંક્સ કોષ્ટકમાં કંપની માટે પંક્તિ ઉમેરો.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,આ દસ્તાવેજનો સ્વત Auto પુનરાવર્તન અક્ષમ કરવામાં આવ્યું છે.
DocType: DocType,Hide Copy,કૉપિ કરો છુપાવો
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,બધા ભૂમિકા સાફ
@@ -1561,13 +1578,13 @@ DocType: Bulk Update,Field,ક્ષેત્ર
DocType: Communication,Received,પ્રાપ્ત
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update", વગેરે જેવી માન્ય પદ્ધતિઓ પર ટ્રિગર (પસંદિત Doctype પર આધાર રાખે છે)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1} નું મૂલ્ય બદલાયું
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},ઇમેઇલ એકાઉન્ટ સેટઅપ કૃપા કરીને આ માટે તમારો પાસવર્ડ દાખલ કરો: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"આ વપરાશકર્તા માટે સિસ્ટમ વ્યવસ્થાપક ઉમેરવાનું ઓછામાં ઓછા એક સિસ્ટમ વ્યવસ્થાપક હોવો જોઈએ, કારણ કે"
DocType: Chat Message,URLs,URLs
DocType: Data Migration Run,Total Pages,કુલ પૃષ્ઠો
DocType: DocField,Attach Image,છબી સાથે જોડે છે
DocType: Workflow State,list-alt,યાદી-Alt
apps/frappe/frappe/www/update-password.html,Password Updated,પાસવર્ડ અપડેટ
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,સેટઅપ> વપરાશકર્તા પરવાનગી
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,તમારા લૉગિનને ચકાસવાનાં પગલાં
apps/frappe/frappe/utils/password.py,Password not found,પાસવર્ડ ન મળી
DocType: Webhook,Webhook Secret,વેબહૂક સિક્રેટ
@@ -1583,8 +1600,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,ગૂગલ API
DocType: Report,Query Report,ક્વેરી રિપોર્ટ
DocType: User,Set New Password,ન્યૂ પાસવર્ડને સુયોજિત કરો
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} માટે મંજૂરી નથી: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S માન્ય અહેવાલ બંધારણમાં નથી. રિપોર્ટ બંધારણમાં \ જોઈએ% s નીચેનામાંથી એક
DocType: Chat Message,Chat,ચેટ
DocType: LDAP Group Mapping,LDAP Group Mapping,એલડીએપી ગ્રુપ મેપિંગ
DocType: Dashboard Chart,Chart Options,ચાર્ટ વિકલ્પો
@@ -1617,7 +1632,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,તમા
DocType: Dropbox Settings,Dropbox Access Secret,ડ્રૉપબૉક્સ ઍક્સેસ સિક્રેટ
DocType: Tag Link,Document Title,દસ્તાવેજ શીર્ષક
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ફરજિયાત)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલાં
DocType: Social Login Key,Social Login Provider,સામાજિક લૉગિન પ્રદાતા
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,અન્ય એક ટિપ્પણી ઉમેરો
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ફાઈલમાં કોઈ માહિતી મળી નથી. કૃપા કરીને નવી ફાઇલને ડેટા સાથે ફરીથી જોડો.
@@ -1663,6 +1677,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",પસ
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 વર્ષ
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,કાયમ કાઢી {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,સમાન ફાઇલ પહેલેથી રેકોર્ડ જોડાયેલ છે
+DocType: Event Sync Log,Synced,સમન્વયિત
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} માન્ય વર્કફ્લો સ્ટેટ નથી. કૃપા કરીને તમારા વર્કફ્લોને અપડેટ કરો અને ફરીથી પ્રયાસ કરો.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} પોઇન્ટ આપ્યો
DocType: Workflow State,wrench,સાધન
@@ -1759,6 +1774,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,મહત્તમ લંબાઈ
DocType: Print Format,Jinja,જીંજા
DocType: Workflow State,map-marker,નકશા માર્કર
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,બે દસ્તાવેજો વચ્ચે મેપિંગ ગોઠવણી.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,એક મુદ્દો સબમિટ
DocType: Event,Repeat this Event,આ ઘટના પુનરાવર્તન
DocType: Address,Maintenance User,જાળવણી વપરાશકર્તા
@@ -1816,6 +1832,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,પરીક્ષણ ઇમેઇલ સરનામું
DocType: Auto Repeat,Reference Document Type,સંદર્ભ દસ્તાવેજ પ્રકારની
DocType: ToDo,Sender,પ્રેષક
+DocType: Event Consumer,Incoming Change,ઇનકમિંગ ચેન્જ
DocType: Google Drive,Backup Folder Name,બેકઅપ ફોલ્ડરનું નામ
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,સૂચનનું મૂલ્યાંકન કરતી વખતે ભૂલ {0}. કૃપા કરીને તમારો નમૂનો ઠીક કરો
DocType: GSuite Settings,Google Apps Script,Google Apps સ્ક્રિપ્ટ
@@ -1877,9 +1894,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,નવ
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,વિનંતીને મંજૂરી આપવા માટે નીચેની લિંક પર ક્લિક કરો
DocType: Workflow State,align-left,-ડાબે સંરેખિત કરો
DocType: Onboarding Slide,Action Settings,ક્રિયા સેટિંગ્સ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,સેટઅપ> વપરાશકર્તા
DocType: User,Defaults,ડિફૉલ્ટ્સ
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","સરખામણી માટે,> 5, <10 અથવા = 324 નો ઉપયોગ કરો. શ્રેણીઓ માટે, 5:10 (5 અને 10 ની કિંમતો માટે) નો ઉપયોગ કરો."
DocType: Energy Point Log,Revert Of,રીવર્ટ ઓફ
+DocType: Document Type Mapping,Field Mapping,ફીલ્ડ મેપિંગ
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,વર્તમાન સાથે મર્જ
DocType: User,Birth Date,જન્મ તારીખ
DocType: Communication Link,Link Title,લિંક શીર્ષક
@@ -1907,6 +1925,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,ટ Tagગ લિંક
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,ચેઇન અખંડિતતા
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,ટેસ્ટમાં
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",= [?] દા.ત. 1 યુએસડી માટે અપૂર્ણાંક = 100 ટકા 1 કરન્સી
DocType: Data Import,Partially Successful,આંશિક રીતે સફળ
@@ -1916,6 +1935,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,એલડીએપી ગ્રુપ મેપિંગ્સ
DocType: Chat Message Attachment,Chat Message Attachment,ચેટ સંદેશ જોડાણ
DocType: LDAP Settings,Path to CA Certs File,સીએ સર્ટ્સ ફાઇલનો માર્ગ
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,જો દસ્તાવેજમાં નિર્માતા અને ગ્રાહકના અંતમાં ક્ષેત્રના વિવિધ નામ છે તો આ તપાસો અને મેપિંગ સેટ કરો
DocType: Address,Manipur,મણિપુર
DocType: Web Form Field,Allow Read On All Link Options,બધા લિંક વિકલ્પો પર વાંચો પરવાનગી આપે છે
DocType: DocType,Database Engine,ડેટાબેઝ એન્જિન
@@ -2047,6 +2067,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,નૉૅધ
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,ભૂલ રિપોર્ટ
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / Excel ફોર્મેટમાં ડેટા નિકાસ કરો.
+DocType: Document Type Field Mapping,Document Type Field Mapping,દસ્તાવેજ પ્રકાર ફીલ્ડ મેપિંગ
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,વૈશ્વિક શોધ દસ્તાવેજો ગોઠવી રહ્યા છે.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,પ્રમાણીકરણ એપ્લિકેશન્સ તમે ઉપયોગ કરી શકો છો:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} પહેલાંથી અસ્તિત્વમાં છે બીજું નામ પસંદ કરો
@@ -2120,7 +2141,6 @@ DocType: Workflow State,Upload,અપલોડ કરો
DocType: User Permission,Advanced Control,ઉન્નત નિયંત્રણ
DocType: System Settings,Date Format,તારીખ ફોર્મેટ
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,પ્રકાશિત
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ડિફોલ્ટ સરનામું નમૂના મળ્યું નથી. કૃપા કરીને સેટઅપ> પ્રિન્ટિંગ અને બ્રાંડિંગ> સરનામાં ટેમ્પલેટમાંથી એક નવું બનાવો.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","વર્કફ્લો માટે ક્રિયાઓ (દા.ત., રદ મંજૂર)."
DocType: Data Import,Skip rows with errors,ભૂલો સાથે પંક્તિઓ છોડો
DocType: Workflow State,flag,ધ્વજ
@@ -2183,6 +2203,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,રાજ્ય બદલવા માટે સોંપેલ એક દસ્તાવેજ અને ભૂમિકા મંજૂરી સ્ટેટ્સ પ્રતિનિધિત્વ કરે છે.
DocType: Data Migration Connector,Database Name,ડેટાબેઝ નામ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,પુનઃતાજું ફોર્મ
+DocType: Event Producer,Event Producer,ઇવેન્ટ નિર્માતા
DocType: DocField,Select,પસંદ કરો
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,સંપૂર્ણ લોગ જુઓ
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","સરળ પાયથોન અભિવ્યક્તિ, ઉદાહરણ: સ્થિતિ == 'ખોલો' અને પ્રકાર == 'બગ'"
@@ -2298,6 +2319,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,લૉગિ
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,આવું કરવા માટે ઉમેરો
DocType: Footer Item,Company,કંપની
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},સરેરાશ {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,સફળ વ્યવહાર
DocType: Scheduled Job Log,Scheduled,અનુસૂચિત
DocType: User,Logout from all devices while changing Password,પાસવર્ડ બદલી રહ્યા હોય ત્યારે બધા ઉપકરણોથી લૉગઆઉટ કરો
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,પાસવર્ડ ચકાસો
@@ -2407,6 +2429,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,મહિન
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip ઉમેરો Reference: {{ reference_doctype }} {{ reference_name }} મોકલવા માટે દસ્તાવેજ સંદર્ભ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,ફક્ત દસ્તાવેજમાં શામેલ વપરાશકર્તાઓ સૂચિબદ્ધ છે
DocType: DocField,Fetch From,પ્રતિ મેળવો મેળવો
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,સેટઅપ> ફોર્મ કસ્ટમાઇઝ કરો
apps/frappe/frappe/modules/utils.py,App not found,એપ્લિકેશન મળી નથી
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},નથી બનાવી શકો છો {0} બાળક દસ્તાવેજ સામે: {1}
DocType: Social Login Key,Social Login Key,સામાજિક લૉગિન કી
@@ -2417,7 +2440,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,"સં
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,સોશિયલ હોમ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},તરીકે સેટ કરી શકાય છે પછી દાખલ કરો {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,શેર {0} સાથે
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ઇમેઇલ એકાઉન્ટ સેટઅપ માટે તમારો પાસવર્ડ દાખલ કરો:
DocType: Workflow State,hand-up,હાથ ઉપર
DocType: Blog Settings,Writers Introduction,લેખકો પરિચય
DocType: Address,Phone,ફોન
@@ -2475,7 +2497,7 @@ DocType: Web Page,Insert Style,સામેલ કરો પ્રકાર
DocType: Prepared Report,Error Message,ક્ષતી સંદેશ
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,ન્યૂ રિપોર્ટ નામ
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,વિકેન્ડ છુપાવો
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,આપમેળે રિકરિંગ દસ્તાવેજો ઉત્પન્ન થાય છે.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,આપમેળે રિકરિંગ દસ્તાવેજો ઉત્પન્ન થાય છે.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,છે
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,માહિતી સાઇન
@@ -2483,7 +2505,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,મા
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","આ ચલણ કેવી રીતે બંધારણ જોઈએ? સેટ નથી, તો, સિસ્ટમ મૂળભૂતોને વાપર્યા હશે"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} દસ્તાવેજો સબમિટ કરીએ?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,તમે લૉગ ઇન અને બેકઅપ ઍક્સેસ કરવા માટે સક્ષમ હોઈ સિસ્ટમ વ્યવસ્થાપક ભૂમિકા હોય છે કરવાની જરૂર છે.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","ક્યૂઝેડ ટ્રે એપ્લિકેશનથી કનેક્ટ કરવામાં ભૂલ ...
કાચો મુદ્રણ સુવિધા વાપરવા માટે તમારી પાસે ક્યૂઝેડ ટ્રે એપ્લિકેશન ઇન્સ્ટોલ અને ચાલુ હોવી જરૂરી છે.
ક્યૂઝેડ ટ્રેને ડાઉનલોડ અને ઇન્સ્ટોલ કરવા અહીં ક્લિક કરો .
કાચો છાપવા વિશે વધુ જાણવા માટે અહીં ક્લિક કરો ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,પ્રિન્ટર મેપિંગ
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,જોડાણ પહેલા સેવ કરો.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,શું તમે બધા કડી થયેલ દસ્તાવેજો રદ કરવા માંગો છો?
@@ -2511,6 +2532,7 @@ DocType: Role Permission for Page and Report,Set Role For,ભૂમિકા મ
DocType: GCalendar Account,The name that will appear in Google Calendar,તે નામ કે જે Google Calendar માં દેખાશે
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} સાથે ડાયરેક્ટ રૂમ પહેલેથી જ અસ્તિત્વમાં છે.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,તાજું ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},કૃપા કરીને ડેશબોર્ડ ચાર્ટ માટે સેટ કરેલ ફિલ્ટર મૂલ્યો તપાસો: {}
DocType: Event,Starts on,પર શરૂ થાય છે
DocType: System Settings,System Settings,સિસ્ટમ ગોઠવણીઓ
DocType: GCalendar Settings,Google API Credentials,Google API ઓળખપત્રો
@@ -2535,6 +2557,7 @@ DocType: Workflow State,ok-sign,બરાબર સાઇન
apps/frappe/frappe/config/settings.py,Deleted Documents,કાઢી નાખેલ દસ્તાવેજો
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ફોર્મેટ કેસ સંવેદનશીલ છે
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ડેસ્કટોપ ચિહ્ન પહેલેથી જ અસ્તિત્વમાં છે
+DocType: Event Consumer Document Type,Approval Status,મંજૂરી સ્થિતિ
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"સ્લાઇડ્સ બતાવવા જોઈએ તે બધા ડોમેન્સમાં શું છે તેનો ઉલ્લેખ કરો. જો કંઇપણ સ્પષ્ટ કરેલ નથી, તો મૂળભૂત રીતે સ્લાઇડ બધા ડોમેન્સમાં બતાવવામાં આવશે."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ડુપ્લિકેટ
DocType: Newsletter,Create and Send Newsletters,બનાવો અને મોકલો ન્યૂઝલેટર્સ
@@ -2553,6 +2576,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,મદદ લેખો
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,પ્રકાર:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,તમારી ચૂકવણી નિષ્ફળ રહી છે.
+DocType: Event Producer,Producer URL,નિર્માતા URL
DocType: Comment,Unshared,સહિયારા
DocType: Address,Karnataka,કર્ણાટક
apps/frappe/frappe/desk/moduleview.py,Module Not Found,મોડ્યુલ મળ્યો નથી
@@ -2564,6 +2588,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,સોંપણી પૂર્ણ
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},બલ્ક ફેરફાર કરો {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,રિપોર્ટ ડાઉનલોડ કરો
+apps/frappe/frappe/model/workflow.py,Workflow Status,વર્કફ્લો સ્થિતિ
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,સક્રિય
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,ફક્ત સંચાલકને ડેશબોર્ડ ચાર્ટ સ્રોત બનાવવાની મંજૂરી છે
DocType: About Us Settings,Settings for the About Us Page,વિશે પેજમાં માટે સુયોજનો
@@ -2621,6 +2646,7 @@ DocType: User Social Login,User Social Login,વપરાશકર્તા સ
DocType: Contact,All,બધા
DocType: Email Queue,Recipient,પ્રાપ્તકર્તા
DocType: Webhook,Webhook Security,વેબહૂક સુરક્ષા
+DocType: Event Sync Log,Producer Document Name,નિર્માતા દસ્તાવેજનું નામ
DocType: Communication,Has Attachment,જોડાણ ધરાવે
DocType: Address,Sales User,સેલ્સ વપરાશકર્તા
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ખેંચો અને છોડો બિલ્ડ સાધન અને પ્રિન્ટ ફોર્મેટ્સ કસ્ટમાઇઝ કરવા માટે.
@@ -2655,6 +2681,7 @@ DocType: Address,Arunachal Pradesh,અરુણાચલ પ્રદેશ
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,ચાઇલ્ડ ટેબલ્સને અન્ય ડોકટાઇપ્સમાં ગ્રીડ તરીકે બતાવવામાં આવી છે
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,સેટઅપ ઓટો ઇમેઇલ
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + ડાઉન
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,વપરાશની ઇવેન્ટ્સ માટે તમે જે સબ્સ્ક્રાઇબ કરવા માંગો છો તે સાઇટ.
DocType: Chat Profile,Message Preview,સંદેશ પૂર્વાવલોકન
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,આ ટોપ 10 સામાન્ય પાસવર્ડ છે.
DocType: User,User Defaults,વપરાશકર્તા ડિફૉલ્ટ્સ
@@ -2687,6 +2714,7 @@ DocType: Dashboard Chart,Last Synced On,છેલ્લું સમન્વય
DocType: Comment,Comment Type,ટિપ્પણી લખો
DocType: OAuth Client,OAuth Client,ઑથ ક્લાઈન્ટ
DocType: Assignment Rule,Users,વપરાશકર્તાઓ
+DocType: Document Type Mapping,Local Document Type,સ્થાનિક દસ્તાવેજ પ્રકાર
DocType: Address,Odisha,ઓરિસ્સાના
DocType: Report,Report Type,રિપોર્ટ પ્રકાર
DocType: DocField,Signature,હસ્તાક્ષર
@@ -2728,6 +2756,8 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} સ્વ આ કાર્ય સોંપેલ: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,તમારો દેશ
DocType: Assignment Rule Day,Sunday,રવિવારે
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","ગ્રાહકો હોય તેવા દસ્તાવેજો માટે ઇવેન્ટ નિર્માતા સાઇટ પરના બધા દાખલ, અપડેટ્સ અને કાtionsી નાખવાનો લ Logગ જાળવે છે."
+apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: ફીલ્ડનામ {1} માંથી એક હોઈ શકતું નથી
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,સ્ટેન્ડિંગ્સ
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,ગ્રિડ દૃશ્ય માં
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,વધુ પ્રવૃત્તિ નહીં
@@ -2870,7 +2900,6 @@ DocType: Web Page,Sidebar and Comments,સાઇડબાર અને ટિપ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","તમે એક દસ્તાવેજ પછી તે રદ કરો અને સેવ સુધારો હોય ત્યારે, તે જૂના નંબર ની આવૃત્તિ છે કે જે નવા સંખ્યા મળશે."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} દસ્તાવેજને જોડવાની મંજૂરી નથી, કૃપા કરીને પ્રિંટ સેટિંગ્સમાં {0} માટે છાપવા સક્ષમ કરો"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ સેટ નથી. કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી નવું ઇમેઇલ એકાઉન્ટ બનાવો
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} પર દસ્તાવેજ જુઓ
DocType: Stripe Settings,Publishable Key,publishable કી
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,આયાત પ્રારંભ કરો
@@ -2946,7 +2975,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,માહિતી
DocType: Custom Field,Permission Level,પરવાનગી સ્તર
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: સબમિટ રદ, લખો વગર સુધારો સેટ કરી શકાતો નથી"
DocType: List View Setting,Disable Count,ગણતરી અક્ષમ કરો
-DocType: Google Maps Settings,Client Key,ક્લાયન્ટ કી
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,તમે જોડાણ કાઢી નાખવા માંગો છો તમને ખાતરી છે?
apps/frappe/frappe/__init__.py,Thank you,આભાર
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,સાચવી
@@ -3069,6 +3097,7 @@ DocType: Workflow Document State,Only Allow Edit For,માત્ર ફેર
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,ગૂગલ ડ્રાઇવ પર બેક અપ લેવું.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},ફરજિયાત ફીલ્ડ: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,તમારું નામ
+DocType: Event Producer Document Type,Event Producer Document Type,ઇવેન્ટ નિર્માતા દસ્તાવેજ પ્રકાર
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,કનેક્શન સફળતા
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,સ્લાઇડ પ્રકારનો boardનબોર્ડિંગ સ્લાઇડ પહેલાથી અસ્તિત્વમાં છે.
@@ -3137,6 +3166,7 @@ DocType: Address,Postal Code,પોસ્ટ કોડ
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,ફરીથી લિંક કોમ્યુનિકેશન
DocType: Translation,Contributed,ફાળો આપ્યો
apps/frappe/frappe/config/customization.py,Form Customization,ફોર્મ કસ્ટમાઇઝેશન
+DocType: Event Update Log,Event Update Log,ઇવેન્ટ અપડેટ લ Logગ
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,કોઈ સક્રિય સત્રો નથી
DocType: Web Form,Route to Success Link,સફળતા લિંક માટે માર્ગ
DocType: Onboarding Slide Field,Right,અધિકાર
@@ -3162,7 +3192,7 @@ DocType: Website Settings,Chat Operators,ચેટ ઓપરેટર્સ
DocType: S3 Backup Settings,ca-central-1,સીએ-સેન્ટ્રલ -1
DocType: Contact Us Settings,Pincode,પીન કોડ
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,કોઈ ખાલી કૉલમ ફાઈલમાં છે કે તેની ખાતરી કરો.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"જો તે ઘણા તબક્કાઓમાંથી પસાર થાય છે, તો કોઈ દસ્તાવેજના જીવનચક્ર પર લક્ષ્યોને ટ્રracક્સ કરે છે."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"જો તે ઘણા તબક્કાઓમાંથી પસાર થાય છે, તો કોઈ દસ્તાવેજના જીવનચક્ર પર લક્ષ્યોને ટ્રracક્સ કરે છે."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","ફાઇલોનું નામ બદલ્યું અને નિયંત્રકોમાં કોડ બદલી, કૃપા કરીને તપાસો!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,તમારી પ્રોફાઇલ ઇમેઇલ સરનામું છે કે જે ખાતરી કરો
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,તમે આ ફોર્મ સંગ્રહ ન કરેલા ફેરફારો છે. તમે આ ચાલુ રાખવા પહેલાં સેવ કરો.
@@ -3189,7 +3219,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API સિક્રેટ સાચવો:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},રદ દસ્તાવેજ લિંક કરી શકતા નથી: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,પ્રમાણભૂત અહેવાલ ફેરફાર કરી શકતા નથી. ડુપ્લિકેટ અને નવા અહેવાલ બનાવવા કૃપા કરીને
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","કંપની, ફરજિયાત છે કારણ કે તે તમારી કંપની સરનામું"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","ઉદાહરણ તરીકે: તમે જે દસ્તાવેજ ID ને સમાવવા માટે કરવા માંગો છો, ઉપયોગ {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},માટે પસંદ કોષ્ટક સ્તંભોને {0}
DocType: Custom Field,Options Help,વિકલ્પો મદદ
@@ -3197,7 +3226,6 @@ DocType: Footer Item,Group Label,જૂથ લેબલ
DocType: Kanban Board,Kanban Board,Kanban બોર્ડ
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ગૂગલ સંપર્કો રૂપરેખાંકિત કરવામાં આવી છે.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 રેકોર્ડની નિકાસ કરવામાં આવશે
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,વપરાશકર્તા સાથે સંકળાયેલ કોઈ ઇમેઇલ એકાઉન્ટ નથી. કૃપા કરીને વપરાશકર્તા> ઇમેઇલ ઇનબોક્સ હેઠળ એક એકાઉન્ટ ઉમેરો.
DocType: DocField,Report Hide,રિપોર્ટ છુપાવો
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},વૃક્ષ દેખાવ માટે ઉપલબ્ધ નથી {0}
DocType: DocType,Restrict To Domain,DOMAIN પર પ્રતિબંધિત
@@ -3262,7 +3290,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: ક્ષેત્ર {1} પ્રકાર {2} ફરજિયાત હોઈ શકતું નથી
DocType: System Settings,In Days,દિવસોમાં
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,મિસ
+DocType: Event Producer Document Type,Has Mapping,મેપિંગ છે
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,કૃપયા ચોક્કસ ઉલ્લેખ કરો
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,અમાન્ય ફિલ્ટર મૂલ્ય
DocType: Comment,Bot,બોટ
DocType: Help Article,Help Article,સહાય લેખ
DocType: Page,Page Name,પૃષ્ઠ નામ
@@ -3367,7 +3397,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,પ્રિન્ટ ફોર્મેટ
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ગ્રિડ દૃશ્ય ટૉગલ કરો
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,આગળના રેકોર્ડ પર જાઓ
-DocType: System Settings,Time Format,સમય ફોર્મેટ
+DocType: Country,Time Format,સમય ફોર્મેટ
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,અમાન્ય ચુકવણી ગેટવે ઓળખાણપત્ર
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,આ નમૂનાની ફાઇલ છે જે ફક્ત કેટલીક પંક્તિઓથી બનેલી હરોળથી પેદા થાય છે. તમારે આ ફાઇલને સુધારણા અને આયાત માટે ઉપયોગ કરવો જોઈએ.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,દસ્તાવેજ પ્રકાર અને ભૂમિકાઓ પર સેટ પરવાનગીઓ
@@ -3683,6 +3713,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,વપરાશકર્તા નામનો ઉપયોગ કરીને લૉગિનને મંજૂરી આપો
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,રિપોર્ટ સક્ષમ
DocType: DocField,Display Depends On,ડિસ્પ્લે પર આધાર રાખે છે
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલાં
DocType: Social Login Key,API Endpoint,API એન્ડપોઇન્ટ
DocType: Web Page,Insert Code,સામેલ કરો કોડ
DocType: Data Migration Run,Current Mapping Type,વર્તમાન મેપિંગ પ્રકાર
@@ -3735,6 +3766,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ત
apps/frappe/frappe/www/login.html,Or login with,અથવા પ્રવેશ
DocType: Error Snapshot,Locals,સ્થાનિક
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},દ્વારા વાતચીત {0} પર {1}: {2}
+DocType: Event Producer,Event Producer Document Types,ઇવેન્ટ નિર્માતા દસ્તાવેજ પ્રકાર
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટમાંથી ડિફ defaultલ્ટ ઇમેઇલ એકાઉન્ટ સેટ કરો
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,દ્વારા જૂથ પસંદ કરો ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,દા.ત. (55 + 434) / 4 અથવા = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} જરૂરી છે
@@ -3764,9 +3797,11 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,રિપોર્ટ પ્રારંભ સમય
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ડેટા નિકાસ કરો
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,સમન્વયનની સ્થિતિ અને સિંક નિષ્ફળ થવાના કિસ્સામાં ફરીથી સમન્વયન બટન સાથે વપરાશમાં લેવામાં આવતી દરેક ઇવેન્ટનો લ logગ જાળવે છે.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,પસંદ સ્તંભોને
DocType: Translation,Source Text,સોર્સ લખાણ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,આ એક બેકગ્રાઉન્ડ રિપોર્ટ છે. કૃપા કરીને યોગ્ય ફિલ્ટર્સ સેટ કરો અને પછી એક નવી બનાવો.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ સેટ નથી. કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી નવું ઇમેઇલ એકાઉન્ટ બનાવો
apps/frappe/frappe/www/login.py,Missing parameters for login,પ્રવેશ માટે ગુમ પરિમાણો
DocType: Workflow State,folder-open,ફોલ્ડર ખોલો
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",એકવાર સબમિટ થઈ ગયા પછી સબમિટ કરવા યોગ્ય દસ્તાવેજો બદલી શકાતા નથી. તેઓ ફક્ત રદ અને સુધારી શકાય છે.
@@ -3841,6 +3876,7 @@ DocType: Event,Send an email reminder in the morning,સવારે એક ઇ
DocType: Blog Post,Published On,પર પ્રકાશિત
DocType: Contact,Gender,જાતિ
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,મેન્ડેટરી માહિતી ગુમ:
+DocType: Event Consumer,Event Subscriber,ઇવેન્ટ સબસ્ક્રાઇબર
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,વિનંતી વિનંતી URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,માત્ર 200 દાખલ એક વિનંતી માન્ય
DocType: Footer Item,URL,URL ને
@@ -3853,6 +3889,7 @@ DocType: Auto Email Report,Half Yearly,અર્ધ વાર્ષિક
DocType: Communication,Marked As Spam,સ્પામ તરીકે માર્ક
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ફાઈલ URL સાથે કેટલાક સમસ્યા છે: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,વૃક્ષ
+DocType: Event Producer Document Type,Use Same Name,સમાન નામનો ઉપયોગ કરો
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,તમે આ અહેવાલ છાપવા માટે પરવાનગી નથી
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,વપરાશકર્તા પરવાનગીઓ
DocType: Workflow State,warning-sign,ચેતવણી સાઇન
@@ -3862,6 +3899,7 @@ DocType: Workflow State,User,વપરાશકર્તા
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",તરીકે બ્રાઉઝર વિન્ડો બતાવો શીર્ષક "ઉપસર્ગ - શીર્ષક"
DocType: Payment Gateway,Gateway Settings,ગેટવે સેટિંગ્સ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,દસ્તાવેજ પ્રકારની લખાણ
+DocType: Event Sync Log,Event Sync Log,ઇવેન્ટ સમન્વયન લ .ગ
apps/frappe/frappe/handler.py,Logged Out,લૉગ આઉટ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,વધુ ...
DocType: System Settings,User can login using Email id or Mobile number,વપરાશકર્તા ઇમેઇલ id અથવા મોબાઇલ નંબરનો ઉપયોગ કરીને લોગઇન કરી શકો છો
@@ -3900,12 +3938,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,નથી
DocType: Workflow State,star,સ્ટાર
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,હબ
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,જો આ તપાસવામાં આવે તો દસ્તાવેજોનું તે જ નામ ઇવેન્ટ નિર્માતાની સાઇટ પર હોય છે
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,કિંમતો અલ્પવિરામ દ્વારા અલગ
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},પ્રકાર કરન્સી માટે મહત્તમ પહોળાઈ પંક્તિ માં 100 પીએક્સ છે {0}
apps/frappe/frappe/config/website.py,Content web page.,સામગ્રી વેબ પાનું.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,એક નવી ભૂમિકા ઉમેરો
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,વેબ પૃષ્ઠની મુલાકાત લો
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,નવી સોંપણી
+DocType: Event Consumer Document Type,Approved,મંજૂર
DocType: Google Contacts,Last Sync On,છેલ્લું સમન્વયન ચાલુ કરો
DocType: Deleted Document,Deleted Document,ડિલીટ દસ્તાવેજ
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,અરે! કંઈક ખોટું થયું
@@ -3956,7 +3996,6 @@ DocType: DocField,Unique,અનન્ય
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{1} પર {0} પ્રશંસા
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,આંશિક સફળતા
DocType: Email Account,Service,સેવા
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,સેટઅપ> વપરાશકર્તા
DocType: File,File Name,ફાઈલનું નામ
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),મળી નથી {0} માટે {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ફરી: {0}
@@ -3968,11 +4007,10 @@ DocType: Calendar View,Calendar View,કૅલેન્ડર દૃશ્ય
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,સંપાદિત કરો ફોર્મેટ
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,પૂર્ણ નોંધણી
DocType: GCalendar Settings,Enable,સક્ષમ કરો
-DocType: Google Maps Settings,Home Address,ઘરનું સરનામું
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),જો તમે માત્ર એક જ વારમાં 5000 રેકોર્ડ સુધી અપલોડ કરી શકો છો. (કેટલાક કિસ્સાઓમાં ઓછી હોઈ શકે છે)
DocType: Report,"output in the form of `data = [columns, result]`","output ડેટા = [ક =લમ, પરિણામ] the ના રૂપમાં આઉટપુટ"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,લાગુ દસ્તાવેજ પ્રકાર
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,વપરાશકર્તા સોંપણીઓ માટે નિયમો સેટ કરો.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,વપરાશકર્તા સોંપણીઓ માટે નિયમો સેટ કરો.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},માટે અપર્યાપ્ત પરવાનગી {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),રિપોર્ટ સાચવવામાં આવી ન હતી (ભૂલો હતા)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,હેડર સામગ્રી બદલી શકાતી નથી
diff --git a/frappe/translations/he.csv b/frappe/translations/he.csv
index 78d679cacd..a6d33f7025 100644
--- a/frappe/translations/he.csv
+++ b/frappe/translations/he.csv
@@ -841,7 +841,6 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid f
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js,Open Source Applications for the Web,יישומי קוד פתוחים לאינטרנט
DocType: Workflow State,Home,בית
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,לא ב
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","החברה היא חובה, כפי שהוא כתובת החברה שלך"
apps/frappe/frappe/config/website.py,User editable form on Website.,טופס הניתן לעריכה למשתמש באתר.
DocType: System Settings,Allow only one session per user,אפשר רק פגישה אחת לכל משתמש
apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,טופס זה השתנה לאחר שהעמסת אותו
@@ -1163,6 +1162,7 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},פו
apps/frappe/frappe/__init__.py,No permission for {0},אין הרשאה {0}
DocType: Print Format,Helvetica,Helvetica
apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Scheduled to send to {0} recipients,מתוכנן לשלוח {0} מקבלים
+DocType: Event Consumer Document Type,Approved,אושר
DocType: Contact,All,כל
apps/frappe/frappe/core/doctype/user/user.py,There should remain at least one System Manager,לא צריך להישאר מנהל מערכת אחת לפחות
apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","הגדרות שפה, תאריך ושעה"
@@ -1464,7 +1464,7 @@ DocType: Notification,Optional: The alert will be sent if this expression is tru
DocType: User,User Image,תמונת משתמש
DocType: Contact,Salutation,שְׁאֵילָה
DocType: Event,Leave blank to repeat always,שאר ריק כדי לחזור תמיד
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,לְהַשְׁלִים
+DocType: Scheduled Job Log,Complete,לְהַשְׁלִים
DocType: Comment,Attachment Removed,הוסר Attachment
apps/frappe/frappe/core/doctype/user/user.py,Administrator accessed {0} on {1} via IP Address {2}.,מנהל נצפה {0} על {1} באמצעות כתובת IP {2}.
DocType: Email Account,Ignore attachments over this size,התעלם קבצים מצורפים מעל הגודל הזה
@@ -1868,6 +1868,7 @@ DocType: Auto Repeat,Reference Document Type,התייחסות סוג המסמך
apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},בחר {0}
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,שינוי שם
apps/frappe/frappe/database/schema.py,Fieldname {0} cannot have special characters like {1},Fieldname {0} לא יכול להיות תווים מיוחדים כמו {1}
+DocType: Event Consumer Document Type,Approval Status,סטטוס אישור
DocType: Data Migration Run,End Time,שעת סיום
DocType: Website Settings,Set Banner from Image,באנר להגדיר מתמונה
DocType: Workflow State,plane,מטוס
diff --git a/frappe/translations/hi.csv b/frappe/translations/hi.csv
index 958268245e..00bc1d6396 100644
--- a/frappe/translations/hi.csv
+++ b/frappe/translations/hi.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,एक उपयोगकर्ता के लिए यह भूमिका अद्यतन उपयोगकर्ता अनुमतियाँ
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},नाम बदलें {0}
DocType: Workflow State,zoom-out,ज़ूम आउट
-DocType: Data Import Beta,Import Options,आयात विकल्प
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,इसके उदाहरण खुला है जब {0} नहीं खोल सकता
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,टेबल {0} खाली नहीं हो सकता
DocType: SMS Parameter,Parameter,प्राचल
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,प्रकाशित क्षेत्र है
DocType: GCalendar Settings,GCalendar Settings,GCalendar सेटिंग्स
DocType: Email Group,Email Group,ईमेल समूह
-apps/frappe/frappe/__init__.py,Only for {},केवल के लिए {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google कैलेंडर - Google कैलेंडर से ईवेंट {0} को नहीं मिटा सका, त्रुटि कोड {1}।"
DocType: Event,Pulled from Google Calendar,Google कैलेंडर से खींचा गया
DocType: Note,Seen By,द्वारा देखा गया
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,मल्टीप
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,वैध उपयोगकर्ता छवि नहीं
DocType: Energy Point Log,Reverted,वापस लाया गया
DocType: Success Action,First Success Message,पहला सफलता संदेश
+DocType: Document Type Mapping,Document Type Mapping,दस्तावेज़ प्रकार मानचित्रण
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,उसके जैसा नहीं
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},गलत मूल्य: {0} होना चाहिए {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","बदले क्षेत्र गुण (छुपाने , केवल पढ़ने के लिए , अनुमति आदि )"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,वह साइट जो आपके ईवेंट का उपभोग कर रही है।
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,सराहना
DocType: Notification Settings,Document Share,दस्तावेज़ साझा करें
DocType: Workflow State,lock,ताला
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,लॉग
DocType: Workflow State,indent-right,इंडेंट सही
DocType: Has Role,Has Role,भूमिका है
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,पुन: सिंक
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,सर्वर पर QR कोड छवि बनाए रखने के लिए समय सेकंड। न्यूनतम: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: {2} के लिए फ़ील्डटाइप {1} अनुक्रमित नहीं किया जा सकता है
DocType: Dashboard Chart,Timespan,समय अवधि
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,जाल संपर्क
DocType: Deleted Document,Restored,लौटी
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ ट्रे एप्लिकेशन से कनेक्ट करने में त्रुटि ...
रॉ प्रिंट फीचर का उपयोग करने के लिए आपको QZ ट्रे एप्लिकेशन इंस्टॉल और रनिंग करना होगा।
क्यूज ट्रे डाउनलोड और इंस्टॉल करने के लिए यहां क्लिक करें ।
रॉ प्रिंटिंग के बारे में अधिक जानने के लिए यहां क्लिक करें ।"
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 मिनट पहले
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","इसके अलावा सिस्टम मैनेजर से, सेट उपयोगकर्ता अनुमतियों के साथ भूमिकाओं सही है कि दस्तावेज़ प्रकार के लिए अन्य उपयोगकर्ताओं के लिए अनुमतियाँ सेट कर सकते हैं।"
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,थीम को कॉन्फ़िगर करें
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,अनदेखी
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,फ़ाइल प्रबंधक
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML हैडर, रोबोट और रीडायरेक्ट"
DocType: GCalendar Account,Refresh Token,ताज़ा टोकन
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,ईवेंट निर्माता साइट से कनेक्ट करने में विफल। कुछ समय बाद पुन: प्रयास करें।
DocType: Address,Goa,गोवा
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,इस साइट के लिए कोई लंबित या वर्तमान नौकरियां नहीं हैं
DocType: Webhook,Doc Event,डॉक्टर घटना
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,स्क्रिप्ट मैने
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,कोई गतिविधि नहीं
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,तृतीय पक्ष ऐप्स
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,सिस्टम मैनेजर बन जाएगा पहले उपयोगकर्ता (आप इस पर बाद में बदल सकते हैं)।
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,आप अपनी रिपोर्ट के फ़िल्टर को बदलने का प्रयास कर सकते हैं।
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,नो इवेंट्स टुडे
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,आप अपने आप को समीक्षा अंक नहीं दे सकते
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,डॉक्टरेट प्रकार चयनित डॉक ईवेंट के लिए योग्य होना चाहिए
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,आप इस दस्तावेज़ से संबंधित ईमेल भेजने की अनुमति नहीं है
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,कृपया {0} सॉर्ट करने के लिए / समूह से कम से कम 1 स्तंभ का चयन करें
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0}: {1} के लिए अनुमति नहीं है। प्रतिबंधित क्षेत्र: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,कंपनी लिंक नहीं है
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,इस जाँच करें कि आप अपने भुगतान सैंडबॉक्स एपीआई का उपयोग कर परीक्षण कर रहे हैं
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,आप एक मानक वेबसाइट के विषय को नष्ट करने की अनुमति नहीं है
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},अपना पहला {0} बनाएं
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} अ
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,एक ही स्लाइड आदेश के साथ एक ऑनबोर्डिंग स्लाइड {0} पहले से मौजूद है
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,अक्षम रिपोर्ट
DocType: Translation,Contributed Translation Doctype Name,योगदान अनुवाद सिद्धांत नाम
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म को अनुकूलित करें
DocType: PayPal Settings,Redirect To,को अनुप्रेषित
DocType: Data Migration Mapping,Pull,खींचें
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},जावास्क्रिप्ट स्वरूप: frappe.query_reports [' REPORTNAME '] = {}
@@ -272,6 +276,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,अनुमति नहीं
DocType: DocShare,Internal record of document shares,दस्तावेज़ के शेयरों की आंतरिक रिकॉर्ड
DocType: Energy Point Settings,Review Levels,स्तर की समीक्षा करें
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> उपयोगकर्ता अनुमतियाँ
DocType: Workflow State,Comment,टिप्पणी
DocType: Data Migration Plan,Postprocess Method,पोस्टप्रोसेस विधि
DocType: DocType Action,Action Type,प्रक्रिया का प्रकार
@@ -321,13 +326,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,स
DocType: Workflow State,remove-circle,Remove-वृत्त
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,मेरी प्रोफाइल
DocType: Help Article,Beginner,नौसिखिया
+apps/frappe/frappe/__init__.py,This action is only allowed for {},यह क्रिया केवल {} के लिए अनुमत है
DocType: Contact,Is Primary Contact,प्राथमिक संपर्क
+DocType: Event Consumer,Event Consumer,इवेंट कंज्यूमर
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,जावास्क्रिप्ट पृष्ठ के सिर अनुभाग को संलग्न करने के लिए.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,जोड़ें / अद्यतन करें
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,मसौदा दस्तावेज मुद्रित करने के लिए अनुमति नहीं
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,डिफ़ॉल्ट पर पुनः सेट करें
DocType: Workflow,Transition Rules,संक्रमण नियम
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,पूर्वावलोकन में केवल पहले {0} पंक्तियों को दिखा रहा है
apps/frappe/frappe/core/doctype/report/report.js,Example:,उदाहरण:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,प्रतिबंध
DocType: Workflow,Defines workflow states and rules for a document.,एक दस्तावेज के लिए कार्यप्रवाह राज्यों और नियमों को परिभाषित करता है।
@@ -476,7 +482,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,जब तक दोहराएँ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,नए
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,आपको ये पहले बनाने की आवश्यकता है:
-DocType: Google Maps Settings,Google Maps Settings,Google मानचित्र सेटिंग्स
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,लोड हो रहा है ...
DocType: DocField,Password,पासवर्ड
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,आपका सिस्टम अद्यतन किया जा रहा है। कुछ ही क्षणों के बाद फिर से ताज़ा करें
@@ -568,6 +573,7 @@ DocType: System Settings,mm/dd/yyyy,dd / mm / yyyy
DocType: Onboarding Slide,Onboarding Slide,ऑनबोर्डिंग स्लाइड
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,अवैध पासवर्ड:
DocType: Print Settings,Send document web view link in email,भेजें ईमेल में दस्तावेज़ वेब दृश्य लिंक
+DocType: Event Consumer Document Type,Event Consumer Document Type,ईवेंट उपभोक्ता दस्तावेज़ प्रकार
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,पिछला
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,पुन:
DocType: LDAP Settings,Require Trusted Certificate,ट्रस्टेड सर्टिफिकेट चाहिए
@@ -643,6 +649,7 @@ DocType: Workflow State,volume-down,मात्रा नीचे
DocType: Onboarding Slide,Help Links,लिंक की मदद करें
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,इस IP पते से प्रवेश की अनुमति नहीं है
DocType: Notification Settings,Enable Email Notifications,ईमेल सूचनाएं सक्षम करें
+DocType: Document Type Field Mapping,Event Streaming,इवेंट स्ट्रीमिंग
apps/frappe/frappe/desk/reportview.py,No Tags,कोई टैग नहीं
DocType: Email Account,Send Notification to,को अधिसूचना भेजें
DocType: DocField,Collapsible,खुलने और बंधनेवाला
@@ -659,11 +666,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,क
apps/frappe/frappe/database/database.py,No conditions provided,कोई शर्तें प्रदान नहीं की गईं
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,वाई अक्ष फ़ील्ड
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,क्रमबद्ध क्षेत्र {0} एक वैध FIELDNAME होना चाहिए
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट नहीं मिला। कृपया सेटअप> प्रिंटिंग और ब्रांडिंग> एड्रेस टेम्प्लेट से एक नया बनाएं।
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,अधिक
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,एक नया रिकॉर्ड बनाएं
DocType: Contact,Sales Manager,बिक्री प्रबंधक
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,नाम बदलें
DocType: Print Format,Format Data,स्वरूप डेटा
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} वैध रिपोर्ट प्रारूप नहीं है। रिपोर्ट प्रारूप में निम्नलिखित {1} में से एक होना चाहिए
DocType: List Filter,Filter Name,फ़िल्टर नाम
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,जैसा
DocType: Assignment Rule,Automation,स्वचालन
@@ -682,6 +691,7 @@ DocType: User,Reset Password Key,पासवर्ड को रीसेट
DocType: Dashboard Chart,All Time,पूरा समय
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} के लिए अवैध दस्तावेज़ स्थिति
DocType: Email Account,Enable Auto Reply,ऑटो जवाब सक्षम करें
+apps/frappe/frappe/desk/query_report.py,No data to export,निर्यात करने के लिए कोई डेटा नहीं
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,नहीं देखा
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,एकल प्रिंट प्रारूप में मैप किए गए एकाधिक प्रिंटर नहीं हो सकते।
DocType: Workflow State,zoom-in,आकार वर्धन
@@ -832,6 +842,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,उपभ
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,प्रथम
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,अद्यतन अनुवाद
DocType: Error Snapshot,Exception,अपवाद
+DocType: Event Consumer,Event Consumer Document Types,ईवेंट उपभोक्ता दस्तावेज़ प्रकार
DocType: Email Account,Use IMAP,उपयोग आईमैप
DocType: Activity Log,Activity Log,गतिविधि लॉग
DocType: View Log,Viewed By,द्वारा देखा गया
@@ -870,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ल
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,चार्ट कॉन्फ़िगर करें
DocType: User,Last IP,अंतिम IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,कृपया अपने ईमेल में एक विषय जोड़ें
+apps/frappe/frappe/model/workflow.py,Errored Transactions,त्रुटिपूर्ण लेन-देन
DocType: Data Migration Connector,Data Migration Connector,डेटा माइग्रेशन कनेक्टर
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} वापस {1}
DocType: Email Account,Track Email Status,ईमेल स्थिति ट्रैक करें
@@ -900,6 +912,7 @@ DocType: Email Queue,Attachments,किए गए अनुलग्नकों
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,आप इस दस्तावेज़ का उपयोग करने की अनुमति नहीं है
DocType: Language,Language Name,भाषा का नाम
DocType: Email Group Member,Email Group Member,ईमेल समूह सदस्य
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,उपयोगकर्ता के साथ कोई ईमेल खाता संबद्ध नहीं है। कृपया उपयोगकर्ता> ईमेल इनबॉक्स के तहत एक खाता जोड़ें।
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,आपका खाता लॉक कर दिया गया है और {0} सेकंड के बाद फिर से शुरू होगा
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,उपयोगकर्ता अनुमतियों को उपयोगकर्ताओं को विशिष्ट रिकॉर्ड तक सीमित करने के लिए उपयोग किया जाता है।
DocType: Notification,Value Changed,मान बदल गया
@@ -991,6 +1004,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,मेंशन
DocType: Help Article,Expert,विशेषज्ञ
DocType: Workflow State,circle-arrow-right,वृत्त - तीर - सही
DocType: Role Profile,Role Profile,भूमिका प्रोफाइल
+DocType: Document Type Mapping,Remote Document Type,दूरस्थ दस्तावेज़ प्रकार
apps/frappe/frappe/permissions.py,Document Type is not importable,दस्तावेज़ प्रकार आयात करने योग्य नहीं है
DocType: LDAP Settings,LDAP Server Url,LDAP सर्वर URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,इसके {0} खुला है जब उदाहरण नहीं खोल सकता
@@ -1075,7 +1089,7 @@ DocType: Web Form,Allow Print,प्रिंट की अनुमति द
DocType: Communication,Clicked,क्लिक किया
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,करें
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},करने के लिए कोई अनुमति नहीं '{0} ' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते से डिफ़ॉल्ट ईमेल खाता सेटअप करें
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},केवल पहले {0} पंक्तियों को {1} से बाहर दिखाया जा रहा है
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,भेजने के लिए अनुसूचित
DocType: DocType,Track Seen,ट्रैक देखा
DocType: Dropbox Settings,File Backup,फ़ाइल बैकअप
@@ -1145,6 +1159,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,a
DocType: Data Export,Filter List,फ़िल्टर सूची
DocType: Data Export,Excel,एक्सेल
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,इवेंट कॉन्फ़िगरेशन
DocType: Email Account,Auto Reply Message,ऑटो उत्तर संदेश
DocType: Data Migration Mapping,Condition,शर्त
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} घंटे पहले
@@ -1204,9 +1219,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,हमेश
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,टिप्पणी करने के लिए लॉग इन करें
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,इस रेखा के नीचे डेटा में प्रवेश शुरू
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},के लिए बदले हुए मूल्यों {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ईमेल आईडी अद्वितीय होना चाहिए, {0} के लिए ईमेल खाता पहले से मौजूद है"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलना के लिए,> 5, <10 या = 324 का उपयोग करें। श्रेणियों के लिए, 5:10 (5 और 10 के बीच मानों के लिए) का उपयोग करें।"
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,अनुकूलित करें...
DocType: Print Format,Align Labels to the Right,लेबल को दाईं ओर संरेखित करें
DocType: Assignment Rule,Disabled,विकलांग
@@ -1254,8 +1268,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,कुंजीपटल अल्प मार्ग
DocType: Post,Comments,टिप्पणियां
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,पुष्टि करें
+DocType: Event Sync Log,Update Type,अद्यतन प्रकार
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,प्रमाणित कर रहा है ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,सभी को संकुचित करें
+DocType: Event Producer,Last Update,आखिरी अपडेट
apps/frappe/frappe/www/login.html,Forgot Password?,पासवर्ड भूल गए?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,आईडी
@@ -1296,6 +1312,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,ताल
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,स्तंभों पर आधारित
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{1} का {0}, {2} आयात करना"
DocType: Workflow State,move,चाल
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,वर्तमान साइट के लिए ईवेंट उपभोक्ता या ईवेंट उपभोक्ता बनाने में विफल पहले से ही पंजीकृत है।
apps/frappe/frappe/model/document.py,Action Failed,क्रिया: विफल रही है
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,उपयोगकर्ता के लिए
DocType: View Log,View log,लॉग देखें
@@ -1457,6 +1474,7 @@ DocType: DefaultValue,Key,कुंजी
DocType: Address,Contacts,संपर्क
DocType: System Settings,Setup Complete,सेटअप पूरा हुआ
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,सभी दस्तावेज़ शेयरों की रिपोर्ट
+DocType: Event Consumer,Callback URL,कॉलबैक URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","आयात टेम्पलेट प्रकार का होना चाहिए .csv, .xlsx या .xls"
apps/frappe/frappe/www/update-password.html,New Password,नया पासवर्ड
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,फ़िल्टर {0} लापता
@@ -1522,7 +1540,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,स
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; हालत में अनुमति नहीं है
DocType: Async Task,Async Task,Async टास्क
DocType: Workflow State,picture,तस्वीर
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,पूरा
+DocType: Scheduled Job Log,Complete,पूरा
DocType: DocType,Image Field,छवि फील्ड
DocType: Print Format,Custom HTML Help,कस्टम HTML मदद
DocType: LDAP Settings,Default Role on Creation,निर्माण पर डिफ़ॉल्ट भूमिका
@@ -1548,6 +1566,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,खोज पर मदद
DocType: Milestone,Milestone Tracker,माइलस्टोन ट्रैकर
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,पंजीकृत लेकिन विकलांग
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,पता किसी कंपनी से जुड़ा होना चाहिए। कृपया नीचे दी गई लिंक तालिका में कंपनी के लिए एक पंक्ति जोड़ें।
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,इस दस्तावेज़ के लिए ऑटो रिपीट अक्षम कर दिया गया है।
DocType: DocType,Hide Copy,प्रतिलिपि बनाएँ छिपाएँ
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,सभी भूमिकाओं को साफ़
@@ -1586,6 +1605,7 @@ DocType: Bulk Update,Field,खेत
DocType: Communication,Received,प्राप्त
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update", आदि जैसे वैध तरीकों पर ट्रिगर (चयनित doctype पर निर्भर करेगा)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1} का परिवर्तित मूल्य
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},ईमेल खाता सेटअप के लिए कृपया अपना पासवर्ड दर्ज करें: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,कम से कम एक सिस्टम मैनेजर वहाँ होना चाहिए के रूप में इस उपयोगकर्ता के सिस्टम मैनेजर जोड़ना
DocType: Chat Message,URLs,यूआरएल
DocType: Data Migration Run,Total Pages,कुल पृष्ठ
@@ -1593,7 +1613,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,छवि संलग्न करें
DocType: Workflow State,list-alt,सूची Alt
apps/frappe/frappe/www/update-password.html,Password Updated,पासवर्ड अपडेट
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> उपयोगकर्ता अनुमतियाँ
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,अपना लॉगिन सत्यापित करने के लिए चरण
apps/frappe/frappe/utils/password.py,Password not found,पासवर्ड नहीं मिला
DocType: Webhook,Webhook Secret,वेबहूक सीक्रेट
@@ -1609,8 +1628,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google एपी
DocType: Report,Query Report,क्वेरी रिपोर्ट
DocType: User,Set New Password,नया पासवर्ड सेट
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} के लिए अनुमति नहीं है
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S एक वैध रिपोर्ट स्वरूप नहीं है। रिपोर्ट प्रारूप \ चाहिए% s निम्न में से एक
DocType: Chat Message,Chat,बातचीत
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},{0} टैग किए गए कोई दस्तावेज़ नहीं मिले
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP ग्रुप मैपिंग
@@ -1645,7 +1662,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,अपन
DocType: Dropbox Settings,Dropbox Access Secret,ड्रॉपबॉक्स पहुँच गुप्त
DocType: Tag Link,Document Title,दस्तावेज़ का शीर्षक
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(अनिवार्य)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} साल पहले
DocType: Social Login Key,Social Login Provider,सामाजिक लॉगिन प्रदाता
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,एक अन्य टिप्पणी जोड़ें
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,फ़ाइल में कोई डेटा नहीं मिला कृपया डेटा के साथ नई फ़ाइल को पुनः जोड़ें।
@@ -1693,6 +1709,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","चु
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 साल
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,स्थायी रूप से {0} को हटाने ?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,एक ही फाइल पहले से रिकॉर्ड करने के लिए संलग्न किया गया है
+DocType: Event Sync Log,Synced,सिंक किया गया
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} वैध वर्कफ़्लो राज्य नहीं है। कृपया अपना वर्कफ़्लो अपडेट करें और पुनः प्रयास करें।
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,दिया {0} अंक
DocType: Workflow State,wrench,रिंच
@@ -1795,6 +1812,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,अधिकतम लंबाई
DocType: Print Format,Jinja,जिंजा
DocType: Workflow State,map-marker,नक्शा मार्कर
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,दो सिद्धांत के बीच मानचित्रण विन्यास।
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,किसी समस्या सबमिट
DocType: Event,Repeat this Event,इस इवेंट दोहराएँ
DocType: Address,Maintenance User,रखरखाव उपयोगकर्ता
@@ -1854,6 +1872,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,टेस्ट ईमेल एड्रेस
DocType: Auto Repeat,Reference Document Type,संदर्भ दस्तावेज़ प्रकार
DocType: ToDo,Sender,प्रेषक
+DocType: Event Consumer,Incoming Change,इनकमिंग चेंज
DocType: Google Drive,Backup Folder Name,बैकअप फ़ोल्डर का नाम
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,अधिसूचना का मूल्यांकन करते समय त्रुटि {0}। कृपया अपना टेम्पलेट ठीक करें।
DocType: GSuite Settings,Google Apps Script,Google Apps स्क्रिप्ट
@@ -1916,9 +1935,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,नय
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,अनुरोध को अनुमोदित करने के लिए नीचे दिए गए लिंक पर क्लिक करें
DocType: Workflow State,align-left,संरेखित करें बाएं
DocType: Onboarding Slide,Action Settings,क्रिया सेटिंग्स
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> उपयोगकर्ता
DocType: User,Defaults,डिफ़ॉल्ट्स
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलना के लिए,> 5, <10 या = 324 का उपयोग करें। श्रेणियों के लिए, 5:10 (5 और 10 के बीच मानों के लिए) का उपयोग करें।"
DocType: Energy Point Log,Revert Of,वापस कर दिया
+DocType: Document Type Mapping,Field Mapping,फील्ड मैपिंग
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,मौजूदा साथ मर्ज
DocType: User,Birth Date,जन्म तिथि
DocType: Communication Link,Link Title,लिंक टिटल
@@ -1946,6 +1966,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,टैग लिंक
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,चेन इंटिग्रिटी
DocType: Data Export,CSV,सीएसवी
+DocType: Event Consumer,In Test,टेस्ट में
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","१ मुद्रा = [?] अंश, उदाहरण के लिए १ डालर = १०० सेन्ट"
DocType: Data Import,Partially Successful,आंशिक रूप से सफल
@@ -1955,6 +1976,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP ग्रुप मैपिंग
DocType: Chat Message Attachment,Chat Message Attachment,चैट संदेश अनुलग्नक
DocType: LDAP Settings,Path to CA Certs File,पाथ से सीए सेर्ट्स फाइल
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"यदि दस्तावेज़ में निर्माता और उपभोक्ता के अंत पर अलग-अलग फ़ील्ड नाम हैं, तो इसे जांचें और मैपिंग सेट करें"
DocType: Address,Manipur,मणिपुर
DocType: Web Form Field,Allow Read On All Link Options,सभी लिंक विकल्पों पर पढ़ने की अनुमति दें
DocType: DocType,Database Engine,डेटाबेस इंजन
@@ -2087,6 +2109,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,नोट
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,त्रुटि की रिपोर्ट
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,सीएसवी / एक्सेल प्रारूप में डेटा निर्यात करें
+DocType: Document Type Field Mapping,Document Type Field Mapping,दस्तावेज़ प्रकार फ़ील्ड मैपिंग
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,वैश्विक खोज दस्तावेज़ सेट करना।
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,प्रमाणीकरण वाले ऐप्स आप उपयोग कर सकते हैं:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} पहले से मौजूद है दूसरा नाम चुनें
@@ -2160,7 +2183,6 @@ DocType: Workflow State,Upload,अपलोड
DocType: User Permission,Advanced Control,उन्नत नियंत्रण
DocType: System Settings,Date Format,दिनांक स्वरूप
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,प्रकाशित नहीं है
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट नहीं मिला। कृपया सेटअप> प्रिंटिंग और ब्रांडिंग> एड्रेस टेम्प्लेट से एक नया बनाएं।
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","कार्यप्रवाह के लिए क्रिया (जैसे , स्वीकारें रद्द ) ."
DocType: Data Import,Skip rows with errors,त्रुटियों वाली पंक्तियां छोड़ें
DocType: Workflow State,flag,झंडा
@@ -2223,6 +2245,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,राज्य को बदलने के लिए आवंटित कर एक दस्तावेज़ और भूमिका में अनुमति राज्यों का प्रतिनिधित्व करता है।
DocType: Data Migration Connector,Database Name,डेटाबेस नाम
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ताज़ा करे पर्चा
+DocType: Event Producer,Event Producer,इवेंट प्रोड्यूसर
DocType: DocField,Select,चयन
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,पूर्ण लॉग देखें
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","सरल पायथन अभिव्यक्ति, उदाहरण: स्थिति == 'खुला' और प्रकार == 'बग'"
@@ -2323,6 +2346,7 @@ DocType: DocType,User Cannot Search,प्रयोक्ता नहीं ख
DocType: Communication Link,Communication Link,संचार लिंक
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,अमान्य आउटपुट स्वरूप
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},{0} {1} नहीं कर सकता
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,ऑटो रिपीट {2} के माध्यम से आपके लिए एक आवर्ती {0} {1} बनाई गई है।
DocType: Custom DocPerm,Apply this rule if the User is the Owner,उपयोगकर्ता का मालिक है अगर इस नियम को लागू करें
DocType: Global Search Settings,Global Search Settings,वैश्विक खोज सेटिंग्स
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,आपका लॉगिन आईडी होगा
@@ -2340,12 +2364,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,लॉगि
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,जोड़ें करने के लिए क्या
DocType: Footer Item,Company,कंपनी
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} का औसत
+apps/frappe/frappe/model/workflow.py,Successful Transactions,सफल लेन-देन
DocType: Scheduled Job Log,Scheduled,अनुसूचित
DocType: User,Logout from all devices while changing Password,पासवर्ड बदलते समय सभी उपकरणों से लॉगआउट करें
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,पासवर्ड को सत्यापित करें
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,त्रुटियां थीं
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Google सेटिंग्स में क्लाइंट आईडी और क्लाइंट सीक्रेट डालें।
apps/frappe/frappe/core/doctype/communication/communication.js,Close,बंद करें
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","ईमेल आईडी अद्वितीय होनी चाहिए, ईमेल खाता पहले से ही {0} के लिए मौजूद है"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,0-2 docstatus बदल नहीं सकते
DocType: File,Attached To Field,फ़ील्ड को अटैचमेंट
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,अद्यतन
@@ -2451,6 +2477,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,माह
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: जोड़ें Reference: {{ reference_doctype }} {{ reference_name }} भेजने के लिए दस्तावेज संदर्भ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,केवल दस्तावेज़ में शामिल उपयोगकर्ता सूचीबद्ध हैं
DocType: DocField,Fetch From,से प्राप्त करें
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म को अनुकूलित करें
apps/frappe/frappe/modules/utils.py,App not found,App नहीं मिला
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},नहीं बना सकते हैं एक {0} एक बच्चे दस्तावेज़ के खिलाफ: {1}
DocType: Social Login Key,Social Login Key,सामाजिक लॉगइन कुंजी
@@ -2462,7 +2489,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,सं
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,सामाजिक घर
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},के रूप में सेट नहीं किया जा सकता है के बाद डालें {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,शेयर {0} के साथ
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ईमेल खाते की स्थापना के लिए अपना पासवर्ड दर्ज करें:
DocType: Workflow State,hand-up,हाथ
DocType: Blog Settings,Writers Introduction,राइटर्स परिचय
DocType: Address,Phone,फ़ोन
@@ -2521,7 +2547,7 @@ DocType: Web Page,Insert Style,शैली सम्मिलित करे
DocType: Prepared Report,Error Message,त्रुटि संदेश
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,नई रिपोर्ट का नाम
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,सप्ताहांत छुपाएं
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,स्वचालित रूप से आवर्ती दस्तावेज़ उत्पन्न करता है।
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,स्वचालित रूप से आवर्ती दस्तावेज़ उत्पन्न करता है।
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,है
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,जानकारी के संकेत
@@ -2529,7 +2555,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} क
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","इस मुद्रा को कैसे स्वरूपित किया जाना चाहिए? अगर सेट नहीं किया, प्रणाली चूक का उपयोग करेगा"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} दस्तावेज़ सबमिट करें?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,तुम में लॉग इन और बैकअप का उपयोग करने में सक्षम होने के लिए सिस्टम मैनेजर भूमिका हो जाने की जरूरत है .
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ ट्रे एप्लिकेशन से कनेक्ट करने में त्रुटि ...
रॉ प्रिंट फीचर का उपयोग करने के लिए आपको QZ ट्रे एप्लिकेशन इंस्टॉल और रन करना होगा।
क्यूज ट्रे डाउनलोड और इंस्टॉल करने के लिए यहां क्लिक करें ।
रॉ प्रिंटिंग के बारे में अधिक जानने के लिए यहां क्लिक करें ।"
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,प्रिंटर मैपिंग
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,कृपया संलग्न करने से पहले सहेजें।
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,क्या आप सभी लिंक किए गए दस्तावेज़ों को रद्द करना चाहते हैं?
@@ -2559,6 +2584,7 @@ DocType: Role Permission for Page and Report,Set Role For,इस भूमिक
DocType: GCalendar Account,The name that will appear in Google Calendar,वह नाम जो Google कैलेंडर में दिखाई देगा
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} वाला डायरेक्ट रूम पहले से मौजूद है।
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,रिफ्रेशिंग ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},कृपया डैशबोर्ड चार्ट के लिए निर्धारित फ़िल्टर मानों की जाँच करें: {}
DocType: Event,Starts on,पर शुरू होता है
DocType: System Settings,System Settings,सिस्टम सेटिंग्स
DocType: GCalendar Settings,Google API Credentials,Google एपीआई क्रेडेंशियल्स
@@ -2583,6 +2609,7 @@ DocType: Workflow State,ok-sign,ठीक है पर हस्ताक्ष
apps/frappe/frappe/config/settings.py,Deleted Documents,हटाए गए दस्तावेज़
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,सीएसवी प्रारूप मामले संवेदनशील है
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,डेस्कटॉप चिह्न पहले से मौजूद है
+DocType: Event Consumer Document Type,Approval Status,स्वीकृति स्थिति
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"स्लाइड को दिखाने के लिए सभी डोमेन को निर्दिष्ट करना चाहिए। यदि कुछ भी निर्दिष्ट नहीं है, तो स्लाइड डिफ़ॉल्ट रूप से सभी डोमेन में दिखाई जाती है।"
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,डुप्लिकेट
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: पंक्ति {2} में फ़ील्ड {1} को छिपाया नहीं जा सकता है और डिफ़ॉल्ट रूप से अनिवार्य है
@@ -2602,6 +2629,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,सहायता आलेख
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,प्रकार:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,आपका भुगतान विफल हो गया है
+DocType: Event Producer,Producer URL,निर्माता URL
DocType: Comment,Unshared,अविभाजित
DocType: Address,Karnataka,कर्नाटक
apps/frappe/frappe/desk/moduleview.py,Module Not Found,विव नही मिला
@@ -2613,6 +2641,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,काम पूरा
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},बल्क संपादन {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,रिपोर्ट डाउनलोड करें
+apps/frappe/frappe/model/workflow.py,Workflow Status,वर्कफ़्लो स्थिति
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,सक्रिय नहीं
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,केवल व्यवस्थापक को डैशबोर्ड चार्ट स्रोत बनाने की अनुमति है
DocType: About Us Settings,Settings for the About Us Page,हमारे बारे में पृष्ठ के लिए सेटिंग
@@ -2621,6 +2650,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,प
DocType: Notification Settings,Energy Points,ऊर्जा अंक
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},समय {0} प्रारूप में होना चाहिए: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,जैसे pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: नए आवर्ती दस्तावेज़ को संलग्न करने में विफल। ऑटो रिपीट अधिसूचना ईमेल में दस्तावेज़ संलग्न करने में सक्षम करने के लिए, प्रिंट सेटिंग्स में {1} को सक्षम करें"
DocType: User,Generate Keys,कुंजी उत्पन्न करें
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,यह आपके डेटा को स्थायी रूप से हटा देगा।
DocType: DocType,View Settings,दृश्य सेटिंग्स
@@ -2672,6 +2702,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,सभी
DocType: Email Queue,Recipient,प्राप्तकर्ता
DocType: Webhook,Webhook Security,Webhook सुरक्षा
+DocType: Event Sync Log,Producer Document Name,निर्माता दस्तावेज़ का नाम
DocType: Communication,Has Attachment,अटैचमेंट था
DocType: Address,Sales User,बिक्री प्रयोक्ता
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,खींचें और ड्रॉप उपकरण का निर्माण और प्रिंट प्रारूप अनुकूलित करने के लिए।
@@ -2707,6 +2738,7 @@ DocType: Address,Arunachal Pradesh,अरुणाचल प्रदेश
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,चाइल्ड टेबल्स को अन्य डॉकटाइप्स में ग्रिड के रूप में दिखाया गया है
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,सेटअप ऑटो ईमेल
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + नीचे
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,उपभोग करने वाली घटनाओं के लिए आप जिस साइट को सब्सक्राइब करना चाहते हैं।
DocType: Chat Profile,Message Preview,संदेश पूर्वावलोकन
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,यह एक शीर्ष 10 आम पासवर्ड है।
DocType: User,User Defaults,प्रोफ़ाइल डिफ़ॉल्ट्स
@@ -2739,6 +2771,7 @@ DocType: Dashboard Chart,Last Synced On,अंतिम बार सिंक
DocType: Comment,Comment Type,टिप्पणी के प्रकार
DocType: OAuth Client,OAuth Client,OAuth क्लायंट
DocType: Assignment Rule,Users,उपयोगकर्ता
+DocType: Document Type Mapping,Local Document Type,स्थानीय दस्तावेज़ प्रकार
DocType: Address,Odisha,ओडिशा
DocType: Report,Report Type,टाइप रिपोर्ट
DocType: DocField,Signature,हस्ताक्षर
@@ -2780,6 +2813,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} स्वयं ने यह कार्य सौंपा: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,तुम्हारा देश
DocType: Assignment Rule Day,Sunday,रविवार
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","उपभोक्ताओं के पास मौजूद दस्तावेज़ों के लिए इवेंट निर्माता साइट पर सभी आवेषण, अपडेट और विलोपन का लॉग बनाए रखता है।"
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: फ़ील्डनाम {1} में से एक नहीं हो सकता
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,स्टैंडिंग
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,ग्रिड दृश्य में
@@ -2925,7 +2959,6 @@ DocType: Web Page,Sidebar and Comments,साइडबार और टिप्
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","आप के बाद रद्द करें और इसे बचाने के लिए एक दस्तावेज़ में संशोधन , जब वह पुराने नंबर का एक संस्करण है कि एक नया नंबर मिल जाएगा ."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} दस्तावेज़ संलग्न करने की अनुमति नहीं है, कृपया प्रिंट सेटिंग्स में {0} के लिए प्रिंट की अनुमति दें सक्षम करें"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं। कृपया सेटअप> ईमेल> ईमेल खाते से एक नया ईमेल खाता बनाएं
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} पर दस्तावेज़ देखें
DocType: Stripe Settings,Publishable Key,प्रकाशित करने योग्य कुंजी
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,आयात प्रारंभ करें
@@ -3002,7 +3035,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,जानकार
DocType: Custom Field,Permission Level,अनुमति स्तर
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : लिखने के बिना संशोधन रद्द , सबमिट सेट नहीं कर सकता"
DocType: List View Setting,Disable Count,गणना अक्षम करें
-DocType: Google Maps Settings,Client Key,क्लाइंट कुंजी
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,क्या आप सुनिश्चित करें कि आप अनुलग्नक हटाना चाहते हैं?
apps/frappe/frappe/__init__.py,Thank you,धन्यवाद
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,बचत
@@ -3128,6 +3160,7 @@ DocType: Workflow Document State,Only Allow Edit For,केवल के लि
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google ड्राइव पर वापस आ रहा है।
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},अनिवार्य क्षेत्र: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,आपका नाम
+DocType: Event Producer Document Type,Event Producer Document Type,इवेंट निर्माता दस्तावेज़ प्रकार
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,कनेक्शन सफलता
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,स्लाइड प्रकार जारी रखें का ऑनबोर्डिंग स्लाइड पहले से मौजूद है।
@@ -3199,6 +3232,7 @@ DocType: Address,Postal Code,डाक कोड
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,रीलिंक संचार
DocType: Translation,Contributed,योगदान
apps/frappe/frappe/config/customization.py,Form Customization,फॉर्म अनुकूलन
+DocType: Event Update Log,Event Update Log,इवेंट अपडेट लॉग
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,कोई सक्रिय सत्र नहीं
DocType: Web Form,Route to Success Link,सफलता लिंक के लिए मार्ग
DocType: Onboarding Slide Field,Right,सही
@@ -3225,7 +3259,7 @@ DocType: Website Settings,Chat Operators,चैट ऑपरेटर
DocType: S3 Backup Settings,ca-central-1,सीए-मध्य-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,फाइल में कोई रिक्त स्तंभ हैं कि कृपया सुनिश्चित करें.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,यदि यह कई चरणों से गुजरता है तो एक दस्तावेज़ के जीवनचक्र पर मील के पत्थर को ट्रैक करता है।
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,यदि यह कई चरणों से गुजरता है तो एक दस्तावेज़ के जीवनचक्र पर मील के पत्थर को ट्रैक करता है।
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","नामांकित फ़ाइलें और नियंत्रकों में प्रतिस्थापित कोड, कृपया देखें"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,अपने प्रोफ़ाइल एक ईमेल पता है कि यह सुनिश्चित करें
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,आप इस प्रपत्र में परिवर्तन सहेजे नहीं गए .
@@ -3252,7 +3286,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,एपीआई गुप्त सहेजें:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},रद्द कर दिया दस्तावेज़ {0} लिंक नहीं कर सकते
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,एक मानक रिपोर्ट को संपादित नहीं कर सकते। नकली और एक नई रिपोर्ट बनाने कृपया
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","कंपनी, अनिवार्य है, क्योंकि यह आपकी कंपनी पता है"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","उदाहरण के लिए: यदि आप दस्तावेज़ आईडी को शामिल करना चाहते हैं, का उपयोग करें {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},के लिए चयन करें तालिका स्तंभ {0}
DocType: Custom Field,Options Help,विकल्पों की मदद से
@@ -3260,7 +3293,6 @@ DocType: Footer Item,Group Label,समूह लेबल
DocType: Kanban Board,Kanban Board,Kanban बोर्ड
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google संपर्क कॉन्फ़िगर किए गए हैं।
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 रिकॉर्ड निर्यात किया जाएगा
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,उपयोगकर्ता के साथ कोई ईमेल खाता संबद्ध नहीं है। कृपया उपयोगकर्ता> ईमेल इनबॉक्स के तहत एक खाता जोड़ें।
DocType: DocField,Report Hide,छिपाएँ रिपोर्ट
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},पेड़ को देखने के लिए उपलब्ध नहीं {0}
DocType: DocType,Restrict To Domain,डोमेन तक सीमित करें
@@ -3326,7 +3358,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: फ़ील्ड {1} प्रकार {2} अनिवार्य नहीं हो सकता
DocType: System Settings,In Days,दिनों में
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,कुमारी र
+DocType: Event Producer Document Type,Has Mapping,मैपिंग है
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,कृपया बताएं
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,अमान्य फ़िल्टर मान
DocType: Comment,Bot,बीओटी
DocType: Help Article,Help Article,मदद अनुच्छेद
DocType: Page,Page Name,पेज का नाम
@@ -3434,7 +3468,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,प्रारूप प्रिंट
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ग्रिड व्यू टॉगल करें
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,अगले रिकॉर्ड पर जाएं
-DocType: System Settings,Time Format,समय प्रारूप
+DocType: Country,Time Format,समय प्रारूप
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,अवैध भुगतान गेटवे साख
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,यह टेम्प्लेट फ़ाइल है जिसमें केवल कुछ पंक्तियों वाले पंक्तियां होती हैं। आपको सुधार और आयात के लिए इस फ़ाइल का उपयोग करना चाहिए
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,दस्तावेज़ प्रकार और भूमिकाओं पर अनुमतियां सेट करें
@@ -3767,6 +3801,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,उपयोगकर्ता नाम का उपयोग कर प्रवेश की अनुमति दें
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,रिपोर्ट सक्षम करें
DocType: DocField,Display Depends On,प्रदर्शन पर निर्भर करता है
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} साल पहले
DocType: Social Login Key,API Endpoint,एपीआई समापन बिंदु
DocType: Web Page,Insert Code,कोड डालने के लिए
DocType: Data Migration Run,Current Mapping Type,वर्तमान मानचित्रण प्रकार
@@ -3820,6 +3855,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,आ
apps/frappe/frappe/www/login.html,Or login with,या साथ लॉगिन
DocType: Error Snapshot,Locals,स्थानीय लोग
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},के माध्यम से भेजी {0} को {1}: {2}
+DocType: Event Producer,Event Producer Document Types,इवेंट निर्माता दस्तावेज़ प्रकार
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते से डिफ़ॉल्ट ईमेल खाता सेटअप करें
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,समूह का चयन करें ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,उदाहरण के लिए (55 + 434) / 4 या = गणित.पाप (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} के लिए आवश्यक है
@@ -3851,9 +3888,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,प्रारंभ समय की रिपोर्ट करें
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,निर्यात जानकारी
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,सिंक की स्थिति के साथ उपभोग की गई प्रत्येक घटना का एक लॉग बनाए रखता है और सिंक सिंक विफल होने पर Resync बटन।
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,चयन करें कॉलम
DocType: Translation,Source Text,स्रोत इबारत
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,यह एक पृष्ठभूमि की रिपोर्ट है। कृपया उपयुक्त फ़िल्टर सेट करें और फिर एक नया जनरेट करें।
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं। कृपया सेटअप> ईमेल> ईमेल खाते से एक नया ईमेल खाता बनाएं
apps/frappe/frappe/www/login.py,Missing parameters for login,प्रवेश के लिए गुम मानकों को
DocType: Workflow State,folder-open,फ़ोल्डर खोलने के
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","एक बार प्रस्तुत करने के बाद, जमा करने योग्य दस्तावेज नहीं बदले जा सकते हैं। उन्हें केवल रद्द और संशोधित किया जा सकता है।"
@@ -3933,6 +3972,7 @@ DocType: Blog Post,Published On,पर प्रकाशित
DocType: Contact,Gender,लिंग
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,अनिवार्य जानकारी लापता:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ने आपकी बातों को {1} पर वापस कर दिया
+DocType: Event Consumer,Event Subscriber,इवेंट सब्सक्राइबर
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,अनुरोध अनुरोध यूआरएल
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,केवल 200 सम्मिलित करता है एक अनुरोध में की अनुमति दी
DocType: Footer Item,URL,यूआरएल
@@ -3945,6 +3985,7 @@ DocType: Auto Email Report,Half Yearly,छमाही
DocType: Communication,Marked As Spam,स्पैम के रूप में चिह्नित
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},फ़ाइल यूआरएल के साथ कुछ समस्या है: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,पेड़
+DocType: Event Producer Document Type,Use Same Name,समान नाम का उपयोग करें
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,आप इस रिपोर्ट को मुद्रित करने के लिए अनुमति नहीं है
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,उपयोगकर्ता अनुमतियाँ
DocType: Workflow State,warning-sign,चेतावनी संकेत
@@ -3954,6 +3995,7 @@ DocType: Workflow State,User,उपयोगकर्ता
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",के रूप में ब्राउज़र विंडो में दिखाएं शीर्षक "उपसर्ग - शीर्षक"
DocType: Payment Gateway,Gateway Settings,गेटवे सेटिंग
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,लेख दस्तावेज़ प्रकार
+DocType: Event Sync Log,Event Sync Log,इवेंट सिंक लॉग
apps/frappe/frappe/handler.py,Logged Out,लॉग आउट
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,अधिक...
DocType: System Settings,User can login using Email id or Mobile number,उपयोगकर्ता ईमेल आईडी या मोबाइल नंबर का इस्तेमाल कर लॉगिन कर सकता है
@@ -3993,12 +4035,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,अंदर नही
DocType: Workflow State,star,सितारा
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,हब
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,यदि यह जांचा जाता है कि दस्तावेजों का वही नाम होगा जो इवेंट निर्माता की साइट पर है
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,अल्पविराम के द्वारा अलग किए गए मान
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},प्रकार मुद्रा के लिए अधिकतम चौड़ाई पंक्ति में 100px है {0}
apps/frappe/frappe/config/website.py,Content web page.,सामग्री वेब पेज.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,एक नई भूमिका में जोड़ें
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,वेब पेज पर जाएँ
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,नया असाइनमेंट
+DocType: Event Consumer Document Type,Approved,अनुमोदित
DocType: Google Contacts,Last Sync On,अंतिम सिंक ऑन
DocType: Deleted Document,Deleted Document,हटाए गए दस्तावेज
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ओह! कुछ गलत हो गया है
@@ -4050,7 +4094,6 @@ DocType: DocField,Unique,अजूबा
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} की सराहना की {1} पर
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,आंशिक सफलता
DocType: Email Account,Service,सेवा
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> उपयोगकर्ता
DocType: File,File Name,फ़ाइल नाम
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),के लिए {0} नहीं मिला था {0} ({1} )
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4062,11 +4105,10 @@ DocType: Calendar View,Calendar View,कैलेंडर दृश्य
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,संपादित प्रारूप
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,पूरा पंजीकरण
DocType: GCalendar Settings,Enable,सक्षम
-DocType: Google Maps Settings,Home Address,घर का पता
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),आप केवल एक ही बार में 5000 के रिकॉर्ड तक अपलोड कर सकते हैं। (कुछ मामलों में कम हो सकता है)
DocType: Report,"output in the form of `data = [columns, result]`","`डेटा = [कॉलम, परिणाम] के रूप में आउटपुट"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,लागू दस्तावेज़ प्रकार
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,उपयोगकर्ता असाइनमेंट के लिए नियम सेट करें।
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,उपयोगकर्ता असाइनमेंट के लिए नियम सेट करें।
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} के लिए अपर्याप्त अनुमति
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),रिपोर्ट नहीं बचाया (वहाँ त्रुटियों थे)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,हेडर सामग्री को बदल नहीं सकते
diff --git a/frappe/translations/hr.csv b/frappe/translations/hr.csv
index 06a020efab..4643506a0a 100644
--- a/frappe/translations/hr.csv
+++ b/frappe/translations/hr.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Ova uloga ažuriranje korisnik dozvole za korisnika
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Preimenuj {0}
DocType: Workflow State,zoom-out,umanji
-DocType: Data Import Beta,Import Options,Opcije uvoza
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Ne možete otvoriti {0} kada je instanca je otvoren
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabela {0} ne može biti prazno
DocType: SMS Parameter,Parameter,Parametar
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Otka
DocType: DocType,Is Published Field,Je Objavljeno polje
DocType: GCalendar Settings,GCalendar Settings,GCalendar postavke
DocType: Email Group,Email Group,E-mail Group
-apps/frappe/frappe/__init__.py,Only for {},Samo za {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google kalendar - Ne mogu se izbrisati događaj {0} iz Google kalendara, kod pogreške {1}."
DocType: Event,Pulled from Google Calendar,Preuzeto iz Google kalendara
DocType: Note,Seen By,vide
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Dodaj više stavki
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nije važeća Korisnička slika.
DocType: Energy Point Log,Reverted,Vraćeno
DocType: Success Action,First Success Message,Prva poruka o uspjehu
+DocType: Document Type Mapping,Document Type Mapping,Kartiranje vrste dokumenta
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Ne kao
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Netočna vrijednost: {0} mora biti {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Promjeni svojstva polja (sakrij, samo čitanje, dozvola i sl.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Web mjesto koje troši vaše događaje.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Cijeniti
DocType: Notification Settings,Document Share,Dijeljenje dokumenta
DocType: Workflow State,lock,zaključati
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Prijava
DocType: Workflow State,indent-right,alineje-desno
DocType: Has Role,Has Role,ima ulogu
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Sinkroniziraj
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Vrijeme u sekundama za zadržavanje slike QR koda na poslužitelju. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Vrsta polja {1} za {2} ne može se indeksirati
DocType: Dashboard Chart,Timespan,Vremenski raspon
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web Link
DocType: Deleted Document,Restored,obnovljena
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Pogreška prilikom povezivanja s aplikacijom QZ Tray ...
Za upotrebu značajke Raw Print morate imati instaliran i pokrenut program QZ Tray.
Kliknite ovdje za preuzimanje i instaliranje QZ Tray-a .
Kliknite ovdje kako biste saznali više o sirovom ispisu ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Prije 1 minutu
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Osim System Manager, uloge s postavite korisnički Dozvole pravo može postaviti dozvole za ostale korisnike za tu vrstu dokumenta."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfiguriraj temu
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,neviđen
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Upravitelj datoteka
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML zaglavlje, roboti i preusmjeravanja"
DocType: GCalendar Account,Refresh Token,Osvježi token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Neuspjeh povezivanja s web stranicom producenata događaja. Pokušajte ponovo nakon nekog vremena.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Nema trenutnih ili trenutačnih poslova za ovu web lokaciju
DocType: Webhook,Doc Event,Događaj događaja
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Upravitelj skripti
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nema aktivnosti
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikacije treće strane
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Prvi korisnik će postati System Manager (možete promijeniti tome kasnije).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Možete pokušati promijeniti filtre vašeg izvješća.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Nema događaja danas
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Ne možete sebi dati ocjene
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType mora biti podesiv za odabrani Doc događaj
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Nije Vam dopušteno slati e-poštu vezanu s ovim dokumentom
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Odaberi atleast 1 Stupac {0} sortiranje / skupini
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nije dopušteno za {0}: {1}. Polje s ograničenjem: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Tvrtka nije povezana
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Označite ovo ako ste testiranje uplatu putem pješčaniku API
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Nemate ovlasti za brisanje standardne teme web stranice
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Izradite svoj prvi {0}
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Ažurira
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Već postoji brodski dijapozitiv {0} s istim redoslijedom dijapozitiva
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Onemogući Prijavite
DocType: Translation,Contributed Translation Doctype Name,Naziv doprinosa prijevoda
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavljanje> Prilagodi obrazac
DocType: PayPal Settings,Redirect To,preusmjeriti na
DocType: Data Migration Mapping,Pull,Vuci
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript format : frappe.query_reports [ ' REPORTNAME ' ] = { }
@@ -272,6 +276,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Nije dopušteno
DocType: DocShare,Internal record of document shares,Unutarnja rekord dionica dokumenata
DocType: Energy Point Settings,Review Levels,Razine pregleda
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Postavljanje> Dopuštenja korisnika
DocType: Workflow State,Comment,Komentiraj
DocType: Data Migration Plan,Postprocess Method,Postprocesna metoda
DocType: DocType Action,Action Type,Vrsta radnje
@@ -321,13 +326,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Pri
DocType: Workflow State,remove-circle,uklanjanje-krug
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Moj profil
DocType: Help Article,Beginner,Početnik
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Ova je akcija dopuštena samo za {}
DocType: Contact,Is Primary Contact,Je primarni kontakt
+DocType: Event Consumer,Event Consumer,Potrošač događaja
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript da doda glave dijelu stranice.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Dodavanje / ažuriranje
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Nije dopušteno za ispis nacrta dokumenata
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Vrati na zadane postavke
DocType: Workflow,Transition Rules,Prijelazna pravila
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Prikazivanje samo prvih {0} redaka u pregledu
apps/frappe/frappe/core/doctype/report/report.js,Example:,Primjer:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ograničenja
DocType: Workflow,Defines workflow states and rules for a document.,Određuje tijek rada države i pravila za dokument.
@@ -476,7 +482,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Ponovite Do
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Novi dokument
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Prvo ih morate stvoriti:
-DocType: Google Maps Settings,Google Maps Settings,Postavke Google karata
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Učitavanje ...
DocType: DocField,Password,Zaporka
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Vaš sustav se ažurira. Osvježite opet nakon nekoliko trenutaka
@@ -568,6 +573,7 @@ DocType: System Settings,mm/dd/yyyy,mm-dd-yyyy
DocType: Onboarding Slide,Onboarding Slide,Klizač na brodu
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Netočna zaporka:
DocType: Print Settings,Send document web view link in email,Slanje dokumenata na web-prikaz link u e-mail
+DocType: Event Consumer Document Type,Event Consumer Document Type,Vrsta dokumenta potrošačkog događaja
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,prijašnji
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Zahtijevajte pouzdanu potvrdu
@@ -643,6 +649,7 @@ DocType: Workflow State,volume-down,glasnoće prema dolje
DocType: Onboarding Slide,Help Links,Veze za pomoć
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Nije dopušten pristup s ove IP adrese
DocType: Notification Settings,Enable Email Notifications,Omogući obavijesti putem e-pošte
+DocType: Document Type Field Mapping,Event Streaming,Streaming događaja
apps/frappe/frappe/desk/reportview.py,No Tags,nema oznaka
DocType: Email Account,Send Notification to,Pošalji Obavijest
DocType: DocField,Collapsible,Sklopiva
@@ -659,11 +666,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Nisu osigurani uvjeti
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Polja Y osovine
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sortiranje polje {0} mora biti valjana FIELDNAME
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Izradite novu iz postavki Postavke> Ispis i marke> Predložak adresa.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Više
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Stvorite novi zapis
DocType: Contact,Sales Manager,Sales Manager
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Preimenuj
DocType: Print Format,Format Data,Format podataka
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} nije važeći format izvještaja. Format izvješća trebao bi biti jedan od sljedećih {1}
DocType: List Filter,Filter Name,Naziv filtra
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Kao
DocType: Assignment Rule,Automation,Automatizacija
@@ -682,6 +691,7 @@ DocType: User,Reset Password Key,Reset Password ključ
DocType: Dashboard Chart,All Time,Cijelo vrijeme
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Nevažeći status dokumenta za {0}
DocType: Email Account,Enable Auto Reply,Omogućite Auto Odgovor
+apps/frappe/frappe/desk/query_report.py,No data to export,Nema podataka za izvoz
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ne vidi
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Ne može se više pisača preslikati u jedan format ispisa.
DocType: Workflow State,zoom-in,uvećaj
@@ -832,6 +842,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Promijeni
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Prvi
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Ažuriraj Prijevodi
DocType: Error Snapshot,Exception,Izuzetak
+DocType: Event Consumer,Event Consumer Document Types,Vrste potrošačkih dokumenata događaja
DocType: Email Account,Use IMAP,Koristite IMAP
DocType: Activity Log,Activity Log,Dnevnik aktivnosti
DocType: View Log,Viewed By,Pogledano od strane
@@ -870,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Pos
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfiguracija grafikona
DocType: User,Last IP,Posljednja IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Dodajte predmet svojoj e-pošti
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Pogrešne transakcije
DocType: Data Migration Connector,Data Migration Connector,Priključak za migraciju podataka
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vratio se {1}
DocType: Email Account,Track Email Status,Praćenje statusa e-pošte
@@ -900,6 +912,7 @@ DocType: Email Queue,Attachments,Privitci
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Nemate dopuštenja za pristup ovom dokumentu
DocType: Language,Language Name,Jezik Naziv
DocType: Email Group Member,Email Group Member,Email član grupe
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun u odjeljku Korisnik> Inbox e-pošte.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Vaš je račun zaključan i nastavit će se nakon {0} sekunde
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Korisničke dozvole koriste se za ograničavanje korisnika na određene zapise.
DocType: Notification,Value Changed,Vrijednost promijenila
@@ -991,6 +1004,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Spomenuti trans
DocType: Help Article,Expert,Stručnjak
DocType: Workflow State,circle-arrow-right,krug sa strelicom desno
DocType: Role Profile,Role Profile,Profil uloge
+DocType: Document Type Mapping,Remote Document Type,Vrsta udaljenog dokumenta
apps/frappe/frappe/permissions.py,Document Type is not importable,Tip dokumenta nije izvediv
DocType: LDAP Settings,LDAP Server Url,LDAP poslužitelja URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Ne možete otvoriti primjer kada je {0} je otvoren
@@ -1075,7 +1089,7 @@ DocType: Web Form,Allow Print,Dopusti Ispis
DocType: Communication,Clicked,Kliknuo
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Prestani pratiti
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz programa Postavljanje> E-pošta> Račun e-pošte
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Prikazuje se samo prvi {0} redak od {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planirano za slanje
DocType: DocType,Track Seen,Prati Gledano
DocType: Dropbox Settings,File Backup,Sigurnosno kopiranje datoteka
@@ -1145,6 +1159,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,iza
DocType: Data Export,Filter List,Popis filtara
DocType: Data Export,Excel,nadmašiti
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Konfiguracije događaja
DocType: Email Account,Auto Reply Message,Poruka automatskog odgovora
DocType: Data Migration Mapping,Condition,Stanje
apps/frappe/frappe/utils/data.py,{0} hours ago,prije {0} sata
@@ -1204,9 +1219,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Uvijek koris
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Prijavite se za komentiranje
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Počnite unositi podatke ispod ove linije
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},Promijenjene vrijednosti za {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ID e-pošte mora biti jedinstven, račun e-pošte već postoji \ za {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za usporedbu, koristite> 5, <10 ili = 324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Prilagodba ...
DocType: Print Format,Align Labels to the Right,Poravnajte oznake s desne strane
DocType: Assignment Rule,Disabled,Ugašeno
@@ -1254,8 +1268,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Prečice na tipkovnici
DocType: Post,Comments,Komentari
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Potvrditi
+DocType: Event Sync Log,Update Type,Vrsta ažuriranja
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Autentikacija ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Suzi sve
+DocType: Event Producer,Last Update,Zadnje ažuriranje
apps/frappe/frappe/www/login.html,Forgot Password?,Zaboravili ste lozinku?
DocType: System Settings,yyyy-mm-dd,gggg-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1296,6 +1312,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tablica po
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolone na temelju
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Uvoz {0} od {1}, {2}"
DocType: Workflow State,move,Potez
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Nije uspio stvoriti Potrošač događaja ili Potrošač događaja za trenutnu web lokaciju već je registriran.
apps/frappe/frappe/model/document.py,Action Failed,Akcija nije uspjela
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,za Korisnika
DocType: View Log,View log,Prikaz zapisnika
@@ -1458,6 +1475,7 @@ DocType: DefaultValue,Key,Ključ
DocType: Address,Contacts,Kontakti
DocType: System Settings,Setup Complete,Postavljanje dovršeno
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Izvješće svih dionica dokumenata
+DocType: Event Consumer,Callback URL,URL za povratni poziv
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Uvozni predložak treba biti u obliku .csv, .xlsx ili .xls"
apps/frappe/frappe/www/update-password.html,New Password,Nova zaporka
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} nedostaje
@@ -1523,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Usp
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Nije dopušteno u uvjetu
DocType: Async Task,Async Task,Asinkronom zadatak
DocType: Workflow State,picture,slika
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Kompletna
+DocType: Scheduled Job Log,Complete,Kompletna
DocType: DocType,Image Field,Područje slike
DocType: Print Format,Custom HTML Help,Custom HTML Pomoć
DocType: LDAP Settings,Default Role on Creation,Zadana uloga u stvaranju
@@ -1549,6 +1567,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pomoć u pretraživanju
DocType: Milestone,Milestone Tracker,Tragač za Milestone
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrirani ali je onemogućena
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adresa mora biti povezana s tvrtkom. U tablicu s vezama u nastavku dodajte redak za tvrtku.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatsko ponavljanje ovog dokumenta onemogućeno je.
DocType: DocType,Hide Copy,Sakrij Kopija
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Očisti sve uloge
@@ -1587,6 +1606,7 @@ DocType: Bulk Update,Field,Polje
DocType: Communication,Received,primljen
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Okidač na valjanim metodama kao što su "before_insert", "after_update", itd (ovisit će o DOCTYPE odabrane)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},promijenjena vrijednost {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Postavljanje računa e-pošte, unesite zaporku za: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Dodavanje sustava Manager za ovog korisnika kao mora postojati najmanje jedan sustav Manager
DocType: Chat Message,URLs,URL-ovi
DocType: Data Migration Run,Total Pages,Ukupno stranica
@@ -1594,7 +1614,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Pričvrstite slike
DocType: Workflow State,list-alt,popis-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Obnovljena zaporka
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Postavljanje> Dopuštenja korisnika
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Koraci za potvrdu prijave
apps/frappe/frappe/utils/password.py,Password not found,Lozinka nije pronađen
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1610,8 +1629,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Postavke Google A
DocType: Report,Query Report,Izvješće upita
DocType: User,Set New Password,Postavite novu lozinku
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nije dopušteno za {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s nije valjan format izvješća. Format izvješća trebaju \ jedno od sljedećeg %s
DocType: Chat Message,Chat,Razgovor
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Nije pronađen nijedan dokument označen sa {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Kartiranje LDAP grupe
@@ -1646,7 +1663,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Unesite z
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup
DocType: Tag Link,Document Title,Naslov dokumenta
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obavezno)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} prije (i) godine
DocType: Social Login Key,Social Login Provider,Davatelj usluge društvenog prijavljivanja
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Dodaj još jedan komentar
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nisu pronađeni podaci u datoteci. Ponovno spojite novu datoteku s podacima.
@@ -1694,6 +1710,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 godina
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Trajno brisanje {0} ?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Sve file već priključen na zapisnik
+DocType: Event Sync Log,Synced,sinkronizirati
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} nije važeća država tijeka rada. Ažurirajte svoj Workflow i pokušajte ponovo.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,dao {0} bodova
DocType: Workflow State,wrench,ključ
@@ -1796,6 +1813,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,P
DocType: Web Form Field,Max Length,Najveća duljina
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,Marker karte
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Konfiguracija preslikavanja između dva dotipa.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Slanje problem
DocType: Event,Repeat this Event,Ponovite ovaj događaj
DocType: Address,Maintenance User,Korisnik održavanja
@@ -1855,6 +1873,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test e-mail adresa
DocType: Auto Repeat,Reference Document Type,Referentna Tip dokumenta
DocType: ToDo,Sender,Pošiljalac
+DocType: Event Consumer,Incoming Change,Dolazne promjene
DocType: Google Drive,Backup Folder Name,Naziv sigurnosne kopije mape
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Pogreška pri ocjenjivanju obavijesti {0}. Popravite predložak.
DocType: GSuite Settings,Google Apps Script,Skripta za Google Apps
@@ -1917,9 +1936,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Novo ime
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Kliknite vezu u nastavku kako biste odobrili zahtjev
DocType: Workflow State,align-left,Poravnajte-lijevo
DocType: Onboarding Slide,Action Settings,Postavke radnje
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Postavljanje> Korisnik
DocType: User,Defaults,Zadani
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za usporedbu, koristite> 5, <10 ili = 324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)."
DocType: Energy Point Log,Revert Of,Povrat od
+DocType: Document Type Mapping,Field Mapping,Kartiranje polja
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Spoji sa postojećim
DocType: User,Birth Date,Datum rođenja
DocType: Communication Link,Link Title,Link Naslov
@@ -1947,6 +1967,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Link oznaka
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Integritet lanca
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,U testu
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Valuta = [?] Frakcija za na primjer 1 USD = 100 centi
DocType: Data Import,Partially Successful,Djelomično uspješno
@@ -1956,6 +1977,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP grupa mapiranja
DocType: Chat Message Attachment,Chat Message Attachment,Privitak poruke za chat
DocType: LDAP Settings,Path to CA Certs File,Put do datoteke sa certifikatima CA
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Ako dokument ima različita imena polja na kraju Proizvođača i Potrošača, provjerite to i postavite Mapiranje"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Dopusti pročitati sve mogućnosti veze
DocType: DocType,Database Engine,Database Engine
@@ -2088,6 +2110,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Zabilješka
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Izvješće o pogrešci
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Izvoz podataka u formatu CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Kartiranje polja dokumenta
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Postavljanje dokumenata globalne pretraživanja.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplikacije za provjeru autentičnosti koje možete koristiti su:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} već postoji. Odaberite drugi naziv
@@ -2161,7 +2184,6 @@ DocType: Workflow State,Upload,upload
DocType: User Permission,Advanced Control,Napredna kontrola
DocType: System Settings,Date Format,Oblik datuma
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nije objavljeno
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Izradite novu iz postavki Postavke> Ispis i marke> Predložak adresa.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Akcije za tijek rada ( npr. Odobri , Odustani ) ."
DocType: Data Import,Skip rows with errors,Preskoči retke s pogreškama
DocType: Workflow State,flag,zastava
@@ -2224,6 +2246,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Predstavlja države dopušteni u jednom dokumentu i ulogu dodijeljenu promijeniti stanje.
DocType: Data Migration Connector,Database Name,Naziv baze podataka
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Osvježi obrazac
+DocType: Event Producer,Event Producer,Producent događaja
DocType: DocField,Select,Odabrati
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Pogledajte cijeli dnevnik
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Jednostavan Python Expression, Primjer: status == 'Open' i upišite == 'Bug'"
@@ -2324,6 +2347,7 @@ DocType: DocType,User Cannot Search,Korisnik ne može tražiti
DocType: Communication Link,Communication Link,Komunikacijska veza
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Neispravan format izlaznog
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Ne može {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Za vas je automatsko ponavljanje {2} stvoreno ponavljanje {0} {1}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Nanesite ovo pravilo, ako Korisnik je vlasnik"
DocType: Global Search Settings,Global Search Settings,Postavke globalne pretrage
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Bit će vaš ID za prijavu
@@ -2341,12 +2365,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kod za potv
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,"Dodaj u ""Za napraviti"""
DocType: Footer Item,Company,Društvo
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Prosjek {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Uspješne transakcije
DocType: Scheduled Job Log,Scheduled,Planiran
DocType: User,Logout from all devices while changing Password,Odjavite se s svih uređaja dok mijenjate zaporku
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Potvrdi Lozinku
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Bilo je grešaka
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Unesite ID klijenta i klijentsku tajnu u Googleovim postavkama.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zatvoriti
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","ID e-pošte mora biti jedinstven, račun e-pošte već postoji za {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Ne mogu promijeniti docstatus 0-2
DocType: File,Attached To Field,Priloženo polju
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Ažuriraj
@@ -2452,6 +2478,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Mjesec
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,"ProTip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} poslati odgovarajući dokument,"
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Na popisu su samo korisnici koji su uključeni u dokument
DocType: DocField,Fetch From,Dohvati od
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavljanje> Prilagodi obrazac
apps/frappe/frappe/modules/utils.py,App not found,App nije pronađena
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Ne mogu stvoriti {0} protiv dječje dokumenta: {1}
DocType: Social Login Key,Social Login Key,Ključ za društvenu prijavu
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat po
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Društveni dom
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Umetnite Nakon ne može postaviti kao {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Udio {0} s
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-mail Postavljanje računa unesite zaporku za:
DocType: Workflow State,hand-up,ruka-up
DocType: Blog Settings,Writers Introduction,Pisci Uvod
DocType: Address,Phone,Telefon
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,Umetnite stil
DocType: Prepared Report,Error Message,Poruka o pogrešci
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Novo ime izvještaja
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Sakrij vikende
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatski generira ponavljajuće dokumente.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Automatski generira ponavljajuće dokumente.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-znak
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vrijedn
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako bi ova valuta morala biti formatirana? Ako nije postavljeno, koristit će zadane postavke sustava"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Pošaljite {0} dokumente?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Morate biti prijavljeni i biti upavitelj sustavskih uloga kako bi mogli pristupiti sigurnosnim kopijama.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Pogreška prilikom povezivanja s aplikacijom QZ Tray ...
Za upotrebu značajke Raw Print morate imati instaliran i pokrenut program QZ Tray.
Kliknite ovdje za preuzimanje i instaliranje QZ Tray-a .
Kliknite ovdje kako biste saznali više o sirovom ispisu ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapiranje pisača
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Molimo spremite prije postavljanja.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Želite li otkazati sve povezane dokumente?
@@ -2560,6 +2585,7 @@ DocType: Role Permission for Page and Report,Set Role For,Postavite uloga
DocType: GCalendar Account,The name that will appear in Google Calendar,Naziv koji će se pojaviti u Google kalendaru
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Izravna soba s {0} već postoji.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Osvježavanje ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Provjerite podešene vrijednosti filtra za nadzornu ploču: {}
DocType: Event,Starts on,Počinje na
DocType: System Settings,System Settings,Postavke sustava
DocType: GCalendar Settings,Google API Credentials,Google Credentials API
@@ -2584,6 +2610,7 @@ DocType: Workflow State,ok-sign,ok-prijava
apps/frappe/frappe/config/settings.py,Deleted Documents,Izbrisani dokumenti
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Format CSV razlikuje velika i mala slova
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikona radne površine već postoji
+DocType: Event Consumer Document Type,Approval Status,Status odobrenja
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Navedite u kojim sve domenama trebaju biti prikazani dijapozitivi. Ako ništa nije navedeno, dijapozitiv se prema zadanim postavkama prikazuje u svim domenama."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikat
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Polje {1} u redu {2} ne može se sakriti i obavezno bez zadanih postavki
@@ -2603,6 +2630,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Članci pomoći
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Vrsta:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Plaćanje nije uspjelo.
+DocType: Event Producer,Producer URL,URL proizvođača
DocType: Comment,Unshared,nedjeljiv
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modul nije pronađen
@@ -2614,6 +2642,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Dodjela Završena
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Skupno uređivanje {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Preuzmite izvješće
+apps/frappe/frappe/model/workflow.py,Workflow Status,Status tijeka rada
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Nije aktivan
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Samo Administrator može stvoriti izvore grafikona nadzorne ploče
DocType: About Us Settings,Settings for the About Us Page,Postavke za O nama stranice
@@ -2622,6 +2651,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Isp
DocType: Notification Settings,Energy Points,Energetske bodove
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Vrijeme {0} mora biti u formatu: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,npr pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Nije moguće priložiti novi ponavljajući dokument. Da biste omogućili pričvršćivanje dokumenta u poruku e-pošte s automatskim ponavljanjem, uključite {1} u Postavkama ispisa"
DocType: User,Generate Keys,Generirajte tipke
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,To će trajno ukloniti vaše podatke.
DocType: DocType,View Settings,Postavke prikaza
@@ -2673,6 +2703,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Sve
DocType: Email Queue,Recipient,Primalac
DocType: Webhook,Webhook Security,Sigurnost webhooka
+DocType: Event Sync Log,Producer Document Name,Naziv dokumenta proizvođača
DocType: Communication,Has Attachment,Sadrži prilog
DocType: Address,Sales User,Prodaja Korisnik
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,"""Povucite i ispustite"" alat za izgradnju i prilagodbu ispisa formata."
@@ -2708,6 +2739,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Podređene tablice prikazane su u obliku mreže u drugim DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Postavljanje automatskog Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Dolje
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Web-lokacija na koju se želite pretplatiti za konzumiranje događaja.
DocType: Chat Profile,Message Preview,Pregled poruka
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Ovo je top-10 čest lozinku.
DocType: User,User Defaults,Profil Zadano
@@ -2740,6 +2772,7 @@ DocType: Dashboard Chart,Last Synced On,Zadnja sinkronizacija
DocType: Comment,Comment Type,Tip komentar
DocType: OAuth Client,OAuth Client,OAuth klijenta
DocType: Assignment Rule,Users,Korisnici
+DocType: Document Type Mapping,Local Document Type,Vrsta lokalnog dokumenta
DocType: Address,Odisha,Orissa
DocType: Report,Report Type,Prijavi Vid
DocType: DocField,Signature,Potpis
@@ -2781,6 +2814,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} je sam dodijelio ovaj zadatak: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Tvoja zemlja
DocType: Assignment Rule Day,Sunday,Nedjelja
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Vodi Dnevnik svih umetaka, ažuriranja i brisanja na web mjestu Event Producer za dokumente koji imaju potrošače."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Ime polja ne može biti jedno od {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Poredak
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,U Grid View
@@ -2925,7 +2959,6 @@ DocType: Web Page,Sidebar and Comments,Bočna i komentari
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kada Izmijeniti dokument nakon Odustani i spasiti ga , on će dobiti novi broj koji jeverzija starog broja ."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Nije dopušteno priložiti dokument {0}, molimo omogućite Allow Print For {0} u Print Settings"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljan. Izradite novi račun e-pošte iz programa Setup> Email> račun e-pošte
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Pogledajte dokument na adresi {0}
DocType: Stripe Settings,Publishable Key,Ključ koji se može objaviti
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Započni uvoz
@@ -3002,7 +3035,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Razina ovlasti
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne može se postaviti Potvrdi, Odustani, Izmijeni bez zapisivanja"
DocType: List View Setting,Disable Count,Onemogući brojanje
-DocType: Google Maps Settings,Client Key,Klijent klijenta
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Jeste li sigurni da želite izbrisati privitak?
apps/frappe/frappe/__init__.py,Thank you,Hvala
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Spašavanje
@@ -3128,6 +3160,7 @@ DocType: Workflow Document State,Only Allow Edit For,Dopusti uređivanje samo za
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Izrada sigurnosne kopije na Google disku.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Obvezno polje: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tvoje ime
+DocType: Event Producer Document Type,Event Producer Document Type,Vrsta dokumenta proizvođača događaja
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Uspjeh veze
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Ugrađeni klizač nastavka vrste dijapozitiva već postoji.
@@ -3199,6 +3232,7 @@ DocType: Address,Postal Code,poštanski broj
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,RELINK Komunikacija
DocType: Translation,Contributed,pridonijela
apps/frappe/frappe/config/customization.py,Form Customization,Prilagodba oblika
+DocType: Event Update Log,Event Update Log,Dnevnik ažuriranja događaja
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nema aktivnih sesija
DocType: Web Form,Route to Success Link,Put do uspjeha veze
DocType: Onboarding Slide Field,Right,Desno
@@ -3225,7 +3259,7 @@ DocType: Website Settings,Chat Operators,Operatori chatova
DocType: S3 Backup Settings,ca-central-1,CA-1-središnje
DocType: Contact Us Settings,Pincode,Poštanski broj
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Molimo provjerite da nema praznih stupaca u datoteci.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Prati prekretnice u životnom ciklusu dokumenta ako prolazi kroz više faza.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Prati prekretnice u životnom ciklusu dokumenta ako prolazi kroz više faza.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Preimenovane datoteke i zamijenjeni kod u kontrolerima, molimo provjerite!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Provjerite je li profil ima e-mail adresu
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Imate ne spremljene promjene u ovom obliku. Spremite ih prije nego nastavite dalje.
@@ -3252,7 +3286,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Spremi tajnu API-ja:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Ne mogu povezati otkazan dokument: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Ne možete uređivati standardno izvješće. Molimo duple i stvoriti novo izvješće
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Društvo je obvezno, kao što je vaša adresa tvrtke"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Na primjer: Ako želite uključiti ID dokumenta, upotrijebite {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Odaberite Kolumne Tablica za {0}
DocType: Custom Field,Options Help,Opcije - pomoć
@@ -3260,7 +3293,6 @@ DocType: Footer Item,Group Label,Grupa Label
DocType: Kanban Board,Kanban Board,Kanban zajednica
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google kontakti su konfigurirani.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Izvest će se 1 zapis
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun u odjeljku Korisnik> Inbox e-pošte.
DocType: DocField,Report Hide,Prijavi Sakrij
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Prikaz stabla nisu dostupni za {0}
DocType: DocType,Restrict To Domain,Ograničenje na domenu
@@ -3326,7 +3358,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Polje {1} vrste {2} ne može biti obavezno
DocType: System Settings,In Days,U danima
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Propustiti
+DocType: Event Producer Document Type,Has Mapping,Sadrži mapiranje
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Navedite
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Nevažeća vrijednost filtra
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Pomoć članak
DocType: Page,Page Name,Ime stranice
@@ -3434,7 +3468,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Format ispisa
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Uključi / isključi prikaz rešetke
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pređite na sljedeći zapis
-DocType: System Settings,Time Format,Vremenski format
+DocType: Country,Time Format,Vremenski format
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Nevažeće vjerodajnice Payment Gateway
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ovo je datoteka predloška generirana samo s redcima koji imaju neku pogrešku. Koristite ovu datoteku za ispravak i uvoz.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Postavi ovlasti vrste dokumenta i njihove uloge
@@ -3766,6 +3800,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Dopusti prijava pomoću Korisničkog imena
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Omogućite izvješće
DocType: DocField,Display Depends On,Prikaz ovisi o
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} prije (i) godine
DocType: Social Login Key,API Endpoint,API krajnja točka
DocType: Web Page,Insert Code,Umetnite kod
DocType: Data Migration Run,Current Mapping Type,Trenutačna vrsta mapiranja
@@ -3819,6 +3854,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot
apps/frappe/frappe/www/login.html,Or login with,Ili se prijavite sa
DocType: Error Snapshot,Locals,Mještani
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Dostaviti putem {0} na {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Vrste dokumenata za proizvođače događaja
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz programa Postavljanje> E-pošta> Račun e-pošte
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Odaberi grupu po ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ili = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} je potrebno
@@ -3850,9 +3887,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,ID sinkronizacije GCalendar
DocType: Prepared Report,Report Start Time,Prijavi poÄŤetno vrijeme
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Izvoz podataka
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Održava zapisnik svakog korištenog događaja zajedno sa statusom sinkronizacije i tipkom Resync u slučaju da sinkronizacija ne uspije.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Odaberite Kolumne
DocType: Translation,Source Text,Izvorni tekst
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Ovo je pozadinsko izvješće. Postavite odgovarajuće filtre i zatim generirajte novi.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljan. Izradite novi račun e-pošte iz programa Setup> Email> račun e-pošte
apps/frappe/frappe/www/login.py,Missing parameters for login,Nedostaje parametri za prijavu
DocType: Workflow State,folder-open,mapa otvoriti
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Nakon podnošenja, dokumenti koji se mogu podneti ne mogu se mijenjati. Mogu se samo otkazati i dopuniti."
@@ -3932,6 +3971,7 @@ DocType: Blog Post,Published On,Objavljeno Dana
DocType: Contact,Gender,Rod
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Obavezna Informacije nedostaje:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} vratio je bodove na {1}
+DocType: Event Consumer,Event Subscriber,Pretplatnik na događaje
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Provjerite URL zahtjeva
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Samo 200 umetci dozvoljeno u jednom zahtjevu
DocType: Footer Item,URL,URL
@@ -3944,6 +3984,7 @@ DocType: Auto Email Report,Half Yearly,Pola godišnji
DocType: Communication,Marked As Spam,Označena kao neželjena pošta
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Postoji neki problem s datotečnog URL: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,drvo
+DocType: Event Producer Document Type,Use Same Name,Upotrijebite isti naziv
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Ne smiju tiskati ovo izvješće
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Korisničke ovlasti
DocType: Workflow State,warning-sign,upozorenje-znak
@@ -3953,6 +3994,7 @@ DocType: Workflow State,User,Korisnik
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Prikaži naslov u prozoru preglednika kao "prefiks - naslov"
DocType: Payment Gateway,Gateway Settings,Postavke pristupnika
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Tekst u vrsti dokumenta
+DocType: Event Sync Log,Event Sync Log,Zapisnik sinkronizacije događaja
apps/frappe/frappe/handler.py,Logged Out,Odjavljen
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Više...
DocType: System Settings,User can login using Email id or Mobile number,Korisnik se može prijaviti pomoću ID e-pošte ili broja mobitela
@@ -3992,12 +4034,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ne U
DocType: Workflow State,star,zvijezda
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Središte
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Ako se to označi, dokumenti će imati isti naziv kao na web mjestu Event Producent"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,Vrijednosti razdvojene zarezom
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maksimalna širina za vrstu valute je 100px u redku {0}
apps/frappe/frappe/config/website.py,Content web page.,Sadržaj web stranice.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Dodaj novu ulogu
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Posjetite web stranicu
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nova dodjela
+DocType: Event Consumer Document Type,Approved,Odobren
DocType: Google Contacts,Last Sync On,Posljednja sinkronizacija uključena
DocType: Deleted Document,Deleted Document,Obrisane dokumenta
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Nešto je pošlo po zlu
@@ -4049,7 +4093,6 @@ DocType: DocField,Unique,Jedinstvena
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} cijenjen je na {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Djelomičan uspjeh
DocType: Email Account,Service,usluga
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Postavljanje> Korisnik
DocType: File,File Name,Naziv datoteke
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nije pronađeno {0} za {0} ( {1} )
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4061,11 +4104,10 @@ DocType: Calendar View,Calendar View,Pregled kalendara
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Uredi format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Kompletan Registracija
DocType: GCalendar Settings,Enable,omogućiti
-DocType: Google Maps Settings,Home Address,Kućna adresa
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Možete učitati samo do 5000 zapisa po upisu. (može biti manje u nekim slučajevima)
DocType: Report,"output in the form of `data = [columns, result]`","izlaz u obliku `podaci = [stupci, rezultat]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Primjenjive vrste dokumenata
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Postavljanje pravila za zadatke korisnika.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Postavljanje pravila za zadatke korisnika.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nedovoljna dozvola za {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Izvješće nije spašen (bilo pogrešaka)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Nije moguće promijeniti sadržaj zaglavlja
diff --git a/frappe/translations/hu.csv b/frappe/translations/hu.csv
index 918470e3a9..41a070fae7 100644
--- a/frappe/translations/hu.csv
+++ b/frappe/translations/hu.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Ez a Beosztás frissíti egy felhasználó felhasználói jogosultságait
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},{0} átnevezése
DocType: Workflow State,zoom-out,kicsinyítés
-DocType: Data Import Beta,Import Options,Importálási lehetőségek
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Nem tudja megnyitni {0}, ha annak másik példánya nyitott"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Táblázat {0} nem lehet üres
DocType: SMS Parameter,Parameter,Paraméter
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,Ez Közzététel mező
DocType: GCalendar Settings,GCalendar Settings,GNaptár beállítások
DocType: Email Group,Email Group,E-mail csoport
-apps/frappe/frappe/__init__.py,Only for {},Csak {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Naptár - A (z) {0} esemény nem törölhető a Google Naptárból, hibakód: {1}."
DocType: Event,Pulled from Google Calendar,Húzza a Google Naptárból
DocType: Note,Seen By,Látta
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Többszörös hozz
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nem érvényes felhasználói kép.
DocType: Energy Point Log,Reverted,visszaállítva
DocType: Success Action,First Success Message,Első sikeres üzenet
+DocType: Document Type Mapping,Document Type Mapping,Dokumentumtípus leképezés
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nem mint
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Helytelen érték: {0} ez kell {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Mezőtulajdonságok megváltoztatása (eltüntet, csak olvasható, engedélyt stb)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,"Az az oldal, amely az eseményeket fogyasztja."
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Méltányol
DocType: Notification Settings,Document Share,Dokumentum megosztása
DocType: Workflow State,lock,zár
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Napló
DocType: Workflow State,indent-right,behúzás-jobbra
DocType: Has Role,Has Role,Rendelkezik szereppel
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,"Idő másodpercben, hogy megőrizze a QR-kódot a szerveren. Min: 240"
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: A (z) {2} {1} mezőtípusa nem indexálható
DocType: Dashboard Chart,Timespan,Időtartam
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web elérési útvonal
DocType: Deleted Document,Restored,Visszaállított
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Hiba történt a QZ tálca alkalmazáshoz való csatlakozáskor ...
A Raw Print szolgáltatás használatához a QZ Tray alkalmazásnak telepítve kell lennie és futnia kell.
Kattintson ide a QZ tálca letöltéséhez és telepítéséhez .
Kattintson ide, hogy többet tudjon meg a nyers nyomtatásról ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 perce
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Rendszergazdán kívül, beállított felhasználói engedélyekkel rendelkező beosztásokkal ehhez a Doctype típushoz tartozó felhasználók számára beállíthat engedélyeket."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Téma konfigurálása
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,OLVASATLAN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Fájlkezelő
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML fejléc, robotok és átirányítások"
DocType: GCalendar Account,Refresh Token,Token frissítése
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Nem sikerült csatlakozni az eseménytermelő oldalához. Próbálkozzon újra egy idő után.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Nincsenek függőben lévő vagy jelenlegi munkahelyek ezen a webhelyen
DocType: Webhook,Doc Event,Doc Esemény
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Script Manager
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nincs aktivitás
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Harmadik féltől származó alkalmazások
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Az első felhasználó lesz a Rendszergazda (meg lehet változtatni erről később).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Megpróbálhatja megváltoztatni a jelentés szűrőit.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Nincs esemény ma
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Nem adhat át értékelési pontokat magadnak
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,A DocType-nek meg kell felelnie a kiválasztott Doc eseménynek
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Nem küldhet e-mailt ezzel a dokumentummal kapcsolatban
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Válasszon ki legalább 1 oszlopot ebből {0} a rendezéshez / csoportosításhoz
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nem engedélyezett a (z) {0} számára: {1}. Korlátozott mező: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,A társaság nincs kapcsolatban
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Jelölje be ezt, ha teszteli a befizetéseit a Sandbox API belül"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Ön nem jogosult törölni egy alapértelmezett weboldal témát
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Hozza létre az első {0}
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Frissít
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,A {0} fedélzeti fedélzeti diák ugyanolyan sorrendben léteznek
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Jelentés elrejtése
DocType: Translation,Contributed Translation Doctype Name,Hozzájárult fordítás Doctype név
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Beállítás> Az űrlap testreszabása
DocType: PayPal Settings,Redirect To,Átirányítás ide
DocType: Data Migration Mapping,Pull,Kihúzni
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['JELENTÉSNÉV'] = {}
@@ -272,6 +276,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Nem engedélyezett
DocType: DocShare,Internal record of document shares,Belső rekord a dokumentum megosztásokhoz
DocType: Energy Point Settings,Review Levels,Áttekintési szintek
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Beállítás> Felhasználói engedélyek
DocType: Workflow State,Comment,Megjegyzés
DocType: Data Migration Plan,Postprocess Method,Utófeldolgozó metódus
DocType: DocType Action,Action Type,Művelet típusa
@@ -321,13 +326,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Hé
DocType: Workflow State,remove-circle,törlés-kör
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,A profilom
DocType: Help Article,Beginner,Kezdő
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Ez a művelet csak {} számára engedélyezett
DocType: Contact,Is Primary Contact,Ez elsődleges Kapcsolat
+DocType: Event Consumer,Event Consumer,Esemény Fogyasztó
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,"Javascript hozzáfűzés, az oldal fejrészéhez."
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Hozzáadás / frissítés
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Nem engedélyezett a tervezet dokumentumok nyomtatása
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Reset to defaults
DocType: Workflow,Transition Rules,Átvezetési szabályok
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Csak az első {0} sor jelenik meg az előnézetben
apps/frappe/frappe/core/doctype/report/report.js,Example:,Példa:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,korlátozások
DocType: Workflow,Defines workflow states and rules for a document.,Meghatározza a munkafolyamat állapotokat és szabályokat a dokumentumhoz.
@@ -475,7 +481,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Ismételje Till
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Új
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Először ezeket kell létrehoznia:
-DocType: Google Maps Settings,Google Maps Settings,A Google Térkép beállításai
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Betöltés...
DocType: DocField,Password,Jelszó
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,"Rendszere frissítésre kerül. Kérjük, térjen vissza néhány másodperc múlva"
@@ -567,6 +572,7 @@ DocType: System Settings,mm/dd/yyyy,hh/nn/éééé
DocType: Onboarding Slide,Onboarding Slide,Fedélzeti fedélzet
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Érvénytelen jelszó:
DocType: Print Settings,Send document web view link in email,Dokumentum web nézet link küldése e-mailben
+DocType: Event Consumer Document Type,Event Consumer Document Type,Esemény fogyasztói dokumentum típusa
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Előző
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Megbízható tanúsítványt igényel
@@ -642,6 +648,7 @@ DocType: Workflow State,volume-down,hangerő csökkentés
DocType: Onboarding Slide,Help Links,Súgó linkek
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,A hozzáférés ezen az IP-címen nem engedélyezett
DocType: Notification Settings,Enable Email Notifications,E-mail értesítések engedélyezése
+DocType: Document Type Field Mapping,Event Streaming,Események közvetítése
apps/frappe/frappe/desk/reportview.py,No Tags,Nincsenek címkék
DocType: Email Account,Send Notification to,Értesítés küldése
DocType: DocField,Collapsible,Összecsukható
@@ -658,11 +665,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Szű
apps/frappe/frappe/database/database.py,No conditions provided,Nincs feltétel
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y tengely mezők
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Ennek a rendezés mezőnek {0} kell lennie egy érvényes mezőnévnek
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nem található alapértelmezett címsablon. Kérjük, hozzon létre egy újat a Beállítás> Nyomtatás és márkajelzés> Címsablon menüpontból."
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Tovább
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Hozzon létre egy új rekordot
DocType: Contact,Sales Manager,Értékesítési manager
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Átnevezés
DocType: Print Format,Format Data,Adat formátum
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},A (z) {0} érvénytelen jelentésformátum. A jelentés formátuma a következő {1}
DocType: List Filter,Filter Name,Szűrő neve
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Mint
DocType: Assignment Rule,Automation,Automatizálás
@@ -681,6 +690,7 @@ DocType: User,Reset Password Key,Jelszó visszaállítása Key
DocType: Dashboard Chart,All Time,Mindig
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Illegális dokumentum státusz ehhez: {0}
DocType: Email Account,Enable Auto Reply,Automatikus válasz engedélyezése
+apps/frappe/frappe/desk/query_report.py,No data to export,Nincs adat exportálni
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nincs megtekintve
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Nem lehet több nyomtató egyetlen nyomtatási formátumra leképezve.
DocType: Workflow State,zoom-in,nagyítás
@@ -831,6 +841,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Felhaszná
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Első
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Fordítások frissítése
DocType: Error Snapshot,Exception,Kivétel
+DocType: Event Consumer,Event Consumer Document Types,Esemény fogyasztói dokumentum típusok
DocType: Email Account,Use IMAP,IMAP használata
DocType: Activity Log,Activity Log,Tevékenység napló
DocType: View Log,Viewed By,Megtekintette:
@@ -869,6 +880,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Sor
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Diagramok beállításai
DocType: User,Last IP,Utolsó IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Kérjük, adj hozzá egy tárgyat az e-mail címedhez"
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Hibás tranzakciók
DocType: Data Migration Connector,Data Migration Connector,Adatátviteli csatoló
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} visszaállítva {1}
DocType: Email Account,Track Email Status,Az e-mail állapotának követése
@@ -899,6 +911,7 @@ DocType: Email Queue,Attachments,Mellékletek
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Nincs jogosultsága a dokumentum eléréséhez
DocType: Language,Language Name,Nyelv neve
DocType: Email Group Member,Email Group Member,Email csoport tagja
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Nincs e-mail fiók társítva a Felhasználóval. Kérjük, vegyen fel egy fiókot a Felhasználó> E-mail beérkezett üzenetek csoportba."
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,"A fiók zárolva van, és {0} másodperc elteltével folytatódik"
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,A felhasználói jogosultságokat a felhasználók bizonyos bejegyzések korlátozására használják.
DocType: Notification,Value Changed,Érték megváltozott
@@ -989,6 +1002,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Tranzakció bef
DocType: Help Article,Expert,Szakértő
DocType: Workflow State,circle-arrow-right,kör-nyíl-jobb
DocType: Role Profile,Role Profile,Szerep profil
+DocType: Document Type Mapping,Remote Document Type,Távoli dokumentum típusa
apps/frappe/frappe/permissions.py,Document Type is not importable,A dokumentum típusa nem importálható
DocType: LDAP Settings,LDAP Server Url,LDAP kiszolgáló URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Nem lehet megnyitni a példányt amikor másik {0} nyitva
@@ -1073,7 +1087,7 @@ DocType: Web Form,Allow Print,Nyomtatás engedélyezése
DocType: Communication,Clicked,Rákattintott
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,unfollow
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nincs engedélye a '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Kérjük, állítsa be az alapértelmezett e-mail fiókot a Beállítás> E-mail> E-mail fiók menüben"
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},A (z) {1} közül csak az első {0} sor jelenik meg
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Ütemezett küldeni
DocType: DocType,Track Seen,Követés megtekintve
DocType: Dropbox Settings,File Backup,Fájl biztonsági mentés
@@ -1143,6 +1157,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vá
DocType: Data Export,Filter List,Szűrő lista
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Események konfigurálása
DocType: Email Account,Auto Reply Message,Auto üzenet válasz
DocType: Data Migration Mapping,Condition,Feltétel
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} órája
@@ -1202,9 +1217,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Mindig haszn
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Bejelentkezés a hozzászóláshoz
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Kezdje el beírni az adatokat e vonal alatt
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},megváltozott értékek erre {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Az e-mail azonosítónak egyedinek kell lennie, e-mail fiók létezik \ for {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Összehasonlításként használjon> 5, <10 vagy = 324. A tartományokhoz használja az 5:10 értéket (az 5 és 10 közötti értékekhez)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Testreszabás ...
DocType: Print Format,Align Labels to the Right,Igazítsa a címkéket a jobb oldalra
DocType: Assignment Rule,Disabled,Tiltva
@@ -1252,8 +1266,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Gyorsbillentyűket
DocType: Post,Comments,Hozzászólások
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Megerősítés
+DocType: Event Sync Log,Update Type,Frissítés típusa
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Hitelesítés ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Mindet összecsuk
+DocType: Event Producer,Last Update,Utolsó frissítés
apps/frappe/frappe/www/login.html,Forgot Password?,Elfelejtette a jelszót?
DocType: System Settings,yyyy-mm-dd,éééé-hh-nn
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1294,6 +1310,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Táblázat
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Oszlopok ez alapján
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{1}, {2} {0} importálása"
DocType: Workflow State,move,mozgás
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Nem sikerült létrehozni egy esemény-fogyasztót vagy esemény-fogyasztót az aktuális webhelyhez.
apps/frappe/frappe/model/document.py,Action Failed,Művelet sikerült
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Felhasználóknak
DocType: View Log,View log,Napló megtekintése
@@ -1455,6 +1472,7 @@ DocType: DefaultValue,Key,Mutató
DocType: Address,Contacts,Kapcsolatok
DocType: System Settings,Setup Complete,Telepítés befejezve
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Jelentés az összes dokumentum részvények
+DocType: Event Consumer,Callback URL,Visszahívási URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Az import sablonnak .csv, .xlsx vagy .xls típusúnak kell lennie"
apps/frappe/frappe/www/update-password.html,New Password,Új jelszó
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Szűrés {0} hiányzik
@@ -1520,7 +1538,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Sik
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; nem engedélyezett ebben az állapotban
DocType: Async Task,Async Task,Aszinkron Feladat
DocType: Workflow State,picture,kép
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Teljes
+DocType: Scheduled Job Log,Complete,Teljes
DocType: DocType,Image Field,képmező
DocType: Print Format,Custom HTML Help,Egyéni HTML Súgó
DocType: LDAP Settings,Default Role on Creation,Alapértelmezett szerep a létrehozásban
@@ -1546,6 +1564,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Segítség a kereséshez
DocType: Milestone,Milestone Tracker,Mérföldkő nyomkövető
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Regisztráltam, de kiiktatva"
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,"A címet össze kell kapcsolni egy vállalattal. Kérjük, adjon hozzá egy sort a Vállalat számára az alábbi Hivatkozások táblázatba."
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,A dokumentum automatikus ismétlése le van tiltva.
DocType: DocType,Hide Copy,Rejtett másolat
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Összes beosztás törlése
@@ -1584,6 +1603,7 @@ DocType: Bulk Update,Field,Mező
DocType: Communication,Received,Beérkezett
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Kapcsoló az érvényes módszerekhez, mint a ""before_insert"", ""after_update"", stb. (Függ a kiválasztott DocType-tól)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},megváltozott érték: {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"E-mail fiók beállítása kérjük, írja be a jelszavát: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Ehhez a Felhasználóhoz hozzátéve a Rendszer kezelő, mivel legalább egy Rendszergazdának lenni kell"
DocType: Chat Message,URLs,URL-ek
DocType: Data Migration Run,Total Pages,Összes oldal
@@ -1591,7 +1611,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Kép csatolása
DocType: Workflow State,list-alt,list-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Jelszó Frissítve
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Beállítás> Felhasználói engedélyek
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,A bejelentkezés ellenőrzéséhez szükséges lépések
apps/frappe/frappe/utils/password.py,Password not found,A jelszót nem találta
DocType: Webhook,Webhook Secret,Webhook titkos
@@ -1607,8 +1626,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-beáll
DocType: Report,Query Report,Érdeklődés jelentés
DocType: User,Set New Password,Új jelszó beállítása
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nem engedélyezett a (z) {0} számára: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s nem érvényes jelentési formátum. Jelentés formátum \ az alábbi kell legyen %s
DocType: Chat Message,Chat,Csevegés
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Nem található dokumentum a (z) {0} címkével
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP csoport leképezés
@@ -1643,7 +1660,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Adja meg
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox belépési titkosítás
DocType: Tag Link,Document Title,Dokumentum címe
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Kötelező)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} évvel ezelőtt
DocType: Social Login Key,Social Login Provider,Közösségi bejelentkezési szolgáltató
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Másik hozzászólás hozzáadása
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,"Nincs adat a fájlban. Kérjük, csatolja újra az új fájlt, adatokkal."
@@ -1691,6 +1707,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Válas
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 év
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Véglegesen törli {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Ugyanaz a fájl már csatlakozik a rekordhoz
+DocType: Event Sync Log,Synced,szinkronizált
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,"{0} nem érvényes munkafolyamat-állapot. Kérjük, frissítse a munkafolyamatot, és próbálja újra."
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} pontot adott
DocType: Workflow State,wrench,csavarkulcs
@@ -1793,6 +1810,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,Max hossz
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,térkép-jelölő
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Két doktípus közötti leképezési konfiguráció.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Jelentsen egy problémát
DocType: Event,Repeat this Event,Ismételje meg ezt az eseményt
DocType: Address,Maintenance User,Karbantartás Felhasználó
@@ -1852,6 +1870,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Teszt e-mail cím
DocType: Auto Repeat,Reference Document Type,Referencia Dokumentum típus
DocType: ToDo,Sender,Küldő
+DocType: Event Consumer,Incoming Change,Bejövő változás
DocType: Google Drive,Backup Folder Name,Biztonsági mappa neve
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,"Hiba az Értesítés {0} értékelésekor. Kérjük, javítsa meg a sablont."
DocType: GSuite Settings,Google Apps Script,Google alkalmazások Script
@@ -1913,9 +1932,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Új nyom
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Kattintson az alábbi linkre a kérés jóváhagyásához
DocType: Workflow State,align-left,igazítás-balra
DocType: Onboarding Slide,Action Settings,Művelet beállításai
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Beállítás> Felhasználó
DocType: User,Defaults,Alapértelmezések
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Összehasonlításként használjon> 5, <10 vagy = 324. A tartományokhoz használja az 5:10 értéket (az 5 és 10 közötti értékekhez)."
DocType: Energy Point Log,Revert Of,Vissza
+DocType: Document Type Mapping,Field Mapping,Field Mapping
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Meglévővel összefésülni
DocType: User,Birth Date,Születési dátum
DocType: Communication Link,Link Title,Elérési link címe
@@ -1943,6 +1963,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Címke link
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Lánc integritása
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Testben
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Pénznem = [?] törtrésze pl.: 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Részben sikeres
@@ -1952,6 +1973,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP csoport leképezések
DocType: Chat Message Attachment,Chat Message Attachment,Csevegő üzenet csatolása
DocType: LDAP Settings,Path to CA Certs File,A CA Certs fájl elérési útja
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Ha a dokumentum eltérő mezőnevekkel rendelkezik a Termelő és a Fogyasztó végén, ellenőrizze ezt, és állítsa be a leképezést"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Összes link opciót olvasásának engedélyezése
DocType: DocType,Database Engine,Adatbázis motor
@@ -2084,6 +2106,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Jegyzet
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Hibajelentés
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Adat exportálás CSV / Excel formátumban.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Dokumentumtípus mező leképezése
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,A globális keresési dokumentumok beállítása.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Hitelesítési alkalmazások:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} már létezik. Válasszon másik nevet
@@ -2157,7 +2180,6 @@ DocType: Workflow State,Upload,Feltöltés
DocType: User Permission,Advanced Control,Speciális vezérlés
DocType: System Settings,Date Format,Dátum formátum
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nincs közzé téve
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nem található alapértelmezett címsablon. Kérjük, hozzon létre egy újat a Beállítás> Nyomtatás és márkajelzés> Címsablon menüpontból."
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",Műveletek munkafolyamathoz (pl Jóváhagyja Mégsem).
DocType: Data Import,Skip rows with errors,Hibás sorok kihagyása
DocType: Workflow State,flag,zászló
@@ -2220,6 +2242,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Képviseli az egy dokumentumon megengedett álapotot és az állapot megváltoztatásához hozzárendelt beosztást.
DocType: Data Migration Connector,Database Name,Adatbázis név
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Űrlap frissítése
+DocType: Event Producer,Event Producer,Rendezvény producer
DocType: DocField,Select,Választás
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Teljes napló megtekintése
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Egyszerű Python kifejezés, példa: status == 'Megnyitás' és gépelés == 'Hiba'"
@@ -2337,12 +2360,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kód a beje
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Add hozzá a Tennivalókhoz
DocType: Footer Item,Company,Vállalkozás
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} átlag
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Sikeres tranzakciók
DocType: Scheduled Job Log,Scheduled,Ütemezett
DocType: User,Logout from all devices while changing Password,Kijelentkezés az összes eszközről a jelszó megváltoztatáskor
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Jelszó megerősítése
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Hibák voltak
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Írja be az Ügyfél-azonosítót és az Ügyfél-titkot a Google Beállításokban.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Bezárás
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","Az e-mail azonosítónak egyedinek kell lennie, az {0} e-mail fiók már létezik"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Nem lehet megváltoztatni docstatus 0 -ról 2 -re
DocType: File,Attached To Field,Mezőhöz csatolt
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Frissítés
@@ -2448,6 +2473,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Hónap
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Add Reference: {{ reference_doctype }} {{ reference_name }} küldeni dokumentum hivatkozási
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Csak a dokumentumban részt vevő felhasználók szerepelnek a listán
DocType: DocField,Fetch From,Lekérés innen
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Beállítás> Az űrlap testreszabása
apps/frappe/frappe/modules/utils.py,App not found,Alkalmazások nem találhatók
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Nem lehet létrehozni egy: {0} az aldokumentumhoz: {1}
DocType: Social Login Key,Social Login Key,Közösségi bejelentkezési kulcs
@@ -2459,7 +2485,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Cseveg
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Szociális otthon
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Nem lehet beszúrni utána így mint {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,{0} megosztása vele
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-mail fiók beállításához írja be a jelszavát:
DocType: Workflow State,hand-up,kéz-fel
DocType: Blog Settings,Writers Introduction,Írók Bevezetés
DocType: Address,Phone,Telefon
@@ -2518,7 +2543,7 @@ DocType: Web Page,Insert Style,Stílus beszúrása
DocType: Prepared Report,Error Message,Hiba üzenet
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Új jelentés neve
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Hétvégék elrejtése
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatikusan generál ismétlődő dokumentumokat.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Automatikusan generál ismétlődő dokumentumokat.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Van
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,infó-jel
@@ -2526,7 +2551,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Ennek
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hogyan kell ezt a pénznemet formázni? Ha nincs beállítva, akkor használja a rendszer alapértelmezettet"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Küldje el a {0} dokumentumokat?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Be kell jelentkeznie Rendszergazda Beosztással a mentések eléréséhez.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Hiba történt a QZ tálca alkalmazáshoz való csatlakozáskor ...
A Raw Print szolgáltatás használatához a QZ Tray alkalmazásnak telepítve kell lennie és futnia kell.
Kattintson ide a QZ tálca letöltéséhez és telepítéséhez .
Kattintson ide, hogy többet tudjon meg a nyers nyomtatásról ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Nyomtató leképezése
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Kérjük mentsen a csatolás elött.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Törli az összes összekapcsolt dokumentumot?
@@ -2556,6 +2580,7 @@ DocType: Role Permission for Page and Report,Set Role For,Állítsa be ehhez a s
DocType: GCalendar Account,The name that will appear in Google Calendar,A Google naptárban megjelenő név
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,A közvetlen {0} szoba már létezik.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Frissítés...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Ellenőrizze az irányítópult-diagram szűrési értékeit: {}
DocType: Event,Starts on,Kezdődik
DocType: System Settings,System Settings,Rendszer beállításai
DocType: GCalendar Settings,Google API Credentials,Google API hitelesítő adatok
@@ -2580,6 +2605,7 @@ DocType: Workflow State,ok-sign,ok-jel
apps/frappe/frappe/config/settings.py,Deleted Documents,Törölt dokumentumok
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV formátum a kis- és nagybetűkre érzékeny
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Asztal ikon már létezik
+DocType: Event Consumer Document Type,Approval Status,Jóváhagyás állapota
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Adja meg, hogy az összes domainben miként jelenjenek meg a diák. Ha semmit nem ad meg, a dia alapértelmezés szerint az összes domainben megjelenik."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Megsokszoroz
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: A (z) {2} sorban lévő {1} mező nem rejthető el és kötelező alapértelmezés nélkül
@@ -2599,6 +2625,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Súgóbejegyzések
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Típus:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Fizetése sikertelen.
+DocType: Event Producer,Producer URL,Termelő URL
DocType: Comment,Unshared,Meg nem osztott
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modul nem található
@@ -2610,6 +2637,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Hozzárendelés Befejezett
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Tömeges szerkesztés {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Letöltési jelentés
+apps/frappe/frappe/model/workflow.py,Workflow Status,Munkafolyamat állapota
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Nem aktív
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Csak az adminisztrátorok hozhatnak létre az irányítópult diagram forrásait
DocType: About Us Settings,Settings for the About Us Page,Beállítások a Rólunk oldalhoz
@@ -2618,6 +2646,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Nyo
DocType: Notification Settings,Energy Points,Energiapontok
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},A (z) {0} időnek formátumban kell lennie: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,pl. pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}: Nem sikerült új ismétlődő dokumentumot csatolni. A dokumentum csatolásának engedélyezéséhez az automatikus ismétlődő értesítési e-mailben engedélyezze a (z) {1} lehetőséget a Nyomtatási beállításokban
DocType: User,Generate Keys,Kulcsok generálása
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ez véglegesen eltávolítja az Ön adatait.
DocType: DocType,View Settings,Nézet beállítások
@@ -2669,6 +2698,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Összes
DocType: Email Queue,Recipient,Címzett
DocType: Webhook,Webhook Security,Webhook biztonság
+DocType: Event Sync Log,Producer Document Name,Termelői dokumentum neve
DocType: Communication,Has Attachment,Melléklettel rendelkezik
DocType: Address,Sales User,Értékesítési Felhasználó
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Fogd és húzd eszközzel építi és személyreszabja a nyomtatási formátumokat.
@@ -2704,6 +2734,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,A gyermektáblák rácsként jelennek meg a többi DocTypes-ben
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Automatikus e-mail beállítása
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Le
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Az a hely, amelyet fel kell fizetni az események fogyasztására."
DocType: Chat Profile,Message Preview,Üzenetek előnézete
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Ez egy top-10 ismétlődő jelszót.
DocType: User,User Defaults,Felhasználói alapértékek
@@ -2736,6 +2767,7 @@ DocType: Dashboard Chart,Last Synced On,Utoljára szinkronizálva
DocType: Comment,Comment Type,Megjegyzés Típus
DocType: OAuth Client,OAuth Client,OAuth kliens
DocType: Assignment Rule,Users,Felhasználók
+DocType: Document Type Mapping,Local Document Type,Helyi dokumentum típusa
DocType: Address,Odisha,Orisza
DocType: Report,Report Type,Report Type
DocType: DocField,Signature,Aláírás
@@ -2777,6 +2809,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} ezt a feladatát osztotta ki saját magának: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Országa
DocType: Assignment Rule Day,Sunday,Vasárnap
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Az eseménytermelő webhelyén található összes beillesztés, frissítés és törlés naplóját tárolja a fogyasztókkal rendelkező dokumentumok számára."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: A mezőnév nem lehet a (z) {1} egyikének
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Tabella
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Rácsnézetben
@@ -2922,7 +2955,6 @@ DocType: Web Page,Sidebar and Comments,Oldalsáv és megjegyzések
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Ha módosítják a dokumentumot, miután a Mégse, és mentse el, akkor kap egy új számot, hogy egy változata a régi számot."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Nem lehet csatolni {0} dokumentumot, kérjük engedélyezze a Nyomtatás engedélyezése {0} lehetőséget a Nyomtatási beállításokban"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Az e-mail fiók nincs beállítva. Kérjük, hozzon létre egy új e-mail fiókot a Beállítás> E-mail> E-mail fiók közül"
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Tekintse meg a dokumentumot itt: {0}
DocType: Stripe Settings,Publishable Key,Közzétehető kulcs
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Importálás elindítása
@@ -2999,7 +3031,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Infó:
DocType: Custom Field,Permission Level,Jogosultsági szint
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Írás nélkül nem elérhető a Küldés, Törlés, és Módosítás"
DocType: List View Setting,Disable Count,A gróf letiltása
-DocType: Google Maps Settings,Client Key,Ügyfél kulcs
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,"Biztos benne, hogy törölni szeretné a mellékletet?"
apps/frappe/frappe/__init__.py,Thank you,Köszönöm
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Mentés
@@ -3125,6 +3156,7 @@ DocType: Workflow Document State,Only Allow Edit For,Csak ő szerkesztheti
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Biztonsági mentés a Google Drive-ra.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Kötelező mező: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,A neve
+DocType: Event Producer Document Type,Event Producer Document Type,Esemény-előállító dokumentum típusa
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,A kapcsolat sikeres
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Már létezik a fedélzeti dián lévő diák típusa.
@@ -3195,6 +3227,7 @@ DocType: Address,Postal Code,Irányítószám
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Átszerkeszt Kommunikációt
DocType: Translation,Contributed,Hozzájárult
apps/frappe/frappe/config/customization.py,Form Customization,Űrlap testreszabása
+DocType: Event Update Log,Event Update Log,Eseményfrissítési napló
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nincs aktív munkamenet
DocType: Web Form,Route to Success Link,Útvonal a sikeres linkhez
DocType: Onboarding Slide Field,Right,Jobb
@@ -3221,7 +3254,7 @@ DocType: Website Settings,Chat Operators,Csevegőszolgáltatók
DocType: S3 Backup Settings,ca-central-1,ca-Közép-1
DocType: Contact Us Settings,Pincode,Irányítószám
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Kérjük, győződjön meg arról, hogy nincs üres oszlop a fájlban."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Nyomon követi a dokumentum életciklusának mérföldköveit, ha több szakaszon megy keresztül."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Nyomon követi a dokumentum életciklusának mérföldköveit, ha több szakaszon megy keresztül."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Átnevezett fájlok és kicserélt kódok a vezérlőkben, kérjük, ellenőrizze!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Kérjük, ellenőrizze, hogy a profilhoz tartozik egy e-mail cím"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Nem mentett módosításai vannak ebben az űrlapban. Kérjük, mentse a folytatás előtt."
@@ -3248,7 +3281,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API Titok mentése:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Nem tudja összekapcsolódni a törölt dokumentumot: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Nem lehet szerkeszteni egy alapértelmezett jelentést. Kérjük sokszorozza meg és hozzon létre egy új jelentést
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Vállalkozás kötelező, hiszen a vállalkozásának a címe"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Például: Ha hozzá szeretné fúzni a dokumentum ID azonosítót, használja ezt: {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Válasszon táblázat oszlopokat ehhez {0}
DocType: Custom Field,Options Help,Súgó beállítások
@@ -3256,7 +3288,6 @@ DocType: Footer Item,Group Label,Csoport felirat
DocType: Kanban Board,Kanban Board,Kanban pult
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,A Google Névjegyek konfigurálva vannak.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekord exportálásra kerül
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Nincs e-mail fiók társítva a Felhasználóval. Kérjük, vegyen fel egy fiókot a Felhasználó> E-mail beérkezett üzenetek csoportba."
DocType: DocField,Report Hide,Jelentés elrejtése
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Fa nézet nem elérhető erre {0}
DocType: DocType,Restrict To Domain,Korlátozás Doménre
@@ -3321,7 +3352,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: A (z) {2} típusú {1} mező nem kötelező
DocType: System Settings,In Days,Napokban
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Asszony
+DocType: Event Producer Document Type,Has Mapping,Van leképezése
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,"Kérjük, határozza meg"
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Érvénytelen szűrőérték
DocType: Comment,Bot,robot
DocType: Help Article,Help Article,Súgó cikk
DocType: Page,Page Name,Oldal név
@@ -3429,7 +3462,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Nyomtatvány sablon
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Rácsnézet kapcsolása
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Ugrás a következő felvételre
-DocType: System Settings,Time Format,Idő formátum
+DocType: Country,Time Format,Idő formátum
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Érvénytelen fizetési átjáró hitelesítő
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Ez az a sablonfájl, amely csak a hibát tartalmazó sorokból tevődik össze. Használja ezt a fájlt a javításhoz és az importáláshoz."
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Engedélyek beállítása a dokumentum típusoknál és Beosztásoknál
@@ -3751,6 +3784,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Engedélyezze a felhasználónévvel a bejelentkezést
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Engedélyezze a jelentést
DocType: DocField,Display Depends On,Kijelzés ettől függ
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} évvel ezelőtt
DocType: Social Login Key,API Endpoint,API végpont
DocType: Web Page,Insert Code,Kód beszúrása
DocType: Data Migration Run,Current Mapping Type,Aktuális leképezési típusa
@@ -3804,6 +3838,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Er
apps/frappe/frappe/www/login.html,Or login with,Vagy jelentkezz be ezzel
DocType: Error Snapshot,Locals,Helyiek
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Keresztül közölt {0} ezen {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Esemény-készítő dokumentumtípusok
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Kérjük, állítsa be az alapértelmezett e-mail fiókot a Beállítás> E-mail> E-mail fiók menüben"
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Válassza ki a Csoportot ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,pl. (55 + 434) / 4 vagy = Math.sin(Math.PI/2)...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} szükséges
@@ -3835,9 +3871,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GNaptár szinkr ID
DocType: Prepared Report,Report Start Time,Jelentés kezdési dátum
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Adat exportálás
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Az összes felhasznált esemény naplóját, a szinkronizálás állapotát és az Újraszinkronizálás gombot tartja fenn, ha a szinkronizálás sikertelen."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Válasszon oszlopokat
DocType: Translation,Source Text,Forrás szöveg
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"Ez egy háttér-jelentés. Adja meg a megfelelő szűrőket, majd hozzon létre újat."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Az e-mail fiók nincs beállítva. Kérjük, hozzon létre egy új e-mail fiókot a Beállítás> E-mail> E-mail fiók közül"
apps/frappe/frappe/www/login.py,Missing parameters for login,Hiányzó paraméterek a bejelentkezéshez
DocType: Workflow State,folder-open,mappa-nyit
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",A benyújtható dokumentumok nem változtathatók meg. Csak törölhetők és módosíthatók.
@@ -3917,6 +3955,7 @@ DocType: Blog Post,Published On,Közzétette ekkor
DocType: Contact,Gender,Neme
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Kötelező informácikó hiányoznak:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} visszaadta pontainkat a (z) {1} -on
+DocType: Event Consumer,Event Subscriber,Esemény előfizető
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Ellenőrizze az URL kérést
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Csak 200 beillesztés engedélyezett egy igényhez
DocType: Footer Item,URL,URL
@@ -3929,6 +3968,7 @@ DocType: Auto Email Report,Half Yearly,Félévente
DocType: Communication,Marked As Spam,Levélszemétként jelölt
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Van valami probléma a fájl URL-el: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Fa
+DocType: Event Producer Document Type,Use Same Name,Használja ugyanazt a nevet
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Nem nyomtathatja ki ezt a jelentést
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Felhasználói engedélyek
DocType: Workflow State,warning-sign,figyelmeztető jel
@@ -3938,6 +3978,7 @@ DocType: Workflow State,User,Felhasználó
DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Cím megjelenítése a böngészőablakban, mint ""Előtag - cím"""
DocType: Payment Gateway,Gateway Settings,Árjáró beállítások
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,szöveg dokumentum típusban
+DocType: Event Sync Log,Event Sync Log,Esemény szinkronizálási napló
apps/frappe/frappe/handler.py,Logged Out,Kilépett
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Több...
DocType: System Settings,User can login using Email id or Mobile number,Felhasználó bejelentkezhet E-mail azonosító vagy mobil szám segítségével
@@ -3977,12 +4018,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nincs ebben
DocType: Workflow State,star,csillag
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Ha ez be van jelölve, a dokumentumok ugyanazzal a névvel rendelkeznek, mint a Rendezvénygyártó webhelyén"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,Értékek vesszővel elválasztva
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max szélesség a pénznem típushoz 100px ebben a sorban {0}
apps/frappe/frappe/config/website.py,Content web page.,Weboldal tartalom.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Új beosztás hozzáadása
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Látogasson el a weboldalra
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Új megbízás
+DocType: Event Consumer Document Type,Approved,Jóváhagyott
DocType: Google Contacts,Last Sync On,Utolsó szinkronizálás ekkor
DocType: Deleted Document,Deleted Document,Törölt dokumentum
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hoppá! Valami rosszul sült el
@@ -4034,7 +4077,6 @@ DocType: DocField,Unique,Egyedi
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} értékelve {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Részleges siker
DocType: Email Account,Service,Szervíz
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Beállítás> Felhasználó
DocType: File,File Name,Fájl neve
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),"Nem találja ezt {0}, ehhez {0} ({1})"
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Feloszt.: {0}
@@ -4046,11 +4088,10 @@ DocType: Calendar View,Calendar View,Naptár nézet
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Formátum szerkesztése
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Regisztráció befejezéséhez
DocType: GCalendar Settings,Enable,Engedélyezve
-DocType: Google Maps Settings,Home Address,Lakcím
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),"5000 rekordot tölthet fel egyszerre. (Kevesebb lehet, egyes esetekben)"
DocType: Report,"output in the form of `data = [columns, result]`","kimenet `data = [oszlopok, eredmény]` formában"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Alkalmazható dokumentumtípusok
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Szabályok beállítása a felhasználói hozzárendelésekhez.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Szabályok beállítása a felhasználói hozzárendelésekhez.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nem elég Jogosultság ehhez {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Jelentés nem mentette (voltak hibák)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,A fejléc tartalma nem változtaható
diff --git a/frappe/translations/id.csv b/frappe/translations/id.csv
index 1be1606911..76ec797517 100644
--- a/frappe/translations/id.csv
+++ b/frappe/translations/id.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Peran ini memperbarui Hak Akses Pengguna untuk seorang pengguna
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Ubah nama {0}
DocType: Workflow State,zoom-out,perkecil
-DocType: Data Import Beta,Import Options,Opsi Impor
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Tidak dapat membuka {0} ketika misalnya yang terbuka
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabel {0} tidak boleh kosong
DocType: SMS Parameter,Parameter,Parameter
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Bata
DocType: DocType,Is Published Field,Apakah Diterbitkan Lapangan
DocType: GCalendar Settings,GCalendar Settings,Pengaturan GCalendar
DocType: Email Group,Email Group,Kelompok Surel
-apps/frappe/frappe/__init__.py,Only for {},Hanya untuk {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalender Google - Tidak dapat menghapus Acara {0} dari Kalender Google, kode kesalahan {1}."
DocType: Event,Pulled from Google Calendar,Ditarik dari Kalender Google
DocType: Note,Seen By,Dilihat oleh
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Tambahkan Beberapa
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Bukan Gambar Pengguna yang valid.
DocType: Energy Point Log,Reverted,Dikembalikan
DocType: Success Action,First Success Message,Pesan Sukses Pertama
+DocType: Document Type Mapping,Document Type Mapping,Pemetaan Tipe Dokumen
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Tidak suka
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nilai yang tidak benar: {0} harus {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Sifat perubahan lapangan (hide, dibaca, izin dll)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Situs yang memakan acara Anda.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Menghargai
DocType: Notification Settings,Document Share,Berbagi Dokumen
DocType: Workflow State,lock,mengunci
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Log
DocType: Workflow State,indent-right,indent kanan
DocType: Has Role,Has Role,memiliki Peran
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Sinkronisasi ulang
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Waktu dalam hitungan detik untuk mempertahankan gambar QR code di server. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} untuk {2} tidak dapat diindeks
DocType: Dashboard Chart,Timespan,Rentang waktu
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web link
DocType: Deleted Document,Restored,Pulih
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Kesalahan menyambung ke Aplikasi Baki QZ ...
Anda harus menginstal dan menjalankan aplikasi Baki QZ, untuk menggunakan fitur Raw Print.
Klik di sini untuk Mengunduh dan menginstal Baki QZ .
Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 menit yang lalu
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Selain System Manager, peran dengan Set Pengguna Izin benar dapat mengatur hak akses untuk pengguna lain untuk itu Document Type."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigurasikan Tema
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,TAK TERLIHAT
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager
DocType: Website Settings,"HTML Header, Robots and Redirects","Header HTML, Robot, dan Redirect"
DocType: GCalendar Account,Refresh Token,Segarkan Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Gagal terhubung ke situs Produser Acara. Coba lagi setelah beberapa waktu.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Tidak ada pekerjaan yang tertunda atau saat ini untuk situs ini
DocType: Webhook,Doc Event,Acara dok
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Pengelola Skrip
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Tidak ada kegiatan
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikasi Pihak Ketiga
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Pengguna pertama akan menjadi System Manager (Anda dapat mengubahnya nanti).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Anda dapat mencoba mengubah filter laporan Anda.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Tidak Ada Acara Hari Ini
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Anda tidak dapat memberikan poin ulasan untuk diri sendiri
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType harus Submittable untuk Doc Event yang dipilih
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Anda tidak diizinkan mengirim email yang terkait dokumen ini
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Tidak diperbolehkan untuk {0}: {1}. Bidang terbatas: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Perusahaan tidak Tertaut
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Periksa ini jika Anda menguji pembayaran menggunakan API Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Anda tidak diizinkan menghapus Tema Website standar
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Buat {0} pertama Anda
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Memperba
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Slide Onboarding {0} dengan urutan slide yang sama sudah ada
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Nonaktifkan Laporan
DocType: Translation,Contributed Translation Doctype Name,Nama Dokumen Terjemahan yang Dikontribusi
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Pengaturan> Kustomisasi Formulir
DocType: PayPal Settings,Redirect To,redirect Untuk
DocType: Data Migration Mapping,Pull,Tarik
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['REPORTNAME'] = {}
@@ -272,6 +276,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Tidak Diizinkan
DocType: DocShare,Internal record of document shares,Catatan internal saham dokumen
DocType: Energy Point Settings,Review Levels,Tinjau Tingkat
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Pengaturan> Izin Pengguna
DocType: Workflow State,Comment,Komentar
DocType: Data Migration Plan,Postprocess Method,Metode Pascaproses
DocType: DocType Action,Action Type,tipe aksi
@@ -321,13 +326,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Tun
DocType: Workflow State,remove-circle,hapus-lingkaran
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profil saya
DocType: Help Article,Beginner,Pemula
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Tindakan ini hanya diperbolehkan untuk {}
DocType: Contact,Is Primary Contact,Apakah Kontak Utama
+DocType: Event Consumer,Event Consumer,Konsumen Acara
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript untuk menambahkan ke bagian kepala halaman Page.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Tambah / Perbarui
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Tidak diizinkan untuk mencetak dokumen draft
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Ulang ke default
DocType: Workflow,Transition Rules,Aturan Transisi
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Menampilkan hanya {0} baris pertama dalam pratinjau
apps/frappe/frappe/core/doctype/report/report.js,Example:,Contoh:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Batasan
DocType: Workflow,Defines workflow states and rules for a document.,Mendefinisikan status alur kerja dan aturan untuk dokumen.
@@ -476,7 +482,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Ulangi Sampai
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Baru
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Anda harus membuatnya terlebih dahulu:
-DocType: Google Maps Settings,Google Maps Settings,Pengaturan Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Memuat...
DocType: DocField,Password,Kata sandi
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Sistem Anda sedang diperbarui. Segarkan lagi setelah beberapa saat
@@ -568,6 +573,7 @@ DocType: System Settings,mm/dd/yyyy,hh / bb / tttt
DocType: Onboarding Slide,Onboarding Slide,Slide Onboarding
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Kata sandi salah:
DocType: Print Settings,Send document web view link in email,Mengirim tautan tampilan web dokumen dalam email
+DocType: Event Consumer Document Type,Event Consumer Document Type,Jenis Dokumen Konsumen Acara
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Kembali
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Membutuhkan Sertifikat Tepercaya
@@ -643,6 +649,7 @@ DocType: Workflow State,volume-down,Volume-down
DocType: Onboarding Slide,Help Links,Tautan Bantuan
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Akses tidak diizinkan dari Alamat IP ini
DocType: Notification Settings,Enable Email Notifications,Aktifkan Pemberitahuan Email
+DocType: Document Type Field Mapping,Event Streaming,Streaming Acara
apps/frappe/frappe/desk/reportview.py,No Tags,Tidak ada Tags
DocType: Email Account,Send Notification to,Kirim Pemberitahuan untuk
DocType: DocField,Collapsible,Collapsible
@@ -659,11 +666,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Tidak ada ketentuan yang disediakan
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Bidang Sumbu Y
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,bidang semacam {0} harus fieldname valid
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Templat Alamat default tidak ditemukan. Harap buat yang baru dari Setup> Printing and Branding> Address Template.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Lanjut
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Buat catatan baru
DocType: Contact,Sales Manager,Sales Manager
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Ubah nama
DocType: Print Format,Format Data,Format data
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} bukan format laporan yang valid. Format laporan harus salah satu dari yang berikut {1}
DocType: List Filter,Filter Name,Nama filter
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Seperti
DocType: Assignment Rule,Automation,Otomatisasi
@@ -682,6 +691,7 @@ DocType: User,Reset Password Key,Reset Password Key
DocType: Dashboard Chart,All Time,Sepanjang waktu
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Status Dokumen Ilegal untuk {0}
DocType: Email Account,Enable Auto Reply,Aktifkan Auto Reply
+apps/frappe/frappe/desk/query_report.py,No data to export,Tidak ada data untuk diekspor
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Tidak Terlihat
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Tidak dapat memetakan banyak printer ke format cetak tunggal.
DocType: Workflow State,zoom-in,perbesar
@@ -832,6 +842,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Ganti peng
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pertama
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Perbarui Terjemahan
DocType: Error Snapshot,Exception,Pengecualian
+DocType: Event Consumer,Event Consumer Document Types,Jenis Dokumen Konsumen Acara
DocType: Email Account,Use IMAP,Gunakan IMAP
DocType: Activity Log,Activity Log,Log Aktivitas
DocType: View Log,Viewed By,Dilihat oleh
@@ -870,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Men
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurasi Grafik
DocType: User,Last IP,IP Terakhir
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Silakan tambahkan subjek ke email Anda
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Transaksi yang salah
DocType: Data Migration Connector,Data Migration Connector,Konektor Migrasi Data
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} dikembalikan {1}
DocType: Email Account,Track Email Status,Lacak Status Email
@@ -900,6 +912,7 @@ DocType: Email Queue,Attachments,Lampiran
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Anda tidak memiliki izin untuk mengakses dokumen ini
DocType: Language,Language Name,Nama bahasa
DocType: Email Group Member,Email Group Member,Anggota Kelompok Surel
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Tidak ada akun email yang dikaitkan dengan Pengguna. Silakan tambahkan akun di bawah Pengguna> Kotak Masuk Email.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Akun Anda telah dikunci dan akan dilanjutkan setelah {0} detik
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Izin Pengguna digunakan untuk membatasi pengguna ke catatan tertentu.
DocType: Notification,Value Changed,Nilai Berubah
@@ -991,6 +1004,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Menyebutkan tra
DocType: Help Article,Expert,Ahli
DocType: Workflow State,circle-arrow-right,lingkaran-panah-kanan
DocType: Role Profile,Role Profile,Profil Peran
+DocType: Document Type Mapping,Remote Document Type,Jenis Dokumen Jarak Jauh
apps/frappe/frappe/permissions.py,Document Type is not importable,Jenis Dokumen tidak dapat diimpor
DocType: LDAP Settings,LDAP Server Url,LDAP Server Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Tidak dapat membuka contoh ketika nya {0} terbuka
@@ -1075,7 +1089,7 @@ DocType: Web Form,Allow Print,Izinkan Cetak
DocType: Communication,Clicked,Diklik
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Berhenti mengikuti
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Tidak ada izin untuk '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Silakan atur Akun Email default dari Pengaturan> Email> Akun Email
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Menampilkan hanya {0} baris pertama dari {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Dijadwalkan untuk mengirim
DocType: DocType,Track Seen,track Dilihat
DocType: Dropbox Settings,File Backup,Cadangan File
@@ -1145,6 +1159,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,pil
DocType: Data Export,Filter List,Daftar Filter
DocType: Data Export,Excel,Unggul
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Konfigurasi Acara
DocType: Email Account,Auto Reply Message,Auto Reply Pesan
DocType: Data Migration Mapping,Condition,Kondisi
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} jam yang lalu
@@ -1204,9 +1219,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Selalu gunak
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Masuk untuk berkomentar
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Mulai memasukkan data di bawah garis ini
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},nilai-nilai berubah untuk {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ID email harus unik, Akun Email sudah ada \ untuk {0}"
DocType: Workflow State,retweet,-retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Sesuaikan ...
DocType: Print Format,Align Labels to the Right,Meratakan Labels ke kanan
DocType: Assignment Rule,Disabled,Dinonaktifkan
@@ -1254,8 +1268,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Pintasan keyboard
DocType: Post,Comments,Komentar
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Menegaskan
+DocType: Event Sync Log,Update Type,Jenis Pembaruan
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Mengautentikasi ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Perkecil Semua
+DocType: Event Producer,Last Update,Pembaharuan Terakhir
apps/frappe/frappe/www/login.html,Forgot Password?,Lupa kata sandi?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1296,6 +1312,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,tabel Lapa
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolom berdasarkan
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Mengimpor {0} dari {1}, {2}"
DocType: Workflow State,move,Bergerak
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Gagal membuat Acara Konsumen atau Konsumen Acara untuk situs saat ini sudah terdaftar.
apps/frappe/frappe/model/document.py,Action Failed,aksi Gagal
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,untuk Pengguna
DocType: View Log,View log,Melihat log
@@ -1458,6 +1475,7 @@ DocType: DefaultValue,Key,kunci
DocType: Address,Contacts,Kontak
DocType: System Settings,Setup Complete,Pengaturan Selesai
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Laporan dari seluruh saham dokumen
+DocType: Event Consumer,Callback URL,URL panggilan balik
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Templat impor harus bertipe .csv, .xlsx atau .xls"
apps/frappe/frappe/www/update-password.html,New Password,Kata sandi Baru
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} hilang
@@ -1523,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Keb
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; tidak diijinkan dalam kondisi
DocType: Async Task,Async Task,Async Tugas
DocType: Workflow State,picture,gambar
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Lengkap
+DocType: Scheduled Job Log,Complete,Lengkap
DocType: DocType,Image Field,Bidang gambar
DocType: Print Format,Custom HTML Help,Custom HTML Bantuan
DocType: LDAP Settings,Default Role on Creation,Peran Default pada Pembuatan
@@ -1549,6 +1567,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Bantuan Pencarian
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Terdaftar tapi dinonaktifkan
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Alamat harus ditautkan ke Perusahaan. Silakan tambahkan baris untuk Perusahaan di tabel Tautan di bawah ini.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Ulangi Otomatis untuk dokumen ini telah dinonaktifkan.
DocType: DocType,Hide Copy,Sembunyikan Duplikat
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Hapus semua peran
@@ -1587,6 +1606,7 @@ DocType: Bulk Update,Field,Bidang
DocType: Communication,Received,Diterima
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Memicu pada metode yang valid seperti ""before_insert"", ""after_update"", dll (tergantung pada DocType yang dipilih)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},nilai perubahan {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Pengaturan Akun Email, harap masukkan kata sandi Anda untuk: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Menambahkan Pengelola Sistem untuk user ini dikarenakan minimal harus ada satu Pengelola Sistem
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,Total Halaman
@@ -1594,7 +1614,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Pasang Gambar
DocType: Workflow State,list-alt,daftar-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Password Diperbarui
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Pengaturan> Izin Pengguna
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Langkah untuk memverifikasi login anda
apps/frappe/frappe/utils/password.py,Password not found,Sandi tidak ditemukan
DocType: Webhook,Webhook Secret,Rahasia Webhook
@@ -1610,8 +1629,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Pengaturan Google
DocType: Report,Query Report,"Laporan ""Query"""
DocType: User,Set New Password,Set Password Baru
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Tidak diizinkan untuk {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s bukan format laporan yang valid. Format laporan harus \ salah satu %s berikut
DocType: Chat Message,Chat,Obrolan
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Tidak ditemukan dokumen yang ditandai dengan {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Pemetaan Grup LDAP
@@ -1646,7 +1663,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Masukkan
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Rahasia
DocType: Tag Link,Document Title,Judul dokumen
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Wajib)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu
DocType: Social Login Key,Social Login Provider,Penyedia Login Sosial
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Tambahkan Komentar lain
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Tidak ada data yang ditemukan dalam file. Tolong pasang kembali file baru dengan data.
@@ -1694,6 +1710,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Pilih
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 tahun
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Secara permanen menghapus {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,File yang sama telah melekat pada catatan
+DocType: Event Sync Log,Synced,Disinkronkan
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} bukan Status Alur Kerja yang valid. Perbarui Alur Kerja anda dan coba lagi.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,memberi {0} poin
DocType: Workflow State,wrench,kunci
@@ -1796,6 +1813,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,M
DocType: Web Form Field,Max Length,Panjang maksimal
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,peta-penanda
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Konfigurasi pemetaan antara dua doctypes.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Menyerahkan Masalah
DocType: Event,Repeat this Event,Ulangi Acara ini
DocType: Address,Maintenance User,Pengguna Pemeliharaan
@@ -1855,6 +1873,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Uji Alamat Email
DocType: Auto Repeat,Reference Document Type,Tipe Dokumen Referensi
DocType: ToDo,Sender,Pengirim
+DocType: Event Consumer,Incoming Change,Perubahan yang Masuk
DocType: Google Drive,Backup Folder Name,Nama Folder Cadangan
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Kesalahan saat mengevaluasi Pemberitahuan {0}. Silakan perbaiki template Anda.
DocType: GSuite Settings,Google Apps Script,Skrip Google Apps
@@ -1917,9 +1936,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nama For
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klik tautan di bawah untuk menyetujui permintaan
DocType: Workflow State,align-left,rata-kiri
DocType: Onboarding Slide,Action Settings,Pengaturan Tindakan
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Pengaturan> Pengguna
DocType: User,Defaults,Standar
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)."
DocType: Energy Point Log,Revert Of,Kembalikan Dari
+DocType: Document Type Mapping,Field Mapping,Pemetaan Bidang
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Merger dengan yang ada
DocType: User,Birth Date,Tanggal Lahir
DocType: Communication Link,Link Title,Link Title
@@ -1947,6 +1967,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tautan Tag
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Integritas Rantai
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Dalam Tes
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 Mata Uang = [?] Fraksi
Untuk misalnya 1 USD = 100 Cent"
@@ -1957,6 +1978,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Pemetaan Grup LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Lampiran Pesan Chat
DocType: LDAP Settings,Path to CA Certs File,Path ke File CA Certs
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Jika dokumen memiliki nama bidang yang berbeda pada Produser dan Konsumen, periksa ini dan siapkan Pemetaan"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Izinkan Baca Di Semua Opsi Tautan
DocType: DocType,Database Engine,database Engine
@@ -2089,6 +2111,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Catatan
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Laporan Kesalahan
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Ekspor Data dalam format CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Jenis Dokumen Pemetaan Bidang
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Menyiapkan dokumen Pencarian Global.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplikasi Otentikasi yang dapat Anda gunakan adalah:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} sudah ada. Pilih nama lain
@@ -2162,7 +2185,6 @@ DocType: Workflow State,Upload,Mengunggah
DocType: User Permission,Advanced Control,Kontrol Tingkat Lanjut
DocType: System Settings,Date Format,Format Tanggal
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Tidak Diterbitkan
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Templat Alamat default tidak ditemukan. Harap buat yang baru dari Setup> Printing and Branding> Address Template.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Tindakan untuk alur kerja (misalnya Menyetujui, Membatalkan)."
DocType: Data Import,Skip rows with errors,Lewati baris dengan kesalahan
DocType: Workflow State,flag,tanda
@@ -2225,6 +2247,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Merupakan negara diperbolehkan dalam satu dokumen dan peran yang ditugaskan untuk mengubah negara.
DocType: Data Migration Connector,Database Name,Nama database
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Form Segarkan
+DocType: Event Producer,Event Producer,Produser acara
DocType: DocField,Select,Pilih
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Lihat Log Lengkap
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Ekspresi Python Sederhana, Contoh: status == 'Open' dan ketik == 'Bug'"
@@ -2325,6 +2348,7 @@ DocType: DocType,User Cannot Search,Pengguna tidak bisa Cari
DocType: Communication Link,Communication Link,Tautan Komunikasi
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Output Format valid
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Tidak bisa {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,{0} {1} berulang telah dibuat untuk Anda melalui Ulangi Otomatis {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Menerapkan aturan ini jika pengguna adalah pemilik
DocType: Global Search Settings,Global Search Settings,Pengaturan Pencarian Global
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Akan menjadi ID login anda
@@ -2342,12 +2366,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kode QR untuk
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Tambahkan ke 'To Do'
DocType: Footer Item,Company,Perusahaan
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Rata-rata dari {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Transaksi yang berhasil
DocType: Scheduled Job Log,Scheduled,Dijadwalkan
DocType: User,Logout from all devices while changing Password,Keluar dari semua perangkat saat mengganti Sandi
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifikasi Kata Sandi
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Ada kesalahan
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Masukkan Id Klien dan Rahasia Klien di Pengaturan Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Tutup
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","ID Email harus unik, Akun Email sudah ada untuk {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Tidak dapat mengubah docstatus dari 0 ke 2
DocType: File,Attached To Field,Terlampir ke lapangan
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Perbaruan
@@ -2453,6 +2479,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Bulan
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Tambahkan Reference: {{ reference_doctype }} {{ reference_name }} referensi dokumen untuk mengirim
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Hanya pengguna yang terlibat dalam dokumen yang terdaftar
DocType: DocField,Fetch From,Ambil Dari
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Pengaturan> Kustomisasi Formulir
apps/frappe/frappe/modules/utils.py,App not found,App tidak ditemukan
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},tidak dapat membuat {0} terhadap dokumen anak: {1}
DocType: Social Login Key,Social Login Key,Kunci Masuk Sosial
@@ -2464,7 +2491,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Pesan c
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Rumah Sosial
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Masukkan Setelah tidak dapat ditetapkan sebagai {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Berbagi {0} dengan
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Pengaturan Akun Surel harap masukkan kata sandi Anda untuk:
DocType: Workflow State,hand-up,tangan-ke atas
DocType: Blog Settings,Writers Introduction,Penulis Pengantar
DocType: Address,Phone,Telepon
@@ -2523,7 +2549,7 @@ DocType: Web Page,Insert Style,Masukkan Style
DocType: Prepared Report,Error Message,Pesan eror
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,New nama Laporan
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Sembunyikan Akhir Pekan
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Secara otomatis menghasilkan dokumen berulang.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Secara otomatis menghasilkan dokumen berulang.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Aku S
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-tanda
@@ -2531,7 +2557,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Nilai u
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Bagaimana seharusnya mata uang ini akan diformat? Jika tidak diatur, akan menggunakan default sistem"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Kirim {0} dokumen?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Anda harus login dan memiliki Peran Manager Sistem untuk dapat mengakses back-up.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Kesalahan menyambung ke Aplikasi Baki QZ ...
Anda harus menginstal dan menjalankan aplikasi Baki QZ, untuk menggunakan fitur Raw Print.
Klik di sini untuk Mengunduh dan menginstal Baki QZ .
Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Pemetaan Printer
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Silakan simpan sebelum memasang.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Apakah Anda ingin membatalkan semua dokumen yang ditautkan?
@@ -2561,6 +2586,7 @@ DocType: Role Permission for Page and Report,Set Role For,Set Peran Untuk
DocType: GCalendar Account,The name that will appear in Google Calendar,Nama yang akan muncul di Google Calendar
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Ruang langsung dengan {0} sudah ada.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Refreshing ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Silakan periksa nilai filter yang disetel untuk Dasbor: {}
DocType: Event,Starts on,Mulai dari
DocType: System Settings,System Settings,Pengaturan Sistem
DocType: GCalendar Settings,Google API Credentials,Google API Credentials
@@ -2585,6 +2611,7 @@ DocType: Workflow State,ok-sign,ok-tanda
apps/frappe/frappe/config/settings.py,Deleted Documents,Dokumen yang dihapus
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Format CSV bersifat case sensitive
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikon Desktop sudah ada
+DocType: Event Consumer Document Type,Approval Status,Approval Status
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Tentukan di semua domain mana slide akan ditampilkan. Jika tidak ada yang ditentukan slide secara default ditampilkan di semua domain.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikat
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Bidang {1} berturut-turut {2} tidak dapat disembunyikan dan wajib tanpa default
@@ -2604,6 +2631,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Bantuan Artikel
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Jenis:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Pembayaran Anda telah gagal.
+DocType: Event Producer,Producer URL,URL produsen
DocType: Comment,Unshared,unshared
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modul Tidak Ditemukan
@@ -2615,6 +2643,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Tugas Selesai
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Sunting Massal {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Unduh Laporan
+apps/frappe/frappe/model/workflow.py,Workflow Status,Status Alur Kerja
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Tidak aktif
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Hanya Administrator yang diizinkan membuat Sumber Bagan Dasbor
DocType: About Us Settings,Settings for the About Us Page,Pengaturan untuk Tentang Kami Halaman
@@ -2623,6 +2652,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Cet
DocType: Notification Settings,Energy Points,Poin Energi
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Waktu {0} harus dalam format: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,misalnya pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Gagal melampirkan dokumen berulang baru. Untuk mengaktifkan melampirkan dokumen di email pemberitahuan ulangi otomatis, aktifkan {1} di Pengaturan Cetak"
DocType: User,Generate Keys,Hasilkan Kunci
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ini akan menghapus data Anda secara permanen.
DocType: DocType,View Settings,Lihat Pengaturan
@@ -2674,6 +2704,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Semua
DocType: Email Queue,Recipient,Penerima
DocType: Webhook,Webhook Security,Keamanan Webhook
+DocType: Event Sync Log,Producer Document Name,Nama Dokumen Produser
DocType: Communication,Has Attachment,memiliki Lampiran
DocType: Address,Sales User,Penjualan Pengguna
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag dan drop alat untuk membangun dan menyesuaikan Format Cetak.
@@ -2709,6 +2740,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Tabel Anak ditampilkan sebagai Kotak di DocTypes lain
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Atur Email Otomatis
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Situs yang Anda ingin berlangganan untuk mengkonsumsi acara.
DocType: Chat Profile,Message Preview,Pratinjau Pesan
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Ini adalah top-10 password yang umum.
DocType: User,User Defaults,Default Pengguna
@@ -2741,6 +2773,7 @@ DocType: Dashboard Chart,Last Synced On,Terakhir Disinkronkan
DocType: Comment,Comment Type,Komentar Type
DocType: OAuth Client,OAuth Client,OAuth Klien
DocType: Assignment Rule,Users,Pengguna
+DocType: Document Type Mapping,Local Document Type,Jenis Dokumen Lokal
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Jenis Laporan
DocType: DocField,Signature,Tanda Tangan
@@ -2782,6 +2815,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} penugasan sendiri tugas ini: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Negara Anda
DocType: Assignment Rule Day,Sunday,Minggu
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Mempertahankan Log semua sisipan, pembaruan, dan penghapusan pada situs Produser Acara untuk dokumen yang memiliki konsumen."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Fieldname tidak boleh salah satu dari {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Klasemen
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Di Grid View
@@ -2927,7 +2961,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar dan Komentar
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Ketika Anda Mengubah dokumen setelah Batal dan menyimpannya, itu akan mendapatkan nomor baru yang merupakan versi dari nomor lama."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Tidak diizinkan untuk melampirkan dokumen {0}, silakan aktifkan Izinkan Cetak Untuk {0} di Pengaturan Cetak"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akun Email tidak disiapkan. Harap buat Akun Email baru dari Pengaturan> Email> Akun Email
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Lihat dokumen di {0}
DocType: Stripe Settings,Publishable Key,Kunci Publishable
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Mulai Impor
@@ -3004,7 +3037,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Izin Tingkat
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Tidak dapat mengatur Pengajuan, Pembatalan, Perubahan tanpa Pencatatan"
DocType: List View Setting,Disable Count,Nonaktifkan Count
-DocType: Google Maps Settings,Client Key,Kunci klien
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Apakah Anda yakin ingin menghapus lampiran?
apps/frappe/frappe/__init__.py,Thank you,Terima kasih
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Menyimpan
@@ -3130,6 +3162,7 @@ DocType: Workflow Document State,Only Allow Edit For,Hanya Izinkan Sunting Untuk
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Mencadangkan ke Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},bidang wajib: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Nama Anda
+DocType: Event Producer Document Type,Event Producer Document Type,Jenis Dokumen Produser Acara
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Sukses Koneksi
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Slide Onboarding dari Jenis Slide Lanjutkan sudah ada.
@@ -3201,6 +3234,7 @@ DocType: Address,Postal Code,kode Pos
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Komunikasi relink
DocType: Translation,Contributed,Berkontribusi
apps/frappe/frappe/config/customization.py,Form Customization,Form Kustomisasi
+DocType: Event Update Log,Event Update Log,Log Pembaruan Acara
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Tidak ada sesi aktif
DocType: Web Form,Route to Success Link,Rute ke Tautan Sukses
DocType: Onboarding Slide Field,Right,Benar
@@ -3227,7 +3261,7 @@ DocType: Website Settings,Chat Operators,Operator Obrolan
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Kode PIN
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Pastikan bahwa tidak ada kolom kosong dalam file.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Melacak tonggak sejarah pada siklus hidup dokumen jika mengalami beberapa tahap.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Melacak tonggak sejarah pada siklus hidup dokumen jika mengalami beberapa tahap.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Mengganti nama file dan mengganti kode dalam pengontrol, harap periksa!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Pastikan bahwa profil Anda memiliki alamat email
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Anda belum menyimpan perubahan pada formulir ini. Silakan simpan sebelum Anda melanjutkan.
@@ -3254,7 +3288,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Simpan Rahasia API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Tidak dapat menghubungkan dokumen dibatalkan: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,tidak dapat mengedit laporan standar. Silakan menggandakan dan membuat laporan baru
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Perusahaan adalah wajib, karena alamat perusahaan Anda"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Sebagai contoh: Jika Anda ingin memasukkan ID dokumen, gunakan {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Pilih Table Kolom untuk {0}
DocType: Custom Field,Options Help,Pilihan Bantuan
@@ -3262,7 +3295,6 @@ DocType: Footer Item,Group Label,kelompok Label
DocType: Kanban Board,Kanban Board,Papan kanban
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontak Google telah dikonfigurasi.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 catatan akan diekspor
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Tidak ada akun email yang dikaitkan dengan Pengguna. Silakan tambahkan akun di bawah Pengguna> Kotak Masuk Email.
DocType: DocField,Report Hide,Laporan Hide
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},tampilan pohon tidak tersedia untuk {0}
DocType: DocType,Restrict To Domain,Batasi ke Domain
@@ -3328,7 +3360,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Bidang {1} dari tipe {2} tidak boleh wajib
DocType: System Settings,In Days,Dalam berhari-hari
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Kehilangan
+DocType: Event Producer Document Type,Has Mapping,Telah Pemetaan
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Silakan tentukan
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Nilai Filter Tidak Valid
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Bantuan Pasal
DocType: Page,Page Name,Nama Halaman
@@ -3436,7 +3470,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Format Cetak
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle Grid View
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pergi ke catatan berikutnya
-DocType: System Settings,Time Format,Format waktu
+DocType: Country,Time Format,Format waktu
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,kredensial gateway pembayaran yang tidak valid
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ini adalah file template yang dihasilkan hanya dengan baris yang memiliki beberapa kesalahan. Anda harus menggunakan file ini untuk koreksi dan impor.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Permissions Set tentang Jenis Dokumen dan Peran
@@ -3769,6 +3803,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Izinkan Login menggunakan User Name
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Aktifkan Laporan
DocType: DocField,Display Depends On,Tampilan Tergantung Pada
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu
DocType: Social Login Key,API Endpoint,API Endpoint
DocType: Web Page,Insert Code,Masukkan Kode
DocType: Data Migration Run,Current Mapping Type,Jenis Pemetaan Saat Ini
@@ -3822,6 +3857,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Kon
apps/frappe/frappe/www/login.html,Or login with,Atau login dengan
DocType: Error Snapshot,Locals,Penduduk setempat
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Dikomunikasikan melalui {0} pada {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Jenis Dokumen Produser Acara
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Silakan atur Akun Email default dari Pengaturan> Email> Akun Email
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Pilih Grup Menurut ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,misalnya (55 + 434) / 4 atau = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} diperlukan
@@ -3853,9 +3890,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,ID Sinkronisasi GCalendar
DocType: Prepared Report,Report Start Time,Waktu Mulai Laporan
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Ekspor Data
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Mempertahankan log dari setiap peristiwa yang dikonsumsi bersama dengan status sinkronisasi dan tombol Sinkronisasi ulang jika sinkronisasi gagal.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Pilih Kolom
DocType: Translation,Source Text,sumber Teks
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Ini adalah laporan latar belakang. Harap atur filter yang sesuai dan kemudian buat yang baru.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akun Email tidak disiapkan. Harap buat Akun Email baru dari Pengaturan> Email> Akun Email
apps/frappe/frappe/www/login.py,Missing parameters for login,Parameter yang hilang untuk masuk
DocType: Workflow State,folder-open,folder terbuka
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Setelah dikirimkan, dokumen yang dapat dikirim tidak dapat diubah. Mereka hanya dapat Dibatalkan dan Diubah."
@@ -3935,6 +3974,7 @@ DocType: Blog Post,Published On,Published On
DocType: Contact,Gender,Jenis Kelamin
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Informasi wajib hilang:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} mengembalikan poin Anda pada {1}
+DocType: Event Consumer,Event Subscriber,Pelanggan Acara
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Periksa Permintaan URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Hanya 200 sisipan diperbolehkan dalam satu permintaan
DocType: Footer Item,URL,URL
@@ -3947,6 +3987,7 @@ DocType: Auto Email Report,Half Yearly,Setengah Tahunan
DocType: Communication,Marked As Spam,Ditandai Sebagai Spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Ada beberapa masalah dengan url berkas: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Pohon
+DocType: Event Producer Document Type,Use Same Name,Gunakan Nama yang Sama
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Anda tidak diizinkan untuk mencetak laporan ini
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Permissions Pengguna
DocType: Workflow State,warning-sign,sinyal-peringatan
@@ -3956,6 +3997,7 @@ DocType: Workflow State,User,Pengguna
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Tampilkan judul di jendela browser sebagai "Awalan - judul"
DocType: Payment Gateway,Gateway Settings,Pengaturan Gateway
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,teks dalam tipe dokumen
+DocType: Event Sync Log,Event Sync Log,Log Sinkronisasi Peristiwa
apps/frappe/frappe/handler.py,Logged Out,Keluar
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Lebih...
DocType: System Settings,User can login using Email id or Mobile number,Pengguna dapat login menggunakan id email atau nomor ponsel
@@ -3995,12 +4037,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Tidak Masuk
DocType: Workflow State,star,bintang
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Pusat
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Jika ini diperiksa, dokumen akan memiliki nama yang sama dengan yang ada di situs Produser Acara"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,nilai-nilai dipisahkan oleh koma
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max lebar untuk jenis mata uang adalah 100px berturut-turut {0}
apps/frappe/frappe/config/website.py,Content web page.,Halaman web konten.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Tambahkan Peran Baru
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Kunjungi Halaman Web
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Tugas baru
+DocType: Event Consumer Document Type,Approved,Disetujui
DocType: Google Contacts,Last Sync On,Sinkron Terakhir Aktif
DocType: Deleted Document,Deleted Document,Dokumen dihapus
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Ada yang salah
@@ -4052,7 +4096,6 @@ DocType: DocField,Unique,Unik
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} dihargai pada {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Sukses Partial
DocType: Email Account,Service,Jasa
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Pengaturan> Pengguna
DocType: File,File Name,berkas nama
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Tidak menemukan {0} untuk {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4064,11 +4107,10 @@ DocType: Calendar View,Calendar View,Tampilan kalender
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Mengedit Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Pendaftaran Lengkap
DocType: GCalendar Settings,Enable,Aktifkan
-DocType: Google Maps Settings,Home Address,Alamat rumah
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Anda hanya dapat mengunggah hingga 5000 data sekaligus. (Mungkin kurang dalam beberapa kasus)
DocType: Report,"output in the form of `data = [columns, result]`","output dalam bentuk `data = [kolom, hasil]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Jenis Dokumen yang Berlaku
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Tetapkan aturan untuk tugas pengguna.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Tetapkan aturan untuk tugas pengguna.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Izin tidak cukup untuk {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Laporan tidak disimpan (ada kesalahan)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Tidak dapat mengubah konten header
diff --git a/frappe/translations/is.csv b/frappe/translations/is.csv
index 2fdcbe1fbd..2e8bbf0b57 100644
--- a/frappe/translations/is.csv
+++ b/frappe/translations/is.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Þetta hlutverk uppfæra notanda heimildir notanda
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Endurnefna {0}
DocType: Workflow State,zoom-out,Zoom-út
-DocType: Data Import Beta,Import Options,Valkostir innflutnings
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Get ekki opnað {0} þegar dæmi þess er opinn
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tafla {0} má ekki vera autt
DocType: SMS Parameter,Parameter,Parameter
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Hæt
DocType: DocType,Is Published Field,Er birt Field
DocType: GCalendar Settings,GCalendar Settings,GCalendar Stillingar
DocType: Email Group,Email Group,Tölvupóstur Group
-apps/frappe/frappe/__init__.py,Only for {},Aðeins fyrir {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google dagatal - Gat ekki eytt atburði {0} úr Google dagatali, villukóða {1}."
DocType: Event,Pulled from Google Calendar,Dregið úr Google dagatalinu
DocType: Note,Seen By,séð af
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Bæta við mörgum
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ekki gilt User Image.
DocType: Energy Point Log,Reverted,Aftur á móti
DocType: Success Action,First Success Message,Fyrsta velgengni skilaboð
+DocType: Document Type Mapping,Document Type Mapping,Kortlagning skjalsgerðar
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Ekki eins og
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Rangt gildi: {0} verður að vera {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Breyting sviði eiginleikar (fela, skrifréttinda, leyfi o.fl.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Þessi síða sem eyðir atburðum þínum.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Þakka
DocType: Notification Settings,Document Share,Hlutdeild skjals
DocType: Workflow State,lock,læsa
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Log
DocType: Workflow State,indent-right,inndráttur hægri
DocType: Has Role,Has Role,hefur hlutverki
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Tími í sekúndum til að halda QR kóða mynd á miðlara. Mín: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Ekki er hægt að skrá svæðisgerð {1} fyrir {2}
DocType: Dashboard Chart,Timespan,Tímabil
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web Link
DocType: Deleted Document,Restored,Endurheimti
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Villa við tengingu við QZ bakkaforrit ...
Þú þarft að hafa QZ Tray forrit sett upp og keyra til að nota Raw Print aðgerðina.
Smelltu hér til að hlaða niður og setja upp QZ Bakki .
Smelltu hér til að læra meira um Hráprentun ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 mínútu síðan
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Burtséð frá System Manager, hlutverk með Set notendaheimilda rétt er hægt að stilla heimildir fyrir öðrum notendum til þess Document Type."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Stilla þema
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,óséður
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML haus, vélmenni og tilvísanir"
DocType: GCalendar Account,Refresh Token,Uppfæra Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Mistókst að tengjast vefnum Event Producer. Reyndu aftur eftir nokkurn tíma.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Engin störf í bið eða núverandi fyrir þessa síðu
DocType: Webhook,Doc Event,Doc Event
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Handritastjóri
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Engin virkni
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps forrit þriðja aðila
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Fyrsti Notandinn mun verða System Manager (þú getur breytt þessu seinna).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Þú getur prófað að breyta síum skýrslunnar.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Engir viðburðir í dag
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Þú getur ekki gefið sjálfum þér stig
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType verður að vera sendur fyrir valið skjalviðburð
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Þú hefur ekki heimild til að senda tölvupóst sem tengjast þessu skjali
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Veldu atleast 1 dálk frá {0} að raða / hóp
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Ekki leyfilegt fyrir {0}: {1}. Takmarkaður reitur: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Fyrirtæki ekki tengt
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Hakaðu við þetta ef þú ert að prófa greiðslu með sandkassa API
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Þú hefur ekki heimild til að eyða staðlað Website Þema
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Búðu til fyrstu {0}
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Uppfæri
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Um borðskyggni {0} með sömu rennipöntun er þegar til
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Slökkva Report
DocType: Translation,Contributed Translation Doctype Name,Framlag Þýðing Doctype nafn
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Skipulag> Sérsníða form
DocType: PayPal Settings,Redirect To,beina Til
DocType: Data Migration Mapping,Pull,Dragðu
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports [ 'REPORTNAME'] = {}
@@ -272,6 +276,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Ekki leyft
DocType: DocShare,Internal record of document shares,Innri met skjal hluta
DocType: Energy Point Settings,Review Levels,Farið yfir stig
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Skipulag> Notendaleyfi
DocType: Workflow State,Comment,athugasemd
DocType: Data Migration Plan,Postprocess Method,Aðferðaraðferð
DocType: DocType Action,Action Type,Aðgerðategund
@@ -321,13 +326,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Sý
DocType: Workflow State,remove-circle,fjarlægja-hring
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Prófílinn minn
DocType: Help Article,Beginner,Beginner
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Þessi aðgerð er aðeins leyfð fyrir {}
DocType: Contact,Is Primary Contact,Er Primary samband við
+DocType: Event Consumer,Event Consumer,Neytandi viðburða
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript til að bæta við höfuðið hluta síðunnar.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Bæta við / uppfæra
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Ekki leyft að prenta drög skjöl
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Núllstilla
DocType: Workflow,Transition Rules,umskipti Reglur
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Sýnir aðeins fyrstu {0} línurnar í forskoðun
apps/frappe/frappe/core/doctype/report/report.js,Example:,Dæmi:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Takmarkanir
DocType: Workflow,Defines workflow states and rules for a document.,Skilgreinir workflow ríki og reglur um skjal.
@@ -476,7 +482,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,endurtaka Till
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,nýtt
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Þú verður að búa til þessar fyrstu:
-DocType: Google Maps Settings,Google Maps Settings,Stillingar Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ...
DocType: DocField,Password,Lykilorð
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Kerfið þitt er að uppfæra. Vinsamlegast hressa aftur eftir nokkra stund
@@ -568,6 +573,7 @@ DocType: System Settings,mm/dd/yyyy,mm / dd / áááá
DocType: Onboarding Slide,Onboarding Slide,Rennibraut um borð
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ógilt lykilorð:
DocType: Print Settings,Send document web view link in email,Senda skjal vefur útlit tengil í tölvupósti
+DocType: Event Consumer Document Type,Event Consumer Document Type,Gerð neytendaskjalsgerðar
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,fyrri
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Krefjast trausts vottorðs
@@ -643,6 +649,7 @@ DocType: Workflow State,volume-down,rúmmál niður
DocType: Onboarding Slide,Help Links,Hjálpartenglar
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Aðgangur er ekki leyfður frá þessari IP tölu
DocType: Notification Settings,Enable Email Notifications,Virkja tölvupósttilkynningar
+DocType: Document Type Field Mapping,Event Streaming,Atburðarstraumur
apps/frappe/frappe/desk/reportview.py,No Tags,Engin merki
DocType: Email Account,Send Notification to,Senda tilkynningu til
DocType: DocField,Collapsible,fellanlegur
@@ -659,11 +666,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Sía
apps/frappe/frappe/database/database.py,No conditions provided,Engin skilyrði gefin
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y Axis Fields
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Raða reit {0} verður að vera gilt FIELDNAME
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ekkert sjálfgefið netsniðmát fannst. Vinsamlegast búðu til nýtt úr Skipulag> Prentun og vörumerki> Heimilisniðmát.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,meira
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Búðu til nýja skrá
DocType: Contact,Sales Manager,Sölufulltrúi
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,endurnefna
DocType: Print Format,Format Data,Format Data
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} er ekki gilt skýrslusnið. Skýrslusnið ætti að vera eitt af eftirfarandi {1}
DocType: List Filter,Filter Name,Síaheiti
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,eins
DocType: Assignment Rule,Automation,Sjálfvirkni
@@ -682,6 +691,7 @@ DocType: User,Reset Password Key,Endurstilla lykilorð Key
DocType: Dashboard Chart,All Time,Allra tíma
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Ólögleg skjalastaða fyrir {0}
DocType: Email Account,Enable Auto Reply,Virkja sjálfvirka svar
+apps/frappe/frappe/desk/query_report.py,No data to export,Engin gögn til útflutnings
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,ekki séð
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Ekki er hægt að hafa marga prentara kortlagt á eitt prentform.
DocType: Workflow State,zoom-in,stækka í
@@ -832,6 +842,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Skiptu um
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Í fyrsta lagi
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Uppfæra þýðingar
DocType: Error Snapshot,Exception,undantekning
+DocType: Event Consumer,Event Consumer Document Types,Gerðir neytendaskjala fyrir atburði
DocType: Email Account,Use IMAP,Nota IMAP
DocType: Activity Log,Activity Log,virkni Log
DocType: View Log,Viewed By,Skoðað eftir
@@ -870,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Stilla töflur
DocType: User,Last IP,Síðasta IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Vinsamlegast bættu við efni við netfangið þitt
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Mistök viðskipti
DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} afturkallað {1}
DocType: Email Account,Track Email Status,Track Email Status
@@ -900,6 +912,7 @@ DocType: Email Queue,Attachments,viðhengi
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Þú hefur ekki heimildir til að opna þetta skjal
DocType: Language,Language Name,Tungumál Name
DocType: Email Group Member,Email Group Member,Sendu hópmeðlimur
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Enginn tölvupóstreikningur tengdur notandanum. Vinsamlegast bættu reikningi við Notandi> Netfang pósthólf.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Reikningurinn þinn hefur verið læstur og mun halda áfram eftir {0} sekúndur
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Notendastillingar eru notaðar til að takmarka notendur við tilteknar færslur.
DocType: Notification,Value Changed,gildi Breytt
@@ -991,6 +1004,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Umtal viðskipt
DocType: Help Article,Expert,Expert
DocType: Workflow State,circle-arrow-right,hring-ör-hægri
DocType: Role Profile,Role Profile,Hlutverkaskrá
+DocType: Document Type Mapping,Remote Document Type,Gerð ytri skjals
apps/frappe/frappe/permissions.py,Document Type is not importable,Tegund skjals er ekki flutt
DocType: LDAP Settings,LDAP Server Url,LDAP Server Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Get ekki opnað dæmis þegar þess {0} er opið
@@ -1075,7 +1089,7 @@ DocType: Web Form,Allow Print,leyfa Prenta
DocType: Communication,Clicked,smellt
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Hætta að fylgjast með
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Engin heimild til að '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vinsamlegast settu upp sjálfgefinn tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfangareikningur
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Sýnir aðeins fyrstu {0} línurnar af {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Áætlunarferðir til að senda
DocType: DocType,Track Seen,Track Séð
DocType: Dropbox Settings,File Backup,File Backup
@@ -1145,6 +1159,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vel
DocType: Data Export,Filter List,Sía listi
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Stillingar viðburða
DocType: Email Account,Auto Reply Message,Auto Svara Message
DocType: Data Migration Mapping,Condition,Ástand
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} klukkustundum síðan
@@ -1204,9 +1219,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Alltaf nota
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Innskráning til að tjá
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Byrja að slá inn gögn fyrir neðan þessa línu
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},Breyttar gildi fyrir {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Tölvupóstfang verður að vera einstakt, Netfang Reikningur er þegar til fyrir {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til samanburðar, notaðu> 5, <10 eða = 324. Notaðu 5:10 (fyrir gildi á milli 5 og 10) fyrir svið."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Sérsníða ...
DocType: Print Format,Align Labels to the Right,Leiðrétta merki til hægri
DocType: Assignment Rule,Disabled,Fatlaðir
@@ -1254,8 +1268,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Flýtilyklar
DocType: Post,Comments,Comments
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,staðfesta
+DocType: Event Sync Log,Update Type,Gerð uppfærslu
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Sannvottun ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,fella saman alla
+DocType: Event Producer,Last Update,Síðasta uppfærsla
apps/frappe/frappe/www/login.html,Forgot Password?,Gleymt lykilorð?
DocType: System Settings,yyyy-mm-dd,áááá-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1296,6 +1312,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tafla Fiel
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Dálkar byggt á
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Flytur inn {0} af {1}, {2}"
DocType: Workflow State,move,Ferðinni
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Mistókst að búa til viðburðarneytanda eða viðburðarneytanda fyrir núverandi síðu er þegar skráð.
apps/frappe/frappe/model/document.py,Action Failed,aðgerð mistókst
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,fyrir notanda
DocType: View Log,View log,Skoða þig inn
@@ -1458,6 +1475,7 @@ DocType: DefaultValue,Key,Key
DocType: Address,Contacts,Tengiliðir
DocType: System Settings,Setup Complete,skipulag Complete
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Skýrsla allra skjal hluta
+DocType: Event Consumer,Callback URL,URL fyrir svarhringingu
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Innflutningssniðmát ætti að vera af gerðinni .csv, .xlsx eða .xls"
apps/frappe/frappe/www/update-password.html,New Password,nýtt lykilorð
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Sía {0} vantar
@@ -1523,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ár
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Ekki leyft í skilyrðum
DocType: Async Task,Async Task,Async Task
DocType: Workflow State,picture,mynd
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Complete
+DocType: Scheduled Job Log,Complete,Complete
DocType: DocType,Image Field,Mynd Field
DocType: Print Format,Custom HTML Help,Custom HTML Hjálp
DocType: LDAP Settings,Default Role on Creation,Sjálfgefin hlutverk við sköpun
@@ -1549,6 +1567,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hjálp á Leita
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Skráðir en fatlaður
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Tengja þarf heimilisfang við fyrirtæki. Vinsamlegast bættu við röð fyrir fyrirtæki í hlekkjatöflunni hér að neðan.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Sjálfvirk endurtekning fyrir þetta skjal hefur verið gerð óvirk.
DocType: DocType,Hide Copy,fela Afrita
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Hreinsa allt hlutverkum
@@ -1587,6 +1606,7 @@ DocType: Bulk Update,Field,Field
DocType: Communication,Received,fékk
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger á viðurkenndum aðferðum eins og "before_insert", "after_update", etc (fer eftir DOCTYPE valið)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},breytt gildi {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},Uppsetning tölvupóstreikninga vinsamlegast sláðu inn lykilorðið þitt fyrir: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Bæti System Manager þessari Notandi sem það verður að vera atleast einn System Manager
DocType: Chat Message,URLs,Slóðir
DocType: Data Migration Run,Total Pages,Samtals síður
@@ -1594,7 +1614,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,hengja mynd
DocType: Workflow State,list-alt,lista-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Lykilorð Uppfært
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Skipulag> Notendaleyfi
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Skref til að staðfesta innskráninguna þína
apps/frappe/frappe/utils/password.py,Password not found,Lykilorð fannst ekki
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1610,8 +1629,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Stillingar Google
DocType: Report,Query Report,fyrirspurn Report
DocType: User,Set New Password,Setja nýtt lykilorð
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ekki leyfilegt fyrir {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S er ekki gilt skýrslu sniði. Sniðinu ætti ekki \ eitt af eftirfarandi% s
DocType: Chat Message,Chat,Spjallaðu
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Engin skjöl fundust merkt með {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Kortlagning LDAP hóps
@@ -1646,7 +1663,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sláðu i
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Aðgangur Secret
DocType: Tag Link,Document Title,Heiti skjals
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Skylda)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ári
DocType: Social Login Key,Social Login Provider,Félagsleg innskráningaraðili
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Bæta Annar athugasemd
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Engin gögn fundust í skránni. Vinsamlegast settu nýja skrána á ný með gögnum.
@@ -1694,6 +1710,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Veldu t
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ár
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Varanlega eyða {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Sama skrá hefur þegar verið fest við skráningarblaðið
+DocType: Event Sync Log,Synced,Samstillt
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} er ekki gilt Workflow State. Vinsamlegast uppfærðu Workflowið þitt og reyndu aftur.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,gaf {0} stig
DocType: Workflow State,wrench,skiptilykill
@@ -1796,6 +1813,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,B
DocType: Web Form Field,Max Length,max Length
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,map-merki
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Kortlagning stillinganna á milli tveggja kenninga.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Leggja mál
DocType: Event,Repeat this Event,Endurtaktu þennan atburð
DocType: Address,Maintenance User,viðhald User
@@ -1855,6 +1873,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Próf Netfang
DocType: Auto Repeat,Reference Document Type,Tilvísun skjal tegund
DocType: ToDo,Sender,sendanda
+DocType: Event Consumer,Incoming Change,Komandi breyting
DocType: Google Drive,Backup Folder Name,Nafn afritunar möppu
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Villa við að meta tilkynningu {0}. Vinsamlegast lagaðu sniðið þitt.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1917,9 +1936,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nýtt na
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Smelltu á hlekkinn hér að neðan til að samþykkja beiðnina
DocType: Workflow State,align-left,samræma vinstri
DocType: Onboarding Slide,Action Settings,Aðgerðastillingar
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Skipulag> Notandi
DocType: User,Defaults,vanskil
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til samanburðar, notaðu> 5, <10 eða = 324. Notaðu 5:10 (fyrir gildi á milli 5 og 10) fyrir svið."
DocType: Energy Point Log,Revert Of,Aftur á móti
+DocType: Document Type Mapping,Field Mapping,Reitakortlagning
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sameinast núverandi
DocType: User,Birth Date,Fæðingardagur
DocType: Communication Link,Link Title,Link Title
@@ -1947,6 +1967,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Merkingartengill
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Keðjuheilbrigði
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Í próf
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Gjaldmiðill = [?] Þáttur fyrir td 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Að hluta til árangursrík
@@ -1956,6 +1977,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP Group kortlagning
DocType: Chat Message Attachment,Chat Message Attachment,Spjallskilaboð Viðhengi
DocType: LDAP Settings,Path to CA Certs File,Slóð til CA Certs skrá
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,Ef skjalið hefur mismunandi reitnöfn í lok framleiðanda og neytenda skaltu athuga þetta og setja upp kortlagninguna
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Leyfa lestur á öllum hlekkvalkostum
DocType: DocType,Database Engine,Database Engine
@@ -2088,6 +2110,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Note
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,villuskýrslu
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Flytja út gögn í CSV / Excel sniði.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Gerð reits kortagerð
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Setur upp Global Search skjöl.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Staðfestingarforrit sem þú getur notað eru:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} er þegar til. Veldu annað heiti
@@ -2161,7 +2184,6 @@ DocType: Workflow State,Upload,Hlaða
DocType: User Permission,Advanced Control,Ítarlegri stjórn
DocType: System Settings,Date Format,Dagsetning Format
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ekki birt
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ekkert sjálfgefið netsniðmát fannst. Vinsamlegast búðu til nýtt úr Skipulag> Prentun og vörumerki> Heimilismát.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Aðgerðir til workflow (td Samþykkja, Hætta)."
DocType: Data Import,Skip rows with errors,Slepptu raðir með villum
DocType: Workflow State,flag,merkja
@@ -2224,6 +2246,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Táknar ríki leyfðir í einu skjali og hlutverk sem breyta stöðu.
DocType: Data Migration Connector,Database Name,Gagnasafn Nafn
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Uppfæra Form
+DocType: Event Producer,Event Producer,Framleiðandi viðburða
DocType: DocField,Select,Veldu
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Skoða fulla skrá
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Einföld Python-tjáning, dæmi: status == 'Open' og tegund == 'Bug'"
@@ -2324,6 +2347,7 @@ DocType: DocType,User Cannot Search,Notandi getur ekki leitað
DocType: Communication Link,Communication Link,Samskiptatengill
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Ógilt Output Format
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Get ekki {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Endurtekin {0} {1} hefur verið búin til fyrir þig með sjálfvirkum endurtekningum {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Beita þessari reglu ef notandinn er eigandi
DocType: Global Search Settings,Global Search Settings,Alheimsleitarstillingar
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Verður innskráningarnúmerið þitt
@@ -2341,12 +2365,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kóða fyri
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Bæta við til að gera
DocType: Footer Item,Company,fyrirtæki
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Meðaltal af {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Árangursrík viðskipti
DocType: Scheduled Job Log,Scheduled,áætlunarferðir
DocType: User,Logout from all devices while changing Password,Skráðu þig út úr öllum tækjum meðan þú breytir aðgangsorðinu
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Staðfestu lykilorð
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Það voru villur
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Sláðu inn auðkenni viðskiptavinarins og leyndarmál viðskiptavinarins í Google stillingum.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Loka
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","Auðkenni tölvupósts verður að vera einstakt, tölvupóstreikningur er þegar til fyrir {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Get ekki breytt docstatus frá 0 til 2
DocType: File,Attached To Field,Viðhengi við svæðið
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Uppfæra
@@ -2452,6 +2478,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,mánuður
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Bæta Reference: {{ reference_doctype }} {{ reference_name }} til að senda skjal tilvísun
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Aðeins notendur sem taka þátt í skjalinu eru taldir upp
DocType: DocField,Fetch From,Hentu frá
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Skipulag> Sérsníða form
apps/frappe/frappe/modules/utils.py,App not found,App fannst ekki
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Get ekki búið til {0} gegn barni skjali: {1}
DocType: Social Login Key,Social Login Key,Félagsleg innsláttarkóði
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Spjalla
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Félagsheimili
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Settu Eftir Ekki er hægt að setja eins og {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Deila {0} með
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Email Account skipulag Færðu inn lykilorðið þitt fyrir:
DocType: Workflow State,hand-up,hönd upp
DocType: Blog Settings,Writers Introduction,rithöfundar Inngangur
DocType: Address,Phone,Sími
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,Setja inn Style
DocType: Prepared Report,Error Message,Villu skilaboð
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ný skýrsla nafn
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Fela helgar
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Býr sjálfkrafa til endurtekinna skjala.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Býr sjálfkrafa til endurtekinna skjala.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,er
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,Upplýsingar-merki
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Gildi f
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvernig ætti þetta gjaldmiðil vera sniðinn? Ef ekkert er valið, mun nota kerfið sjálfgefnar stillingar"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Sendu inn {0} skjöl?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Þú þarft að vera innskráður og hafa System Manager hlutverki að vera fær um að fá aðgang að afrit.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Villa við tengingu við QZ bakkaforrit ...
Þú þarft að hafa QZ Tray forrit sett upp og keyra til að nota Raw Print aðgerðina.
Smelltu hér til að hlaða niður og setja upp QZ Bakki .
Smelltu hér til að læra meira um Hráprentun ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Prentun kortlagning
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Vinsamlegast vista áður festa.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Viltu hætta við öll tengd skjöl?
@@ -2560,6 +2585,7 @@ DocType: Role Permission for Page and Report,Set Role For,Stilla hlutverk
DocType: GCalendar Account,The name that will appear in Google Calendar,Nafnið sem birtist í Google Dagatal
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Bein herbergi með {0} er þegar til.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Hressandi ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Vinsamlegast athugaðu síugildin sem sett eru fyrir stjórnborðið: {}
DocType: Event,Starts on,byrjar á
DocType: System Settings,System Settings,System Settings
DocType: GCalendar Settings,Google API Credentials,Google Forritaskilríki
@@ -2584,6 +2610,7 @@ DocType: Workflow State,ok-sign,OK-merki
apps/frappe/frappe/config/settings.py,Deleted Documents,Eyðir skjölum
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV sniði er málmengandi
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop táknið er þegar til
+DocType: Event Consumer Document Type,Approval Status,Staða samþykkis
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Tilgreindu á hvaða lénum skyggnurnar ættu að birtast. Ef ekkert er tilgreint er glæran sjálfgefið sýnd á öllum lénum.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,afrit
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Reitinn {1} í röð {2} er ekki hægt að fela og skylda án sjálfgefins
@@ -2603,6 +2630,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Hjálp Greinar
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tegund:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Greiðsla þín hefur mistekist.
+DocType: Event Producer,Producer URL,Vefslóð framleiðanda
DocType: Comment,Unshared,unshared
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Eining fannst ekki
@@ -2614,6 +2642,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,framsal Lokið
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Magn Breyta {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Sækja skýrslu
+apps/frappe/frappe/model/workflow.py,Workflow Status,Staða verkflæðis
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,ekki virkur
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Aðeins stjórnandi er heimilt að búa til heimildir um stjórnborðið
DocType: About Us Settings,Settings for the About Us Page,Stillingar fyrir Um okkur Page
@@ -2622,6 +2651,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Pre
DocType: Notification Settings,Energy Points,Orkupunktar
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tími {0} verður að vera með sniði: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,td pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Mistókst að hengja við nýtt endurtekið skjal. Til að virkja viðhengi skjals í tölvupósti um sjálfvirka endurtekningu, virkjaðu {1} í Prentstillingar"
DocType: User,Generate Keys,Búa til lykla
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Þetta mun fjarlægja gögnin þín til frambúðar.
DocType: DocType,View Settings,Skoða stillingar
@@ -2673,6 +2703,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Allt
DocType: Email Queue,Recipient,viðtakandi
DocType: Webhook,Webhook Security,Vefhooköryggi
+DocType: Event Sync Log,Producer Document Name,Heiti framleiðanda skjals
DocType: Communication,Has Attachment,hefur viðhengi
DocType: Address,Sales User,velta User
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Draga og sleppa tól til að byggja upp og aðlaga prenta snið.
@@ -2708,6 +2739,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Barntöflur eru sýndar sem töflu í öðrum DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Skipulag Auto Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Þessi síða sem þú vilt gerast áskrifandi að fyrir neyslu viðburða.
DocType: Chat Profile,Message Preview,Forsýnisskilaboð
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Þetta er topp-10 algengar lykilorð.
DocType: User,User Defaults,User Vanskil
@@ -2740,6 +2772,7 @@ DocType: Dashboard Chart,Last Synced On,Síðast samstillt á
DocType: Comment,Comment Type,athugasemd Type
DocType: OAuth Client,OAuth Client,OAuth Viðskiptavinur
DocType: Assignment Rule,Users,Notendur
+DocType: Document Type Mapping,Local Document Type,Local Document Type
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Tegund skýrslu
DocType: DocField,Signature,undirskrift
@@ -2781,6 +2814,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} sjálf úthlutað þessu verkefni: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Landið þitt
DocType: Assignment Rule Day,Sunday,sunnudagur
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Heldur skrá yfir allar settar, uppfærslur og eyðingar á viðburðaframleiðandasíðu fyrir skjöl sem hafa neytendur."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Feldheiti getur ekki verið eitt af {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Valur
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Í tölvuformi
@@ -2926,7 +2960,6 @@ DocType: Web Page,Sidebar and Comments,Skenkur og athugasemdir
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Þegar þú breytt skjal eftir Hætta og vista það, mun það fá nýtt númer sem er ný útgáfa af gamla númerið."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Ekki leyft að festa {0} skjalið, vinsamlegast virkjaðu Leyfa prentun fyrir {0} í prentastillingum"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tölvupóstreikningur er ekki uppsettur. Vinsamlegast stofnaðu nýjan tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfangareikningur
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Sjá skjalið á {0}
DocType: Stripe Settings,Publishable Key,Birtanlegur lykill
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Byrja að flytja inn
@@ -3003,7 +3036,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,info:
DocType: Custom Field,Permission Level,leyfi Level
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Get ekki sett Senda, Hætta, breytt án Write"
DocType: List View Setting,Disable Count,Slökkva á talningu
-DocType: Google Maps Settings,Client Key,Viðskiptavinur lykill
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Ertu viss um að þú viljir eyða viðhengi?
apps/frappe/frappe/__init__.py,Thank you,Þakka þér
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Saving
@@ -3129,6 +3161,7 @@ DocType: Workflow Document State,Only Allow Edit For,Aðeins Leyfa Breyta til
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Afritun í Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Nauðsynlegur sviði: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Nafn þitt
+DocType: Event Producer Document Type,Event Producer Document Type,Framleiðandi viðburðar skjalagerðar
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Tengsl velgengni
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Óákveðinn greinir í ensku um borð rennibraut af skyggnu gerð áfram að vera til.
@@ -3199,6 +3232,7 @@ DocType: Address,Postal Code,póstnúmer
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Tengdu Samskipti
DocType: Translation,Contributed,Framlag
apps/frappe/frappe/config/customization.py,Form Customization,Aðlögun mynda
+DocType: Event Update Log,Event Update Log,Viðburðaruppfærsluskrá
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Engar virkar fundur
DocType: Web Form,Route to Success Link,Leið til að ná árangri
DocType: Onboarding Slide Field,Right,Hægri
@@ -3225,7 +3259,7 @@ DocType: Website Settings,Chat Operators,Chat Operators
DocType: S3 Backup Settings,ca-central-1,ca-mið-1
DocType: Contact Us Settings,Pincode,PIN númer
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Vinsamlegast gakktu úr skugga um að það eru engin tóm dálkar í skrá.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Rekur áfanga í líftíma skjals ef það gengst undir mörg stig.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Rekur áfanga í líftíma skjals ef það gengst undir mörg stig.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Endurnefnt skrár og skipt út kóða í stýringar, vinsamlegast athugaðu!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Vinsamlegast tryggja að prófíllinn þinn hefur netfangið
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Þú ert með óvistaðar breytingar í þessu formi. Vinsamlegast spara áður en þú heldur áfram.
@@ -3252,7 +3286,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Vista API Leyndarmál:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Get ekki tengt hætt skjali: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Ekki er hægt að breyta venjulegu skýrslu. Vinsamlegast afrit og búa til nýja skýrslu
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Félagið er nauðsynlegur, eins og það er fyrirtæki netfang þitt"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Til dæmis: Ef þú vilt að fela skjalskenni, nota {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Valið Tafla Dálkar fyrir {0}
DocType: Custom Field,Options Help,valkostir Hjálp
@@ -3260,7 +3293,6 @@ DocType: Footer Item,Group Label,Group Label
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google tengiliðir hafa verið stilltir.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 hljómplata verður flutt út
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Enginn tölvupóstreikningur tengdur notandanum. Vinsamlegast bættu reikningi við Notandi> Netfang pósthólf.
DocType: DocField,Report Hide,skýrsla Fela
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Tree view ekki í boði fyrir {0}
DocType: DocType,Restrict To Domain,Takmarka að léni
@@ -3326,7 +3358,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Reitur {1} af gerðinni {2} getur ekki verið skylda
DocType: System Settings,In Days,Á dögum
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Frú
+DocType: Event Producer Document Type,Has Mapping,Er með kortlagningu
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,vinsamlegast tilgreindu
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Ógilt síuvirði
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Hjálp gr
DocType: Page,Page Name,Page Name
@@ -3434,7 +3468,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Print Format
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Víxla ristarsýn
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Fara í næstu skrá
-DocType: System Settings,Time Format,Tímasnið
+DocType: Country,Time Format,Tímasnið
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ógildar Greiðsla Gateway
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Þetta er sniðmátaskráin sem myndast með aðeins raðunum sem hafa einhverja villu. Þú ættir að nota þessa skrá til leiðréttingar og innflutnings.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Stilla heimildir á skjali Tegundir og hlutverkum
@@ -3756,6 +3790,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Leyfa Innskráning með notandanafni
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Virkja Report
DocType: DocField,Display Depends On,Skjánum fer eftir
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ári
DocType: Social Login Key,API Endpoint,API endapunktur
DocType: Web Page,Insert Code,Setja inn kóða
DocType: Data Migration Run,Current Mapping Type,Núverandi Kortlagningartegund
@@ -3809,6 +3844,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Sta
apps/frappe/frappe/www/login.html,Or login with,Eða tenging við
DocType: Error Snapshot,Locals,heimamenn
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Miðlað í gegnum {0} á {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Framleiðandi skjalagerð viðburða
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vinsamlegast settu upp sjálfgefinn tölvupóstreikning frá Uppsetning> Netfang> Netfangareikningur
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Veldu hóp eftir ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,td (55 + 434) / 4 eða = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} er krafist
@@ -3840,9 +3877,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Tilkynna byrjunartíma
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Flytja út gögn
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Heldur skrá yfir alla atburði sem neytt er ásamt stöðu samstillingarinnar og Resync hnappi ef samstilling mistekst.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Select Columns
DocType: Translation,Source Text,Heimild Texti
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Þetta er bakgrunnsskýrsla. Vinsamlegast stilltu viðeigandi síur og búðu síðan til nýja.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tölvupóstreikningur er ekki uppsettur. Vinsamlegast stofnaðu nýjan tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfangareikningur
apps/frappe/frappe/www/login.py,Missing parameters for login,Vantar breytur fyrir innskráningu
DocType: Workflow State,folder-open,mappa opinn
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Þegar þeim hefur verið skilað er ekki hægt að breyta framsend skjölum. Aðeins er hægt að hætta við þær og breyta þeim.
@@ -3922,6 +3961,7 @@ DocType: Blog Post,Published On,birt á
DocType: Contact,Gender,kyn
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Nauðsynlegur Upplýsingar vantar:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} afturkallaðu stigin þín á {1}
+DocType: Event Consumer,Event Subscriber,Áskrifandi að viðburði
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Kannaðu beiðni um vefslóð
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Aðeins 200 sett leyfð í einum óskað
DocType: Footer Item,URL,URL
@@ -3934,6 +3974,7 @@ DocType: Auto Email Report,Half Yearly,Half Árlega
DocType: Communication,Marked As Spam,Merkt sem ruslefni
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Það er einhver vandamál með skrá url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Tree
+DocType: Event Producer Document Type,Use Same Name,Notaðu sama nafn
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Þú hefur ekki heimild til að prenta þessa skýrslu
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,User Heimildir
DocType: Workflow State,warning-sign,viðvörun-skilti
@@ -3943,6 +3984,7 @@ DocType: Workflow State,User,Notandi
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Sýna titil í glugga sem "forskeytið - titill"
DocType: Payment Gateway,Gateway Settings,Gáttarstillingar
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Textinn í skjalinu tegund
+DocType: Event Sync Log,Event Sync Log,Samstillingarskrá viðburða
apps/frappe/frappe/handler.py,Logged Out,ekki innskráður
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Meira ...
DocType: System Settings,User can login using Email id or Mobile number,Notandi getur skráð þig inn með tölvupósti eða farsímanúmeri
@@ -3982,12 +4024,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ekki Í
DocType: Workflow State,star,stjörnu
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,Ef þetta er athugað munu skjölin hafa sama nafn og þau hafa á vefsíðu viðburðarframleiðandans
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,gildi aðskilin með kommum
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max breidd fyrir tegund gjaldmiðillinn er 100px í röð {0}
apps/frappe/frappe/config/website.py,Content web page.,Efni á vefnum síðu.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Bæta nýju hlutverki
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Farðu á vefsíðu
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Ný verkefni
+DocType: Event Consumer Document Type,Approved,samþykkt
DocType: Google Contacts,Last Sync On,Síðasta samstilling á
DocType: Deleted Document,Deleted Document,eytt Document
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Eitthvað fór úrskeiðis
@@ -4039,7 +4083,6 @@ DocType: DocField,Unique,Unique
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} vel þegið {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Hlutlaus velgengni
DocType: Email Account,Service,þjónusta
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Skipulag> Notandi
DocType: File,File Name,Skráarnafn
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Fékk ekki fundið {0} {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4051,11 +4094,10 @@ DocType: Calendar View,Calendar View,Dagatal Skoða
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Breyta Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Complete Skráning
DocType: GCalendar Settings,Enable,Virkja
-DocType: Google Maps Settings,Home Address,Heimilisfangið
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Þú getur aðeins hlaðið allt að 5000 færslur í einu. (Kann að vera minna í sumum tilfellum)
DocType: Report,"output in the form of `data = [columns, result]`","framleiðsla í formi `gagna = [dálkar, útkoma]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Gildandi skjalategundir
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Settu upp reglur fyrir verkefna notenda.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Settu upp reglur fyrir verkefna notenda.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Ófullnægjandi heimild fyrir {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Skýrslan var ekki vistað (það voru villur)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Ekki er hægt að breyta innihaldi haus
diff --git a/frappe/translations/it.csv b/frappe/translations/it.csv
index 80f5484e4b..f4ed91b48d 100644
--- a/frappe/translations/it.csv
+++ b/frappe/translations/it.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Questo ruolo Autorizzazioni aggiornamento utente per un utente
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Rinomina {0}
DocType: Workflow State,zoom-out,Riduci
-DocType: Data Import Beta,Import Options,Opzioni di importazione
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Impossibile aprire {0} quando la sua istanza è aperto
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,La Tabella {0} non può essere vuota
DocType: SMS Parameter,Parameter,Parametro
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Canc
DocType: DocType,Is Published Field,È pubblicato Campo
DocType: GCalendar Settings,GCalendar Settings,Impostazioni GCalendar
DocType: Email Group,Email Group,Email Group
-apps/frappe/frappe/__init__.py,Only for {},Solo per {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar: impossibile eliminare l'evento {0} da Google Calendar, codice errore {1}."
DocType: Event,Pulled from Google Calendar,Estratto da Google Calendar
DocType: Note,Seen By,Visto da
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Aggiunta multipla
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Immagine dell'utente non valida.
DocType: Energy Point Log,Reverted,ripristinata
DocType: Success Action,First Success Message,Primo messaggio di successo
+DocType: Document Type Mapping,Document Type Mapping,Mappatura del tipo di documento
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Non come
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valore errato: {0} deve essere {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Modificare le proprietà di campo ( nascondere , in sola lettura, autorizzazione ecc )"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Il sito che sta consumando i tuoi eventi.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apprezzare
DocType: Notification Settings,Document Share,Condividi documento
DocType: Workflow State,lock,bloccare
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Log
DocType: Workflow State,indent-right,indent-right
DocType: Has Role,Has Role,ha un ruolo
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,risincronizzazione
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Tempo in secondi per mantenere l'immagine QR del codice sul server. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Il tipo di campo {1} per {2} non può essere indicizzato
DocType: Dashboard Chart,Timespan,Arco di tempo
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Link
DocType: Deleted Document,Restored,restaurato
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Errore durante la connessione all'applicazione vassoio QZ ...
È necessario disporre dell'applicazione QZ Tray installata e in esecuzione, per utilizzare la funzione Raw Print.
Fare clic qui per scaricare e installare il vassoio QZ .
Fai clic qui per ulteriori informazioni sulla stampa raw ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 giorno fa
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Oltre a System Manager, ruoli con Imposta permessi giusti possono impostare le autorizzazioni per altri utenti per questo tipo di documento."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Configura tema
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,NON VISIONATO
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager
DocType: Website Settings,"HTML Header, Robots and Redirects","Intestazione HTML, robot e reindirizzamenti"
DocType: GCalendar Account,Refresh Token,Aggiorna Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Impossibile connettersi al sito del produttore dell'evento. Riprovare dopo qualche tempo.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Nessun lavoro in sospeso o in corso per questo sito
DocType: Webhook,Doc Event,Evento Doc
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Gestore degli script
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nessuna attività
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Applicazioni di terze parti
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Il primo utente sarà il System Manager (è possibile cambiarlo in seguito).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Puoi provare a cambiare i filtri del rapporto.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Nessun evento oggi
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Non puoi dare punti di recensione a te stesso
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType deve essere sottomessa per l'evento Doc selezionato
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Non hai i permessi per inviare e-mail relative a questo documento
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Si prega di selezionare atleast 1 colonna da {0} per ordinare / gruppo
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Non consentito per {0}: {1}. Campo riservato: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Azienda non collegata
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Controllare questo se si sta testando il pagamento utilizzando l'API Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Non è consentito eliminare un tema standard
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Crea il tuo primo {0}
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Aggiorna
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Esiste già una diapositiva onboarding {0} con lo stesso ordine di diapositive
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disabilita Report
DocType: Translation,Contributed Translation Doctype Name,Nome del doctype della traduzione fornita
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Config> Personalizza modulo
DocType: PayPal Settings,Redirect To,Redirect Per
DocType: Data Migration Mapping,Pull,Tirare
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Formato JavaScript: frappe.query_reports ['REPORTNAME'] = {}
@@ -272,6 +276,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Non ammessi
DocType: DocShare,Internal record of document shares,Tracciamento interno delle condivisioni di documenti
DocType: Energy Point Settings,Review Levels,Livelli di recensione
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Config> Autorizzazioni utente
DocType: Workflow State,Comment,Commento
DocType: Data Migration Plan,Postprocess Method,Metodo di postelaborazione
DocType: DocType Action,Action Type,Tipo di azione
@@ -321,13 +326,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Mos
DocType: Workflow State,remove-circle,remove-cerchio
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Il mio profilo
DocType: Help Article,Beginner,Principiante
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Questa azione è consentita solo per {}
DocType: Contact,Is Primary Contact,È il Contatto Principale
+DocType: Event Consumer,Event Consumer,Consumatore di eventi
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript da aggiungere alla sezione d'intestazione della pagina.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Aggiungi / Aggiorna
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Non è consentito di stampare i documenti in bozza
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Ripristina impostazioni predefinite
DocType: Workflow,Transition Rules,Regole di transizione
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Mostra solo le prime {0} righe nell'anteprima
apps/frappe/frappe/core/doctype/report/report.js,Example:,Esempio:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,restrizioni
DocType: Workflow,Defines workflow states and rules for a document.,Definisce gli stati del flusso di lavoro e le regole per un documento.
@@ -476,7 +482,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Ripetere Fino
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Crea
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,È necessario creare prima questi:
-DocType: Google Maps Settings,Google Maps Settings,Impostazioni di Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Caricamento in corso ...
DocType: DocField,Password,Password
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Il sistema è in fase di aggiornamento. Si prega di aggiornare di nuovo la pagina tra pochi istanti
@@ -568,6 +573,7 @@ DocType: System Settings,mm/dd/yyyy,mm/gg/aaaa
DocType: Onboarding Slide,Onboarding Slide,Scivolo onboarding
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Password non valida:
DocType: Print Settings,Send document web view link in email,Invia documento visualizzazione Web link in email
+DocType: Event Consumer Document Type,Event Consumer Document Type,Tipo di documento consumatore evento
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Precedente
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,R:
DocType: LDAP Settings,Require Trusted Certificate,Richiedi certificato attendibile
@@ -643,6 +649,7 @@ DocType: Workflow State,volume-down,volume-giù
DocType: Onboarding Slide,Help Links,Link di aiuto
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accesso non consentito da questo indirizzo IP
DocType: Notification Settings,Enable Email Notifications,Abilita notifiche e-mail
+DocType: Document Type Field Mapping,Event Streaming,Streaming di eventi
apps/frappe/frappe/desk/reportview.py,No Tags,No Tags
DocType: Email Account,Send Notification to,Invia notifica a
DocType: DocField,Collapsible,Pieghevole
@@ -659,11 +666,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Nessuna condizione fornita
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Campi dell'asse Y.
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Ordina campo {0} deve essere un nome di campo valido
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nessun modello di indirizzo predefinito trovato. Creane uno nuovo da Imposta> Stampa e branding> Modello indirizzo.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Più
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Crea un nuovo record
DocType: Contact,Sales Manager,Sales Manager
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Rinomina
DocType: Print Format,Format Data,Formato dati
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} non è un formato di rapporto valido. Il formato del rapporto dovrebbe essere uno dei seguenti {1}
DocType: List Filter,Filter Name,Nome del filtro
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,come
DocType: Assignment Rule,Automation,Automazione
@@ -682,6 +691,7 @@ DocType: User,Reset Password Key,Reimposta Password
DocType: Dashboard Chart,All Time,Sempre
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Stato del documento non valido per {0}
DocType: Email Account,Enable Auto Reply,Abilita risposta automatica
+apps/frappe/frappe/desk/query_report.py,No data to export,Nessun dato da esportare
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Non Visto
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Non è possibile mappare più stampanti su un unico formato di stampa.
DocType: Workflow State,zoom-in,Ingrandisci
@@ -832,6 +842,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Cambia ute
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Primo
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Aggiorna traduzioni
DocType: Error Snapshot,Exception,Eccezione
+DocType: Event Consumer,Event Consumer Document Types,Tipi di documenti per i consumatori di eventi
DocType: Email Account,Use IMAP,Utilizzare IMAP
DocType: Activity Log,Activity Log,Registro attività
DocType: View Log,Viewed By,Visto da
@@ -870,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Imp
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configura i grafici
DocType: User,Last IP,Ultimo IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Si prega di aggiungere un oggetto alla tua email
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Transazioni con errori
DocType: Data Migration Connector,Data Migration Connector,Connettore di migrazione dei dati
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ripristinato {1}
DocType: Email Account,Track Email Status,Traccia lo stato della posta elettronica
@@ -900,6 +912,7 @@ DocType: Email Queue,Attachments,Allegati
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Non hai i permessi per accedere a questo documento
DocType: Language,Language Name,Nome lingua
DocType: Email Group Member,Email Group Member,Email del gruppo membro
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nessun account e-mail associato all'utente. Aggiungi un account in Utente> Posta in arrivo.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Il tuo account è stato bloccato e ritornerà attivo dopo {0} secondi
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Le autorizzazioni utente vengono utilizzate per limitare gli utenti a record specifici.
DocType: Notification,Value Changed,Valore Cambiato
@@ -991,6 +1004,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Menzione transa
DocType: Help Article,Expert,Esperto
DocType: Workflow State,circle-arrow-right,cerchio-freccia-destra
DocType: Role Profile,Role Profile,Profilo ruolo
+DocType: Document Type Mapping,Remote Document Type,Tipo di documento remoto
apps/frappe/frappe/permissions.py,Document Type is not importable,Il tipo di documento non è importabile
DocType: LDAP Settings,LDAP Server Url,LDAP Server URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Impossibile aprire esempio quando il suo {0} è aperto
@@ -1075,7 +1089,7 @@ DocType: Web Form,Allow Print,Consenti la stampa
DocType: Communication,Clicked,Cliccato
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Smetti
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nessuna autorizzazione per '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configura l'account e-mail predefinito da Imposta> E-mail> Account e-mail
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Mostra solo le prime {0} righe su {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,In programma per inviare
DocType: DocType,Track Seen,Traccia Visto
DocType: Dropbox Settings,File Backup,Backup di file
@@ -1145,6 +1159,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,sce
DocType: Data Export,Filter List,Elenco dei filtri
DocType: Data Export,Excel,Eccellere
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Configurazioni di eventi
DocType: Email Account,Auto Reply Message,Messaggio di Risposta Automatico
DocType: Data Migration Mapping,Condition,Condizione
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ore fa
@@ -1204,9 +1219,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Utilizza sem
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Effettua il login per commentare
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Avviare l'immissione di dati al di sotto di questa linea
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},valori modificati per {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","L'ID email deve essere univoco, l'account e-mail esiste già \ per {0}"
DocType: Workflow State,retweet,rispondi
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per il confronto, utilizzare> 5, <10 o = 324. Per gli intervalli, utilizzare 5:10 (per valori compresi tra 5 e 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Personalizzare...
DocType: Print Format,Align Labels to the Right,Allinea le etichette a destra
DocType: Assignment Rule,Disabled,Disabilitato
@@ -1254,8 +1268,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tasti rapidi
DocType: Post,Comments,Commenti
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Confermare
+DocType: Event Sync Log,Update Type,Tipo di aggiornamento
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Autenticazione ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Comprimi tutto
+DocType: Event Producer,Last Update,Ultimo aggiornamento
apps/frappe/frappe/www/login.html,Forgot Password?,Hai dimenticato la password?
DocType: System Settings,yyyy-mm-dd,aaaa-mm-gg
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1296,6 +1312,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Campo dell
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Colonne basato su
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importazione di {0} di {1}, {2}"
DocType: Workflow State,move,Sposta
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Impossibile creare un consumatore di eventi o un consumatore di eventi per il sito corrente è già registrato.
apps/frappe/frappe/model/document.py,Action Failed,Azione Fallita
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,per l'utente
DocType: View Log,View log,Vista del registro
@@ -1458,6 +1475,7 @@ DocType: DefaultValue,Key,Chiave
DocType: Address,Contacts,Contatti
DocType: System Settings,Setup Complete,installazione completa
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapporto del totale delle azioni di documenti
+DocType: Event Consumer,Callback URL,URL di richiamata
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Il modello di importazione deve essere di tipo .csv, .xlsx o .xls"
apps/frappe/frappe/www/update-password.html,New Password,Nuova password
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtro {0} mancante
@@ -1523,7 +1541,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Non ammesso nella condizione
DocType: Async Task,Async Task,Async Task
DocType: Workflow State,picture,immagine
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Completare
+DocType: Scheduled Job Log,Complete,Completare
DocType: DocType,Image Field,campo immagine
DocType: Print Format,Custom HTML Help,Personalizzato Guida HTML
DocType: LDAP Settings,Default Role on Creation,Ruolo predefinito alla creazione
@@ -1549,6 +1567,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Aiuto su Cerca
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrato ma disabilitato
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,L'indirizzo deve essere collegato a un'azienda. Aggiungi una riga per Azienda nella tabella Collegamenti di seguito.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,La ripetizione automatica di questo documento è stata disabilitata.
DocType: DocType,Hide Copy,Nascondi Copia
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Cancellare tutti i ruoli
@@ -1587,6 +1606,7 @@ DocType: Bulk Update,Field,Campo
DocType: Communication,Received,Ricevuto
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger su metodi validi come "before_insert", "after_update", ecc (dipende dal DocType selezionato)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},valore modificato di {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Impostazione dell'account e-mail, inserire la password per: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Verrà aggiunto anche il ruolo di Responsabile di Sistema a questo Utente, poiché deve esistere almeno un Responsabile di Sistema"
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,Pagine Totali
@@ -1594,7 +1614,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Allega immagine
DocType: Workflow State,list-alt,list-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Password Aggiornata
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Config> Autorizzazioni utente
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Procedura per verificare il tuo login
apps/frappe/frappe/utils/password.py,Password not found,Password non trovata
DocType: Webhook,Webhook Secret,Segreto Webhook
@@ -1610,8 +1629,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Impostazioni API
DocType: Report,Query Report,Report sulle query
DocType: User,Set New Password,Imposta nuova password
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Non consentito per {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s non è un formato di report valido. Il formato del Report dovrebbe \ uno dei seguenti %s
DocType: Chat Message,Chat,Chat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Nessun documento trovato taggato con {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Mappatura del gruppo LDAP
@@ -1646,7 +1663,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Inserisci
DocType: Dropbox Settings,Dropbox Access Secret,Accesso Segreto Dropbox
DocType: Tag Link,Document Title,Titolo del documento
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obbligatorio)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} anni fa
DocType: Social Login Key,Social Login Provider,Provider di accesso sociale
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Aggiungi un altro Commento
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nessun dato trovato nel file. Riattaccare il nuovo file con i dati.
@@ -1694,6 +1710,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Selezi
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 anno
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Eliminare definitivamente {0} ?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Stesso file è già stato attaccato al record
+DocType: Event Sync Log,Synced,sincronizzato
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} non è uno stato del flusso di lavoro valido. Aggiorna il tuo flusso di lavoro e riprova.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,ha dato {0} punti
DocType: Workflow State,wrench,chiave
@@ -1796,6 +1813,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,A
DocType: Web Form Field,Max Length,Lunghezza massima
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,map-marker
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,La configurazione della mappatura tra due doctype.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Segnala un Problema
DocType: Event,Repeat this Event,Ripetere questo evento
DocType: Address,Maintenance User,Manutenzione utente
@@ -1855,6 +1873,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Prova Indirizzo e-mail
DocType: Auto Repeat,Reference Document Type,Riferimento Tipo di documento
DocType: ToDo,Sender,Mittente
+DocType: Event Consumer,Incoming Change,Modifica in arrivo
DocType: Google Drive,Backup Folder Name,Nome cartella di backup
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Errore durante la valutazione della notifica {0}. Per favore aggiusta il tuo modello.
DocType: GSuite Settings,Google Apps Script,Script di Google Apps
@@ -1917,9 +1936,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nuovo no
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Fai clic sul link in basso per approvare la richiesta
DocType: Workflow State,align-left,Allinea a sinistra
DocType: Onboarding Slide,Action Settings,Impostazioni dell'azione
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Config> Utente
DocType: User,Defaults,Valori Predefiniti
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per il confronto, utilizzare> 5, <10 o = 324. Per gli intervalli, utilizzare 5:10 (per valori compresi tra 5 e 10)."
DocType: Energy Point Log,Revert Of,Ripristina
+DocType: Document Type Mapping,Field Mapping,Mappatura dei campi
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Unisci con esistente
DocType: User,Birth Date,Data di Nascita
DocType: Communication Link,Link Title,Titolo del link
@@ -1947,6 +1967,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tag Link
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Integrità della catena
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,In prova
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Valuta = [?] Frazione Per es: 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Parzialmente riuscito
@@ -1956,6 +1977,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Mapping dei gruppi LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Allegato messaggi chat
DocType: LDAP Settings,Path to CA Certs File,Percorso del file CA Certs
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Se il documento ha nomi di campi diversi sul produttore e sul consumatore, controlla questo e imposta il Mapping"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Consenti lettura su tutte le opzioni di collegamento
DocType: DocType,Database Engine,Motore di Database
@@ -2088,6 +2110,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Nota
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Report di Errore
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Esportare i dati in formato CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Mappatura dei campi del tipo di documento
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Impostazione dei documenti di ricerca globale.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Le applicazioni di autenticazione utilizzabili sono:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} esiste già. Seleziona un altro nome
@@ -2161,7 +2184,6 @@ DocType: Workflow State,Upload,Caricare
DocType: User Permission,Advanced Control,Controllo avanzato
DocType: System Settings,Date Format,Formato Data
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Non Pubblicato
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nessun modello di indirizzo predefinito trovato. Creane uno nuovo da Imposta> Stampa e branding> Modello indirizzo.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Azioni del flusso di lavoro (p. es. Approva, Annulla) ."
DocType: Data Import,Skip rows with errors,Salta le righe con errori
DocType: Workflow State,flag,bandiera
@@ -2224,6 +2246,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Rappresenta gli stati ammessi in un unico documento e il ruolo assegnato per cambiare lo stato.
DocType: Data Migration Connector,Database Name,Nome del database
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Aggiorna Form
+DocType: Event Producer,Event Producer,Produttore di eventi
DocType: DocField,Select,Selezionare
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Visualizza registro completo
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Espressione Python semplice, esempio: status == "Apri" e type == "Bug""
@@ -2324,6 +2347,7 @@ DocType: DocType,User Cannot Search,L'utente non può cercare
DocType: Communication Link,Communication Link,Link di comunicazione
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Formato di uscita non valido
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Impossibile {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,{0} {1} ricorrente è stato creato per te tramite la ripetizione automatica {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Applicare questa regola se l'utente è il proprietario
DocType: Global Search Settings,Global Search Settings,Impostazioni di ricerca globale
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Sarà il tuo ID di login
@@ -2341,12 +2365,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Codice QR per
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Aggiungi a Cose da Fare
DocType: Footer Item,Company,Azienda
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Media di {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Transazioni riuscite
DocType: Scheduled Job Log,Scheduled,Pianificate
DocType: User,Logout from all devices while changing Password,Disconnetti da tutti i dispositivi durante la modifica della password
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifica La Password
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Ci sono stati degli errori
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Inserisci ID cliente e segreto cliente in Impostazioni Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Chiudi
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","L'ID e-mail deve essere univoco, l'account e-mail esiste già per {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Impossibile cambiare docstatus da 0 a 2
DocType: File,Attached To Field,Allecato al campo
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Aggiornare
@@ -2452,6 +2478,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Mese
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,PROTIP: Aggiungere Reference: {{ reference_doctype }} {{ reference_name }} inviare riferimento del documento
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Sono elencati solo gli utenti coinvolti nel documento
DocType: DocField,Fetch From,Scarica da
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Config> Personalizza modulo
apps/frappe/frappe/modules/utils.py,App not found,App non trovata
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Non è possibile creare un {0} contro un documento secondario: {1}
DocType: Social Login Key,Social Login Key,Chiave di accesso sociale
@@ -2463,7 +2490,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Messagg
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Casa sociale
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Inserisci dopo non può essere impostato come {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Condividi {0} con
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Configurazione account e-mail si prega di inserire la propria password per:
DocType: Workflow State,hand-up,mano su
DocType: Blog Settings,Writers Introduction,Scrittori Introduzione
DocType: Address,Phone,Telefono
@@ -2522,7 +2548,7 @@ DocType: Web Page,Insert Style,Inserire Stile
DocType: Prepared Report,Error Message,Messaggio di errore
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nuovo nome report
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Nascondi fine settimana
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genera automaticamente documenti ricorrenti.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Genera automaticamente documenti ricorrenti.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,È
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-sign
@@ -2530,7 +2556,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Il valo
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Come dovrebbe essere formattata questa valuta? Se non impostato, verrà utilizzato il default di sistema"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Invia {0} documenti?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Devi essere loggato ed avere il ruolo di Amministratore di sistema per poter accedere ai backup.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Errore durante la connessione all'applicazione vassoio QZ ...
È necessario disporre dell'applicazione QZ Tray installata e in esecuzione, per utilizzare la funzione Raw Print.
Fare clic qui per scaricare e installare il vassoio QZ .
Fai clic qui per ulteriori informazioni sulla stampa raw ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mappatura della stampante
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Salvare prima di allegare.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Vuoi cancellare tutti i documenti collegati?
@@ -2560,6 +2585,7 @@ DocType: Role Permission for Page and Report,Set Role For,Imposta ruolo Per
DocType: GCalendar Account,The name that will appear in Google Calendar,Il nome che apparirà in Google Calendar
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,La stanza diretta con {0} esiste già.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Aggiornamento ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Verifica i valori del filtro impostati per Dashboard Chart: {}
DocType: Event,Starts on,Inizia il
DocType: System Settings,System Settings,Impostazioni di sistema
DocType: GCalendar Settings,Google API Credentials,Credenziali API di Google
@@ -2584,6 +2610,7 @@ DocType: Workflow State,ok-sign,ok-sign
apps/frappe/frappe/config/settings.py,Deleted Documents,Documenti eliminati
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Il formato CSV è sensibile al maiuscolo / minuscolo
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,L'icona di Desktop esiste già
+DocType: Event Consumer Document Type,Approval Status,Stato Approvazione
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Specifica in quali domini devono essere visualizzati tutti i domini. Se non viene specificato nulla, la diapositiva viene visualizzata per impostazione predefinita in tutti i domini."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplica
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: il campo {1} nella riga {2} non può essere nascosto e obbligatorio senza impostazione predefinita
@@ -2603,6 +2630,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Aiuto articoli
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tipo:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Il tuo pagamento non è riuscito.
+DocType: Event Producer,Producer URL,URL del produttore
DocType: Comment,Unshared,Non condiviso
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modulo Non Trovato
@@ -2614,6 +2642,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Assegnazione Completato
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Modifica massiva {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Scarica rapporto
+apps/frappe/frappe/model/workflow.py,Workflow Status,Stato del flusso di lavoro
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Non attivo
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Solo l'amministratore è autorizzato a creare origini grafico dashboard
DocType: About Us Settings,Settings for the About Us Page,Impostazioni per la pagina Chi Siamo
@@ -2622,6 +2651,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Sta
DocType: Notification Settings,Energy Points,Punti energia
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},L'ora {0} deve essere nel formato: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,p. es. pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Impossibile allegare un nuovo documento ricorrente. Per abilitare l'allegato del documento nell'e-mail di notifica di ripetizione automatica, abilitare {1} in Impostazioni stampa"
DocType: User,Generate Keys,Genera chiavi
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Questo rimuoverà permanentemente i tuoi dati.
DocType: DocType,View Settings,Visualizza impostazioni
@@ -2673,6 +2703,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Tutto
DocType: Email Queue,Recipient,Destinatario
DocType: Webhook,Webhook Security,Webhook Security
+DocType: Event Sync Log,Producer Document Name,Nome documento produttore
DocType: Communication,Has Attachment,ha allegato
DocType: Address,Sales User,Utente Vendite
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Trascina e rilascia per costruire e personalizzare formati di stampa.
@@ -2708,6 +2739,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Le tabelle figlio vengono visualizzate come griglia in altri DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Auto Setup Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Giù
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Il sito a cui desideri iscriverti per consumare eventi.
DocType: Chat Profile,Message Preview,Anteprima del messaggio
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Questa è nella top-10 delle password comuni.
DocType: User,User Defaults,Defaults Profilo
@@ -2740,6 +2772,7 @@ DocType: Dashboard Chart,Last Synced On,Ultima sincronizzazione attivata
DocType: Comment,Comment Type,Commento Type
DocType: OAuth Client,OAuth Client,OAuth client
DocType: Assignment Rule,Users,Utenti
+DocType: Document Type Mapping,Local Document Type,Tipo di documento locale
DocType: Address,Odisha,dell'Odisha
DocType: Report,Report Type,Tipo Report
DocType: DocField,Signature,Firma
@@ -2781,6 +2814,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} auto assegnato questa attività: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Il tuo Paese
DocType: Assignment Rule Day,Sunday,Domenica
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Mantiene un registro di tutti gli inserti, gli aggiornamenti e le eliminazioni sul sito di Event Producer per i documenti che hanno consumatori."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: il nome campo non può essere uno dei {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Classifiche
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,In Grid View
@@ -2926,7 +2960,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar e commenti
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Quando si modifica un documento dopo Cancel e salvarlo , si otterrà un nuovo numero che è una versione del vecchio numero ."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Non è consentito allegare il documento {0}, abilitare Consenti stampa per {0} in Impostazioni di stampa"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account e-mail non impostato. Crea un nuovo account e-mail da Imposta> E-mail> Account e-mail
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Vedi il documento in {0}
DocType: Stripe Settings,Publishable Key,Chiave pubblicabile
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Inizia importazione
@@ -3003,7 +3036,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Livello di autorizzazione
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Impossibile impostare Invia, Annulla, Modifica senza Scrivere"
DocType: List View Setting,Disable Count,Disabilita il conteggio
-DocType: Google Maps Settings,Client Key,Chiave del cliente
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Sei sicuro di voler eliminare questo allegato?
apps/frappe/frappe/__init__.py,Thank you,Grazie
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Salvataggio
@@ -3129,6 +3161,7 @@ DocType: Workflow Document State,Only Allow Edit For,Consenti modifica solo per
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Backup su Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Campo obbligatorio: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Il tuo nome
+DocType: Event Producer Document Type,Event Producer Document Type,Tipo di documento del produttore dell'evento
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Connessione riuscita
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Esiste già una diapositiva integrata di tipo diapositiva Continua.
@@ -3200,6 +3233,7 @@ DocType: Address,Postal Code,Codice Postale
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Comunicazione Relink
DocType: Translation,Contributed,Ha contribuito
apps/frappe/frappe/config/customization.py,Form Customization,Personalizzazione del modulo
+DocType: Event Update Log,Event Update Log,Registro aggiornamenti eventi
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nessuna sessione attiva
DocType: Web Form,Route to Success Link,Link verso il successo
DocType: Onboarding Slide Field,Right,Giusto
@@ -3226,7 +3260,7 @@ DocType: Website Settings,Chat Operators,Operatori di chat
DocType: S3 Backup Settings,ca-central-1,ca-centrale-1
DocType: Contact Us Settings,Pincode,CAP
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Assicurarsi che non ci sono le colonne vuote nel file prega.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Tiene traccia delle pietre miliari sul ciclo di vita di un documento se viene sottoposto a più fasi.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Tiene traccia delle pietre miliari sul ciclo di vita di un documento se viene sottoposto a più fasi.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","File rinominati e codice sostituito nei controller, controlla!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Assicurati che il tuo profilo ha un indirizzo di posta elettronica
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Hai delle modifiche non salvate in questo modulo. Prego salvare prima di procedere.
@@ -3253,7 +3287,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Salva segreto dell'API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Impossibile collegare documento annullato: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Non è possibile modificare un rapporto standard. Si prega di duplicare e creare un nuovo report
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Società è obbligatoria, in quanto è la vostra ditta"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Ad esempio: se si desidera includere l'ID del documento, utilizzare {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Seleziona colonne Tabella per {0}
DocType: Custom Field,Options Help,Opzioni Aiuto
@@ -3261,7 +3294,6 @@ DocType: Footer Item,Group Label,Label Group
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Contatti Google è stato configurato.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Verrà esportato 1 record
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nessun account e-mail associato all'utente. Aggiungi un account in Utente> Posta in arrivo.
DocType: DocField,Report Hide,Nascondi Report
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},visualizzazione ad albero non è disponibile per {0}
DocType: DocType,Restrict To Domain,Limitare al dominio
@@ -3327,7 +3359,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Il campo {1} di tipo {2} non può essere obbligatorio
DocType: System Settings,In Days,In giorni
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Perdere
+DocType: Event Producer Document Type,Has Mapping,Ha mappatura
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Si prega di specificare
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Valore filtro non valido
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Aiuto articolo
DocType: Page,Page Name,Nome Pagina
@@ -3435,7 +3469,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Formato Stampa
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Attiva / disattiva visualizzazione griglia
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Vai al record successivo
-DocType: System Settings,Time Format,Formato orario
+DocType: Country,Time Format,Formato orario
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,credenziali di gateway di pagamento non valide
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Questo è il file modello generato con solo le righe con qualche errore. Dovresti usare questo file per la correzione e l'importazione.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Impostare le autorizzazioni per tipi di documento e ruoli
@@ -3768,6 +3802,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Consenti l'accesso utilizzando il nome utente
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Abilita Report
DocType: DocField,Display Depends On,Visualizzazione dipende
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} anni fa
DocType: Social Login Key,API Endpoint,Endpoint API
DocType: Web Page,Insert Code,Inserire Codice
DocType: Data Migration Run,Current Mapping Type,Tipo corrente di mapping
@@ -3821,6 +3856,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con
apps/frappe/frappe/www/login.html,Or login with,O login con
DocType: Error Snapshot,Locals,La gente del posto
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Comunicato via {0} il {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Tipi di documenti del produttore dell'evento
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configura l'account e-mail predefinito da Imposta> E-mail> Account e-mail
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Seleziona Raggruppa per ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,p. es. (55 + 434) / 4 or = Math.sin(Math.PI/2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} è richiesto
@@ -3852,9 +3889,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Segnala ora di inizio
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Esporta dati
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Mantiene un registro di tutti gli eventi consumati insieme allo stato della sincronizzazione e un pulsante Resync nel caso in cui la sincronizzazione fallisca.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Seleziona colonne
DocType: Translation,Source Text,Testo sorgente
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Questo è un rapporto di background. Si prega di impostare i filtri appropriati e quindi generarne uno nuovo.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account e-mail non impostato. Crea un nuovo account e-mail da Imposta> E-mail> Account e-mail
apps/frappe/frappe/www/login.py,Missing parameters for login,Parametri mancanti per il login
DocType: Workflow State,folder-open,cartella-aprire
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Una volta inviati, i documenti inviati non possono essere modificati. Possono solo essere annullati e modificati."
@@ -3934,6 +3973,7 @@ DocType: Blog Post,Published On,Edizione del
DocType: Contact,Gender,Genere
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Informazione obbligatoria mancante:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ha ripristinato i tuoi punti su {1}
+DocType: Event Consumer,Event Subscriber,Abbonato all'evento
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Controlla URL Richiesta
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Solo 200 inserimenti ammessi in una sola richiesta
DocType: Footer Item,URL,URL
@@ -3946,6 +3986,7 @@ DocType: Auto Email Report,Half Yearly,Semestrale
DocType: Communication,Marked As Spam,Marcato come spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},C'è qualche problema con il file url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Albero
+DocType: Event Producer Document Type,Use Same Name,Usa lo stesso nome
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Non sei autorizzato a stampare questo report
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Autorizzazioni utente
DocType: Workflow State,warning-sign,avvertimento-sign
@@ -3955,6 +3996,7 @@ DocType: Workflow State,User,Utente
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Mostra titolo nella finestra del browser come "Prefisso - titolo"
DocType: Payment Gateway,Gateway Settings,Impostazioni del gateway
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,testo tipo di documento
+DocType: Event Sync Log,Event Sync Log,Registro sincronizzazione eventi
apps/frappe/frappe/handler.py,Logged Out,Disconnesso
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Di Più...
DocType: System Settings,User can login using Email id or Mobile number,L'utente può accedere usando ID e-mail o numero di cellulare
@@ -3994,12 +4036,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Non In
DocType: Workflow State,star,stella
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Se questa opzione è selezionata, i documenti avranno lo stesso nome che hanno sul sito del produttore dell'evento"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,valori separati da virgole
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Larghezza massima per il tipo di valuta è 100px in riga {0}
apps/frappe/frappe/config/website.py,Content web page.,Contenuto Pagina Web.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Aggiungere un nuovo ruolo
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Visita la pagina Web
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nuovo incarico
+DocType: Event Consumer Document Type,Approved,Approvato
DocType: Google Contacts,Last Sync On,Ultima sincronizzazione attivata
DocType: Deleted Document,Deleted Document,documento eliminato
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,"Spiacenti, Qualcosa è andato storto"
@@ -4051,7 +4095,6 @@ DocType: DocField,Unique,Unico
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apprezzato su {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Successo parziale
DocType: Email Account,Service,servizio
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Config> Utente
DocType: File,File Name,Nome del file
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Non {0} trovare per {0} ( {1} )
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Ris: {0}
@@ -4063,11 +4106,10 @@ DocType: Calendar View,Calendar View,Visualizza Calendario
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Modifica Formato
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Completa la registrazione
DocType: GCalendar Settings,Enable,permettere
-DocType: Google Maps Settings,Home Address,Indirizzo di casa
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),È possibile caricare solo fino a 5000 record in una volta. (Può essere inferiore in alcuni casi)
DocType: Report,"output in the form of `data = [columns, result]`","output sotto forma di `data = [colonne, risultato]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tipi di documenti applicabili
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Imposta le regole per le assegnazioni degli utenti.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Imposta le regole per le assegnazioni degli utenti.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Autorizzazione insufficiente per {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Report non salvato (si sono verificati degli errori)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Impossibile modificare il contenuto dell'intestazione
diff --git a/frappe/translations/ja.csv b/frappe/translations/ja.csv
index b3be600a2b..dc8253eb60 100644
--- a/frappe/translations/ja.csv
+++ b/frappe/translations/ja.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,この「役割」はユーザーの「ユーザー権限」を更新します
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},名称変更 {0}
DocType: Workflow State,zoom-out,ズームアウト
-DocType: Data Import Beta,Import Options,インポートオプション
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,自身のインスタンスが開いているときに{0}を開くことはできません
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,表{0}は空にできません。
DocType: SMS Parameter,Parameter,パラメータ
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,公開フィールド
DocType: GCalendar Settings,GCalendar Settings,GCalendarの設定
DocType: Email Group,Email Group,メールグループ
-apps/frappe/frappe/__init__.py,Only for {},それだけに {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Googleカレンダー-Googleカレンダーからイベント{0}を削除できませんでした、エラーコード{1}。
DocType: Event,Pulled from Google Calendar,Googleカレンダーから取得
DocType: Note,Seen By,で見られる
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,複数追加
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,有効なユーザーイメージではありません。
DocType: Energy Point Log,Reverted,元に戻す
DocType: Success Action,First Success Message,最初の成功メッセージ
+DocType: Document Type Mapping,Document Type Mapping,ドキュメントタイプマッピング
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,みたいではなく
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},不正な値:{0} は {1} {2}でなければなりません
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",変更フィールドのプロパティ(非表示、読み取り専用、アクセス権など)
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,イベントを消費しているサイト。
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,感謝する
DocType: Notification Settings,Document Share,ドキュメント共有
DocType: Workflow State,lock,ロック
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,ログ
DocType: Workflow State,indent-right,インデント右
DocType: Has Role,Has Role,役割あり
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,再同期
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,サーバー上にQRコードイメージを保持する時間(秒単位)。最小: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}:{2}のフィールドタイプ{1}は索引付けできません
DocType: Dashboard Chart,Timespan,期間
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Webリンク
DocType: Deleted Document,Restored,復元済
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZトレイアプリケーションへの接続エラー...
Raw印刷機能を使用するには、QZ Trayアプリケーションをインストールして実行する必要があります。
QZ Trayをダウンロードしてインストールするには、ここをクリックしてください 。
Raw印刷の詳細については、ここをクリックしてください 。"
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1分前
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",システムマネージャとは別に、「ユーザー権限設定」の権限を持つ「役割」は、該当ドキュメントタイプに他のユーザーのアクセス権を設定することができます。
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,テーマを設定
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,未読
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ファイルマネージャー
DocType: Website Settings,"HTML Header, Robots and Redirects",HTMLヘッダー、ロボット、リダイレクト
DocType: GCalendar Account,Refresh Token,トークン再発行
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,イベントプロデューサーサイトへの接続に失敗しました。しばらくしてから再試行してください。
DocType: Address,Goa,ゴア州
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,このサイトの保留中または現在のジョブはありません
DocType: Webhook,Doc Event,文書イベント
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,スクリプトマネージャー
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,アクティビティなし
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,サードパーティのアプリ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,最初のユーザーは、システムマネージャとなります。(後で変更できます)
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,レポートのフィルターを変更してみてください。
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,今日のイベントはありません
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,あなたは自分自身にレビューポイントを与えることはできません
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocTypeは、選択したDocイベントに対してSubmittableでなければなりません
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,この書類に関連するメールを送信することが許可されていません。
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,{0}ソートする/グループからの少なくとも1列を選択してください
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0}には使用できません:{1}。制限付きフィールド:{2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,リンクされていない会社
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,あなたはサンドボックスAPIを使用してお支払いをテストしている場合は、これをチェック
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,標準のWebサイトテーマを削除することは許可されていません
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},最初の{0}を作成します
@@ -259,7 +264,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0}を
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,同じスライド順序のオンボーディングスライド{0}が既に存在します
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,レポートを無効にする
DocType: Translation,Contributed Translation Doctype Name,寄稿された翻訳のDoctype名
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,[設定]> [フォームのカスタマイズ]
DocType: PayPal Settings,Redirect To,リダイレクト
DocType: Data Migration Mapping,Pull,プル
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript形式:frappe.query_reports ['REPORTNAME'] = {}
@@ -272,6 +276,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,許可されていません
DocType: DocShare,Internal record of document shares,文書共有の内部レコード
DocType: Energy Point Settings,Review Levels,レビューレベル
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設定>ユーザー権限
DocType: Workflow State,Comment,コメント
DocType: Data Migration Plan,Postprocess Method,後処理方法
DocType: DocType Action,Action Type,アクションタイプ
@@ -322,13 +327,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,週
DocType: Workflow State,remove-circle,削除アイコン
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,私のプロフィール
DocType: Help Article,Beginner,初心者
+apps/frappe/frappe/__init__.py,This action is only allowed for {},このアクションは{}に対してのみ許可されます
DocType: Contact,Is Primary Contact,主連絡先
+DocType: Event Consumer,Event Consumer,イベント消費者
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascriptをページの先頭のセクションに追加する。
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,追加/更新
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,下書を印刷することはできません
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,デフォルト値にリセット
DocType: Workflow,Transition Rules,移行ルール
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,プレビューで最初の{0}行のみを表示しています
apps/frappe/frappe/core/doctype/report/report.js,Example:,例:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,制限事項
DocType: Workflow,Defines workflow states and rules for a document.,ドキュメントのためのワークフローの状況とルールを定義します。
@@ -476,7 +482,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,繰り返し終了
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,新規
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,最初にこれらを作成する必要があります。
-DocType: Google Maps Settings,Google Maps Settings,Googleマップの設定
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,読み込んでいます...
DocType: DocField,Password,パスワード
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,お使いのシステムはアップデート中です。しばらく後で画面を再読み込みしてください
@@ -568,6 +573,7 @@ DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy
DocType: Onboarding Slide,Onboarding Slide,オンボーディングスライド
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,無効なパスワード:
DocType: Print Settings,Send document web view link in email,電子メールでのドキュメントのWebビューのリンクを送信
+DocType: Event Consumer Document Type,Event Consumer Document Type,イベントコンシューマドキュメントタイプ
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,前
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,信頼できる証明書を要求する
@@ -643,6 +649,7 @@ DocType: Workflow State,volume-down,音量を下げる
DocType: Onboarding Slide,Help Links,ヘルプリンク
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,このIPアドレスからのアクセスは許可されていません
DocType: Notification Settings,Enable Email Notifications,メール通知を有効にする
+DocType: Document Type Field Mapping,Event Streaming,イベントストリーミング
apps/frappe/frappe/desk/reportview.py,No Tags,タグがありません
DocType: Email Account,Send Notification to,通知送信先
DocType: DocField,Collapsible,折り畳み
@@ -659,11 +666,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,フ
apps/frappe/frappe/database/database.py,No conditions provided,条件なし
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y軸のフィールド
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ソートフィールド{0}は、有効なフィールド名でなければなりません
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,デフォルトのアドレステンプレートが見つかりません。 [設定]> [印刷とブランディング]> [アドレステンプレート]から新しいものを作成してください。
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,続き
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,新しいレコードを作成する
DocType: Contact,Sales Manager,営業部長
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,名称変更
DocType: Print Format,Format Data,書式データ
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0}は有効なレポート形式ではありません。レポート形式は次のいずれかでなければなりません{1}
DocType: List Filter,Filter Name,フィルタ名
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,いいね!
DocType: Assignment Rule,Automation,オートメーション
@@ -682,6 +691,7 @@ DocType: User,Reset Password Key,パスワードキーリセット
DocType: Dashboard Chart,All Time,いつも
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0}の不正な文書ステータス
DocType: Email Account,Enable Auto Reply,自動返信を有効にする
+apps/frappe/frappe/desk/query_report.py,No data to export,エクスポートするデータがありません
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,閲覧なし
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,複数のプリンタを単一の印刷形式にマッピングすることはできません。
DocType: Workflow State,zoom-in,ズームアップ
@@ -832,6 +842,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ユーザ
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,最初
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,翻訳を更新する
DocType: Error Snapshot,Exception,例外
+DocType: Event Consumer,Event Consumer Document Types,イベントコンシューマドキュメントタイプ
DocType: Email Account,Use IMAP,IMAPを使用
DocType: Activity Log,Activity Log,活動ログ
DocType: View Log,Viewed By,閲覧者
@@ -870,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,取
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,チャートの設定
DocType: User,Last IP,最新のIP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,あなたの電子メールに件名を追加してください
+apps/frappe/frappe/model/workflow.py,Errored Transactions,エラートランザクション
DocType: Data Migration Connector,Data Migration Connector,データ移行コネクタ
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0}が{1}を元に戻しました
DocType: Email Account,Track Email Status,電子メールステータスを追跡する
@@ -900,6 +912,7 @@ DocType: Email Queue,Attachments,添付
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,この文書にアクセスする権限がありません
DocType: Language,Language Name,言語名
DocType: Email Group Member,Email Group Member,メールグループメンバー
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ユーザーに関連付けられたメールアカウントはありません。 [ユーザー]> [メール受信ボックス]でアカウントを追加してください。
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,あなたのアカウントはロックされており、{0}秒後に再開します
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,ユーザー権限は、ユーザーを特定のレコードに制限するために使用されます。
DocType: Notification,Value Changed,値を変更済み
@@ -991,6 +1004,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,取引完了ペ
DocType: Help Article,Expert,専門家
DocType: Workflow State,circle-arrow-right,円形矢印右
DocType: Role Profile,Role Profile,役割プロファイル
+DocType: Document Type Mapping,Remote Document Type,リモートドキュメントタイプ
apps/frappe/frappe/permissions.py,Document Type is not importable,文書タイプはインポートできません
DocType: LDAP Settings,LDAP Server Url,LDAPサーバURL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,自身の{0}が開いているときにインスタンスを開くことはできません
@@ -1075,7 +1089,7 @@ DocType: Web Form,Allow Print,印刷を許可する
DocType: Communication,Clicked,クリック済
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,フォローを解除
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},権限がありません '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,[設定]> [メール]> [メールアカウント]からデフォルトのメールアカウントを設定してください
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},{1}のうち最初の{0}行のみを表示しています
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,送信するスケジュール
DocType: DocType,Track Seen,トラックは見ました
DocType: Dropbox Settings,File Backup,ファイルバックアップ
@@ -1145,6 +1159,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,選
DocType: Data Export,Filter List,フィルタリスト
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH:mm
+DocType: Event Sync Log,Event Configurations,イベント構成
DocType: Email Account,Auto Reply Message,自動返信メッセージ
DocType: Data Migration Mapping,Condition,条件
apps/frappe/frappe/utils/data.py,{0} hours ago,{0}時間前
@@ -1204,9 +1219,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,常に送信
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,コメントするにはログインしてください
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,このラインより下からデータ入力を開始してください
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},{0}の値を変更
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}",メールIDは一意である必要があります。メールアカウントは既に存在します\ {0}
DocType: Workflow State,retweet,リツイート
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",比較のために、> 5、<10または= 324を使用します。範囲については、5:10を使用します(5〜10の値の場合)。
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,カスタマイズ...
DocType: Print Format,Align Labels to the Right,ラベルを右揃えにする
DocType: Assignment Rule,Disabled,無効
@@ -1254,8 +1268,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,キーボードショートカット
DocType: Post,Comments,コメント
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,確認
+DocType: Event Sync Log,Update Type,更新タイプ
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,認証しています...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,すべて折りたたみます
+DocType: Event Producer,Last Update,最後の更新
apps/frappe/frappe/www/login.html,Forgot Password?,パスワードをお忘れですか?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1297,6 +1313,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,表フィ
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,列に基づく
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}",{1}、{2}の{0}をインポートしています
DocType: Workflow State,move,移動
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,イベントコンシューマの作成に失敗したか、現在のサイトのイベントコンシューマが既に登録されています。
apps/frappe/frappe/model/document.py,Action Failed,アクションは失敗しました。
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,ユーザーのための
DocType: View Log,View log,ビュー・ログ
@@ -1459,6 +1476,7 @@ DocType: DefaultValue,Key,キー
DocType: Address,Contacts,連絡先
DocType: System Settings,Setup Complete,セットアップ完了
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,すべての共有文書のレポート
+DocType: Event Consumer,Callback URL,コールバックURL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",インポートテンプレートは、.csv、.xlsx、または.xlsタイプである必要があります
apps/frappe/frappe/www/update-password.html,New Password,新しいパスワード
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,フィルター{0}欠落
@@ -1524,7 +1542,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,成
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,;条件に許可されていない
DocType: Async Task,Async Task,非同期タスク
DocType: Workflow State,picture,画像
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,完了
+DocType: Scheduled Job Log,Complete,完了
DocType: DocType,Image Field,画像フィールド
DocType: Print Format,Custom HTML Help,カスタムHTMLヘルプ
DocType: LDAP Settings,Default Role on Creation,作成時のデフォルトの役割
@@ -1550,6 +1568,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,検索のヘルプ
DocType: Milestone,Milestone Tracker,マイルストーントラッカー
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,登録されているが無効
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,住所は会社にリンクする必要があります。下のリンク表に会社の行を追加してください。
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,この文書の自動繰り返しは無効になっています。
DocType: DocType,Hide Copy,コピーを非表示にする
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,すべての役割をクリア
@@ -1588,6 +1607,7 @@ DocType: Bulk Update,Field,フィールド
DocType: Communication,Received,受領
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","""before_insert"" ""after_update"" など(選択した文書タイプによって異なります)の有効なメソッドを持つトリガー"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1}の値を変更しました
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},メールアカウントのセットアップ:{0}のパスワードを入力してください
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,少なくとも1システムマネージャーが存在しなければならないものとして、このユーザにシステムマネージャーの追加
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,合計ページ数
@@ -1595,7 +1615,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,画像を添付
DocType: Workflow State,list-alt,リスト(別種)
apps/frappe/frappe/www/update-password.html,Password Updated,パスワード更新
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設定>ユーザー権限
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ログインの確認手順
apps/frappe/frappe/utils/password.py,Password not found,パスワードが見つかりません
DocType: Webhook,Webhook Secret,Webhookシークレット
@@ -1611,8 +1630,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API設定
DocType: Report,Query Report,クエリーレポート
DocType: User,Set New Password,新しいパスワードを設定
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}には使用できません:{1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%sは有効なレポート形式ではありません。レポートの形式は、次の%sのいずれかを\する必要があります
DocType: Chat Message,Chat,チャット
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},{0}でタグ付けされたドキュメントは見つかりませんでした
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAPグループマッピング
@@ -1647,7 +1664,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,パスワ
DocType: Dropbox Settings,Dropbox Access Secret,Dropboxのアクセスの秘密
DocType: Tag Link,Document Title,ドキュメントのタイトル
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(必須)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前
DocType: Social Login Key,Social Login Provider,ソーシャルログインプロバイダ
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,別のコメントを追加
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ファイルにデータが見つかりません。新しいファイルをデータで再接続してください。
@@ -1695,6 +1711,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","新し
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1年
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,{0}を完全に削除しますか?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,同じファイルが既にレコードに添付されています
+DocType: Event Sync Log,Synced,同期済み
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0}は有効なワークフロー状態ではありません。ワークフローを更新してもう一度お試しください。
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0}ポイントを獲得しました
DocType: Workflow State,wrench,レンチ
@@ -1797,6 +1814,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,最大の長さ
DocType: Print Format,Jinja,ジンジャ
DocType: Workflow State,map-marker,マップマーカー
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,2つのdoctype間のマッピング構成。
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,課題を投稿
DocType: Event,Repeat this Event,このイベントを繰り返し
DocType: Address,Maintenance User,保守ユーザー
@@ -1857,6 +1875,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,テスト電子メールアドレス
DocType: Auto Repeat,Reference Document Type,参照文書タイプ
DocType: ToDo,Sender,送信者
+DocType: Event Consumer,Incoming Change,着信変更
DocType: Google Drive,Backup Folder Name,バックアップフォルダ名
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,通知{0}を評価中にエラーが発生しました。テンプレートを修正してください。
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1919,9 +1938,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,新し
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,下のリンクをクリックしてリクエストを承認してください。
DocType: Workflow State,align-left,左寄せ
DocType: Onboarding Slide,Action Settings,アクション設定
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設定>ユーザー
DocType: User,Defaults,デフォルト
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",比較のために、> 5、<10または= 324を使用します。範囲の場合、5:10を使用します(5〜10の値の場合)。
DocType: Energy Point Log,Revert Of,元に戻す
+DocType: Document Type Mapping,Field Mapping,フィールドマッピング
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,既存のものとマージ
DocType: User,Birth Date,生年月日
DocType: Communication Link,Link Title,リンクタイトル
@@ -1949,6 +1969,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,タグリンク
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,チェーン・インテグリティ
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,テスト中
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1通貨= [?] 小数部 例:1米ドル= 100 セント
DocType: Data Import,Partially Successful,部分的に成功
@@ -1958,6 +1979,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAPグループマッピング
DocType: Chat Message Attachment,Chat Message Attachment,チャットメッセージの添付ファイル
DocType: LDAP Settings,Path to CA Certs File,CA証明書ファイルへのパス
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,文書のプロデューサー側とコンシューマー側で異なるフィールド名がある場合、これを確認してマッピングを設定します
DocType: Address,Manipur,マニプル州
DocType: Web Form Field,Allow Read On All Link Options,すべてのリンクオプションで読み取りを許可する
DocType: DocType,Database Engine,データベースエンジン
@@ -2091,6 +2113,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,ノート
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,エラーレポート
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / Excel形式でデータをエクスポートします。
+DocType: Document Type Field Mapping,Document Type Field Mapping,ドキュメントタイプフィールドマッピング
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,グローバル検索ドキュメントを設定します。
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,次の認証アプリケーションが使用可能です:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0}は既に存在します。別の名前を選択
@@ -2164,7 +2187,6 @@ DocType: Workflow State,Upload,アップロード
DocType: User Permission,Advanced Control,高度な制御
DocType: System Settings,Date Format,日付の表示形式
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,公開されていません
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,デフォルトのアドレステンプレートが見つかりません。 [設定]> [印刷とブランディング]> [アドレステンプレート]から新しいものを作成してください。
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",ワークフローのアクション(例:承認、キャンセル)
DocType: Data Import,Skip rows with errors,エラーのある行をスキップする
DocType: Workflow State,flag,フラグ
@@ -2227,6 +2249,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,状態を変更するために割り当てられた文書と役割で許可状況を表す
DocType: Data Migration Connector,Database Name,データベース名
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,フォームを更新
+DocType: Event Producer,Event Producer,イベントプロデューサー
DocType: DocField,Select,選択
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,完全なログを表示
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",単純なPython表現、例:status == 'Open'、type == 'Bug'
@@ -2327,6 +2350,7 @@ DocType: DocType,User Cannot Search,ユーザーが検索できません
DocType: Communication Link,Communication Link,通信リンク
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,無効な出力フォーマット
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},できません{0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,繰り返し{0} {1}が自動繰り返し{2}によって作成されました。
DocType: Custom DocPerm,Apply this rule if the User is the Owner,ユーザーが所有者である場合にこのルールを適用
DocType: Global Search Settings,Global Search Settings,グローバル検索設定
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,あなたのログインIDになります
@@ -2344,12 +2368,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ログイン
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,やることリストに追加
DocType: Footer Item,Company,会社
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0}の平均
+apps/frappe/frappe/model/workflow.py,Successful Transactions,成功したトランザクション
DocType: Scheduled Job Log,Scheduled,スケジュール設定済
DocType: User,Logout from all devices while changing Password,パスワードの変更中にすべてのデバイスからログアウトする
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,パスワード照合
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,エラーが発生しました
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Google設定にクライアントIDとクライアントシークレットを入力します。
apps/frappe/frappe/core/doctype/communication/communication.js,Close,閉じる
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",メールIDは一意である必要があります。{0}のメールアカウントは既に存在します
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,文書ステータスを0から2に変更することはできません
DocType: File,Attached To Field,フィールドに添付
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,更新
@@ -2455,6 +2481,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,月
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip:追加Reference: {{ reference_doctype }} {{ reference_name }}送信するドキュメント参照
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,この文書に関与しているユーザーのみが一覧表示されます
DocType: DocField,Fetch From,フェッチ元
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,[設定]> [フォームのカスタマイズ]
apps/frappe/frappe/modules/utils.py,App not found,アプリケーションが見つかりません
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},子ドキュメントに対して{0}を作成できません:{1}
DocType: Social Login Key,Social Login Key,ソーシャルログインキー
@@ -2466,7 +2493,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,チャ
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,ソーシャルホーム
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},{0}に設定することはできませんした後に挿入します
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,{0}と共有
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,メールアカウントの設定は、のためにパスワードを入力してください。
DocType: Workflow State,hand-up,手(上)
DocType: Blog Settings,Writers Introduction,作家紹介
DocType: Address,Phone,電話
@@ -2525,7 +2551,7 @@ DocType: Web Page,Insert Style,スタイルを挿入
DocType: Prepared Report,Error Message,エラーメッセージ
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,新しいレポート名
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,週末を隠す
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,定期的な文書を自動的に生成します。
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,定期的な文書を自動的に生成します。
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,あります
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,インフォサイン
@@ -2533,7 +2559,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0}の
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",この通貨はどのようなフォーマットにするべきですか?設定されていない場合は、システムデフォルトを使用します
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0}文書を提出しますか?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,バックアップにアクセスするには、ログインしていること、システムマネージャーの役割を持っていることが必要です
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZトレイアプリケーションへの接続エラー...
Raw印刷機能を使用するには、QZ Trayアプリケーションをインストールして実行する必要があります。
QZ Trayをダウンロードしてインストールするには、ここをクリックしてください 。
Raw印刷の詳細については、ここをクリックしてください 。"
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,プリンタマッピング
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,添付する前に保存してください
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,すべてのリンクされたドキュメントをキャンセルしますか?
@@ -2563,6 +2588,7 @@ DocType: Role Permission for Page and Report,Set Role For,役割を設定
DocType: GCalendar Account,The name that will appear in Google Calendar,Googleカレンダーに表示される名前
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0}のダイレクトルームは既に存在します。
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,再読込しています...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},ダッシュボードチャートに設定されているフィルター値を確認してください:{}
DocType: Event,Starts on,開始
DocType: System Settings,System Settings,システム設定
DocType: GCalendar Settings,Google API Credentials,Google APIクレデンシャル
@@ -2587,6 +2613,7 @@ DocType: Workflow State,ok-sign,OKサイン
apps/frappe/frappe/config/settings.py,Deleted Documents,削除されたドキュメント
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV形式は大文字と小文字を区別します
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,デスクトップアイコンは既に存在します
+DocType: Event Consumer Document Type,Approval Status,承認ステータス
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,スライドを表示するすべてのドメインを指定します。何も指定されていない場合、スライドはデフォルトですべてのドメインに表示されます。
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,複製
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}:行{2}のフィールド{1}はデフォルトで非表示にすることはできません必須
@@ -2606,6 +2633,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,ヘルプ記事
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,タイプ:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,支払が失敗しました。
+DocType: Event Producer,Producer URL,プロデューサーURL
DocType: Comment,Unshared,共有解除済
DocType: Address,Karnataka,カルナータカ州
apps/frappe/frappe/desk/moduleview.py,Module Not Found,モジュールが見つかりません
@@ -2617,6 +2645,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,割当完了
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},一括編集{0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ダウンロードレポート
+apps/frappe/frappe/model/workflow.py,Workflow Status,ワークフローステータス
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,アクティブではありません
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,管理者のみがダッシュボードチャートソースを作成できます
DocType: About Us Settings,Settings for the About Us Page,会社概要ページ設定
@@ -2625,6 +2654,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,印
DocType: Notification Settings,Energy Points,エネルギーポイント
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},時間{0}の形式は{1}でなければなりません
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,例:pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}:新しい定期的なドキュメントの添付に失敗しました。自動繰り返し通知メールでドキュメントの添付を有効にするには、印刷設定で{1}を有効にします
DocType: User,Generate Keys,鍵を生成する
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,これはあなたのデータを永久に削除します。
DocType: DocType,View Settings,設定表示
@@ -2677,6 +2707,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,すべて
DocType: Email Queue,Recipient,受信者
DocType: Webhook,Webhook Security,Webhookセキュリティ
+DocType: Event Sync Log,Producer Document Name,プロデューサードキュメント名
DocType: Communication,Has Attachment,添付ファイルあり
DocType: Address,Sales User,販売ユーザー
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,印刷形式を構築しカスタマイズするためのドラッグ&ドロップツール
@@ -2712,6 +2743,7 @@ DocType: Address,Arunachal Pradesh,アルナチャル・プラデーシュ州
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,子テーブルは他のDocTypeではグリッドとして表示されます
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,自動メールを設定
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl+↓
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,イベントを消費するためにサブスクライブするサイト。
DocType: Chat Profile,Message Preview,メッセージのプレビュー
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,これはトップ10内の一般的なパスワードです。
DocType: User,User Defaults,ユーザーデフォルト
@@ -2746,6 +2778,7 @@ DocType: Dashboard Chart,Last Synced On,最後に同期しました
DocType: Comment,Comment Type,コメントタイプ
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,ユーザー
+DocType: Document Type Mapping,Local Document Type,ローカルドキュメントタイプ
DocType: Address,Odisha,オリッサ州
DocType: Report,Report Type,レポートタイプ
DocType: DocField,Signature,署名
@@ -2787,6 +2820,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0}はこのタスクを割り当てられました:{1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,あなたの国
DocType: Assignment Rule Day,Sunday,日曜日
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",コンシューマーを持つドキュメントのイベントプロデューサーサイトでのすべての挿入、更新、削除のログを保持します。
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}:フィールド名は{1}の1つにはできません
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,順位表
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,グリッドビュー内
@@ -2932,7 +2966,6 @@ DocType: Web Page,Sidebar and Comments,サイドバーとコメント
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",キャンセル後に書類を修正・保存した場合、その書類には新規の番号が付与されます。
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings",{0}ドキュメントを添付することはできません。印刷設定で{0}の印刷を許可してください
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,メールアカウントが設定されていません。 [設定]> [メール]> [メールアカウント]から新しいメールアカウントを作成してください
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0}の文書を参照してください。
DocType: Stripe Settings,Publishable Key,公開可能なキー
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,インポートを開始する
@@ -3009,7 +3042,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,情報:
DocType: Custom Field,Permission Level,権限レベル
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}:書き込みせずに提出・キャンセル・修正を設定することはできません
DocType: List View Setting,Disable Count,カウントを無効にする
-DocType: Google Maps Settings,Client Key,クライアントキー
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,添付ファイルを削除してもよろしいですか?
apps/frappe/frappe/__init__.py,Thank you,ありがとうございます
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,保存
@@ -3135,6 +3167,7 @@ DocType: Workflow Document State,Only Allow Edit For,編集のみ可
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Googleドライブにバックアップしています。
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},必須フィールド:{0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,あなたの名前
+DocType: Event Producer Document Type,Event Producer Document Type,イベントプロデューサーのドキュメントタイプ
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,接続成功
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,スライドタイプ続行のオンボーディングスライドは既に存在します。
@@ -3205,6 +3238,7 @@ DocType: Address,Postal Code,郵便番号
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,再リンク通信
DocType: Translation,Contributed,寄稿
apps/frappe/frappe/config/customization.py,Form Customization,フォームのカスタマイズ
+DocType: Event Update Log,Event Update Log,イベント更新ログ
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,アクティブなセッションがありません
DocType: Web Form,Route to Success Link,成功リンクへの経路
DocType: Onboarding Slide Field,Right,右
@@ -3231,7 +3265,7 @@ DocType: Website Settings,Chat Operators,チャットオペレータ
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,郵便番号
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,空のカラムがファイル内に存在しないことを確認してください。
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,文書が複数の段階にある場合、その文書のライフサイクルに関するマイルストーンを追跡します。
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,文書が複数の段階にある場合、その文書のライフサイクルに関するマイルストーンを追跡します。
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",ファイルの名前を変更し、コントローラ内のコードを置き換えました。確認してください。
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,プロフィールにメールアドレスが入力されているかご確認ください
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,この書式に保存されていない変更事項があります。継続する前に、保存してください。
@@ -3258,7 +3292,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,APIシークレットを保存する:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},キャンセルされた文書をリンクすることはできません:{0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,標準レポートを編集することはできません。複製して新しいレポートを作成してください
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address",会社住所には会社が必須です
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}",例:文書IDを含める場合、{0}を使用
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},{0}のテーブル列を選択
DocType: Custom Field,Options Help,オプションのヘルプ
@@ -3266,7 +3299,6 @@ DocType: Footer Item,Group Label,グループ・ラベル
DocType: Kanban Board,Kanban Board,かんばんボード
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google連絡先が設定されました。
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1レコードがエクスポートされます
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ユーザーに関連付けられたメールアカウントはありません。 [ユーザー]> [メール受信ボックス]でアカウントを追加してください。
DocType: DocField,Report Hide,レポート非表示
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},{0}のツリービューは利用できません
DocType: DocType,Restrict To Domain,ドメインに制限する
@@ -3332,7 +3364,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}:タイプ{2}のフィールド{1}は必須ではありません
DocType: System Settings,In Days,日で
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,ミス
+DocType: Event Producer Document Type,Has Mapping,マッピングあり
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,指定してください
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,無効なフィルター値
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,ヘルプ記事
DocType: Page,Page Name,ページ名
@@ -3440,7 +3474,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,印刷書式
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,グリッド表示の切り替え
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,次のレコードに進む
-DocType: System Settings,Time Format,時間の形式
+DocType: Country,Time Format,時間の形式
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,無効な支払いゲートウェイの資格情報
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,これは、何らかのエラーを持つ行だけで生成されたテンプレートファイルです。このファイルを修正およびインポートに使用する必要があります。
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,書類タイプと役割にアクセス許可を設定
@@ -3773,6 +3807,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,ユーザー名でのログインを許可する
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,レポートを有効にする
DocType: DocField,Display Depends On,依存性を表示
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前
DocType: Social Login Key,API Endpoint,APIエンドポイント
DocType: Web Page,Insert Code,コードを挿入
DocType: Data Migration Run,Current Mapping Type,現在のマッピングタイプ
@@ -3826,6 +3861,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,メ
apps/frappe/frappe/www/login.html,Or login with,またはでログイン
DocType: Error Snapshot,Locals,ローカル
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},介して通信{0} {1}:{2}
+DocType: Event Producer,Event Producer Document Types,イベントプロデューサーのドキュメントタイプ
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,[設定]> [メール]> [メールアカウント]からデフォルトのメールアカウントを設定してください
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,グループ化を選択...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,例:(55 + 434) / 4 または =Math.sin(Math.PI/2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0}が必要です
@@ -3857,9 +3894,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar同期ID
DocType: Prepared Report,Report Start Time,レポートの開始時間
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,データのエクスポート
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,同期のステータスとともに、消費されたすべてのイベントのログと、同期が失敗した場合の再同期ボタンを保持します。
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,列を選択
DocType: Translation,Source Text,ソーステキスト
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,これはバックグラウンドレポートです。適切なフィルタを設定してから、新しいフィルタを生成してください。
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,メールアカウントが設定されていません。 [設定]> [メール]> [メールアカウント]から新しいメールアカウントを作成してください
apps/frappe/frappe/www/login.py,Missing parameters for login,ログインパラメータ不足
DocType: Workflow State,folder-open,フォルダ(開)
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",一度提出された提出可能な文書は変更することができません。キャンセルと修正のみ可能です。
@@ -3939,6 +3978,7 @@ DocType: Blog Post,Published On,公開
DocType: Contact,Gender,性別
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,必須情報の不足:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0}があなたのポイントを{1}に戻しました
+DocType: Event Consumer,Event Subscriber,イベントサブスクライバー
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,リクエストURLを確認する
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,1要求につき200件まで許容されます
DocType: Footer Item,URL,URL
@@ -3951,6 +3991,7 @@ DocType: Auto Email Report,Half Yearly,半年ごと
DocType: Communication,Marked As Spam,スパムとしてマーク
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ファイルURLに問題があります:{0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,ツリー
+DocType: Event Producer Document Type,Use Same Name,同じ名前を使用
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,このレポートを印刷することは許可されていません
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,ユーザーのアクセス許可
DocType: Workflow State,warning-sign,警告サイン
@@ -3960,6 +4001,7 @@ DocType: Workflow State,User,ユーザー
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",「接頭辞 - タイトル」のようにブラウザでタイトルを表示
DocType: Payment Gateway,Gateway Settings,ゲートウェイ設定
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,文書タイプのテキスト
+DocType: Event Sync Log,Event Sync Log,イベント同期ログ
apps/frappe/frappe/handler.py,Logged Out,ログアウト
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,もっと...
DocType: System Settings,User can login using Email id or Mobile number,ユーザーは、電子メールIDまたは携帯電話番号を使用してログインできます
@@ -3999,12 +4041,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Not In
DocType: Workflow State,star,星
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,ハブ
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,これがチェックされている場合、ドキュメントはイベントプロデューサーのサイトにあるものと同じ名前になります。
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,カンマで区切られた値
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},行{0}の通貨表記の最大幅は100pxです
apps/frappe/frappe/config/website.py,Content web page.,コンテンツのWebページ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,新しい役割の追加
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Webページにアクセス
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,新しい課題
+DocType: Event Consumer Document Type,Approved,承認済
DocType: Google Contacts,Last Sync On,最後の同期オン
DocType: Deleted Document,Deleted Document,削除された文書
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,問題が起きました
@@ -4056,7 +4100,6 @@ DocType: DocField,Unique,ユニーク
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} {1}に感謝
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,部分的な成功
DocType: Email Account,Service,サービス
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設定>ユーザー
DocType: File,File Name,ファイル名
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),{0}({1})により{0}が見つかりませんでした
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},結果:{0}
@@ -4068,11 +4111,10 @@ DocType: Calendar View,Calendar View,カレンダー表示
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,形式を編集
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,登録完了
DocType: GCalendar Settings,Enable,有効にする
-DocType: Google Maps Settings,Home Address,自宅住所
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),1回につき5000件までアップロードすることができます。
DocType: Report,"output in the form of `data = [columns, result]`",`data = [columns、result]`の形式で出力
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,適用文書タイプ
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ユーザー割り当てのルールを設定します。
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,ユーザー割り当てのルールを設定します。
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}のアクセス権が不十分です
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),レポートは保存されませんでした(エラーが発生しています)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,ヘッダーの内容を変更できません
diff --git a/frappe/translations/km.csv b/frappe/translations/km.csv
index 91a66b4d71..e1db4f8162 100644
--- a/frappe/translations/km.csv
+++ b/frappe/translations/km.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,ធ្វើឱ្យទាន់សម័យក្នុងតួនាទីនេះសិទ្ធិអ្នកប្រើសម្រាប់អ្នកប្រើ
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},ប្តូរឈ្មោះ {0}
DocType: Workflow State,zoom-out,បង្រួម
-DocType: Data Import Beta,Import Options,ជម្រើសនាំចូល។
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,មិនអាចបើក {0} ពេលរបស់វាគឺបើកចំហហរណ៍
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,តារាង {0} មិនអាចទទេ
DocType: SMS Parameter,Parameter,ប៉ារ៉ាម៉ែត្រ
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,ប
DocType: DocType,Is Published Field,ត្រូវបានចេញផ្សាយនៅវាល
DocType: GCalendar Settings,GCalendar Settings,ការកំណត់ GCalendar
DocType: Email Group,Email Group,គ្រុបអ៊ីម៉ែល
-apps/frappe/frappe/__init__.py,Only for {},សម្រាប់តែ {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Google ប្រតិទិន - មិនអាចលុបព្រឹត្តិការណ៍ {0} ពីប្រតិទិនហ្គូហ្កលកូដកំហុស {1} បានទេ។
DocType: Event,Pulled from Google Calendar,ទាញចេញពី Google ប្រតិទិន។
DocType: Note,Seen By,បានឃើញដោយ
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,បន្ថែម
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,មិនមែនជារូបភាពអ្នកប្រើត្រឹមត្រូវ។
DocType: Energy Point Log,Reverted,បានត្រឡប់។
DocType: Success Action,First Success Message,សារជោគជ័យដំបូង
+DocType: Document Type Mapping,Document Type Mapping,ផែនទីប្រភេទឯកសារ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,មិនចូលចិត្ត
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},តម្លៃមិនត្រឹមត្រូវ: {0} ត្រូវតែ {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","លក្ខណៈសម្បត្តិនៃការផ្លាស់ប្តូរវាល (លាក់, បានតែអាន, ការអនុញ្ញាតល)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,គេហទំព័រដែលកំពុងប្រើប្រាស់ព្រឹត្តិការណ៍របស់អ្នក។
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,កោតសរសើរ។
DocType: Notification Settings,Document Share,ចែករំលែកឯកសារ
DocType: Workflow State,lock,ចាក់សោរ
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,កំណត់ហេតុ
DocType: Workflow State,indent-right,ចូលបន្ទាត់ស្តាំ
DocType: Has Role,Has Role,មានតួនាទី
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,រីទីន
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,ពេលវេលាគិតជាវិនាទីដើម្បីរក្សាទុករូបភាពកូដ QR នៅលើម៉ាស៊ីនមេ។ អប្បបរមា: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: វាល {1} សម្រាប់ {2} មិនអាចត្រូវបានធ្វើលិបិក្រមទេ។
DocType: Dashboard Chart,Timespan,ពេលវេលា
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,បណ្តាញភ្ជាប់
DocType: Deleted Document,Restored,ស្ដារឡើងវិញ
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","កំហុសក្នុងការភ្ជាប់ទៅ QZ ថាសកម្មវិធី ...
អ្នកត្រូវមានកម្មវិធីតំឡើង QZ ថាសនិងតំឡើងដើម្បីប្រើមុខងារព្រីនព្រីន។
ចុចត្រង់នេះដើម្បីទាញយកនិងតំឡើង QZ ថាស ។
សូមចុចនៅទីនេះដើម្បីស្វែងយល់បន្ថែមអំពីការបោះពុម្ពឆៅ ។"
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,១ នាទីមុន
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",ក្រៅពីកម្មវិធីគ្រប់គ្រងប្រព័ន្ធតួនាទីជាមួយនឹងការកំណត់សិទ្ធិរបស់អ្នកប្រើនៅខាងស្ដាំអាចកំណត់សិទ្ធិសម្រាប់អ្នកប្រើផ្សេងទៀតសម្រាប់ប្រភេទឯកសារនោះ។
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,កំណត់រចនាសម្ព័ន្ធស្បែក។
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,មើលមិនឃើញ
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,កម្មវិធីគ្រប់គ្រងឯកសារ
DocType: Website Settings,"HTML Header, Robots and Redirects",បឋមកថា HTML មនុស្សយន្តនិងប្តូរទិស។
DocType: GCalendar Account,Refresh Token,ធ្វើឱ្យស្រស់ Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,បានបរាជ័យក្នុងការភ្ជាប់ទៅគេហទំព័ររបស់អ្នកផលិតព្រឹត្តិការណ៍។ ព្យាយាមម្តងទៀត។
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,គ្មានការងារដែលកំពុងរង់ចាំឬការងារបច្ចុប្បន្នសម្រាប់គេហទំព័រនេះទេ។
DocType: Webhook,Doc Event,ព្រឹត្តការណ៍ដុក
@@ -208,6 +211,7 @@ DocType: Server Script,Script Manager,អ្នកគ្រប់គ្រងស
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,គ្មានសកម្មភាព។
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,កម្មវិធីរបស់ភាគីទីបី
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,អ្នកប្រើដំបូងនឹងក្លាយជាអ្នកគ្រប់គ្រងប្រព័ន្ធ (អ្នកអាចផ្លាស់ប្តូរនៅពេលក្រោយនេះ) ។
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,អ្នកអាចសាកល្បងផ្លាស់ប្តូរតម្រងនៃរបាយការណ៍របស់អ្នក។
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,គ្មានព្រឹត្តិការណ៍ថ្ងៃនេះទេ
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,អ្នកមិនអាចផ្តល់ពិន្ទុពិនិត្យឡើងវិញចំពោះខ្លួនឯងបានទេ។
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType ត្រូវតែបញ្ជូនសំរាប់ព្រឹត្តិការណ៍ Doc ដែលបានជ្រើសរើស
@@ -237,6 +241,7 @@ apps/frappe/frappe/config/desk.py,Files,ឯកសារ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permissions get applied on Users based on what Roles they are assigned.,សិទ្ធិទទួលបានអនុវត្តនៅលើអ្នកប្រើប្រាស់ដោយផ្អែកលើអ្វីដែលពួកគេត្រូវបានផ្ដល់តួនាទី។
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យផ្ញើអ៊ីម៉ែលដែលទាក់ទងទៅនឹងឯកសារនេះ
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,សូមជ្រើសរើសយ៉ាងហោចណាស់ជួរទី 1 ពី {0} ដើម្បីតម្រៀប / ក្រុម
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,ក្រុមហ៊ុនមិនភ្ជាប់ទេ
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ធីកប្រអប់នេះប្រសិនបើអ្នកកំពុងធ្វើតេស្តការទូទាត់របស់អ្នកដោយប្រើ API របស់ប្រអប់សាកល្បង Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យលុបស្បែកគេហទំព័រស្តង់ដារ
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},បង្កើត {0} ដំបូងរបស់អ្នក
@@ -257,7 +262,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},ធ្
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,ស្លាយ Onboarding {0} ដែល មានលំដាប់ស្លាយដូចគ្នាមានរួចហើយ
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,របាយការណ៍បិទ
DocType: Translation,Contributed Translation Doctype Name,ឈ្មោះការបកប្រែភាសាវិភាគលេខកូដ។
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,រៀបចំ> ទម្រង់បែបបទតាមតម្រូវការ
DocType: PayPal Settings,Redirect To,ប្តូរទិសទៅ
DocType: Data Migration Mapping,Pull,ទាញ
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript ទ្រង់ទ្រាយ: frappe.query_reports ['REPORTNAME'] = {}
@@ -270,6 +274,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,មិនអនុញ្ញាត
DocType: DocShare,Internal record of document shares,កំណត់ត្រានៃការចែករំលែកឯកសារផ្ទៃក្នុង
DocType: Energy Point Settings,Review Levels,កំរិតពិនិត្យឡើងវិញ។
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,តំឡើង> សិទ្ធិអ្នកប្រើប្រាស់
DocType: Workflow State,Comment,ការអត្ថាធិប្បាយបានទេ
DocType: Data Migration Plan,Postprocess Method,វិធីសាស្រ្តក្រោយដំណើរការ
DocType: DocType Action,Action Type,ប្រភេទសកម្មភាព
@@ -319,13 +324,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,ប
DocType: Workflow State,remove-circle,យក-រង្វង់
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,ពត៌មានផ្ទាល់ខ្លួនរបស់ខ្ញុំ។
DocType: Help Article,Beginner,ចាប់ផ្តើម
+apps/frappe/frappe/__init__.py,This action is only allowed for {},សកម្មភាពនេះត្រូវបានអនុញ្ញាតសម្រាប់ {}
DocType: Contact,Is Primary Contact,តើការទំនាក់ទំនងបឋមសិក្សា
+DocType: Event Consumer,Event Consumer,អ្នកប្រើប្រាស់ព្រឹត្តិការណ៍
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,JavaScript ដើម្បីបន្ថែមទៅខាងចុងផ្នែកក្បាលនៃទំព័រ។
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,បន្ថែម / ធ្វើបច្ចុប្បន្នភាព។
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,មិនអនុញ្ញាតឱ្យបោះពុម្ពឯកសារសេចក្តីព្រាង
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,កំណត់ទៅលំនាំដើម
DocType: Workflow,Transition Rules,ច្បាប់នៃការផ្លាស់ប្តូរ
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,បង្ហាញតែជួរដេក {0} ដំបូងក្នុងការមើលជាមុន។
apps/frappe/frappe/core/doctype/report/report.js,Example:,ឧទាហរណ៍:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ការដាក់កម្រិត
DocType: Workflow,Defines workflow states and rules for a document.,កំណត់របស់រដ្ឋជាលំហូរការងារនិងច្បាប់សម្រាប់ឯកសារមួយ។
@@ -472,7 +478,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,ធ្វើម្តងទៀតរហូតដល់
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,ថ្មី
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,អ្នកត្រូវបង្កើតវាជាមុនសិន៖
-DocType: Google Maps Settings,Google Maps Settings,ការកំណត់ផែនទី Google
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,កំពុងផ្ទុក ...
DocType: DocField,Password,ពាក្យសម្ងាត់
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,ប្រព័ន្ធរបស់អ្នកត្រូវបានធ្វើឱ្យទាន់សម័យ។ សូមធ្វើឱ្យស្រស់ម្តងទៀតបន្ទាប់ពីមួយស្របក់
@@ -564,6 +569,7 @@ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy ឆ្នាំ
DocType: Onboarding Slide,Onboarding Slide,ការរុញលើនាវា
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ពាក្យសម្ងាត់មិនត្រឹមត្រូវ:
DocType: Print Settings,Send document web view link in email,ផ្ញើឯកសារតំណទិដ្ឋភាពបណ្ដាញនៅក្នុងអ៊ីមែល
+DocType: Event Consumer Document Type,Event Consumer Document Type,ប្រភេទឯកសារអ្នកប្រើប្រាស់ព្រឹត្តិការណ៍
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,មុន
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,ត្រូវការវិញ្ញាបនប័ត្រដែលអាចទុកចិត្តបាន។
@@ -638,6 +644,7 @@ DocType: Workflow State,volume-down,បរិមាណចុះ
DocType: Onboarding Slide,Help Links,តំណភ្ជាប់ជំនួយ
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ការចូលប្រើមិនត្រូវបានអនុញ្ញាតពីអាសយដ្ឋាន IP នេះទេ។
DocType: Notification Settings,Enable Email Notifications,បើកការជូនដំណឹងតាមអ៊ីមែល
+DocType: Document Type Field Mapping,Event Streaming,ព្រឹត្តិការណ៍ផ្សាយផ្ទាល់
apps/frappe/frappe/desk/reportview.py,No Tags,គ្មានស្លាក
DocType: Email Account,Send Notification to,ផ្ញើការជូនដំណឹងទៅ
DocType: DocField,Collapsible,ការដួលរលំ
@@ -654,11 +661,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,ត
apps/frappe/frappe/database/database.py,No conditions provided,មិនមានលក្ខខណ្ឌផ្តល់ជូន។
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,អ័ក្សវាល
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,វាលតម្រៀប {0} ត្រូវតែជា fieldname ត្រឹមត្រូវ
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,រកមិនឃើញគំរូអាសយដ្ឋានលំនាំដើម។ សូមបង្កើតថ្មីមួយពីការតំឡើង> បោះពុម្ពនិងយីហោ> គំរូអាសយដ្ឋាន។
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,ច្រើនទៀត
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,បង្កើតកំណត់ត្រាថ្មី។
DocType: Contact,Sales Manager,ប្រធានផ្នែកលក់
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,ប្តូរឈ្មោះ
DocType: Print Format,Format Data,ទ្រង់ទ្រាយទិន្នន័យ
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} មិនមែនជាទម្រង់របាយការណ៍ត្រឹមត្រូវទេ។ ទម្រង់របាយការណ៍គួរជ្រើសរើសមួយក្នុងចំណោមផ្នែកខាងក្រោម {1}
DocType: List Filter,Filter Name,ឈ្មោះតម្រង
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,ដូចជា
DocType: Assignment Rule,Automation,ស្វ័យប្រវត្តិកម្ម។
@@ -677,6 +686,7 @@ DocType: User,Reset Password Key,គន្លឹះពាក្យសម្ង
DocType: Dashboard Chart,All Time,គ្រប់ពេល
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},ស្ថានភាពឯកសារខុសច្បាប់សម្រាប់ {0}
DocType: Email Account,Enable Auto Reply,អនុញ្ញាតការឆ្លើយតបដោយស្វ័យប្រវត្តិ
+apps/frappe/frappe/desk/query_report.py,No data to export,គ្មានទិន្នន័យត្រូវនាំចេញ។
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,មិនដែលឃើញ
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,មិនអាចមានម៉ាស៊ីនបោះពុម្ពច្រើនបានផ្គូរផ្គងទៅជាទម្រង់ព្រីនតែមួយទេ។
DocType: Workflow State,zoom-in,ពង្រីក
@@ -695,6 +705,7 @@ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,តារ
apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js,S3 Backup complete!,ការបម្រុងទុក S3 បានបញ្ចប់!
apps/frappe/frappe/config/desktop.py,Developer,អ្នកអភិវឌ្ឍ
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,បានបង្កើតកំណត់
+apps/frappe/frappe/www/login.html,To enable it follow the instructions in the following link: {0},ដើម្បីធ្វើឱ្យវាធ្វើតាមការណែនាំនៅក្នុងតំណខាងក្រោម៖ {0}
apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} នៅក្នុងជួរដេក {1} មិនអាចមានទាំងធាតុ URL ដែលនិងកុមារ
apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},គួរតែមានយ៉ាងហោចណាស់ជួរដេកមួយសម្រាប់តារាងខាងក្រោម៖ {0}
DocType: Print Format,Default Print Language,ភាសាបោះពុម្ពលំនាំដើម។
@@ -825,6 +836,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ផ្ល
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ដំបូង
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,ធ្វើបច្ចុប្បន្នភាពការបកប្រែ
DocType: Error Snapshot,Exception,ករណីលើកលែង
+DocType: Event Consumer,Event Consumer Document Types,ប្រភេទឯកសារអ្នកប្រើប្រាស់ព្រឹត្តិការណ៍
DocType: Email Account,Use IMAP,ការប្រើ IMAP & ‧;
DocType: Activity Log,Activity Log,សកម្មភាពកំណត់ហេតុ
DocType: View Log,Viewed By,បានមើលដោយ
@@ -863,6 +875,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ក
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,កំណត់រចនាសម្ព័ន្ធគំនូសតាង
DocType: User,Last IP,ចុងក្រោយនេះកម្មសិទ្ធិបញ្ញា
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,សូមបន្ថែមប្រធានបទទៅអ៊ីមែលរបស់អ្នក
+apps/frappe/frappe/model/workflow.py,Errored Transactions,ប្រតិបត្តិការអេរ៉ូស
DocType: Data Migration Connector,Data Migration Connector,តំណផ្ទេរទិន្នន័យ
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ត្រឡប់វិញ {1}
DocType: Email Account,Track Email Status,តាមដានស្ថានភាពអ៊ីម៉ែល
@@ -893,6 +906,7 @@ DocType: Email Queue,Attachments,ឯកសារភ្ជាប់
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,អ្នកមិនមានសិទ្ធិដើម្បីចូលដំណើរការឯកសារនេះ
DocType: Language,Language Name,ឈ្មោះភាសា
DocType: Email Group Member,Email Group Member,អ៊ីម៉ែលសមាជិកក្រុម
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,គ្មានគណនីអ៊ីមែលដែលទាក់ទងនឹងអ្នកប្រើប្រាស់។ សូមបន្ថែមគណនីនៅក្រោមអ្នកប្រើ> ប្រអប់ទទួលអ៊ីម៉ែល។
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,គណនីរបស់អ្នកត្រូវបានចាក់សោហើយនឹងបន្តបន្ទាប់ពី {0} វិនាទី
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,សិទ្ធិអ្នកប្រើត្រូវបានប្រើដើម្បីកំណត់អ្នកប្រើទៅកំណត់ត្រាជាក់លាក់។
DocType: Notification,Value Changed,តម្លៃជាបានផ្លាស់ប្តូរ
@@ -983,6 +997,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,និយាយ
DocType: Help Article,Expert,អ្នកជំនាញ
DocType: Workflow State,circle-arrow-right,-ព្រួញស្តាំរង្វង់
DocType: Role Profile,Role Profile,ទម្រង់តួនាទី
+DocType: Document Type Mapping,Remote Document Type,ប្រភេទឯកសារពីចម្ងាយ
apps/frappe/frappe/permissions.py,Document Type is not importable,ប្រភេទឯកសារមិនអាចនាំចូលបានទេ។
DocType: LDAP Settings,LDAP Server Url,បម្រើ LDAP & URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,មិនអាចបើកកម្មវិធីពេលដែលរបស់ខ្លួន {0} គឺបើកចំហ
@@ -1067,7 +1082,6 @@ DocType: Web Form,Allow Print,អនុញ្ញាតឱ្យបោះពុ
DocType: Communication,Clicked,ចុច
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,មិនបំពេញ។
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},គ្មានសិទ្ធិ '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,សូមរៀបចំគណនីអ៊ីមែលលំនាំដើមពីតំឡើង> អ៊ីមែល> គណនីអ៊ីមែល
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,គ្រោងនឹងផ្ញើ
DocType: DocType,Track Seen,បទឃើញ
DocType: Dropbox Settings,File Backup,ឯកសារបម្រុងទុក
@@ -1136,6 +1150,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ជ
DocType: Data Export,Filter List,បញ្ជីតម្រង
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: ម
+DocType: Event Sync Log,Event Configurations,ការកំណត់រចនាសម្ព័ន្ធព្រឹត្តិការណ៍
DocType: Email Account,Auto Reply Message,សារឆ្លើយតបដោយស្វ័យប្រវត្តិ
DocType: Data Migration Mapping,Condition,លក្ខខណ្ឌ
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ម៉ោងមុន
@@ -1195,9 +1210,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,តែងត
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,ចូលធ្វើការអត្ថាធិប្បាយ
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,ការចាប់ផ្តើមបញ្ចូលទិន្នន័យដូចខាងក្រោមបន្ទាត់នេះ
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},តម្លៃផ្លាស់ប្តូរសម្រាប់ {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}",លេខសម្គាល់អ៊ីម៉ែលត្រូវតែមានតែមួយ។ គណនីអ៊ីម៉ែលមានរួចហើយ \ សម្រាប់ {0}
DocType: Workflow State,retweet,retweets
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","សម្រាប់ការប្រៀបធៀបប្រើ> 5, <10 ឬ = 324 ។ សម្រាប់ជួរប្រើ 5:10 (សម្រាប់តម្លៃចន្លោះពី 5 និង 10) ។"
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,ប្ដូរតាមបំណង ...
DocType: Print Format,Align Labels to the Right,តម្រៀបស្លាកទៅស្តាំ
DocType: Assignment Rule,Disabled,ជនពិការ
@@ -1244,8 +1258,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,ផ្លូវកាត់ក្តារចុច។
DocType: Post,Comments,យោបល់
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,បញ្ជាក់ការ
+DocType: Event Sync Log,Update Type,ប្រភេទធ្វើបច្ចុប្បន្នភាព
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,កំពុងផ្ទៀងផ្ទាត់ ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,វេញទាំងអស់
+DocType: Event Producer,Last Update,ធ្វើបច្ចុប្បន្នភាពចុងក្រោយ
apps/frappe/frappe/www/login.html,Forgot Password?,ភ្លេចលេខសំងាត់?
DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD
apps/frappe/frappe/desk/report/todo/todo.py,ID,លេខសម្គាល់
@@ -1286,6 +1302,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,វាល
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,ជួរឈរដែលមានមូលដ្ឋានលើ
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","ការនាំចូល {0} នៃ {1}, {2}"
DocType: Workflow State,move,ការផ្លាស់ប្តូរ
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,បានបរាជ័យក្នុងការបង្កើតអ្នកប្រើប្រាស់ព្រឹត្តិការណ៍ឬអ្នកប្រើប្រាស់ព្រឹត្តិការណ៍សម្រាប់គេហទំព័របច្ចុប្បន្នត្រូវបានចុះឈ្មោះរួចហើយ។
apps/frappe/frappe/model/document.py,Action Failed,សកម្មភាពបរាជ័យ
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,សម្រាប់អ្នកប្រើ
DocType: View Log,View log,មើលកំណត់ហេតុ
@@ -1444,6 +1461,7 @@ DocType: DefaultValue,Key,គន្លឹះដ៏សំខាន់
DocType: Address,Contacts,ទំនក់ទំនង
DocType: System Settings,Setup Complete,រៀបចំការបំពេញ
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,របាយការណ៏នៃការចែករំលែកឯកសារទាំងអស់
+DocType: Event Consumer,Callback URL,Callback URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","គម្រូនាំចូលគួរតែមានប្រភេទ .csv, .xlsx ឬ .xls"
apps/frappe/frappe/www/update-password.html,New Password,ពាក្យសម្ងាត់ថ្មីមួយ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,តម្រង {0} ដែលបាត់
@@ -1506,7 +1524,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ជ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; មិនត្រូវបានអនុញ្ញាតក្នុងលក្ខខណ្ឌ
DocType: Async Task,Async Task,Async ការងារ
DocType: Workflow State,picture,រូបភាព
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ពេញលេញ
+DocType: Scheduled Job Log,Complete,ពេញលេញ
DocType: DocType,Image Field,វាលរូបភាព
DocType: Print Format,Custom HTML Help,ផ្ទាល់ខ្លួនជំនួយរបស់ HTML
DocType: LDAP Settings,Default Role on Creation,តួនាទីលំនាំដើមលើការបង្កើត។
@@ -1532,6 +1550,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ជំនួយអំពីស្វែងរក
DocType: Milestone,Milestone Tracker,កម្មវិធីតាមដានមីល្លិន។
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,បានចុះឈ្មោះប៉ុន្តែពិការ
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,អាសយដ្ឋានត្រូវភ្ជាប់ទៅក្រុមហ៊ុន។ សូមបន្ថែមជួរសម្រាប់ក្រុមហ៊ុននៅក្នុងតារាងតំណខាងក្រោម។
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ការធ្វើម្តងទៀតដោយស្វ័យប្រវត្តិសម្រាប់ឯកសារនេះត្រូវបានបិទ។
DocType: DocType,Hide Copy,លាក់ចម្លង
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ជម្រះតួនាទីទាំងអស់
@@ -1570,6 +1589,7 @@ DocType: Bulk Update,Field,វាល
DocType: Communication,Received,ទទួលបាន
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","គន្លឹះលើវិធីសាស្រ្តដែលមានសុពលភាពដូចជា "before_insert", "after_update" ល (នឹងអាស្រ័យលើ DOCTYPE ដែលបានជ្រើស)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},ការផ្លាស់ប្តូរតម្លៃនៃ {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},រៀបចំគណនីអ៊ីមែលសូមបញ្ចូលពាក្យសម្ងាត់របស់អ្នកសម្រាប់៖ {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,លោកបានបន្ថែមថាប្រព័ន្ធកម្មវិធីគ្រប់គ្រងការដល់អ្នកប្រើនេះដូចជាត្រូវតែមានយ៉ាងហោចណាស់ប្រព័ន្ធអ្នកគ្រប់គ្រងការមួយ
DocType: Chat Message,URLs,URLs
DocType: Data Migration Run,Total Pages,ទំព័រសរុប
@@ -1577,7 +1597,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,ភ្ជាប់រូបភាព
DocType: Workflow State,list-alt,បញ្ជីធៀបទៅនឹងនីវ៉ូទឹក
apps/frappe/frappe/www/update-password.html,Password Updated,ពាក្យសម្ងាត់ដែលបានធ្វើបច្ចុប្បន្នភាព
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,តំឡើង> សិទ្ធិអ្នកប្រើប្រាស់
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ជំហានដើម្បីផ្ទៀងផ្ទាត់ការចូលរបស់អ្នក
apps/frappe/frappe/utils/password.py,Password not found,រកមិនឃើញការពាក្យសម្ងាត់
DocType: Webhook,Webhook Secret,Webhook សម្ងាត់
@@ -1592,8 +1611,6 @@ DocType: Website Settings,Brand,ម៉ាក
apps/frappe/frappe/config/integrations.py,Google API Settings.,ការកំណត់ Google API ។
DocType: Report,Query Report,របាយការណ៍សំណួរ
DocType: User,Set New Password,កំណត់ពាក្យសម្ងាត់ថ្មី
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% s មិនត្រឹមត្រូវទ្រង់ទ្រាយរបាយការណ៍មួយ។ ទ្រង់ទ្រាយរបាយការណ៍គួរមួយនៃ \% s ដែលខាងក្រោម
DocType: Chat Message,Chat,ការជជែកកំសាន្ត
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},រកមិនឃើញឯកសារដាក់ស្លាកជាមួយ {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,ផែនទីក្រុមអិល។ ឌី។ ភី
@@ -1674,6 +1691,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ជ្
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ឆ្នាំ
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,អចិន្ត្រៃលុប {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,ឯកសារដូចគ្នាត្រូវបានភ្ជាប់រួចហើយដើម្បីកំណត់ត្រា
+DocType: Event Sync Log,Synced,បានធ្វើសមកាលកម្ម
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} មិនមែនជារដ្ឋលំហូរការងារត្រឹមត្រូវទេ។ សូមធ្វើបច្ចុប្បន្នភាពលំហូរការងាររបស់អ្នកហើយព្យាយាមម្តងទៀត។
DocType: Workflow State,wrench,ម៉ាឡេត
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,មិនបានកំណត់
@@ -1698,6 +1716,7 @@ apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ដើម្បីធ្
DocType: Test Runner,Module Path,ផ្លូវម៉ូឌុល
DocType: Milestone Tracker,Track milestones for any document,តាមដានទិសដៅសម្រាប់ឯកសារណាមួយ។
DocType: Social Login Key,Identity Details,ព័ត៌មានលំអិតអត្តសញ្ញាណ
+apps/frappe/frappe/model/workflow.py,Workflow State transition not allowed from {0} to {1},ការផ្លាស់ប្តូរស្ថានភាពការងារមិនត្រូវបានអនុញ្ញាតពី {0} ទៅ {1}
apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,បង្ហាញផ្ទាំងគ្រប់គ្រង។
DocType: File,Preview HTML,មើលជាមុនរបស់ HTML
DocType: Desktop Icon,query-report,របាយការណ៍សំណួរ
@@ -1773,6 +1792,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,ប្រវែងអតិបរមា
DocType: Print Format,Jinja,ជីនចា។
DocType: Workflow State,map-marker,ផែនទីបង្គោល
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,ការកំណត់រចនាសម្ព័ន្ធផែនទីរវាងសម្មតិកម្មពីរ។
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ដាក់ស្នើនូវបញ្ហា
DocType: Event,Repeat this Event,ធ្វើព្រឹត្តិការណ៍នេះ
DocType: Address,Maintenance User,អ្នកប្រើប្រាស់ថែទាំ
@@ -1830,6 +1850,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,ការធ្វើតេស្តអាសយដ្ឋានអ៊ីមែល
DocType: Auto Repeat,Reference Document Type,សេចក្តីយោងប្រភេទឯកសារ
DocType: ToDo,Sender,អ្នកផ្ញើ
+DocType: Event Consumer,Incoming Change,ការផ្លាស់ប្តូរចូល
DocType: Google Drive,Backup Folder Name,ឈ្មោះថតឯកសារបម្រុងទុក។
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,មានកំហុសខណៈពេលវាយតម្លៃការជូនដំណឹង {0} ។ សូមកែសម្រួលគំរូរបស់អ្នក។
DocType: GSuite Settings,Google Apps Script,Google ស្គ្រីបកម្មវិធី
@@ -1891,9 +1912,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,ឈ្
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,ចុចលើតំណភ្ជាប់ខាងក្រោមដើម្បីអនុម័តលើសំណើរ។
DocType: Workflow State,align-left,តម្រឹមឆ្វេង
DocType: Onboarding Slide,Action Settings,ការកំណត់សកម្មភាព
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,តំឡើង> អ្នកប្រើប្រាស់
DocType: User,Defaults,លំនាំដើម
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","សម្រាប់ការប្រៀបធៀបប្រើ> ៥, ១០ ឬ = ៣២៤ ។ សម្រាប់ជួរប្រើ 5:10 (សម្រាប់តម្លៃចន្លោះពី 5 និង 10) ។"
DocType: Energy Point Log,Revert Of,ត្រឡប់នៃ។
+DocType: Document Type Mapping,Field Mapping,ការគូសផែនទី
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,បញ្ចូលចូលគ្នាជាមួយនឹងការដែលមានស្រាប់
DocType: User,Birth Date,ថ្ងៃខែឆ្នាំកំណើត
DocType: Communication Link,Link Title,ចំណងជើងតំណ
@@ -1921,6 +1943,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,តំណភ្ជាប់ស្លាក
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,ច្រវ៉ាក់សុចរិត
DocType: Data Export,CSV,ឯកសារ CSV
+DocType: Event Consumer,In Test,នៅក្នុងការសាកល្បង
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 រូបិយប័ណ្ណ = [?] ប្រភាគសម្រាប់ការឧទាហរណ៏ 1 ដុល្លារ = 100 រយ
DocType: Data Import,Partially Successful,ជោគជ័យខ្លះៗ
@@ -1930,6 +1953,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,អិលឌីភីគ្រុបធ្វើផែនទី។
DocType: Chat Message Attachment,Chat Message Attachment,ឯកសារភ្ជាប់សារជជែកកំសាន្ត
DocType: LDAP Settings,Path to CA Certs File,ផ្លូវទៅឯកសារឯកសារបញ្ជាក់របស់ CA ។
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,ប្រសិនបើឯកសារមានឈ្មោះវាលផ្សេងគ្នានៅលើចុងអ្នកផលិតនិងអ្នកប្រើប្រាស់សូមពិនិត្យចំណុចនេះហើយរៀបចំផែនទី
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,អនុញ្ញាតឱ្យអាននៅលើជម្រើសតំណទាំងអស់
DocType: DocType,Database Engine,ម៉ាស៊ីនមូលដ្ឋានទិន្នន័យ
@@ -2062,6 +2086,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,ចំណាំ
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,របាយការណ៍កំហុស & ‧;
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,នាំទិន្នន័យចេញជាទ្រង់ទ្រាយ CSV / Excel ។
+DocType: Document Type Field Mapping,Document Type Field Mapping,ការបង្ហាញផែនទីប្រភេទឯកសារ
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,រៀបចំឯកសារស្វែងរកសកល។
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,កម្មវិធីផ្ទៀងផ្ទាត់ដែលអ្នកអាចប្រើគឺ:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} មានរួចហើយ។ ជ្រើសរើសឈ្មោះផ្សេងទៀត
@@ -2135,7 +2160,6 @@ DocType: Workflow State,Upload,ផ្ទុកឡើង
DocType: User Permission,Advanced Control,ការត្រួតពិនិត្យកម្រិតខ្ពស់
DocType: System Settings,Date Format,ទ្រង់ទ្រាយកាលបរិច្ឆេទ
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,មិនបានបោះពុម្ភផ្សាយ
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,រកមិនឃើញគំរូអាសយដ្ឋានលំនាំដើម។ សូមបង្កើតថ្មីមួយពីការតំឡើង> បោះពុម្ពនិងយីហោ> គំរូអាសយដ្ឋាន។
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",សកម្មភាពសម្រាប់លំហូរការងារ (ឧយល់ព្រមបោះបង់) ។
DocType: Data Import,Skip rows with errors,រំលងជួរដេកដែលមានកំហុស
DocType: Workflow State,flag,ទង់ជាតិ
@@ -2198,6 +2222,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,តំណាងឱ្យបណ្តារដ្ឋដែលត្រូវបានអនុញ្ញាតនៅក្នុងឯកសារមួយដែលបានផ្ដល់តម្លៃនិងតួនាទីរបស់ការផ្លាស់ប្តូររដ្ឋ។
DocType: Data Migration Connector,Database Name,ឈ្មោះមូលដ្ឋានទិន្នន័យ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,សំណុំបែបបទធ្វើឱ្យស្រស់
+DocType: Event Producer,Event Producer,អ្នកផលិតព្រឹត្តិការណ៍
DocType: DocField,Select,ជ្រើស
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,មើលកំណត់ហេតុពេញ។
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",កន្សោមពស់ថ្លាន់សាមញ្ញឧទាហរណ៍៖ ស្ថានភាព == 'បើក' ហើយវាយ == 'កំហុស'
@@ -2314,12 +2339,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR កូដ
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,បន្ថែមទៅធ្វើ
DocType: Footer Item,Company,ក្រុមហ៊ុន
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},មធ្យមនៃ {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,ប្រតិបត្តិការជោគជ័យ
DocType: Scheduled Job Log,Scheduled,កំណត់ពេលវេលា
DocType: User,Logout from all devices while changing Password,ចេញពីឧបករណ៍ទាំងអស់ខណៈពេលប្តូរពាក្យសម្ងាត់
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,ផ្ទៀងផ្ទាត់ពាក្យសម្ងាត់
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,មានកំហុស
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,បញ្ចូលលេខសម្គាល់អតិថិជននិងអាថ៌កំបាំងអតិថិជនក្នុងការកំណត់ Google ។
apps/frappe/frappe/core/doctype/communication/communication.js,Close,បិទការ
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",លេខសម្គាល់អ៊ីមែលត្រូវតែមានតែមួយគណនីអ៊ីម៉ែលមានរួចហើយសម្រាប់ {0}
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,មិនអាចផ្លាស់ប្តូ docstatus ពី 0 ទៅ 2
DocType: File,Attached To Field,បានភ្ជាប់ទៅវាល
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,ធ្វើឱ្យទាន់សម័យ
@@ -2423,6 +2450,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,ខែ
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: បន្ថែម Reference: {{ reference_doctype }} {{ reference_name }} ដើម្បីផ្ញើរសេចក្ដីយោងឯកសារ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,មានតែអ្នកប្រើប្រាស់ដែលចូលរួមនៅក្នុងឯកសារប៉ុណ្ណោះដែលត្រូវបានចុះបញ្ជី។
DocType: DocField,Fetch From,ទទួលបានពី
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,រៀបចំ> ទម្រង់បែបបទតាមតម្រូវការ
apps/frappe/frappe/modules/utils.py,App not found,រកមិនឃើញកម្មវិធី
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},មិនអាចបង្កើតការប្រឆាំងនឹង {0} ឯកសារដែលកុមារ: {1}
DocType: Social Login Key,Social Login Key,សោចូលសង្គម
@@ -2433,7 +2461,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,សា
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,ទំព័រដើមសង្គម។
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},បញ្ចូលបន្ទាប់ពីមិនអាចត្រូវបានកំណត់ជា {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,ចែករំលែកជាមួយ {0}
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ការដំឡើងគណនីអ៊ីម៉ែលសូមបញ្ចូលពាក្យសម្ងាត់របស់អ្នកសម្រាប់:
DocType: Workflow State,hand-up,ដៃឡើង
DocType: Blog Settings,Writers Introduction,អ្នកនិពន្ធសេចក្តីផ្តើម
DocType: Address,Phone,ទូរស័ព្ទ
@@ -2492,7 +2519,7 @@ DocType: Web Page,Insert Style,បញ្ចូលរចនាប័ទ្ម
DocType: Prepared Report,Error Message,សារកំហុស។
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,ឈ្មោះរបាយការណ៍ថ្មី
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,លាក់ចុងសប្តាហ៍
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,បង្កើតឯកសារកើតឡើងដដែលៗដោយស្វ័យប្រវត្តិ។
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,បង្កើតឯកសារកើតឡើងដដែលៗដោយស្វ័យប្រវត្តិ។
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,តើមាន
DocType: Onboarding Slide,ERPNext,ERP បន្ទាប់
DocType: Workflow State,info-sign,ពត៌មានសញ្ញា
@@ -2500,7 +2527,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,តម
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",គួរត្រូវបានធ្វើទ្រង់ទ្រាយជារូបិយប័ណ្ណនេះបានយ៉ាងដូចម្តេច? បើមិនកំណត់នឹងប្រើលំនាំដើមរបស់ប្រព័ន្ធ
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ដាក់ស្នើ {0} ឯកសារ?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,អ្នកត្រូវការដើម្បីត្រូវបានកត់ឈ្មោះចូលនិងមានតួនាទីនៃប្រព័ន្ធអ្នកគ្រប់គ្រងដើម្បីអាចចូលដំណើរការបានព័ត៌មានបម្រុងទុក។
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","កំហុសក្នុងការភ្ជាប់ទៅ QZ ថាសកម្មវិធី ...
អ្នកត្រូវមានកម្មវិធីតំឡើង QZ ថាសនិងតំឡើងដើម្បីប្រើមុខងារព្រីនព្រីន។
ចុចត្រង់នេះដើម្បីទាញយកនិងតំឡើង QZ ថាស ។
សូមចុចនៅទីនេះដើម្បីស្វែងយល់បន្ថែមអំពីការបោះពុម្ពឆៅ ។"
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,គូសផែនទីព្រីន។
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,សូមរក្សាទុកមុនពេលភ្ជាប់។
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,តើអ្នកចង់លុបចោលឯកសារភ្ជាប់ទាំងអស់ទេ?
@@ -2529,6 +2555,7 @@ DocType: Role Permission for Page and Report,Set Role For,កំណត់តួ
DocType: GCalendar Account,The name that will appear in Google Calendar,ឈ្មោះដែលនឹងបង្ហាញក្នុងប្រតិទិន Google
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,បន្ទប់ដោយផ្ទាល់ជាមួយ {0} មានរួចហើយ។
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,ធ្វើឱ្យស្រស់ ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},សូមពិនិត្យតម្លៃតម្រងដែលបានកំណត់សម្រាប់ផ្ទាំងព័ត៌មានផ្ទាំងគ្រប់គ្រង៖ {}
DocType: Event,Starts on,ចាប់ផ្តើមនៅ
DocType: System Settings,System Settings,កំណត់ប្រព័ន្ធ
DocType: GCalendar Settings,Google API Credentials,Google API Credentials
@@ -2554,6 +2581,7 @@ DocType: Workflow State,ok-sign,អីសញ្ញា
apps/frappe/frappe/config/settings.py,Deleted Documents,ឯកសារដែលបានលុប
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,ទ្រង់ទ្រាយ CSV គឺប្រកាន់អក្សរតូចធំ
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,រូបតំណាងផ្ទៃតុមានរួចហើយ
+DocType: Event Consumer Document Type,Approval Status,ស្ថានភាពការអនុម័ត
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,បញ្ជាក់នៅក្នុងអ្វីដែលដែនទាំងអស់គួរតែបង្ហាញ។ ប្រសិនបើគ្មានអ្វីត្រូវបានបញ្ជាក់ស្លាយត្រូវបានបង្ហាញនៅក្នុងដែនទាំងអស់តាមលំនាំដើម។
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ស្ទួន
DocType: Newsletter,Create and Send Newsletters,បង្កើតនិងផ្ញើការពិពណ៌នា
@@ -2572,6 +2600,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,អត្ថបទជំនួយ
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ប្រភេទ:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,ការបង់ប្រាក់របស់អ្នកបានបរាជ័យ។
+DocType: Event Producer,Producer URL,URL របស់អ្នកផលិត
DocType: Comment,Unshared,មិនចែករំលែក
DocType: Address,Karnataka,កាណាតាកា
apps/frappe/frappe/desk/moduleview.py,Module Not Found,រកមិនឃើញម៉ូឌុល
@@ -2583,6 +2612,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,កិច្ចការបានបញ្ចប់
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},កែសម្រួលភាគច្រើន {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ទាញយករបាយការណ៍
+apps/frappe/frappe/model/workflow.py,Workflow Status,ស្ថានភាពលំហូរការងារ
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,មិនសកម្ម
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,មានតែអ្នកគ្រប់គ្រងទេដែលត្រូវបានអនុញ្ញាតឱ្យបង្កើតប្រភពគំនូសតាងផ្ទាំងគ្រប់គ្រង។
DocType: About Us Settings,Settings for the About Us Page,ការកំណត់សម្រាប់ទំព័រអំពីយើង
@@ -2592,6 +2622,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,ព
DocType: Notification Settings,Energy Points,ចំណុចថាមពល។
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},ពេលវេលា {0} ត្រូវតែជាទ្រង់ទ្រាយ៖ {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ឧ pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}៖ បានបរាជ័យក្នុងការភ្ជាប់ឯកសារថ្មី។ ដើម្បីបើកឯកសារភ្ជាប់ក្នុងអ៊ីមែលការជូនដំណឹងម្តងទៀតដោយស្វ័យប្រវត្តិបើក {1} នៅក្នុងការកំណត់បោះពុម្ព
DocType: User,Generate Keys,បង្កើតកូនសោ
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,វានឹងលុបទិន្នន័យរបស់អ្នកជាអចិន្ត្រៃយ៍។
DocType: DocType,View Settings,ការកំណត់ទិដ្ឋភាព
@@ -2642,6 +2673,7 @@ DocType: User Social Login,User Social Login,ការចូលសង្គម
DocType: Contact,All,ទាំងអស់
DocType: Email Queue,Recipient,អ្នកទទួល
DocType: Webhook,Webhook Security,សុវត្ថិភាព Webhook
+DocType: Event Sync Log,Producer Document Name,ឈ្មោះឯកសាររបស់អ្នកផលិត
DocType: Communication,Has Attachment,មានឯកសារភ្ជាប់
DocType: Address,Sales User,ការលក់របស់អ្នកប្រើប្រាស់
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,អូសនិងទម្លាក់ដើម្បីកសាងឧបករណ៍និងប្ដូរតាមបំណងទ្រង់ទ្រាយបោះពុម្ព។
@@ -2677,6 +2709,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,តារាងកុមារត្រូវបានបង្ហាញជាក្រឡាចត្រង្គនៅក្នុងឯកសារផ្សេងទៀត។
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,ដំឡើងអ៊ីម៉ែលដោយស្វ័យប្រវត្តិ
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,បញ្ជា + ចុះក្រោម
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,គេហទំព័រដែលអ្នកចង់ជាវសម្រាប់ព្រឹត្តិការណ៍ប្រើប្រាស់។
DocType: Chat Profile,Message Preview,មើលសារជាមុន
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,នេះគឺជាពាក្យសម្ងាត់កំពូលទាំង 10 រឿងធម្មតា។
DocType: User,User Defaults,លំនាំដើមអ្នកប្រើ
@@ -2709,6 +2742,7 @@ DocType: Dashboard Chart,Last Synced On,បានធ្វើសមកាលក
DocType: Comment,Comment Type,ប្រភេទការអត្ថាធិប្បាយបានទេ
DocType: OAuth Client,OAuth Client,អតិថិជន OAuth
DocType: Assignment Rule,Users,អ្នកប្រើប្រាស់
+DocType: Document Type Mapping,Local Document Type,ប្រភេទឯកសារក្នុងស្រុក
DocType: Address,Odisha,សម្ពន្ធ Odisha
DocType: Report,Report Type,ប្រភេទរបាយការណ៍
DocType: DocField,Signature,ហត្ថលេខា
@@ -2751,6 +2785,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} ខ្លួនឯងបានចាត់តាំងភារកិច្ចនេះ: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,ប្រទេសរបស់អ្នក
DocType: Assignment Rule Day,Sunday,កាលពីថ្ងៃអាទិត្យ
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",រក្សាកំណត់ហេតុនៃការបញ្ចូលការធ្វើបច្ចុប្បន្នភាពនិងការលុបទាំងអស់នៅលើគេហទំព័ររបស់អ្នកផលិតព្រឹត្តិការណ៍សម្រាប់ឯកសារដែលមានអ្នកប្រើប្រាស់។
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}៖ ឈ្មោះវាលមិនអាចជាផ្នែកមួយនៃ {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,ជំហរ។
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,ក្នុងក្រឡាចត្រង្គមើល
@@ -2898,7 +2933,6 @@ DocType: Web Page,Sidebar and Comments,របារចំហៀងនិងក
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",នៅពេលដែលអ្នកធ្វើវិសោធនកម្មឯកសារមួយបន្ទាប់ពីការបោះបង់និងរក្សាទុកវាវានឹងទទួលបានមួយចំនួនថ្មីដែលជាកំណែនៃចំនួនចាស់។
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings",មិនអនុញ្ញាតឱ្យភ្ជាប់ឯកសារ {0} សូមអនុញ្ញាតអនុញ្ញាតបោះពុម្ពសម្រាប់ {0} នៅក្នុងការកំណត់បោះពុម្ព
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីមែលមិនត្រូវបានរៀបចំទេ។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីពីតំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},មើលឯកសារនៅ {0}
DocType: Stripe Settings,Publishable Key,គន្លឹះបោះពុម្ពផ្សាយ
DocType: Stripe Settings,Publishable Key,គន្លឹះបោះពុម្ពផ្សាយ
@@ -2977,7 +3011,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,ពត៌មាន
DocType: Custom Field,Permission Level,កម្រិតសិទ្ធិ
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: មិនអាចកំណត់ការដាក់ស្នើ, បោះបង់ធ្វើវិសោធនកម្មដោយគ្មានការសរសេរ"
DocType: List View Setting,Disable Count,បិទរាប់។
-DocType: Google Maps Settings,Client Key,កូនសោអតិថិជន
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,តើអ្នកពិតជាចង់លុបឯកសារភ្ជាប់ហើយឬនៅ?
apps/frappe/frappe/__init__.py,Thank you,សូមអរគុណអ្នក
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,ការរក្សាទុកដោយ
@@ -3103,6 +3136,7 @@ DocType: Workflow Document State,Only Allow Edit For,អនុញ្ញាតត
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,បម្រុងទុកទៅថាស Google ។
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},វាលដែលចាំបាច់: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ឈ្មោះរបស់អ្នក
+DocType: Event Producer Document Type,Event Producer Document Type,ប្រភេទឯកសារអ្នកផលិតព្រឹត្តិការណ៍
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,ការតភ្ជាប់ជោគជ័យ
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ការបញ្ចាំងស្លាយនៃប្រភេទស្លាយបន្តមានរួចហើយ។
@@ -3172,6 +3206,7 @@ DocType: Address,Postal Code,លេខកូដប្រៃសណីយ
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,ការទំនាក់ទំនង Relink
DocType: Translation,Contributed,បានចូលរួមចំណែក។
apps/frappe/frappe/config/customization.py,Form Customization,ការកែប្រែទម្រង់។
+DocType: Event Update Log,Event Update Log,កំណត់ហេតុកំណត់ហេតុព្រឹត្តិការណ៍
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,គ្មានសម័យសកម្ម
DocType: Web Form,Route to Success Link,ផ្លូវទៅកាន់តំណជោគជ័យ
DocType: Onboarding Slide Field,Right,ស្តាំ
@@ -3197,7 +3232,7 @@ DocType: Website Settings,Chat Operators,កម្មវិធីប្រតិ
DocType: S3 Backup Settings,ca-central-1,ca-central-1 ។
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,សូមធ្វើឱ្យប្រាកដថាមានជួរឈរទទេនោះទេនៅក្នុងឯកសារ។
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,បទសំខាន់ៗលើដំណើរជីវិតរបស់ឯកសារប្រសិនបើវាឆ្លងកាត់ដំណាក់កាលជាច្រើន។
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,បទសំខាន់ៗលើដំណើរជីវិតរបស់ឯកសារប្រសិនបើវាឆ្លងកាត់ដំណាក់កាលជាច្រើន។
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",ប្តូរឈ្មោះឯកសារនិងជំនួសលេខកូដនៅក្នុងឧបករណ៍បញ្ជាសូមពិនិត្យមើល!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,សូមប្រាកដថាទម្រង់របស់អ្នកមានអាសយដ្ឋានអ៊ីម៉ែល
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ការផ្លាស់ប្តូរមិនបានរក្សាទុកដែលអ្នកមាននៅក្នុងសំណុំបែបបទនេះ។ សូមរក្សាទុកមុនពេលអ្នកបន្ត។
@@ -3224,7 +3259,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,រក្សាទុក API សម្ងាត់:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},មិនអាចភ្ជាប់ឯកសារត្រូវបានលុបចោល: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,មិនអាចកែសម្រួលរបាយការណ៍ស្តង់ដារមួយ។ សូមស្ទួននិងបង្កើតរបាយការណ៍ថ្មីមួយ
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","ក្រុមហ៊ុនចាំបាច់, ដូចដែលវាគឺជាអាសយដ្ឋានក្រុមហ៊ុនរបស់អ្នក"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}",ឧទាហរណ៍: ប្រសិនបើអ្នកចង់រួមបញ្ចូលលេខសម្គាល់ឯកសារប្រើ {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},ជ្រើសជួរឈរតារាងសម្រាប់ {0}
DocType: Custom Field,Options Help,ជម្រើសជំនួយ
@@ -3232,7 +3266,6 @@ DocType: Footer Item,Group Label,ស្លាកគ្រុប
DocType: Kanban Board,Kanban Board,ក្តារកានបាន
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ទំនាក់ទំនង Google ត្រូវបានតំឡើង។
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,កំណត់ត្រា ១ នឹងត្រូវនាំចេញ។
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,គ្មានគណនីអ៊ីមែលដែលទាក់ទងនឹងអ្នកប្រើប្រាស់។ សូមបន្ថែមគណនីនៅក្រោមអ្នកប្រើ> ប្រអប់ទទួលអ៊ីម៉ែល។
DocType: DocField,Report Hide,របាយការលាក់
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ទិដ្ឋភាពមែកធាងមិនអាចរកបានសម្រាប់ {0}
DocType: DocType,Restrict To Domain,ដាក់កម្រិតទៅដែន
@@ -3293,9 +3326,12 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,ត
DocType: OAuth Provider Settings,Force,កម្លាំង
DocType: DocField,Fold,បោះបង់ចោល
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,ស្ដង់ដារទ្រង់ទ្រាយបោះពុម្ពមិនអាចត្រូវបានធ្វើឱ្យទាន់សម័យ
+apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: វាល {1} នៃប្រភេទ {2} មិនអាចជាចាំបាច់ទេ
DocType: System Settings,In Days,នៅក្នុងថ្ងៃ។
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,បវរកញ្ញា
+DocType: Event Producer Document Type,Has Mapping,មានផែនទី
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,សូមបញ្ជាក់
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,តម្លៃតម្រងមិនត្រឹមត្រូវ
DocType: Comment,Bot,bot
DocType: Help Article,Help Article,អត្ថបទជំនួយ
DocType: Page,Page Name,ឈ្មោះទំព័រ
@@ -3402,7 +3438,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,ការបោះពុម្ពទ្រង់ទ្រាយ
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,បិទ / បើកទិដ្ឋភាពក្រឡាចត្រង្គ
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ទៅកាន់កំណត់ត្រាបន្ទាប់។
-DocType: System Settings,Time Format,ទ្រង់ទ្រាយពេលវេលា
+DocType: Country,Time Format,ទ្រង់ទ្រាយពេលវេលា
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,លិខិតសម្គាល់ការទូទាត់មិនត្រឹមត្រូវ
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,នេះជាឯកសារគំរូដែលបង្កើតបានតែជួរដេកប៉ុណ្ណោះដែលមានកំហុសមួយចំនួន។ អ្នកគួរតែប្រើឯកសារនេះដើម្បីកែតម្រូវនិងនាំចូល។
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,កំណត់សិទ្ធិលើប្រភេទឯកសារនិងតួនាទី
@@ -3775,6 +3811,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ប
apps/frappe/frappe/www/login.html,Or login with,ឬការចូលជាមួយនឹង
DocType: Error Snapshot,Locals,អ្នកស្រុក
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},បានទាក់ទងតាមរយៈ {0} {1} លើ: {2}
+DocType: Event Producer,Event Producer Document Types,ប្រភេទឯកសារអ្នកផលិតព្រឹត្តិការណ៍
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,សូមរៀបចំគណនីអ៊ីមែលលំនាំដើមពីតំឡើង> អ៊ីមែល> គណនីអ៊ីមែល
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ជ្រើសរើសក្រុមតាម ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ឧទាហរណ៏ (55 + + 434) / 4 ឬ = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} គឺត្រូវបានទាមទារ
@@ -3805,9 +3843,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar លេខសមកាលកម្ម
DocType: Prepared Report,Report Start Time,រាយការណ៍ពីម៉ោងចាប់ផ្តើម
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,នាំចេញទិន្នន័យ
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,រក្សាកំណត់ហេតុនៃរាល់ព្រឹត្តិការណ៍ដែលបានប្រើប្រាស់រួមជាមួយស្ថានភាពនៃការធ្វើសមកាលកម្មនិងប៊ូតុង Resync ក្នុងករណីសមកាលកម្មបរាជ័យ។
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,ជ្រើសជួរឈរ
DocType: Translation,Source Text,អត្ថបទប្រភព
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,នេះគឺជារបាយការណ៍ផ្ទៃខាងក្រោយ។ សូមកំណត់តម្រងដែលសមស្របហើយបន្ទាប់មកបង្កើតថ្មី។
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីមែលមិនត្រូវបានរៀបចំទេ។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីពីតំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល
apps/frappe/frappe/www/login.py,Missing parameters for login,ប៉ារ៉ាម៉ែត្រដើម្បីចូលបាត់
DocType: Workflow State,folder-open,បើកថត
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",នៅពេលបានបញ្ជូនរួចហើយឯកសារដែលមិនអាចបញ្ជូនបានមិនអាចត្រូវបានផ្លាស់ប្តូរបានទេ។ ពួកគេអាចត្រូវបានលុបចោលនិងធ្វើវិសោធនកម្ម។
@@ -3887,6 +3927,7 @@ DocType: Blog Post,Published On,បានចេញផ្សាយនៅថ្ង
DocType: Contact,Gender,យែនឌ័រ
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,ពជាចាំបាច់បាត់ខ្លួន:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} បានត្រឡប់ពិន្ទុរបស់អ្នកនៅលើ {1}
+DocType: Event Consumer,Event Subscriber,អតិថិជនព្រឹត្តិការណ៍
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,ពិនិត្យសំណើ URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,មានតែ 200 បញ្ចូលត្រូវបានអនុញ្ញាតក្នុងសំណើរមួយ
DocType: Footer Item,URL,URL ដែល
@@ -3899,6 +3940,7 @@ DocType: Auto Email Report,Half Yearly,ពាក់កណ្តាលប្រ
DocType: Communication,Marked As Spam,សម្គាល់ថាជាសារឥតបានការ
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},មានបញ្ហាមួយចំនួនជាមួយនឹងឯកសារ URL គឺ: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,ដើមឈើ
+DocType: Event Producer Document Type,Use Same Name,ប្រើឈ្មោះដូចគ្នា
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបោះពុម្ពរបាយការណ៍នេះ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,សិទ្ធិរបស់អ្នកប្រើប្រាស់
DocType: Workflow State,warning-sign,ការព្រមានសញ្ញា
@@ -3908,6 +3950,7 @@ DocType: Workflow State,User,របស់អ្នកប្រើ
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",បង្ហាញចំណងជើងនៅក្នុងបង្អួចកម្មវិធីរុករកជា "បុព្វបទ - ចំណងជើងថា"
DocType: Payment Gateway,Gateway Settings,ការកំណត់ច្រកទ្វារ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,អត្ថបទក្នុងប្រភេទឯកសារ
+DocType: Event Sync Log,Event Sync Log,កំណត់ហេតុសមកាលកម្មព្រឹត្តិការណ៍
apps/frappe/frappe/handler.py,Logged Out,ចេញ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,ច្រើនទៀត ...
DocType: System Settings,User can login using Email id or Mobile number,អ្នកប្រើអាចចូលដោយប្រើលេខសម្គាល់អ៊ីម៉ែលឬលេខទូរស័ព្ទ
@@ -3947,12 +3990,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,មិននៅក្នុង
DocType: Workflow State,star,តារា
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,ហាប់
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,ប្រសិនបើវាត្រូវបានធីកឯកសារនឹងមានឈ្មោះដូចគ្នានឹងពួកគេមាននៅលើគេហទំព័ររបស់អ្នកផលិតព្រឹត្តិការណ៍
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,តម្លៃដែលបំបែកដោយសញ្ញាក្បៀស
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},ទទឹងអតិបរមាសម្រាប់ប្រភេទរូបិយប័ណ្ណគឺ 100px នៅក្នុងជួរ {0}
apps/frappe/frappe/config/website.py,Content web page.,មាតិកាបណ្ដាញទំព័រ។
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,បន្ថែមតួនាទីថ្មី
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ទស្សនាគេហទំព័រ
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,ការងារថ្មី
+DocType: Event Consumer Document Type,Approved,បានអនុម័ត
DocType: Google Contacts,Last Sync On,ធ្វើសមកាលកម្មចុងក្រោយ
DocType: Deleted Document,Deleted Document,លុបឯកសារ
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,អូ! អ្វីមួយដែលខុស
@@ -4005,7 +4050,6 @@ DocType: DocField,Unique,មានតែមួយគត់
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} កោតសរសើរចំពោះ {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,ជោគជ័យមួយផ្នែក
DocType: Email Account,Service,សេវាកម្ម
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,តំឡើង> អ្នកប្រើប្រាស់
DocType: File,File Name,ឈ្មោះឯកសារ
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),មិនបានរកឃើញ {0} {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4017,11 +4061,10 @@ DocType: Calendar View,Calendar View,ទិដ្ឋភាពប្រតិទ
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,កែសម្រួលទ្រង់ទ្រាយ
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,បញ្ចាប់ការចុះឈ្មោះ
DocType: GCalendar Settings,Enable,អនុញ្ញាត
-DocType: Google Maps Settings,Home Address,អាសយដ្ឋានផ្ទះ
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),អ្នកអាចផ្ទុកឡើងបានតែរីករាយជាមួយនឹង 5000 កំណត់ត្រាក្នុងមួយទៅ។ (អាចនឹងមានតិចជាងនៅក្នុងករណីមួយចំនួន)
DocType: Report,"output in the form of `data = [columns, result]`",លទ្ធផលក្នុងទំរង់ `ទិន្នន័យ = [ជួរឈរលទ្ធផល]`
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ប្រភេទឯកសារដែលអាចប្រើបាន។
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,រៀបចំច្បាប់សម្រាប់ការងាររបស់អ្នកប្រើប្រាស់។
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,រៀបចំច្បាប់សម្រាប់ការងាររបស់អ្នកប្រើប្រាស់។
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},សិទ្ធិមិនគ្រប់គ្រាន់សម្រាប់ {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},សិទ្ធិមិនគ្រប់គ្រាន់សម្រាប់ {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),របាយការណ៏ដែលមិនត្រូវបានរក្សាទុក (មានកំហុស)
diff --git a/frappe/translations/kn.csv b/frappe/translations/kn.csv
index 40413895d6..adc92b63e8 100644
--- a/frappe/translations/kn.csv
+++ b/frappe/translations/kn.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,ಒಂದು ಬಳಕೆದಾರ ಈ ಪಾತ್ರವನ್ನು ಅಪ್ಡೇಟ್ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},ಮರುಹೆಸರಿಸು {0}
DocType: Workflow State,zoom-out,ಜೂಮ್ ಔಟ್
-DocType: Data Import Beta,Import Options,ಆಮದು ಆಯ್ಕೆಗಳು
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,ಅದರ ಉದಾಹರಣೆಗೆ ತೆರೆದುಕೊಂಡಿದ್ದಾಗ {0} ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,ಟೇಬಲ್ {0} ಖಾಲಿ ಇರುವಂತಿಲ್ಲ
DocType: SMS Parameter,Parameter,ನಿಯತಾಂಕ
@@ -84,16 +83,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,ಪ್ರಕಟಿಸಲಾಗಿದೆ ಫೀಲ್ಡ್
DocType: GCalendar Settings,GCalendar Settings,ಜಿಕಾಲೆಂಡರ್ ಸೆಟ್ಟಿಂಗ್ಗಳು
DocType: Email Group,Email Group,ಇಮೇಲ್ ಗುಂಪು
-apps/frappe/frappe/__init__.py,Only for {},ಗೋಸ್ಕರ {}
DocType: Event,Pulled from Google Calendar,Google ಕ್ಯಾಲೆಂಡರ್ನಿಂದ ಎಳೆಯಲಾಗಿದೆ
DocType: Note,Seen By,ಸೀನ್ ಬೈ
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,ಬಹು ಸೇರಿಸಿ
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,ಮಾನ್ಯ ಬಳಕೆದಾರ ಚಿತ್ರವಲ್ಲ.
DocType: Energy Point Log,Reverted,ಹಿಂತಿರುಗಿಸಲಾಗಿದೆ
DocType: Success Action,First Success Message,ಮೊದಲ ಯಶಸ್ಸು ಸಂದೇಶ
+DocType: Document Type Mapping,Document Type Mapping,ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ ಮ್ಯಾಪಿಂಗ್
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ಲೈಕ್
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ತಪ್ಪಾದ ಮೌಲ್ಯವು: {0} ಇರಬೇಕು {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ಬದಲಾಯಿಸಿ ಕ್ಷೇತ್ರ ಗುಣಗಳನ್ನು ( ಮರೆಮಾಡಲು , ಮಾತ್ರ , ಅನುಮತಿ , ಇತ್ಯಾದಿ ಓದಲು )"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,ನಿಮ್ಮ ಈವೆಂಟ್ಗಳನ್ನು ಸೇವಿಸುವ ಸೈಟ್.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ಪ್ರಶಂಸಿಸಿ
DocType: Notification Settings,Document Share,ಡಾಕ್ಯುಮೆಂಟ್ ಹಂಚಿಕೆ
DocType: Workflow State,lock,ಕರುಳು
@@ -113,10 +113,12 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,ಲಾಗ್
DocType: Workflow State,indent-right,ಇಂಡೆಂಟ್ ಬಲ
DocType: Has Role,Has Role,ಪಾತ್ರ ಹ್ಯಾಸ್
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,ಮರುಸಂಗ್ರಹಿಸಿ
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,ಸರ್ವರ್ನಲ್ಲಿ QR ಕೋಡ್ ಇಮೇಜ್ ಉಳಿಸಿಕೊಳ್ಳಲು ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಸಮಯ. ಕನಿಷ್ಠ: 240
DocType: Dashboard Chart,Timespan,ಟೈಮ್ಸ್ಪ್ಯಾನ್
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,ವೆಬ್ ಲಿಂಕ್
DocType: Deleted Document,Restored,ಮರುಸ್ಥಾಪಿಸಲಾಯಿತು
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ...
ಕಚ್ಚಾ ಮುದ್ರಣ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ನೀವು QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸ್ಥಾಪಿಸಿ ಚಾಲನೆಯಲ್ಲಿರಬೇಕು.
QZ ಟ್ರೇ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಮತ್ತು ಸ್ಥಾಪಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ .
ಕಚ್ಚಾ ಮುದ್ರಣದ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿದುಕೊಳ್ಳಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 ನಿಮಿಷ ಹಿಂದೆ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","ಇದಲ್ಲದೆ ವ್ಯವಸ್ಥೆ ಮ್ಯಾನೇಜರ್, ಬಳಕೆದಾರ ಅನುಮತಿಗಳನ್ನು ಪಾತ್ರಗಳನ್ನು ಬಲ ಎಂದು ಡಾಕ್ಯುಮೆಂಟ್ ಕೌಟುಂಬಿಕತೆ ಇತರ ಬಳಕೆದಾರರಿಗೆ ಅನುಮತಿಗಳನ್ನು ಹೊಂದಿಸಬಹುದು."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,ಥೀಮ್ ಅನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಿ
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,ಅನ್ಸೀನ್
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ಕಡತ ವ್ಯವಸ್ಥಾಪಕ
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML ಹೆಡರ್, ರೋಬೋಟ್ಗಳು ಮತ್ತು ಮರುನಿರ್ದೇಶನಗಳು"
DocType: GCalendar Account,Refresh Token,ರಿಫ್ರೆಶ್ ಟೋಕನ್
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,ಈವೆಂಟ್ ನಿರ್ಮಾಪಕ ಸೈಟ್ಗೆ ಸಂಪರ್ಕಿಸಲು ವಿಫಲವಾಗಿದೆ. ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.
DocType: Address,Goa,ಗೋವಾ
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,ಈ ಸೈಟ್ಗೆ ಬಾಕಿ ಅಥವಾ ಪ್ರಸ್ತುತ ಉದ್ಯೋಗಗಳಿಲ್ಲ
DocType: Webhook,Doc Event,ಡಾಕ್ ಈವೆಂಟ್
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,ಸ್ಕ್ರಿಪ್ಟ್ ಮ್ಯ
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,ಯಾವುದೇ ಚಟುವಟಿಕೆ ಇಲ್ಲ
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,ಮೂರನೇ ವ್ಯಕ್ತಿಯ ಅಪ್ಲಿಕೇಶನ್ಗಳು
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ವ್ಯವಸ್ಥೆ ನಿರ್ವಾಹಕರಾಗುತ್ತೀರಿ ಮೊದಲ ಬಳಕೆದಾರ (ನೀವು ನಂತರ ಬದಲಾಯಿಸಬಹುದು).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,ನಿಮ್ಮ ವರದಿಯ ಫಿಲ್ಟರ್ಗಳನ್ನು ಬದಲಾಯಿಸಲು ನೀವು ಪ್ರಯತ್ನಿಸಬಹುದು.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ಇಂದು ಯಾವುದೇ ಘಟನೆಗಳು ಇಲ್ಲ
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,ನಿಮಗಾಗಿ ವಿಮರ್ಶೆ ಅಂಕಗಳನ್ನು ನೀಡಲು ಸಾಧ್ಯವಿಲ್ಲ
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,ಆಯ್ಕೆಮಾಡಿದ ಡಾಕ್ ಈವೆಂಟ್ಗೆ ಡಾಕ್ಟೈಪ್ ಸಲ್ಲಿಸಬೇಕು
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,ಈ ಡಾಕ್ಯುಮೆಂಟ್ಗೆ ಸಂಬಂಧಿಸಿದ ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲು ಅನುಮತಿ ಇಲ್ಲ
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,ದಯವಿಟ್ಟು ಕನಿಷ್ಠ 1 {0} ವಿಂಗಡಿಸಲು / ಗುಂಪಿನಿಂದ ಕಾಲಮ್ ಆಯ್ಕೆಮಾಡಿ
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} ಗೆ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ: {1}. ನಿರ್ಬಂಧಿತ ಕ್ಷೇತ್ರ: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,ಕಂಪನಿ ಲಿಂಕ್ ಮಾಡಿಲ್ಲ
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ನೀವು ಸ್ಯಾಂಡ್ಬಾಕ್ಸ್ API ಅನ್ನು ಬಳಸಿಕೊಂಡು ನಿಮ್ಮ ಪಾವತಿ ಪರೀಕ್ಷಿಸುತ್ತಿದ್ದಾರೆ ಇದನ್ನು ಗುರುತುಹಾಕಿ
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,ನೀವು ಪ್ರಮಾಣಿತ ವೆಬ್ಸೈಟ್ ಥೀಮ್ ಅಳಿಸಲು ಅನುಮತಿ ಇಲ್ಲ
DocType: Data Import,Log Details,ಲಾಗ್ ವಿವರಗಳು
@@ -257,7 +262,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} ನವೀಕರಿಸಲಾಗುತ್ತಿದೆ
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ ವರದಿ
DocType: Translation,Contributed Translation Doctype Name,ಕೊಡುಗೆ ಅನುವಾದ ಡಾಕ್ಟೈಪ್ ಹೆಸರು
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ಸೆಟಪ್> ಫಾರ್ಮ್ ಅನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ
DocType: PayPal Settings,Redirect To,ಮರುನಿರ್ದೇಶಿಸುತ್ತದೆ
DocType: Data Migration Mapping,Pull,ಪುಲ್
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ಜಾವಾಸ್ಕ್ರಿಪ್ಟ್ ಫಾರ್ಮ್ಯಾಟ್: frappe.query_reports [ 'ವರದಿಯನ್ನು ಹೆಸರು '] = {}
@@ -269,6 +273,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,ಅವಕಾಶವಿಲ್ಲ
DocType: DocShare,Internal record of document shares,ಡಾಕ್ಯುಮೆಂಟ್ ಷೇರುಗಳ ಆಂತರಿಕ ರೆಕಾರ್ಡ್
DocType: Energy Point Settings,Review Levels,ಹಂತಗಳನ್ನು ಪರಿಶೀಲಿಸಿ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ಸೆಟಪ್> ಬಳಕೆದಾರರ ಅನುಮತಿಗಳು
DocType: Workflow State,Comment,ಟಿಪ್ಪಣಿ
DocType: Data Migration Plan,Postprocess Method,ಪೋಸ್ಟ್ ಪ್ರೊಸೆಸರ್ ವಿಧಾನ
DocType: DocType Action,Action Type,ಕ್ರಿಯೆಯ ಪ್ರಕಾರ
@@ -319,13 +324,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,ಶ
DocType: Workflow State,remove-circle,ತೆಗೆದು ವೃತ್ತ
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,ಸ್ವ ಭೂಮಿಕೆ
DocType: Help Article,Beginner,ಬಿಗಿನರ್ಸ್
+apps/frappe/frappe/__init__.py,This action is only allowed for {},ಈ ಕ್ರಿಯೆಯನ್ನು {for ಗೆ ಮಾತ್ರ ಅನುಮತಿಸಲಾಗಿದೆ
DocType: Contact,Is Primary Contact,ಪ್ರಾಥಮಿಕ ಸಂಪರ್ಕ
+DocType: Event Consumer,Event Consumer,ಈವೆಂಟ್ ಗ್ರಾಹಕ
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,ಜಾವಾಸ್ಕ್ರಿಪ್ಟ್ ಪುಟ ತಲೆ ಭಾಗಕ್ಕೆ ಸೇರಿಸಲು .
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,ಸೇರಿಸಿ / ನವೀಕರಿಸಿ
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,ಮಾಡಿರುವುದಿಲ್ಲ ಕರಡು ದಾಖಲೆಗಳನ್ನು ಮುದ್ರಿಸಲು ಅವಕಾಶ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,ಡೀಫಾಲ್ಟ್ಗೆ ಮರುಹೊಂದಿಸಿ
DocType: Workflow,Transition Rules,ಪರಿವರ್ತನೆ ನಿಯಮಗಳು
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,ಪೂರ್ವವೀಕ್ಷಣೆಯಲ್ಲಿ ಮೊದಲ {0} ಸಾಲುಗಳನ್ನು ಮಾತ್ರ ತೋರಿಸಲಾಗುತ್ತಿದೆ
apps/frappe/frappe/core/doctype/report/report.js,Example:,ಉದಾಹರಣೆ :
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ನಿರ್ಬಂಧಗಳು
DocType: Workflow,Defines workflow states and rules for a document.,ಒಂದು ದಾಖಲೆ ಕೆಲಸದೊತ್ತಡದ ರಾಜ್ಯಗಳು ಮತ್ತು ನಿಯಮಗಳನ್ನು ವ್ಯಾಖ್ಯಾನಿಸುತ್ತದೆ.
@@ -469,7 +475,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,ಟಿಲ್ ಪುನರಾವರ್ತಿಸಿ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,ಹೊಸ
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,ನೀವು ಮೊದಲು ಇವುಗಳನ್ನು ರಚಿಸಬೇಕಾಗಿದೆ:
-DocType: Google Maps Settings,Google Maps Settings,ಗೂಗಲ್ ನಕ್ಷೆಗಳು ಸೆಟ್ಟಿಂಗ್ಗಳು
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,ಲೋಡ್ ಆಗುತ್ತಿದೆ ...
DocType: DocField,Password,ಪಾಸ್ವರ್ಡ್
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,ನಿಮ್ಮ ವ್ಯವಸ್ಥೆಯ ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ. ಕೆಲವು ಕ್ಷಣಗಳಲ್ಲಿ ನಂತರ ಮತ್ತೆ ರಿಫ್ರೆಶ್ ಮಾಡಿ
@@ -561,6 +566,7 @@ DocType: Onboarding Slide,Onboarding Slide,ಆನ್ಬೋರ್ಡಿಂಗ
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ಅಮಾನ್ಯ ಪಾಸ್ವರ್ಡ್:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ಅಮಾನ್ಯ ಪಾಸ್ವರ್ಡ್:
DocType: Print Settings,Send document web view link in email,ಇಮೇಲ್ ಡಾಕ್ಯುಮೆಂಟ್ ವೆಬ್ ವೀಕ್ಷಿಸಿ ಲಿಂಕ್ ಕಳುಹಿಸಿ
+DocType: Event Consumer Document Type,Event Consumer Document Type,ಈವೆಂಟ್ ಗ್ರಾಹಕ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,ಹಿಂದಿನ
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,ಮರು:
DocType: LDAP Settings,Require Trusted Certificate,ವಿಶ್ವಾಸಾರ್ಹ ಪ್ರಮಾಣಪತ್ರದ ಅಗತ್ಯವಿದೆ
@@ -634,6 +640,7 @@ DocType: Workflow State,volume-down,ಪರಿಮಾಣ ಡೌನ್
DocType: Onboarding Slide,Help Links,ಸಹಾಯ ಲಿಂಕ್ಗಳು
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ಈ ಐಪಿ ವಿಳಾಸದಿಂದ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ
DocType: Notification Settings,Enable Email Notifications,ಇಮೇಲ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ
+DocType: Document Type Field Mapping,Event Streaming,ಈವೆಂಟ್ ಸ್ಟ್ರೀಮಿಂಗ್
apps/frappe/frappe/desk/reportview.py,No Tags,ಯಾವುದೇ ಟ್ಯಾಗ್ಗಳು
DocType: Email Account,Send Notification to,ಗೆ ಅಧಿಸೂಚನೆ ಕಳುಹಿಸಿ
DocType: DocField,Collapsible,ಬಾಗಿಕೊಳ್ಳಬಹುದಾದ
@@ -650,6 +657,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,ಫ
apps/frappe/frappe/database/database.py,No conditions provided,ಯಾವುದೇ ಷರತ್ತುಗಳನ್ನು ಒದಗಿಸಿಲ್ಲ
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,ವೈ ಆಕ್ಸಿಸ್ ಫೀಲ್ಡ್ಸ್
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ಕ್ಷೇತ್ರದಲ್ಲಿ ರೀತಿಯ {0} ಮಾನ್ಯ FIELDNAME ಇರಬೇಕು
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಪ್ರಿಂಟಿಂಗ್ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್> ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್ನಿಂದ ಹೊಸದನ್ನು ರಚಿಸಿ.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,ಇನ್ನಷ್ಟು
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,ಹೊಸ ದಾಖಲೆಯನ್ನು ರಚಿಸಿ
DocType: Contact,Sales Manager,ಸೇಲ್ಸ್ ಮ್ಯಾನೇಜರ್
@@ -673,6 +681,7 @@ DocType: User,Reset Password Key,ಪಾಸ್ವರ್ಡ್ ಕೀ ಕೊ
DocType: Dashboard Chart,All Time,ಸದಾ ಕಾಲ
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} ಗಾಗಿ ಅಕ್ರಮ ಡಾಕ್ಯುಮೆಂಟ್ ಸ್ಥಿತಿ
DocType: Email Account,Enable Auto Reply,ಆಟೋ ಉತ್ತರಿಸಿ ಸಕ್ರಿಯಗೊಳಿಸಿ
+apps/frappe/frappe/desk/query_report.py,No data to export,ರಫ್ತು ಮಾಡಲು ಡೇಟಾ ಇಲ್ಲ
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,ನೋಡಿಲ್ಲ
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,ಒಂದೇ ಮುದ್ರಣ ಸ್ವರೂಪಕ್ಕೆ ಮ್ಯಾಪ್ ಮಾಡಲಾದ ಬಹು ಮುದ್ರಕಗಳನ್ನು ಹೊಂದಲು ಸಾಧ್ಯವಿಲ್ಲ.
DocType: Workflow State,zoom-in,ಜೂಮ್ ಇನ್
@@ -824,6 +833,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ಬಳಕ
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ಪ್ರಥಮ
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,ಅನುವಾದಗಳನ್ನು ನವೀಕರಿಸಿ
DocType: Error Snapshot,Exception,ಎಕ್ಸೆಪ್ಶನ್
+DocType: Event Consumer,Event Consumer Document Types,ಈವೆಂಟ್ ಗ್ರಾಹಕ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರಗಳು
DocType: Email Account,Use IMAP,ಬಳಸಿ IMAP
DocType: Activity Log,Activity Log,ಚಟುವಟಿಕೆ ಲಾಗ್
DocType: View Log,Viewed By,ಇವರಿಂದ ವೀಕ್ಷಿಸಲಾಗಿದೆ
@@ -863,6 +873,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ವ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ಚಾರ್ಟ್ಸ್ ಅನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಿ
DocType: User,Last IP,ಕೊನೆಯ ಐಪಿ
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,ದಯವಿಟ್ಟು ನಿಮ್ಮ ಇಮೇಲ್ಗೆ ವಿಷಯ ಸೇರಿಸಿ
+apps/frappe/frappe/model/workflow.py,Errored Transactions,ತಪ್ಪಾದ ವ್ಯವಹಾರಗಳು
DocType: Data Migration Connector,Data Migration Connector,ಡೇಟಾ ವಲಸೆ ಸಂಪರ್ಕಕ
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ಹಿಂತಿರುಗಿಸಲಾಗಿದೆ {1}
DocType: Email Account,Track Email Status,ಇಮೇಲ್ ಸ್ಥಿತಿ ಟ್ರ್ಯಾಕ್ ಮಾಡಿ
@@ -893,6 +904,7 @@ DocType: Email Queue,Attachments,ಲಗತ್ತುಗಳು
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,ನೀವು ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿ ಇಲ್ಲ
DocType: Language,Language Name,ಭಾಷಾ ಹೆಸರು
DocType: Email Group Member,Email Group Member,ಗುಂಪಿನ ಸದಸ್ಯರ ಇಮೇಲ್
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ಬಳಕೆದಾರರೊಂದಿಗೆ ಯಾವುದೇ ಇಮೇಲ್ ಖಾತೆ ಸಂಯೋಜಿತವಾಗಿಲ್ಲ. ದಯವಿಟ್ಟು ಬಳಕೆದಾರ> ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ ಅಡಿಯಲ್ಲಿ ಖಾತೆಯನ್ನು ಸೇರಿಸಿ.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಲಾಕ್ ಮಾಡಲಾಗಿದೆ ಮತ್ತು {0} ಸೆಕೆಂಡುಗಳ ನಂತರ ಪುನರಾರಂಭಗೊಳ್ಳುತ್ತದೆ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,ಬಳಕೆದಾರರ ಅನುಮತಿಗಳನ್ನು ಬಳಕೆದಾರರು ನಿರ್ದಿಷ್ಟವಾದ ದಾಖಲೆಗಳಿಗೆ ಮಿತಿಗೊಳಿಸಲು ಬಳಸಲಾಗುತ್ತದೆ.
DocType: Notification,Value Changed,ಮೌಲ್ಯ ಬದಲಾಗಿದೆ
@@ -982,6 +994,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,ವಹಿವಾ
DocType: Help Article,Expert,ಎಕ್ಸ್ಪರ್ಟ್
DocType: Workflow State,circle-arrow-right,ವೃತ್ತದ ಬಾಣವನ್ನು ಬಲ
DocType: Role Profile,Role Profile,ಪಾತ್ರದ ಪ್ರೊಫೈಲ್
+DocType: Document Type Mapping,Remote Document Type,ರಿಮೋಟ್ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ
apps/frappe/frappe/permissions.py,Document Type is not importable,ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರವನ್ನು ಆಮದು ಮಾಡಲಾಗುವುದಿಲ್ಲ
DocType: LDAP Settings,LDAP Server Url,LDAP ಅನ್ನು ಪರಿಚಾರಕ URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,ಅದರ {0} ತೆರೆದಿರುತ್ತದೆ ಉದಾಹರಣೆಗೆ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ
@@ -1066,7 +1079,6 @@ DocType: Web Form,Allow Print,ಪ್ರಿಂಟ್ ಅನುಮತಿಸಿ
DocType: Communication,Clicked,ಕ್ಲಿಕ್
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,ಅನುಸರಿಸಬೇಡಿ
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ಯಾವುದೇ ಅನುಮತಿಯಿಲ್ಲ ' {0} ' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,ಕಳುಹಿಸಲು ಪರಿಶಿಷ್ಟ
DocType: DocType,Track Seen,ಟ್ರ್ಯಾಕ್ ಸೀನ್
DocType: Dropbox Settings,File Backup,ಫೈಲ್ ಬ್ಯಾಕಪ್
@@ -1136,6 +1148,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ಒ
DocType: Data Export,Filter List,ಫಿಲ್ಟರ್ ಪಟ್ಟಿ
DocType: Data Export,Excel,ಎಕ್ಸೆಲ್
DocType: System Settings,HH:mm,HH: ಮಿಮೀ
+DocType: Event Sync Log,Event Configurations,ಈವೆಂಟ್ ಕಾನ್ಫಿಗರೇಶನ್ಗಳು
DocType: Email Account,Auto Reply Message,ಆಟೋ ಉತ್ತರಿಸಿ ಸಂದೇಶ
DocType: Data Migration Mapping,Condition,ಪರಿಸ್ಥಿತಿ
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ಗಂಟೆಗಳ ಹಿಂದೆ
@@ -1193,9 +1206,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,ಯಾವಾ
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,ಕಾಮೆಂಟ್ ಲಾಗಿನ್ ಆಗಿ
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,ಈ ಸಾಲಿನ ಕೆಳಗೆ ಡೇಟಾವನ್ನು ನಮೂದಿಸುವ ಪ್ರಾರಂಭಿಸಿ
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},ಬದಲಾಗುವುದರಲ್ಲಿ ಮೌಲ್ಯಗಳು {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ಇಮೇಲ್ ID ಅನನ್ಯವಾಗಿರಬೇಕು, ಇಮೇಲ್ ಖಾತೆ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ \ for {0}"
DocType: Workflow State,retweet,ರಿಟ್ವೀಟ್
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ಹೋಲಿಕೆಗಾಗಿ,> 5, <10 ಅಥವಾ = 324 ಬಳಸಿ. ಶ್ರೇಣಿಗಳಿಗಾಗಿ, 5:10 ಬಳಸಿ (5 ಮತ್ತು 10 ರ ನಡುವಿನ ಮೌಲ್ಯಗಳಿಗೆ)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,ಕಸ್ಟಮೈಸ್ ಮಾಡಿ ...
DocType: Print Format,Align Labels to the Right,ಬಲಕ್ಕೆ ಲೇಬಲ್ಗಳನ್ನು ಒಗ್ಗೂಡಿಸಿ
DocType: Assignment Rule,Disabled,ಅಂಗವಿಕಲ
@@ -1241,8 +1253,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,ಕೀಬೋರ್ಡ್ ಶಾರ್ಟ್ಕಟ್ಗಳು
DocType: Post,Comments,ಪ್ರತಿಕ್ರಿಯೆಗಳು
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,ದೃಢೀಕರಿಸಿ
+DocType: Event Sync Log,Update Type,ನವೀಕರಣ ಪ್ರಕಾರ
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,ದೃ ating ೀಕರಿಸಲಾಗುತ್ತಿದೆ ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,ಎಲ್ಲವನ್ನೂ ಸಂಕುಚಿಸಿ
+DocType: Event Producer,Last Update,ಕೊನೆಯ ನವೀಕರಣ
apps/frappe/frappe/www/login.html,Forgot Password?,ಪಾಸ್ವರ್ಡ್ ಮರೆತಿರಾ?
DocType: System Settings,yyyy-mm-dd,YYYY -MM-DD
apps/frappe/frappe/desk/report/todo/todo.py,ID,ಐಡಿ
@@ -1282,6 +1296,7 @@ DocType: LDAP Settings,Password for Base DN,ಮೂಲ DN ಪಾಸ್ವರ್
apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,ಟೇಬಲ್ ಫೀಲ್ಡ್
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,ಕಾಲಮ್ಗಳು ಆಧರಿಸಿ
DocType: Workflow State,move,ಮೂವ್
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,ಪ್ರಸ್ತುತ ಸೈಟ್ಗಾಗಿ ಈವೆಂಟ್ ಗ್ರಾಹಕ ಅಥವಾ ಈವೆಂಟ್ ಗ್ರಾಹಕರನ್ನು ರಚಿಸಲು ವಿಫಲವಾಗಿದೆ ಈಗಾಗಲೇ ನೋಂದಾಯಿಸಲಾಗಿದೆ.
apps/frappe/frappe/model/document.py,Action Failed,ಕ್ರಿಯೆ ವಿಫಲವಾಗಿದೆ
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,ಬಳಕೆದಾರ
DocType: View Log,View log,ಲಾಗ್ ವೀಕ್ಷಿಸಿ
@@ -1440,6 +1455,7 @@ DocType: DefaultValue,Key,ಕೀಲಿಕೈ
DocType: Address,Contacts,ಸಂಪರ್ಕಗಳು
DocType: System Settings,Setup Complete,ಸೆಟಪ್ ಕಂಪ್ಲೀಟ್
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,ಎಲ್ಲಾ ಡಾಕ್ಯುಮೆಂಟ್ ಷೇರುಗಳ ವರದಿ
+DocType: Event Consumer,Callback URL,ಕಾಲ್ಬ್ಯಾಕ್ URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","ಆಮದು ಟೆಂಪ್ಲೇಟ್ .csv, .xlsx ಅಥವಾ .xls ಪ್ರಕಾರವಾಗಿರಬೇಕು"
apps/frappe/frappe/www/update-password.html,New Password,ಹೊಸ ಪಾಸ್ವರ್ಡ್
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ಫಿಲ್ಟರ್ {0} ಕಾಣೆಯಾಗಿದೆ
@@ -1506,7 +1522,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ಯ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; ಸ್ಥಿತಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ
DocType: Async Task,Async Task,Async ಟಾಸ್ಕ್
DocType: Workflow State,picture,ಚಿತ್ರ
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ಕಂಪ್ಲೀಟ್
+DocType: Scheduled Job Log,Complete,ಕಂಪ್ಲೀಟ್
DocType: DocType,Image Field,ಚಿತ್ರ ಫೀಲ್ಡ್
DocType: Print Format,Custom HTML Help,ಕಸ್ಟಮ್ HTML ಸಹಾಯ
DocType: LDAP Settings,Default Role on Creation,ಸೃಷ್ಟಿಯಲ್ಲಿ ಡೀಫಾಲ್ಟ್ ಪಾತ್ರ
@@ -1531,6 +1547,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ಹುಡುಕಾಟ ಸಹಾಯ
DocType: Milestone,Milestone Tracker,ಮೈಲಿಗಲ್ಲು ಟ್ರ್ಯಾಕರ್
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ನೋಂದಾಯಿತ ಆದರೆ ಅಂಗವಿಕಲ
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,ವಿಳಾಸವನ್ನು ಕಂಪನಿಗೆ ಲಿಂಕ್ ಮಾಡಬೇಕಾಗಿದೆ. ಕೆಳಗಿನ ಲಿಂಕ್ಗಳ ಕೋಷ್ಟಕದಲ್ಲಿ ಕಂಪನಿಗೆ ಒಂದು ಸಾಲನ್ನು ಸೇರಿಸಿ.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ಈ ಡಾಕ್ಯುಮೆಂಟ್ಗಾಗಿ ಸ್ವಯಂ ಪುನರಾವರ್ತನೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ.
DocType: DocType,Hide Copy,ನಕಲಿಸಿ ಮರೆಮಾಡಿ
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ಎಲ್ಲಾ ಪಾತ್ರಗಳನ್ನು ತೆರವುಗೊಳಿಸಿ
@@ -1568,13 +1585,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print
DocType: Bulk Update,Field,ಫೀಲ್ಡ್
DocType: Communication,Received,ಸ್ವೀಕರಿಸಲಾಗಿದೆ
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update", ಮುಂತಾದ ಮಾನ್ಯ ವಿಧಾನಗಳನ್ನು ಟ್ರಿಗ್ಗರ್ (DOCTYPE ಆಯ್ಕೆ ಅವಲಂಬಿಸಿರುತ್ತದೆ)"
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},ಇಮೇಲ್ ಖಾತೆ ಸೆಟಪ್ ದಯವಿಟ್ಟು ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನಮೂದಿಸಿ: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,ಕನಿಷ್ಠ ಒಂದು ವ್ಯವಸ್ಥೆಯ ಮ್ಯಾನೇಜರ್ ಇರಲೇಬೇಕಾಗಿರುವುದರಿಂದ ಈ ಬಳಕೆದಾರರಿಗೆ ಸಿಸ್ಟಮ್ ಮ್ಯಾನೇಜರ್ ಸೇರಿಸುವ
DocType: Chat Message,URLs,URL ಗಳು
DocType: Data Migration Run,Total Pages,ಒಟ್ಟು ಪುಟಗಳು
DocType: DocField,Attach Image,ಚಿತ್ರ ಲಗತ್ತಿಸಿ
DocType: Workflow State,list-alt,ಪಟ್ಟಿ ವಯಸ್ಸಿನ
apps/frappe/frappe/www/update-password.html,Password Updated,ಪಾಸ್ವರ್ಡ್ Updated
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ಸೆಟಪ್> ಬಳಕೆದಾರರ ಅನುಮತಿಗಳು
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ನಿಮ್ಮ ಲಾಗಿನ್ ಅನ್ನು ಪರಿಶೀಲಿಸಲು ಕ್ರಮಗಳು
apps/frappe/frappe/utils/password.py,Password not found,ಪಾಸ್ವರ್ಡ್ ಕಂಡುಬಂದಿಲ್ಲ
DocType: Webhook,Webhook Secret,ವೆಬ್ಹುಕ್ ರಹಸ್ಯ
@@ -1590,8 +1607,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API ಸೆ
DocType: Report,Query Report,ಪ್ರಶ್ನೆಯ ವರದಿ
DocType: User,Set New Password,ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸುವಿಕೆ
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} ಗೆ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% ಒಂದು ಮಾನ್ಯ ವರದಿ ರೂಪದಲ್ಲಿ ಅಲ್ಲ. ವಿನ್ಯಾಸವನ್ನು ಅನುಸರಿಸಿ% s ಒಂದು \ ಮಾಡಬೇಕು ವರದಿ
DocType: Chat Message,Chat,ಚಾಟಿಂಗ್
DocType: LDAP Group Mapping,LDAP Group Mapping,ಎಲ್ಡಿಎಪಿ ಗ್ರೂಪ್ ಮ್ಯಾಪಿಂಗ್
DocType: Dashboard Chart,Chart Options,ಚಾರ್ಟ್ ಆಯ್ಕೆಗಳು
@@ -1626,7 +1641,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ನಿಮ
DocType: Dropbox Settings,Dropbox Access Secret,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಪ್ರವೇಶ ಸೀಕ್ರೆಟ್
DocType: Tag Link,Document Title,ಡಾಕ್ಯುಮೆಂಟ್ ಶೀರ್ಷಿಕೆ
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ಕಡ್ಡಾಯ)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳು) ಹಿಂದೆ
DocType: Social Login Key,Social Login Provider,ಸಮಾಜ ಲಾಗಿನ್ ಒದಗಿಸುವವರು
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,ಮತ್ತೊಂದು ಕಾಮೆಂಟ್ ಸೇರಿಸಿ
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ಫೈಲ್ನಲ್ಲಿ ಯಾವುದೇ ಡೇಟಾ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಹೊಸ ಫೈಲ್ ಅನ್ನು ಡೇಟಾದೊಂದಿಗೆ ಮರುಹೊಂದಿಸಿ.
@@ -1672,6 +1686,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","ಆಯ
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ವರ್ಷ
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,ಶಾಶ್ವತವಾಗಿ {0} ಅಳಿಸಿ ?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,ಅದೇ ಕಡತ ಈಗಾಗಲೇ ದಾಖಲೆ ಜೋಡಿಸಲಾದ ಮಾಡಲಾಗಿದೆ
+DocType: Event Sync Log,Synced,ಸಿಂಕ್ ಮಾಡಲಾಗಿದೆ
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ಮಾನ್ಯ ವರ್ಕ್ಫ್ಲೋ ರಾಜ್ಯವಲ್ಲ. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಕೆಲಸದ ಹರಿವನ್ನು ನವೀಕರಿಸಿ ಮತ್ತು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} ಅಂಕಗಳನ್ನು ನೀಡಿದರು
DocType: Workflow State,wrench,ಬಲಾತ್ಕಾರವಾಗಿ
@@ -1768,6 +1783,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,ಗರಿಷ್ಠ ಉದ್ದ
DocType: Print Format,Jinja,ಜಿಂಜಾ
DocType: Workflow State,map-marker,ನಕ್ಷೆ ಮಾರ್ಕರ್
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,ಎರಡು ಡಾಕ್ಟೈಪ್ಗಳ ನಡುವಿನ ಮ್ಯಾಪಿಂಗ್ ಸಂರಚನೆ.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ಸಮಸ್ಯೆಯನ್ನು ಸಲ್ಲಿಸಿ
DocType: Event,Repeat this Event,ಈ ಈವೆಂಟ್ ಪುನರಾವರ್ತನೆಯಾಗುವುದಿಲ್ಲ
DocType: Address,Maintenance User,ನಿರ್ವಹಣೆ ಬಳಕೆದಾರ
@@ -1825,6 +1841,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,ಟೆಸ್ಟ್ ಇಮೇಲ್ ವಿಳಾಸ
DocType: Auto Repeat,Reference Document Type,ರೆಫರೆನ್ಸ್ ಡಾಕ್ಯುಮೆಂಟ್ ಕೌಟುಂಬಿಕತೆ
DocType: ToDo,Sender,ಪ್ರೇಷಕ
+DocType: Event Consumer,Incoming Change,ಒಳಬರುವ ಬದಲಾವಣೆ
DocType: Google Drive,Backup Folder Name,ಬ್ಯಾಕಪ್ ಫೋಲ್ಡರ್ ಹೆಸರು
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,ಅಧಿಸೂಚನೆ {0} ಮೌಲ್ಯಮಾಪನ ಮಾಡುವಾಗ ದೋಷ. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಟೆಂಪ್ಲೇಟ್ ಅನ್ನು ಸರಿಪಡಿಸಿ.
DocType: GSuite Settings,Google Apps Script,Google Apps ಸ್ಕ್ರಿಪ್ಟ್
@@ -1885,9 +1902,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,ಹೊ
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,ವಿನಂತಿಯನ್ನು ಅನುಮೋದಿಸಲು ಕೆಳಗಿನ ಲಿಂಕ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ
DocType: Workflow State,align-left,ಎಡಕ್ಕೆ
DocType: Onboarding Slide,Action Settings,ಕ್ರಿಯೆಯ ಸೆಟ್ಟಿಂಗ್ಗಳು
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ
DocType: User,Defaults,ಡಿಫಾಲ್ಟ್
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ಹೋಲಿಕೆಗಾಗಿ,> 5, <10 ಅಥವಾ = 324 ಬಳಸಿ. ಶ್ರೇಣಿಗಳಿಗಾಗಿ, 5:10 ಬಳಸಿ (5 ಮತ್ತು 10 ರ ನಡುವಿನ ಮೌಲ್ಯಗಳಿಗೆ)."
DocType: Energy Point Log,Revert Of,ಹಿಂತಿರುಗಿಸಿ
+DocType: Document Type Mapping,Field Mapping,ಫೀಲ್ಡ್ ಮ್ಯಾಪಿಂಗ್
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ವಿಲೀನಗೊಳ್ಳಲು
DocType: User,Birth Date,ಜನನ ದಿನಾಂಕ
DocType: Communication Link,Link Title,ಲಿಂಕ್ ಶೀರ್ಷಿಕೆ
@@ -1915,6 +1933,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,ಟ್ಯಾಗ್ ಲಿಂಕ್
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,ಸರಣಿ ಸಮಗ್ರತೆ
DocType: Data Export,CSV,ಜಿನ್ಯೂಮರಿಕ್ CSV
+DocType: Event Consumer,In Test,ಟೆಸ್ಟ್ನಲ್ಲಿ
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 ಕರೆನ್ಸಿ = [?] ಉದಾ 1 ಯುಎಸ್ ಫ್ರ್ಯಾಕ್ಷನ್
= 100 ಸೆಂಟ್"
@@ -1925,6 +1944,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,ಎಲ್ಡಿಎಪಿ ಗ್ರೂಪ್ ಮ್ಯಾಪಿಂಗ್ಸ್
DocType: Chat Message Attachment,Chat Message Attachment,ಚಾಟ್ ಸಂದೇಶ ಲಗತ್ತು
DocType: LDAP Settings,Path to CA Certs File,ಸಿಎ ಸೆರ್ಟ್ಸ್ ಫೈಲ್ಗೆ ದಾರಿ
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,ನಿರ್ಮಾಪಕ ಮತ್ತು ಗ್ರಾಹಕರ ಕೊನೆಯಲ್ಲಿ ಡಾಕ್ಯುಮೆಂಟ್ ವಿಭಿನ್ನ ಕ್ಷೇತ್ರದ ಹೆಸರುಗಳನ್ನು ಹೊಂದಿದ್ದರೆ ಇದನ್ನು ಪರಿಶೀಲಿಸಿ ಮತ್ತು ಮ್ಯಾಪಿಂಗ್ ಅನ್ನು ಹೊಂದಿಸಿ
DocType: Address,Manipur,ಮಣಿಪುರ
DocType: Web Form Field,Allow Read On All Link Options,ಎಲ್ಲಾ ಲಿಂಕ್ ಆಯ್ಕೆಗಳ ಮೇಲೆ ಓದಿ ಅನುಮತಿಸಿ
DocType: DocType,Database Engine,ಡೇಟಾಬೇಸ್ ಎಂಜಿನ್
@@ -2058,6 +2078,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,ನೋಡು
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,ದೋಷ ವರದಿ
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / Excel ಸ್ವರೂಪದಲ್ಲಿ ಡೇಟಾವನ್ನು ರಫ್ತು ಮಾಡಿ.
+DocType: Document Type Field Mapping,Document Type Field Mapping,ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ ಫೀಲ್ಡ್ ಮ್ಯಾಪಿಂಗ್
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,ಜಾಗತಿಕ ಹುಡುಕಾಟ ದಾಖಲೆಗಳನ್ನು ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,ನೀವು ಬಳಸಬಹುದಾದ ದೃಢೀಕರಣದ ಅಪ್ಲಿಕೇಶನ್ಗಳು:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ಮತ್ತೊಂದು ಹೆಸರನ್ನು ಆಯ್ಕೆ ಮಾಡಿ
@@ -2133,7 +2154,6 @@ DocType: Workflow State,Upload,ಅಪ್ಲೋಡ್
DocType: User Permission,Advanced Control,ಸುಧಾರಿತ ನಿಯಂತ್ರಣ
DocType: System Settings,Date Format,ದಿನಾಂಕ ಸ್ವರೂಪ
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ಪ್ರಕಟಿಸಲಾಗಿಲ್ಲ
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಪ್ರಿಂಟಿಂಗ್ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್> ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್ನಿಂದ ಹೊಸದನ್ನು ರಚಿಸಿ.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","ಕೆಲಸದೊತ್ತಡದ ಕ್ರಿಯೆಗಳು ( ಇ ಜಿ ಅನುಮೋದಿಸಿ , ರದ್ದು ) ."
DocType: Data Import,Skip rows with errors,ದೋಷಗಳನ್ನು ಹೊಂದಿರುವ ಸಾಲುಗಳನ್ನು ಬಿಟ್ಟುಬಿಡಿ
DocType: Workflow State,flag,ಧ್ವಜ
@@ -2197,6 +2217,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ರಾಜ್ಯದ ಬದಲಾಯಿಸಲು ನಿಗದಿಪಡಿಸಲಾಗಿದೆ ಒಂದು ದಸ್ತಾವೇಜು ಪಾತ್ರದಲ್ಲಿ ಅವಕಾಶ ರಾಜ್ಯಗಳಲ್ಲಿ ಪ್ರತಿನಿಧಿಸುತ್ತದೆ.
DocType: Data Migration Connector,Database Name,ಡೇಟಾಬೇಸ್ ಹೆಸರು
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ರಿಫ್ರೆಶ್ ಫಾರ್ಮ್
+DocType: Event Producer,Event Producer,ಈವೆಂಟ್ ನಿರ್ಮಾಪಕ
DocType: DocField,Select,ಆರಿಸು
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,ಪೂರ್ಣ ಲಾಗ್ ವೀಕ್ಷಿಸಿ
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","ಸರಳ ಪೈಥಾನ್ ಅಭಿವ್ಯಕ್ತಿ, ಉದಾಹರಣೆ: ಸ್ಥಿತಿ == 'ತೆರೆಯಿರಿ' ಮತ್ತು == 'ದೋಷ' ಎಂದು ಟೈಪ್ ಮಾಡಿ"
@@ -2312,6 +2333,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ಲಾಗಿ
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ಮಾಡಲು ಸೇರಿಸಿ
DocType: Footer Item,Company,ಕಂಪನಿ
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ಸರಾಸರಿ {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,ಯಶಸ್ವಿ ವಹಿವಾಟುಗಳು
DocType: Scheduled Job Log,Scheduled,ಪರಿಶಿಷ್ಟ
DocType: User,Logout from all devices while changing Password,ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸುವಾಗ ಎಲ್ಲಾ ಸಾಧನಗಳಿಂದ ನಿರ್ಗಮಿಸಿ
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,ಪಾಸ್ವರ್ಡ್ ಪರಿಶೀಲಿಸಿ
@@ -2422,6 +2444,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,ತಿಂಗ
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: ಸೇರಿಸಿ Reference: {{ reference_doctype }} {{ reference_name }} ಕಳುಹಿಸಲು ಡಾಕ್ಯುಮೆಂಟ್ ಉಲ್ಲೇಖ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,ಡಾಕ್ಯುಮೆಂಟ್ನಲ್ಲಿ ಭಾಗಿಯಾಗಿರುವ ಬಳಕೆದಾರರನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡಲಾಗಿದೆ
DocType: DocField,Fetch From,ನಿಂದ ಪಡೆಯಿರಿ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ಸೆಟಪ್> ಫಾರ್ಮ್ ಅನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ
apps/frappe/frappe/modules/utils.py,App not found,ಅಪ್ಲಿಕೇಶನ್ ಕಂಡುಬಂದಿಲ್ಲ
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},ಅಲ್ಲ ರಚಿಸಬಹುದು {0} ಮಗುವಿನ ಡಾಕ್ಯುಮೆಂಟ್ ವಿರುದ್ಧ: {1}
DocType: Social Login Key,Social Login Key,ಸಾಮಾಜಿಕ ಲಾಗಿನ್ ಕೀ
@@ -2432,7 +2455,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,ಸಂ
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,ಸಾಮಾಜಿಕ ಮನೆ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},ಎಂದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ನಂತರ ಸೇರಿಸಲು {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,ಹಂಚಿಕೊಳ್ಳಿ {0} ಜೊತೆ
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ಇಮೇಲ್ ಖಾತೆ ಸೆಟಪ್ ಮಾಡಿ ನಿಮ್ಮ ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ:
DocType: Workflow State,hand-up,ಕೈ ಅಪ್
DocType: Blog Settings,Writers Introduction,ರೈಟರ್ಸ್ ಪರಿಚಯ
DocType: Address,Phone,ದೂರವಾಣಿ
@@ -2490,7 +2512,7 @@ DocType: Web Page,Insert Style,ಶೈಲಿ ಸೇರಿಸಿ
DocType: Prepared Report,Error Message,ತಪ್ಪು ಸಂದೇಶ
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,ಹೊಸ ವರದಿ ಹೆಸರು
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,ವಾರಾಂತ್ಯಗಳನ್ನು ಮರೆಮಾಡಿ
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,ಮರುಕಳಿಸುವ ದಾಖಲೆಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಉತ್ಪಾದಿಸುತ್ತದೆ.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,ಮರುಕಳಿಸುವ ದಾಖಲೆಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಉತ್ಪಾದಿಸುತ್ತದೆ.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ಈಸ್
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,ಮಾಹಿತಿಯನ್ನು - ಚಿಹ್ನೆ
@@ -2498,7 +2520,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,ಫಾ
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ಹೇಗೆ ಈ ಕರೆನ್ಸಿ ಫಾರ್ಮಾಟ್ ಮಾಡಬೇಕು ? ಸೆಟ್ ಅಲ್ಲ, ವ್ಯವಸ್ಥೆಯನ್ನು ಪೂರ್ವನಿಯೋಜಿತಗಳನ್ನು ಬಳಸುತ್ತದೆ"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} ದಾಖಲೆಗಳನ್ನು ಸಲ್ಲಿಸಿ?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ನೀವು ಲಾಗ್ ಇನ್ ಮತ್ತು ಬ್ಯಾಕ್ಅಪ್ ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತದೆ ವ್ಯವಸ್ಥೆ ಮ್ಯಾನೇಜರ್ ಪಾತ್ರ ಅಗತ್ಯವಿದೆ .
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ...
ಕಚ್ಚಾ ಮುದ್ರಣ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ನೀವು QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸ್ಥಾಪಿಸಿ ಚಾಲನೆಯಲ್ಲಿರಬೇಕು.
QZ ಟ್ರೇ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಮತ್ತು ಸ್ಥಾಪಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ .
ಕಚ್ಚಾ ಮುದ್ರಣದ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿದುಕೊಳ್ಳಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,ಪ್ರಿಂಟರ್ ಮ್ಯಾಪಿಂಗ್
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,ಲಗತ್ತಿಸುತ್ತಿದ್ದೇನೆ ಮೊದಲು ಉಳಿಸಲು ದಯವಿಟ್ಟು.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ಎಲ್ಲಾ ಲಿಂಕ್ ಮಾಡಿದ ದಾಖಲೆಗಳನ್ನು ರದ್ದುಗೊಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ?
@@ -2527,6 +2548,7 @@ DocType: Role Permission for Page and Report,Set Role For,ಫಾರ್ ಹೊ
DocType: GCalendar Account,The name that will appear in Google Calendar,Google ಕ್ಯಾಲೆಂಡರ್ನಲ್ಲಿ ಗೋಚರಿಸುವ ಹೆಸರು
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} ಜೊತೆ ನೇರ ಕೊಠಡಿ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,ರಿಫ್ರೆಶ್ ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},ಡ್ಯಾಶ್ಬೋರ್ಡ್ ಚಾರ್ಟ್ಗಾಗಿ ಹೊಂದಿಸಲಾದ ಫಿಲ್ಟರ್ ಮೌಲ್ಯಗಳನ್ನು ದಯವಿಟ್ಟು ಪರಿಶೀಲಿಸಿ: {}
DocType: Event,Starts on,ರಂದು ಪ್ರಾರಂಭವಾಗುತ್ತದೆ
DocType: System Settings,System Settings,ಸಿಸ್ಟಂ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು
DocType: GCalendar Settings,Google API Credentials,ಗೂಗಲ್ API ರುಜುವಾತುಗಳು
@@ -2552,6 +2574,7 @@ DocType: Workflow State,ok-sign,ಸರಿ ಚಿಹ್ನೆ
apps/frappe/frappe/config/settings.py,Deleted Documents,ಅಳಿಸಲಾಗಿದೆ ಡಾಕ್ಯುಮೆಂಟ್ಸ್
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ಸ್ವರೂಪವು ಕೇಸ್ ಸೆನ್ಸಿಟಿವ್ ಆಗಿದೆ
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ಡೆಸ್ಕ್ಟಾಪ್ ಐಕಾನ್ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ
+DocType: Event Consumer Document Type,Approval Status,ಅನುಮೋದನೆ ಸ್ಥಿತಿ
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,ಎಲ್ಲಾ ಡೊಮೇನ್ಗಳಲ್ಲಿ ಸ್ಲೈಡ್ಗಳು ಏನನ್ನು ತೋರಿಸಬೇಕು ಎಂಬುದನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸಿ. ಯಾವುದನ್ನೂ ನಿರ್ದಿಷ್ಟಪಡಿಸದಿದ್ದರೆ ಸ್ಲೈಡ್ ಅನ್ನು ಎಲ್ಲಾ ಡೊಮೇನ್ಗಳಲ್ಲಿ ಪೂರ್ವನಿಯೋಜಿತವಾಗಿ ತೋರಿಸಲಾಗುತ್ತದೆ.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ನಕಲು
DocType: Newsletter,Create and Send Newsletters,ರಚಿಸಿ ಮತ್ತು ಕಳುಹಿಸಿ ಸುದ್ದಿಪತ್ರಗಳು
@@ -2570,6 +2593,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,ಲೇಖನಗಳು ಸಹಾಯ
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ಟೈಪ್:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,ನಿಮ್ಮ ಪಾವತಿ ವಿಫಲವಾಗಿದೆ.
+DocType: Event Producer,Producer URL,ನಿರ್ಮಾಪಕ URL
DocType: Comment,Unshared,ಹಂಚಿಕೊಳ್ಳದ
DocType: Address,Karnataka,ಕರ್ನಾಟಕ
apps/frappe/frappe/desk/moduleview.py,Module Not Found,ಮಾಡ್ಯೂಲ್ ಕಂಡುಬಂದಿಲ್ಲ
@@ -2581,6 +2605,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,ನಿಯೋಜನೆ ಪೂರ್ಣಗೊಂಡಿದೆ
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},ದೊಡ್ಡ ಸಂಪಾದಿಸಿ {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ವರದಿ ಡೌನ್ಲೋಡ್ ಮಾಡಿ
+apps/frappe/frappe/model/workflow.py,Workflow Status,ಕೆಲಸದ ಹರಿವಿನ ಸ್ಥಿತಿ
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,ಸಕ್ರಿಯವಾಗಿಲ್ಲ
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,ಡ್ಯಾಶ್ಬೋರ್ಡ್ ಚಾರ್ಟ್ ಮೂಲಗಳನ್ನು ರಚಿಸಲು ನಿರ್ವಾಹಕರಿಗೆ ಮಾತ್ರ ಅನುಮತಿಸಲಾಗಿದೆ
DocType: About Us Settings,Settings for the About Us Page,ನಮ್ಮ ಬಗ್ಗೆ ಪುಟ ಸೆಟ್ಟಿಂಗ್ಗಳು
@@ -2639,6 +2664,7 @@ DocType: User Social Login,User Social Login,ಬಳಕೆದಾರ ಸಮಾಜ
DocType: Contact,All,ಎಲ್ಲಾ
DocType: Email Queue,Recipient,ಗ್ರಾಹಿ
DocType: Webhook,Webhook Security,ವೆಬ್ಹುಕ್ ಭದ್ರತೆ
+DocType: Event Sync Log,Producer Document Name,ನಿರ್ಮಾಪಕ ಡಾಕ್ಯುಮೆಂಟ್ ಹೆಸರು
DocType: Communication,Has Attachment,ಲಗತ್ತು ಹೊಂದಿದೆ
DocType: Address,Sales User,ಮಾರಾಟ ಬಳಕೆದಾರ
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ಎಳೆದು ಉಪಕರಣ ನಿರ್ಮಿಸಲು ಮತ್ತು ಮುದ್ರಣ ಸ್ವರೂಪಗಳು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು.
@@ -2673,6 +2699,7 @@ DocType: Address,Arunachal Pradesh,ಅರುಣಾಚಲ ಪ್ರದೇಶ
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,ಮಕ್ಕಳ ಕೋಷ್ಟಕಗಳನ್ನು ಇತರ ಡಾಕ್ಟೈಪ್ಗಳಲ್ಲಿ ಗ್ರಿಡ್ನಂತೆ ತೋರಿಸಲಾಗಿದೆ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,ಸೆಟಪ್ ಆಟೋ ಇಮೇಲ್
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + ಡೌನ್
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,ಈವೆಂಟ್ಗಳನ್ನು ಸೇವಿಸಲು ನೀವು ಚಂದಾದಾರರಾಗಲು ಬಯಸುವ ಸೈಟ್.
DocType: Chat Profile,Message Preview,ಸಂದೇಶ ಮುನ್ನೋಟ
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,ಈ ಒಂದು ಅಗ್ರ 10 ಸಾಮಾನ್ಯ ಗುಪ್ತಪದವನ್ನು.
DocType: User,User Defaults,ಬಳಕೆದಾರ ಪೂರ್ವನಿಯೋಜಿತಗಳು
@@ -2705,6 +2732,7 @@ DocType: Dashboard Chart,Last Synced On,ಕೊನೆಯ ಸಿಂಕ್ ಆನ
DocType: Comment,Comment Type,ಕಾಮೆಂಟ್ ಟೈಪ್
DocType: OAuth Client,OAuth Client,OAuth ಕ್ಲೈಂಟ್
DocType: Assignment Rule,Users,ಬಳಕೆದಾರರು
+DocType: Document Type Mapping,Local Document Type,ಸ್ಥಳೀಯ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ
DocType: Address,Odisha,ಒಡಿಶಾ
DocType: Report,Report Type,ವರದಿ ಪ್ರಕಾರ
DocType: DocField,Signature,ಸಹಿ
@@ -2747,6 +2775,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} ಸ್ವತಃ ಈ ಕಾರ್ಯವನ್ನು ನಿಯೋಜಿಸಲಾಗಿದೆ: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,ನಿನ್ನ ದೇಶ
DocType: Assignment Rule Day,Sunday,ಭಾನುವಾರ
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","ಗ್ರಾಹಕರನ್ನು ಹೊಂದಿರುವ ದಾಖಲೆಗಳಿಗಾಗಿ ಈವೆಂಟ್ ನಿರ್ಮಾಪಕ ಸೈಟ್ನಲ್ಲಿ ಎಲ್ಲಾ ಒಳಸೇರಿಸುವಿಕೆಗಳು, ನವೀಕರಣಗಳು ಮತ್ತು ಅಳಿಸುವಿಕೆಗಳ ಲಾಗ್ ಅನ್ನು ನಿರ್ವಹಿಸುತ್ತದೆ."
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,ಮಾನ್ಯತೆಗಳು
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,ಗ್ರಿಡ್ ವೀಕ್ಷಿಸಿ
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,ಹೆಚ್ಚಿನ ಚಟುವಟಿಕೆ ಇಲ್ಲ
@@ -2891,7 +2920,6 @@ DocType: Web Page,Sidebar and Comments,ಪಾರ್ಶ್ವಪಟ್ಟಿ ಮ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","ನೀವು ನಂತರ ರದ್ದು ಮತ್ತು ಅದನ್ನು ಉಳಿಸಲು ಡಾಕ್ಯುಮೆಂಟ್ ಮಾಡಿರಿ , ಇದು ಹೊಸ ಸಂಖ್ಯೆ ಸಿಗುತ್ತದೆ ಮಾಡಿದರು ಹಳೆಯ ಸಂಖ್ಯೆ ಒಂದು ಆವೃತ್ತಿಯಾಗಿದೆ."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಲಗತ್ತಿಸಲು ಅನುಮತಿಸಲಾಗಿಲ್ಲ, ಪ್ರಿಂಟ್ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ {0} ಮುದ್ರಣವನ್ನು ಅನುಮತಿಸಿ"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ. ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ದಯವಿಟ್ಟು ಹೊಸ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ರಚಿಸಿ
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},ಡಾಕ್ಯುಮೆಂಟ್ ನೋಡಿ {0}
DocType: Stripe Settings,Publishable Key,.ಪ್ರಕಟಿಸುವ ಕೀ
DocType: Stripe Settings,Publishable Key,.ಪ್ರಕಟಿಸುವ ಕೀ
@@ -2968,7 +2996,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,ಮಾಹಿತಿ
DocType: Custom Field,Permission Level,ಅನುಮತಿ ಮಟ್ಟ
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : ಬರೆಯಿರಿ ಇಲ್ಲದೆ ಮಾಡಿರಿ , ರದ್ದು , ಸಲ್ಲಿಸಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
DocType: List View Setting,Disable Count,ಎಣಿಕೆ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ
-DocType: Google Maps Settings,Client Key,ಕ್ಲೈಂಟ್ ಕೀ
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,ನೀವು ಬಾಂಧವ್ಯ ಅಳಿಸಲು ಬಯಸುತ್ತೀರೆ?
apps/frappe/frappe/__init__.py,Thank you,ಧನ್ಯವಾದಗಳು
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,ಉಳಿಸಲಾಗುತ್ತಿದೆ
@@ -3092,6 +3119,7 @@ DocType: Workflow Document State,Only Allow Edit For,ಮಾತ್ರ ಸಂಪ
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google ಡ್ರೈವ್ಗೆ ಬ್ಯಾಕಪ್ ಮಾಡಲಾಗುತ್ತಿದೆ.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},ಕಡ್ಡಾಯ: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ನಿಮ್ಮ ಹೆಸರು
+DocType: Event Producer Document Type,Event Producer Document Type,ಈವೆಂಟ್ ನಿರ್ಮಾಪಕ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,ಸಂಪರ್ಕದ ಯಶಸ್ಸು
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ಸ್ಲೈಡ್ ಪ್ರಕಾರದ ಆನ್ಬೋರ್ಡಿಂಗ್ ಸ್ಲೈಡ್ ಮುಂದುವರೆಯುವುದು ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ.
@@ -3162,6 +3190,7 @@ DocType: Address,Postal Code,ಅಂಚೆ ಕೋಡ್
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,relink ಸಂವಹನ
DocType: Translation,Contributed,ಕೊಡುಗೆ
apps/frappe/frappe/config/customization.py,Form Customization,ಫಾರ್ಮ್ ಗ್ರಾಹಕೀಕರಣ
+DocType: Event Update Log,Event Update Log,ಈವೆಂಟ್ ನವೀಕರಣ ಲಾಗ್
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ಯಾವುದೇ ಸಕ್ರಿಯ ಸೆಷನ್ಸ್ ಇಲ್ಲ
DocType: Web Form,Route to Success Link,ಯಶಸ್ಸಿನ ಲಿಂಕ್ಗೆ ಮಾರ್ಗ
DocType: Onboarding Slide Field,Right,ರೈಟ್
@@ -3187,7 +3216,7 @@ DocType: Website Settings,Chat Operators,ಚಾಟ್ ಆಪರೇಟರ್ಸ
DocType: S3 Backup Settings,ca-central-1,ca- ಕೇಂದ್ರ -1
DocType: Contact Us Settings,Pincode,ಪಿನ್ ಕೋಡ್
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,ಖಚಿತವಾಗಿ thatthere ಕಡತದಲ್ಲಿ ಯಾವುದೇ ಖಾಲಿ ಕಾಲಮ್ಗಳನ್ನು ಮಾಡಲು ದಯವಿಟ್ಟು .
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ಡಾಕ್ಯುಮೆಂಟ್ ಅನೇಕ ಹಂತಗಳಿಗೆ ಒಳಪಟ್ಟರೆ ಅದರ ಜೀವನಚಕ್ರದಲ್ಲಿ ಮೈಲಿಗಲ್ಲುಗಳನ್ನು ಪತ್ತೆ ಮಾಡುತ್ತದೆ.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ಡಾಕ್ಯುಮೆಂಟ್ ಅನೇಕ ಹಂತಗಳಿಗೆ ಒಳಪಟ್ಟರೆ ಅದರ ಜೀವನಚಕ್ರದಲ್ಲಿ ಮೈಲಿಗಲ್ಲುಗಳನ್ನು ಪತ್ತೆ ಮಾಡುತ್ತದೆ.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","ನಿಯಂತ್ರಕಗಳಲ್ಲಿ ಫೈಲ್ಗಳನ್ನು ಮರುಹೆಸರಿಸಲಾಗಿದೆ ಮತ್ತು ಕೋಡ್ ಅನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ, ದಯವಿಟ್ಟು ಪರಿಶೀಲಿಸಿ!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಹೊಂದಿದೆ ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ನೀವು ಈ ರೂಪದಲ್ಲಿ ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸಿಲ್ಲ.
@@ -3214,7 +3243,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API ಸೀಕ್ರೆಟ್ ಉಳಿಸಿ:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},ರದ್ದು ಡಾಕ್ಯುಮೆಂಟ್ ಲಿಂಕ್ ಸಾಧ್ಯವಿಲ್ಲ: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,ಪ್ರಮಾಣಿತ ವರದಿ ಸಂಪಾದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನಕಲು ಮತ್ತು ಹೊಸ ವರದಿ ರಚಿಸಿ
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","ನಿಮ್ಮ ಕಂಪನಿಗೆ ವಿಳಾಸ ಕಂಪನಿ, ಕಡ್ಡಾಯ"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","ಉದಾಹರಣೆಗೆ: ನೀವು ದಾಖಲೆ ID ಸೇರಿಸಲು ಬಯಸಿದರೆ, ಬಳಸಿ {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},ಆಯ್ಕೆ ಪಟ್ಟಿ ಕಾಲಮ್ಗಳು {0}
DocType: Custom Field,Options Help,ಆಯ್ಕೆಗಳು ಸಹಾಯ
@@ -3222,7 +3250,6 @@ DocType: Footer Item,Group Label,ಗ್ರೂಪ್ ಲೇಬಲ್
DocType: Kanban Board,Kanban Board,ಕನ್ಬನ್ ಬೋರ್ಡ್
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google ಸಂಪರ್ಕಗಳನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿದೆ.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 ದಾಖಲೆಯನ್ನು ರಫ್ತು ಮಾಡಲಾಗುತ್ತದೆ
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ಬಳಕೆದಾರರೊಂದಿಗೆ ಯಾವುದೇ ಇಮೇಲ್ ಖಾತೆ ಸಂಯೋಜಿತವಾಗಿಲ್ಲ. ದಯವಿಟ್ಟು ಬಳಕೆದಾರ> ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ ಅಡಿಯಲ್ಲಿ ಖಾತೆಯನ್ನು ಸೇರಿಸಿ.
DocType: DocField,Report Hide,ವರದಿ ಅಡಗಿಸು
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ಟ್ರೀ ವೀಕ್ಷಿಸಿ ಲಭ್ಯವಿಲ್ಲ {0}
DocType: DocType,Restrict To Domain,DOMAIN ನಿರ್ಬಂಧಿಸು
@@ -3286,7 +3313,9 @@ DocType: DocField,Fold,ಪಟ್ಟು
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಮುದ್ರಣ ರೂಪದಲ್ಲಿ ಅಪ್ಡೇಟ್ ಸಾಧ್ಯವಿಲ್ಲ
DocType: System Settings,In Days,ದಿನಗಳಲ್ಲಿ
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,ಮಿಸ್
+DocType: Event Producer Document Type,Has Mapping,ಮ್ಯಾಪಿಂಗ್ ಹೊಂದಿದೆ
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,ಸೂಚಿಸಲು ದಯವಿಟ್ಟು
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,ಅಮಾನ್ಯ ಫಿಲ್ಟರ್ ಮೌಲ್ಯ
DocType: Comment,Bot,ಬಾಟ್
DocType: Help Article,Help Article,ಲೇಖನ ಸಹಾಯ
DocType: Page,Page Name,ಪುಟ ಹೆಸರು
@@ -3392,7 +3421,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ಟಾಗಲ್ ಗ್ರಿಡ್ ವೀಕ್ಷಣೆ
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ಮುಂದಿನ ದಾಖಲೆಗೆ ಹೋಗಿ
-DocType: System Settings,Time Format,ಸಮಯ ಸ್ವರೂಪ
+DocType: Country,Time Format,ಸಮಯ ಸ್ವರೂಪ
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,ಅಮಾನ್ಯ ಪಾವತಿ ಗೇಟ್ವೇ ರುಜುವಾತುಗಳನ್ನು
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ಕೆಲವು ದೋಷಗಳನ್ನು ಹೊಂದಿರುವ ಸಾಲುಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರುವ ಟೆಂಪ್ಲೇಟ್ ಫೈಲ್ ಇದು. ನೀವು ತಿದ್ದುಪಡಿ ಮತ್ತು ಆಮದುಗಾಗಿ ಈ ಫೈಲ್ ಅನ್ನು ಬಳಸಬೇಕು.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ಡಾಕ್ಯುಮೆಂಟ್ ವಿಧಗಳು ಮತ್ತು ಪಾತ್ರಗಳು ಅನುಮತಿಗಳು
@@ -3721,6 +3750,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,ಬಳಕೆದಾರ ಹೆಸರನ್ನು ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್ ಅನ್ನು ಅನುಮತಿಸಿ
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,ವರದಿ ಸಕ್ರಿಯಗೊಳಿಸಿ
DocType: DocField,Display Depends On,ಪ್ರದರ್ಶನ ಅವಲಂಬಿಸಿರುತ್ತದೆ
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳು) ಹಿಂದೆ
DocType: Social Login Key,API Endpoint,API ಎಂಡ್ಪೋಯಿಂಟ್
DocType: Web Page,Insert Code,ಕೋಡ್ ಸೇರಿಸಿ
DocType: Data Migration Run,Current Mapping Type,ಪ್ರಸ್ತುತ ಮ್ಯಾಪಿಂಗ್ ಕೌಟುಂಬಿಕತೆ
@@ -3773,6 +3803,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ನ
apps/frappe/frappe/www/login.html,Or login with,ಅಥವಾ ಲಾಗಿನ್
DocType: Error Snapshot,Locals,ಸ್ಥಳೀಯರು
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ಮೂಲಕ ಸಂವಹನ {0} ನಲ್ಲಿ {1}: {2}
+DocType: Event Producer,Event Producer Document Types,ಈವೆಂಟ್ ನಿರ್ಮಾಪಕ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರಗಳು
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ಗುಂಪನ್ನು ಆಯ್ಕೆ ಮಾಡಿ ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ಉದಾ (55 + 434) / 4 ಅಥವಾ = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ಅಗತ್ಯವಿದೆ
@@ -3803,9 +3835,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,ಜಿಕಾಲೆಂಡರ್ ಸಿಂಕ್ ID
DocType: Prepared Report,Report Start Time,ಪ್ರಾರಂಭ ಸಮಯವನ್ನು ವರದಿ ಮಾಡಿ
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ಡೇಟಾವನ್ನು ರಫ್ತು ಮಾಡಿ
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,ಸಿಂಕ್ ವಿಫಲವಾದರೆ ಸಿಂಕ್ನ ಸ್ಥಿತಿ ಮತ್ತು ಮರುಸಂಗ್ರಹ ಬಟನ್ ಜೊತೆಗೆ ಸೇವಿಸುವ ಪ್ರತಿಯೊಂದು ಈವೆಂಟ್ನ ಲಾಗ್ ಅನ್ನು ನಿರ್ವಹಿಸುತ್ತದೆ.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,ಆಯ್ಕೆ ಅಂಕಣ
DocType: Translation,Source Text,ಮೂಲ ಪಠ್ಯ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,ಇದು ಹಿನ್ನೆಲೆ ವರದಿಯಾಗಿದೆ. ದಯವಿಟ್ಟು ಸೂಕ್ತವಾದ ಫಿಲ್ಟರ್ಗಳನ್ನು ಹೊಂದಿಸಿ ಮತ್ತು ನಂತರ ಹೊಸದನ್ನು ರಚಿಸಿ.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ. ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ದಯವಿಟ್ಟು ಹೊಸ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ರಚಿಸಿ
apps/frappe/frappe/www/login.py,Missing parameters for login,ಲಾಗಿನ್ ಮಿಸ್ಸಿಂಗ್ ನಿಯತಾಂಕಗಳನ್ನು
DocType: Workflow State,folder-open,ಫೋಲ್ಡರ್ ತೆರೆದ
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","ಸಲ್ಲಿಸಿದ ನಂತರ, ಸಲ್ಲಿಸಬಹುದಾದ ದಾಖಲೆಗಳನ್ನು ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ. ಅವುಗಳನ್ನು ರದ್ದುಗೊಳಿಸಬಹುದು ಮತ್ತು ತಿದ್ದುಪಡಿ ಮಾಡಬಹುದು."
@@ -3880,6 +3914,7 @@ DocType: Event,Send an email reminder in the morning,ಬೆಳಿಗ್ಗೆ
DocType: Blog Post,Published On,ರಂದು ಪ್ರಕಟವಾದ
DocType: Contact,Gender,ಲಿಂಗ
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,ಕಡ್ಡಾಯ ಮಾಹಿತಿ ಕಾಣೆಯಾಗಿದೆ:
+DocType: Event Consumer,Event Subscriber,ಈವೆಂಟ್ ಚಂದಾದಾರರು
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,ವಿನಂತಿ URL ಅನ್ನು ಪರಿಶೀಲಿಸಿ
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,ಕೇವಲ 200 ಒಳಸೇರಿಸಿದನು ಒಂದು ವಿನಂತಿಯನ್ನು ಅನುಮತಿ
DocType: Footer Item,URL,URL ಅನ್ನು
@@ -3892,6 +3927,7 @@ DocType: Auto Email Report,Half Yearly,ಅರ್ಧ ವಾರ್ಷಿಕ
DocType: Communication,Marked As Spam,ಸ್ಪ್ಯಾಮ್ ಎಂದು ಗುರುತಿಸಲಾಗಿದೆ
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ಕಡತ URL ನೊಂದಿಗೆ ಕೆಲವು ಸಮಸ್ಯೆಯಿದೆ: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,ಟ್ರೀ
+DocType: Event Producer Document Type,Use Same Name,ಒಂದೇ ಹೆಸರನ್ನು ಬಳಸಿ
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,ಈ ವರದಿಯಲ್ಲಿ ಮುದ್ರಿಸಲು ಅನುಮತಿ ಇಲ್ಲ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,ಬಳಕೆದಾರ ಅನುಮತಿಗಳು
DocType: Workflow State,warning-sign,ಎಚ್ಚರಿಕೆ ಚಿಹ್ನೆ
@@ -3901,6 +3937,7 @@ DocType: Workflow State,User,ಬಳಕೆದಾರ
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ಬ್ರೌಸರ್ ವಿಂಡೋದಲ್ಲಿ ಶೊ ಪ್ರಶಸ್ತಿಯನ್ನು "ಪೂರ್ವಪ್ರತ್ಯಯ - ಶೀರ್ಷಿಕೆ"
DocType: Payment Gateway,Gateway Settings,ಗೇಟ್ವೇ ಸೆಟ್ಟಿಂಗ್ಗಳು
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ದಾಖಲೆ ಪ್ರಕಾರ ಪಠ್ಯ
+DocType: Event Sync Log,Event Sync Log,ಈವೆಂಟ್ ಸಿಂಕ್ ಲಾಗ್
apps/frappe/frappe/handler.py,Logged Out,ಲಾಗ್ ಔಟ್
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,ಇನ್ನಷ್ಟು ...
DocType: System Settings,User can login using Email id or Mobile number,ಬಳಕೆದಾರ ಇಮೇಲ್ ಐಡಿ ಅಥವಾ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ಬಳಸಿಕೊಂಡು ಲಾಗಿನ್ ಮಾಡಬಹುದು
@@ -3941,12 +3978,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ಅಲ್ಲ
DocType: Workflow State,star,ನಕ್ಷತ್ರ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,ಹಬ್
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,ಇದನ್ನು ಪರಿಶೀಲಿಸಿದರೆ ಡಾಕ್ಯುಮೆಂಟ್ಗಳು ಈವೆಂಟ್ ನಿರ್ಮಾಪಕರ ಸೈಟ್ನಲ್ಲಿರುವ ಹೆಸರನ್ನು ಹೊಂದಿರುತ್ತವೆ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,ಬೇರ್ಪಡಿಸಲಾಗಿರುತ್ತದೆ ಮೌಲ್ಯಗಳನ್ನು
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},ಮಾದರಿ ಕರೆನ್ಸಿ ಮ್ಯಾಕ್ಸ್ ಅಗಲ ಸತತವಾಗಿ 100px {0}
apps/frappe/frappe/config/website.py,Content web page.,ವಿಷಯ ವೆಬ್ ಪುಟ .
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ಹೊಸ ಪಾತ್ರ ಸೇರಿಸಿ
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ವೆಬ್ ಪುಟಕ್ಕೆ ಭೇಟಿ ನೀಡಿ
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,ಹೊಸ ನಿಯೋಜನೆ
+DocType: Event Consumer Document Type,Approved,Approved
DocType: Google Contacts,Last Sync On,ಕೊನೆಯ ಸಿಂಕ್ ಆನ್
DocType: Deleted Document,Deleted Document,ಅಳಿಸಲಾಗಿದೆ ಡಾಕ್ಯುಮೆಂಟ್
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ಅಯ್ಯೋ! ಏನೋ ತಪ್ಪಾಗಿದೆ
@@ -3997,7 +4036,6 @@ DocType: Communication,Communication Type,ಸಂವಹನ ಕೌಟುಂಬಿ
DocType: DocField,Unique,ಅನನ್ಯ
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,ಭಾಗಶಃ ಯಶಸ್ಸು
DocType: Email Account,Service,ಸೇವೆ
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ
DocType: File,File Name,ಫೈಲ್ ಹೆಸರು
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ಫಾರ್ {0} ಕಾಣಲಿಲ್ಲ {0} ( {1} )
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ರೆಸ್: {0}
@@ -4009,11 +4047,10 @@ DocType: Calendar View,Calendar View,ಕ್ಯಾಲೆಂಡರ್ ವೀಕ್
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,ಸಂಪಾದಿಸಿ ಸ್ವರೂಪ
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,ಸಂಪೂರ್ಣ ನೋಂದಣಿ
DocType: GCalendar Settings,Enable,ಸಕ್ರಿಯಗೊಳಿಸಿ
-DocType: Google Maps Settings,Home Address,ಮನೆ ವಿಳಾಸ
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),ನೀವು ಕೇವಲ ಒಂದೇ 5000 ದಾಖಲೆಗಳನ್ನು ವರೆಗೆ ಅಪ್ಲೋಡ್ ಮಾಡಬಹುದು. (ಕೆಲವು ಸಂದರ್ಭಗಳಲ್ಲಿ ಕಡಿಮೆ ಇರಬಹುದು)
DocType: Report,"output in the form of `data = [columns, result]`","`ಡೇಟಾ = [ಕಾಲಮ್ಗಳು, ಫಲಿತಾಂಶ]` ರೂಪದಲ್ಲಿ output ಟ್ಪುಟ್"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ಅನ್ವಯವಾಗುವ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರಗಳು
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ಬಳಕೆದಾರರ ನಿಯೋಜನೆಗಳಿಗಾಗಿ ನಿಯಮಗಳನ್ನು ಹೊಂದಿಸಿ.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,ಬಳಕೆದಾರರ ನಿಯೋಜನೆಗಳಿಗಾಗಿ ನಿಯಮಗಳನ್ನು ಹೊಂದಿಸಿ.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},ಕೊರತೆ ಅನುಮತಿ {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},ಕೊರತೆ ಅನುಮತಿ {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),ಉಳಿಸಲಾಗಿಲ್ಲ ಎಂಬುದನ್ನು ವರದಿ ( ದೋಷಗಳನ್ನು ಇದ್ದವು )
diff --git a/frappe/translations/ko.csv b/frappe/translations/ko.csv
index 61c7dd96d8..80c6100b2f 100644
--- a/frappe/translations/ko.csv
+++ b/frappe/translations/ko.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,사용자에 대한이 역할은 업데이트 사용자 권한
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},이름 바꾸기 {0}
DocType: Workflow State,zoom-out,줌 아웃
-DocType: Data Import Beta,Import Options,가져 오기 옵션
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,해당 인스턴스가 열려있을 때 {0} 열 수 없습니다
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,테이블 {0} 비워 둘 수 없습니다
DocType: SMS Parameter,Parameter,매개변수
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,이 필드를 게시
DocType: GCalendar Settings,GCalendar Settings,GCalendar 설정
DocType: Email Group,Email Group,이메일 그룹
-apps/frappe/frappe/__init__.py,Only for {},{} 만
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Google 캘린더-Google 캘린더에서 이벤트 {0}을 (를) 삭제할 수 없습니다. 오류 코드 {1}.
DocType: Event,Pulled from Google Calendar,Google 캘린더에서 가져옴
DocType: Note,Seen By,볼
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,여러 항목 추
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,유효한 사용자 이미지가 아닙니다.
DocType: Energy Point Log,Reverted,되 돌린
DocType: Success Action,First Success Message,첫 번째 성공 메시지
+DocType: Document Type Mapping,Document Type Mapping,문서 유형 매핑
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,좋아하지
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},잘못된 값 : {0}이어야합니다 {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","변경 필드 속성 (숨김, 읽기 전용, 권한 등)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,이벤트를 소비하는 사이트입니다.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,고맙다
DocType: Notification Settings,Document Share,문서 공유
DocType: Workflow State,lock,"자물쇠를 채우다, ~을 잠그다"
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,기록
DocType: Workflow State,indent-right,들여 쓰기 오른쪽
DocType: Has Role,Has Role,역할을
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,재 동기화
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,서버에 QR 코드 이미지를 보관할 시간 (초). 최소 : 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0} : {2}의 필드 유형 {1}을 (를) 인덱싱 할 수 없습니다.
DocType: Dashboard Chart,Timespan,시간 범위
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,웹 링크
DocType: Deleted Document,Restored,복원
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ 트레이 응용 프로그램 연결 오류 ...
Raw Print 기능을 사용하려면 QZ Tray 응용 프로그램이 설치되어 실행 중이어야합니다.
QZ 트레이를 다운로드하여 설치하려면 여기를 클릭하십시오 .
Raw Printing에 대한 자세한 내용을 보려면 여기를 클릭하십시오 ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,분 전
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","외에도 시스템 관리자에서, 사용자 설정 권한과 역할은 그 권리를 문서 형식에 대한 다른 사용자의 권한을 설정할 수 있습니다."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,테마 구성
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,보이지 않는 것
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,파일 관리자
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML 헤더, 로봇 및 리디렉션"
DocType: GCalendar Account,Refresh Token,새로 고침 토큰
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Event Producer 사이트에 연결하지 못했습니다. 잠시 후 다시 시도하십시오.
DocType: Address,Goa,고아
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,이 사이트에 대해 보류 중이거나 현재 작업이 없습니다
DocType: Webhook,Doc Event,문서 이벤트
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,스크립트 관리자
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,활동 없음
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,제 3 자 앱
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,시스템 관리자가 될 것이다 첫 번째 사용자 (이 나중에 변경할 수 있습니다).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,보고서 필터를 변경해 볼 수 있습니다.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,오늘은 이벤트가 없습니다
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,자신에게 리뷰 포인트를 줄 수는 없습니다.
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType은 선택한 Doc 이벤트에 대해 제출 가능해야합니다.
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,당신은이 문서와 관련된 이메일을 보낼 수 없습니다
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,{0} 정렬 / 그룹이어야 한 열을 선택하세요
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0}에는 허용되지 않습니다 : {1}. 제한된 필드 : {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,연결되지 않은 회사
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,당신이 샌드 박스 API를 사용하여 결제를 테스트하는 경우이 옵션을 선택합니다
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,당신은 표준 웹 사이트 테마를 삭제할 수 없습니다
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},첫 번째 {0}을 (를) 작성하십시오
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0}을 (
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,슬라이드 순서가 동일한 온 보딩 슬라이드 {0} 이 (가) 이미 존재합니다
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,사용 안 함 보고서
DocType: Translation,Contributed Translation Doctype Name,제공된 번역 Doctype 이름
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,설정> 양식 사용자 정의
DocType: PayPal Settings,Redirect To,리디렉션
DocType: Data Migration Mapping,Pull,손잡이
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},자바 스크립트 형식 : frappe.query_reports [ 'REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,사용할 수 없음
DocType: DocShare,Internal record of document shares,문서 공유의 내부 기록
DocType: Energy Point Settings,Review Levels,레벨 검토
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,설정> 사용자 권한
DocType: Workflow State,Comment,코멘트
DocType: Data Migration Plan,Postprocess Method,후 처리 방법
DocType: DocType Action,Action Type,액션 타입
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,주
DocType: Workflow State,remove-circle,제거 - 원
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,내 프로필
DocType: Help Article,Beginner,초보자
+apps/frappe/frappe/__init__.py,This action is only allowed for {},이 작업은 {}에만 허용됩니다.
DocType: Contact,Is Primary Contact,기본 연락처는
+DocType: Event Consumer,Event Consumer,이벤트 소비자
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,자바 스크립트는 페이지의 헤드 부에 추가한다.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,추가 / 업데이트
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,아니 초안 문서를 인쇄 할 수
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,기본값으로 재설정
DocType: Workflow,Transition Rules,전환 규칙
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,미리보기에서 첫 번째 {0} 행만 표시
apps/frappe/frappe/core/doctype/report/report.js,Example:,예
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,제한 사항
DocType: Workflow,Defines workflow states and rules for a document.,문서 워크 플로우 상태와 규칙을 정의합니다.
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,까지 반복
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,신규
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,먼저 다음을 작성해야합니다.
-DocType: Google Maps Settings,Google Maps Settings,Google지도 설정
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,로딩 중...
DocType: DocField,Password,비밀번호
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,시스템이 업데이트되고있다. 잠시 후 다시 새로 고침하세요
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,온 보딩 슬라이드
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,유효하지 않은 비밀번호:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,유효하지 않은 비밀번호:
DocType: Print Settings,Send document web view link in email,이메일에 문서 웹보기 링크 보내기
+DocType: Event Consumer Document Type,Event Consumer Document Type,이벤트 소비자 문서 유형
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,이전
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,제목 : Re :
DocType: LDAP Settings,Require Trusted Certificate,신뢰할 수있는 인증서 필요
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,볼륨 다운
DocType: Onboarding Slide,Help Links,도움말 링크
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,이 IP 주소에서 액세스 할 수 없습니다
DocType: Notification Settings,Enable Email Notifications,이메일 알림 활성화
+DocType: Document Type Field Mapping,Event Streaming,이벤트 스트리밍
apps/frappe/frappe/desk/reportview.py,No Tags,태그가 없습니다
DocType: Email Account,Send Notification to,에 통지를 보내
DocType: DocField,Collapsible,접을 수있는
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,필
apps/frappe/frappe/database/database.py,No conditions provided,제공된 조건 없음
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y 축 필드
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,정렬 필드 {0} 유효한 필드 이름이어야합니다
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,기본 주소 템플릿이 없습니다. 설정> 인쇄 및 브랜딩> 주소 템플릿에서 새로 만드십시오.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,더
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,새 레코드 만들기
DocType: Contact,Sales Manager,영업 관리자
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,이름
DocType: Print Format,Format Data,형식 데이터
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0}은 (는) 유효한 보고서 형식이 아닙니다. 보고서 형식은 다음 {1} 중 하나 여야합니다.
DocType: List Filter,Filter Name,필터 이름
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,같은
DocType: Assignment Rule,Automation,오토메이션
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,암호 재설정 키
DocType: Dashboard Chart,All Time,모든 시간
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0}의 잘못된 문서 상태
DocType: Email Account,Enable Auto Reply,자동 응답 사용
+apps/frappe/frappe/desk/query_report.py,No data to export,내보낼 데이터가 없습니다.
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,보지
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,여러 프린터를 단일 인쇄 형식으로 매핑 할 수 없습니다.
DocType: Workflow State,zoom-in,확대에서
@@ -841,6 +851,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,사용자
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,먼저
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,번역 업데이트
DocType: Error Snapshot,Exception,예외
+DocType: Event Consumer,Event Consumer Document Types,이벤트 소비자 문서 유형
DocType: Email Account,Use IMAP,사용 IMAP
DocType: Activity Log,Activity Log,활동 로그
DocType: View Log,Viewed By,조회수
@@ -880,6 +891,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,트
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,차트 구성
DocType: User,Last IP,마지막 IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,이메일에 제목을 추가하십시오.
+apps/frappe/frappe/model/workflow.py,Errored Transactions,오류 거래
DocType: Data Migration Connector,Data Migration Connector,데이터 마이그레이션 커넥터
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0}이 (가) {1} (으)로 되돌아갔습니다.
DocType: Email Account,Track Email Status,이메일 상태 추적
@@ -911,6 +923,7 @@ DocType: Email Queue,Attachments,첨부
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,이 문서에 액세스 할 수있는 권한이 없습니다
DocType: Language,Language Name,언어 이름
DocType: Email Group Member,Email Group Member,그룹 회원에게 메일 보내기
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,사용자와 연결된 이메일 계정이 없습니다. 사용자> 이메일받은 편지함에 계정을 추가하십시오.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,귀하의 계정은 잠기고 {0} 초 후에 재개됩니다.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,사용자 권한은 사용자를 특정 레코드로 제한하는 데 사용됩니다.
DocType: Notification,Value Changed,값 변경
@@ -1003,6 +1016,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,거래 완료
DocType: Help Article,Expert,전문가
DocType: Workflow State,circle-arrow-right,원형 화살표 오른쪽
DocType: Role Profile,Role Profile,역할 프로필
+DocType: Document Type Mapping,Remote Document Type,원격 문서 유형
apps/frappe/frappe/permissions.py,Document Type is not importable,문서 유형을 가져올 수 없습니다.
DocType: LDAP Settings,LDAP Server Url,LDAP 서버 URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,그 {0}이 열려있을 때 인스턴스를 열 수 없습니다
@@ -1088,7 +1102,7 @@ DocType: Web Form,Allow Print,인쇄 허용
DocType: Communication,Clicked,클릭
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,팔로우 해제
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},에 대한 권한이 없습니다 '{0}'{1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},{1}에서 첫 번째 {0} 행만 표시
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,보낼 예정
DocType: DocType,Track Seen,트랙 신
DocType: Dropbox Settings,File Backup,파일 백업
@@ -1159,6 +1173,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,선
DocType: Data Export,Filter List,필터 목록
DocType: Data Export,Excel,뛰어나다
DocType: System Settings,HH:mm,HH : mm
+DocType: Event Sync Log,Event Configurations,이벤트 구성
DocType: Email Account,Auto Reply Message,자동 응답 메시지
DocType: Data Migration Mapping,Condition,조건
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} 시간 전
@@ -1218,9 +1233,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,항상 보
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,남기려면 로그인
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,이 라인 아래에 데이터를 입력 시작
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},에 대한 변경된 값 {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","이메일 ID는 고유해야하며, 이메일 계정은 이미 \ {0}"
DocType: Workflow State,retweet,리트 위트 (retweet)
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","비교하려면> 5, <10 또는 = 324를 사용하십시오. 범위의 경우 5:10을 사용하십시오 (5와 10 사이의 값)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,사용자 정의 ...
DocType: Print Format,Align Labels to the Right,레이블을 오른쪽 정렬
DocType: Assignment Rule,Disabled,사용 안함
@@ -1269,8 +1283,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,키보드 단축키
DocType: Post,Comments,비고
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,확인
+DocType: Event Sync Log,Update Type,업데이트 유형
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,인증 중 ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,모든 축소
+DocType: Event Producer,Last Update,마지막 업데이트
apps/frappe/frappe/www/login.html,Forgot Password?,비밀번호를 잊으 셨나요?
DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD
apps/frappe/frappe/desk/report/todo/todo.py,ID,신분증
@@ -1311,6 +1327,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,테이블
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,열을 기반으로
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{1}, {2}의 {0} 가져 오기"
DocType: Workflow State,move,움직임
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,현재 사이트에 대한 이벤트 소비자 또는 이벤트 소비자를 만들지 못했습니다. 이미 등록되었습니다.
apps/frappe/frappe/model/document.py,Action Failed,작업 실패
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,사용자에 대한
DocType: View Log,View log,로그보기
@@ -1474,6 +1491,7 @@ DocType: DefaultValue,Key,키
DocType: Address,Contacts,주소록
DocType: System Settings,Setup Complete,설치 완료
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,모든 문서 공유의 보고서
+DocType: Event Consumer,Callback URL,콜백 URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","가져 오기 템플릿은 .csv, .xlsx 또는 .xls 유형이어야합니다."
apps/frappe/frappe/www/update-password.html,New Password,새로운 비밀번호
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,필터 {0} 누락
@@ -1541,7 +1559,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,성
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; 조건에 허용되지 않음
DocType: Async Task,Async Task,비동기 작업
DocType: Workflow State,picture,사진
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,완전한
+DocType: Scheduled Job Log,Complete,완전한
DocType: DocType,Image Field,이미지 필드
DocType: Print Format,Custom HTML Help,사용자 정의 HTML 도움말
DocType: LDAP Settings,Default Role on Creation,창조의 기본 역할
@@ -1567,6 +1585,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,검색에 대한 도움말
DocType: Milestone,Milestone Tracker,마일스톤 트래커
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,등록하지만 비활성화
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,주소는 회사에 연결되어 있어야합니다. 아래 링크 테이블에서 회사 행을 추가하십시오.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,이 문서의 자동 반복 기능이 비활성화되었습니다.
DocType: DocType,Hide Copy,복사에게 숨기기
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,모든 역할을 취소합니다
@@ -1605,6 +1624,7 @@ DocType: Bulk Update,Field,들
DocType: Communication,Received,획득
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""before_insert", "after_update"등 같은 유효한 방법에 대한 트리거 (선택 doctype이에 따라 달라집니다)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0}의 값 변경 {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},이메일 계정 설정 : {0}의 비밀번호를 입력하십시오.
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,이상이어야 하나의 시스템 관리자가 있어야합니다으로이 사용하기 위해 시스템 관리자를 추가
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,총 페이지 수
@@ -1612,7 +1632,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,이미지 첨부
DocType: Workflow State,list-alt,목록 - 고도
apps/frappe/frappe/www/update-password.html,Password Updated,암호 업데이트
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,설정> 사용자 권한
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,로그인 확인 단계
apps/frappe/frappe/utils/password.py,Password not found,비밀 번호를 찾을 수 없습니다
DocType: Webhook,Webhook Secret,웹 후크 비밀
@@ -1628,8 +1647,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API 설정
DocType: Report,Query Report,쿼리 보고서
DocType: User,Set New Password,새 암호 설정
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}에는 사용할 수 없습니다 : {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% s는 유효한 보고서 형식이 아닙니다. 다음 % s의 중 하나를 \해야 보고서 형식
DocType: Chat Message,Chat,채팅
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},{0} 태그가있는 문서를 찾을 수 없습니다
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP 그룹 매핑
@@ -1665,7 +1682,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,암호를
DocType: Dropbox Settings,Dropbox Access Secret,보관 용 액세스 비밀
DocType: Tag Link,Document Title,문서 제목
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(필수)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} 년 전
DocType: Social Login Key,Social Login Provider,소셜 로그인 공급자
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,또 다른 코멘트를 추가
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,파일에서 데이터를 찾을 수 없습니다. 새 파일을 데이터로 다시 첨부하십시오.
@@ -1713,6 +1729,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","선택
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,일년
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,영구적으로 {0}을 삭제 하시겠습니까?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,동일한 파일이 이미 첨부되어 있습니다
+DocType: Event Sync Log,Synced,동기화
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0}은 (는) 유효한 워크 플로 상태가 아닙니다. 워크 플로를 업데이트하고 다시 시도하십시오.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,준 {0} 점
DocType: Workflow State,wrench,렌치
@@ -1815,6 +1832,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,최대 길이
DocType: Print Format,Jinja,진자
DocType: Workflow State,map-marker,지도 마커
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,두 doctype 간의 매핑 구성
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,문제 제출
DocType: Event,Repeat this Event,이 이벤트를 반복
DocType: Address,Maintenance User,유지 보수 사용자
@@ -1874,6 +1892,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,테스트 이메일 주소
DocType: Auto Repeat,Reference Document Type,참조 문서 유형
DocType: ToDo,Sender,보낸 사람
+DocType: Event Consumer,Incoming Change,들어오는 변화
DocType: Google Drive,Backup Folder Name,백업 폴더 이름
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,알림 {0}을 평가하는 동안 오류가 발생했습니다. 템플릿을 수정하십시오.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1936,9 +1955,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,새 인
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,요청을 승인하려면 아래 링크를 클릭하십시오.
DocType: Workflow State,align-left,정렬에서 왼쪽으로
DocType: Onboarding Slide,Action Settings,동작 설정
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,설정> 사용자
DocType: User,Defaults,기본값
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","비교하려면> 5, <10 또는 = 324를 사용하십시오. 범위의 경우 5:10을 사용하십시오 (5와 10 사이의 값)."
DocType: Energy Point Log,Revert Of,되돌리기
+DocType: Document Type Mapping,Field Mapping,필드 매핑
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,기존에 병합
DocType: User,Birth Date,생년월일
DocType: Communication Link,Link Title,링크 타이틀
@@ -1966,6 +1986,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,태그 링크
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,체인 무결성
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,테스트 중
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","(1) 환율 = [?]예를 들어 1 USD를 들어 분수
= 100 센트"
@@ -1976,6 +1997,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP 그룹 매핑
DocType: Chat Message Attachment,Chat Message Attachment,채팅 메시지 첨부 파일
DocType: LDAP Settings,Path to CA Certs File,CA 인증서 파일 경로
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,생산자와 소비자가 문서의 필드 이름이 다른 경우이를 확인하고 매핑을 설정하십시오.
DocType: Address,Manipur,마니 푸르
DocType: Web Form Field,Allow Read On All Link Options,모든 링크 옵션에서 읽기 허용
DocType: DocType,Database Engine,데이터베이스 엔진
@@ -2110,6 +2132,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,정보
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,오류 보고서
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / Excel 형식으로 데이터를 내 보냅니다.
+DocType: Document Type Field Mapping,Document Type Field Mapping,문서 유형 필드 매핑
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,글로벌 검색 문서 설정
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,인증 응용 프로그램은 다음과 같습니다.
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0}이 (가) 이미 있습니다. 다른 이름 선택
@@ -2185,7 +2208,6 @@ DocType: Workflow State,Upload,업로드
DocType: User Permission,Advanced Control,고급 제어
DocType: System Settings,Date Format,날짜 형식
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,게시되지
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,기본 주소 템플릿이 없습니다. 설정> 인쇄 및 브랜딩> 주소 템플릿에서 새로 만드십시오.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","워크 플로 작업 (예를 들어, 취소, 양해 해주십시오)."
DocType: Data Import,Skip rows with errors,오류가있는 행 건너 뛰기
DocType: Workflow State,flag,플래그
@@ -2249,6 +2271,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,상태를 변경하기 위해 할당 한 문서 및 역할에 허용 된 상태를 나타냅니다.
DocType: Data Migration Connector,Database Name,데이터베이스 이름
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,새로 고침 양식
+DocType: Event Producer,Event Producer,이벤트 프로듀서
DocType: DocField,Select,고르기
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,전체 로그보기
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","간단한 파이썬 표현식, 예 : 상태 == '열기'와 타입 == '버그'"
@@ -2350,6 +2373,7 @@ DocType: DocType,User Cannot Search,사용자는 검색 할 수 없습니다
DocType: Communication Link,Communication Link,통신 링크
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,잘못된 출력 형식
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},{0} {1} 할 수 없습니다.
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,자동 반복 {2}을 (를) 통해 반복적 인 {0} {1}이 (가) 생성되었습니다.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,사용자가 소유자 인 경우이 규칙 적용
DocType: Global Search Settings,Global Search Settings,글로벌 검색 설정
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,로그인 ID가됩니다.
@@ -2367,12 +2391,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,로그인 확
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,할일 추가
DocType: Footer Item,Company,회사
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},평균 {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,성공적인 거래
DocType: Scheduled Job Log,Scheduled,예약된
DocType: User,Logout from all devices while changing Password,암호를 변경하는 동안 모든 장치에서 로그 아웃
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,비밀번호 확인
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,오류가 발생했습니다
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Google 설정에서 고객 ID 및 고객 비밀번호를 입력합니다.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,닫기
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",이메일 ID는 고유해야합니다. 이메일 계정은 {0}에 대해 이미 존재합니다
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,0-2 docstatus을 변경할 수 없습니다
DocType: File,Attached To Field,필드에 연결됨
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,업데이트
@@ -2480,6 +2506,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,월
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip : 추가 Reference: {{ reference_doctype }} {{ reference_name }} 보낼 문서 참조
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,문서에 관련된 사용자 만 나열됩니다.
DocType: DocField,Fetch From,가져 오기 시작
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,설정> 양식 사용자 정의
apps/frappe/frappe/modules/utils.py,App not found,앱을 찾을 수 없습니다
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},만들 수 없습니다 {0} 하위 문서에 대해 : {1}
DocType: Social Login Key,Social Login Key,소셜 로그인 키
@@ -2491,7 +2518,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,메시
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,소셜 홈
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},으로 설정 될 수없는 후에 삽입 {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,공유 {0}와
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,이메일 계정 설정 비밀번호를위한 입력 해주세요
DocType: Workflow State,hand-up,손으로 업
DocType: Blog Settings,Writers Introduction,작가 소개
DocType: Address,Phone,휴대폰
@@ -2550,7 +2576,7 @@ DocType: Web Page,Insert Style,스타일 삽입
DocType: Prepared Report,Error Message,에러 메시지
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,새 보고서 이름
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,주말 숨기기
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,반복되는 문서를 자동으로 생성합니다.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,반복되는 문서를 자동으로 생성합니다.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,가
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,정보 기호
@@ -2558,7 +2584,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} 목
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","어떻게 통화를 포맷해야 하는가?설정하지 않은 경우, 시스템 기본값을 사용합니다"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} 문서를 제출 하시겠습니까?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,당신은 로그인 및 백업 액세스 할 수 있도록 시스템 관리자 역할을해야합니다.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ 트레이 응용 프로그램 연결 오류 ...
Raw Print 기능을 사용하려면 QZ Tray 응용 프로그램이 설치되어 실행 중이어야합니다.
QZ 트레이를 다운로드하여 설치하려면 여기를 클릭하십시오 .
Raw Printing에 대한 자세한 내용을 보려면 여기를 클릭하십시오 ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,프린터 매핑
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,첨부하기 전에 저장하십시오.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,링크 된 모든 문서를 취소 하시겠습니까?
@@ -2588,6 +2613,7 @@ DocType: Role Permission for Page and Report,Set Role For,에 대한 설정 역
DocType: GCalendar Account,The name that will appear in Google Calendar,Google 캘린더에 표시 될 이름입니다.
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0}이 (가)있는 방이 이미 있습니다.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,상쾌한 ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},대시 보드 차트에 설정된 필터 값을 확인하십시오 : {}
DocType: Event,Starts on,에 시작
DocType: System Settings,System Settings,시스템 설정
DocType: GCalendar Settings,Google API Credentials,Google API 자격증 명
@@ -2613,6 +2639,7 @@ DocType: Workflow State,ok-sign,확인 서명
apps/frappe/frappe/config/settings.py,Deleted Documents,삭제 된 문서
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV 형식은 대소 문자를 구분합니다.
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,바탕 화면 아이콘이 이미 있습니다.
+DocType: Event Consumer Document Type,Approval Status,승인 상태
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,슬라이드를 표시 할 모든 도메인을 지정하십시오. 아무것도 지정하지 않으면 기본적으로 슬라이드가 모든 도메인에 표시됩니다.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,복제
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0} : {2} 행의 {1} 필드를 숨길 수 없으며 기본값없이 필수입니다.
@@ -2632,6 +2659,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,도움말 기사
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,유형 :
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,지불이 실패했습니다.
+DocType: Event Producer,Producer URL,프로듀서 URL
DocType: Comment,Unshared,비공유
DocType: Address,Karnataka,카르 나 타카
apps/frappe/frappe/desk/moduleview.py,Module Not Found,모듈을 찾을 수 없음
@@ -2643,6 +2671,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,지정 완료
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},대량 편집 {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,보고서 다운로드
+apps/frappe/frappe/model/workflow.py,Workflow Status,워크 플로우 상태
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,활성 없음
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,관리자 만 대시 보드 차트 원본을 만들 수 있습니다.
DocType: About Us Settings,Settings for the About Us Page,회사 소개 페이지에 대한 설정
@@ -2652,6 +2681,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,인
DocType: Notification Settings,Energy Points,에너지 포인트
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},{0} 시간은 {1} 형식이어야합니다.
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,예) pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0} : 새 되풀이 문서를 첨부하지 못했습니다. 자동 반복 알림 이메일에 문서를 첨부하려면 인쇄 설정에서 {1}을 사용하십시오.
DocType: User,Generate Keys,키 생성
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,이렇게하면 데이터가 영구적으로 삭제됩니다.
DocType: DocType,View Settings,보기 설정
@@ -2703,6 +2733,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,모든
DocType: Email Queue,Recipient,받는 사람
DocType: Webhook,Webhook Security,웹 후크 보안
+DocType: Event Sync Log,Producer Document Name,생산자 문서 이름
DocType: Communication,Has Attachment,첨부 파일이
DocType: Address,Sales User,판매 사용자
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,드래그 앤 드롭 도구를 구축하고 인쇄 형식을 사용자 정의합니다.
@@ -2738,6 +2769,7 @@ DocType: Address,Arunachal Pradesh,아루나 찰 프라데시
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,하위 테이블은 다른 DocTypes에서 모눈으로 표시됩니다.
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,설정 자동 이메일
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl 키를 + 다운
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,이벤트 이용을 위해 가입하려는 사이트입니다.
DocType: Chat Profile,Message Preview,메시지 미리보기
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,이 최고 10 공통 암호입니다.
DocType: User,User Defaults,사용자 기본값
@@ -2770,6 +2802,7 @@ DocType: Dashboard Chart,Last Synced On,마지막으로 동기화 됨
DocType: Comment,Comment Type,코멘트 유형
DocType: OAuth Client,OAuth Client,OAuth 클라이언트
DocType: Assignment Rule,Users,사용자
+DocType: Document Type Mapping,Local Document Type,로컬 문서 유형
DocType: Address,Odisha,오디 샤
DocType: Report,Report Type,보고서 유형
DocType: DocField,Signature,서명:
@@ -2812,6 +2845,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0}자가이 작업을 할당했습니다 : {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,귀하의 국가
DocType: Assignment Rule Day,Sunday,일요일
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","소비자가있는 문서에 대해 Event Producer 사이트에서 모든 삽입, 업데이트 및 삭제 로그를 유지합니다."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0} : 필드 이름은 {1} 중 하나 일 수 없습니다
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,순위
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,격자보기에서
@@ -2959,7 +2993,6 @@ DocType: Web Page,Sidebar and Comments,사이드 바 및 댓글
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","당신이 후 취소 및 저장 문서를 개정 할 때, 이전 번호의 버전입니다 새 번호를 얻을 것이다."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings",문서 {0}을 (를) 첨부 할 수 없으므로 인쇄 설정에서 인쇄 허용 {0}을 (를) 사용하십시오
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0}에있는 문서를 참조하십시오.
DocType: Stripe Settings,Publishable Key,게시 가능 키
DocType: Stripe Settings,Publishable Key,게시 가능 키
@@ -3038,7 +3071,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,정보 :
DocType: Custom Field,Permission Level,권한 수준
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : 쓰기없이 정정, 취소, 제출 설정할 수"
DocType: List View Setting,Disable Count,개수 비활성화
-DocType: Google Maps Settings,Client Key,클라이언트 키
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,첨부 파일을 삭제 하시겠습니까?
apps/frappe/frappe/__init__.py,Thank you,감사합니다
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,절약
@@ -3165,6 +3197,7 @@ DocType: Workflow Document State,Only Allow Edit For,만 편집을 위해이 허
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google 드라이브에 백업
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},필수 필드 : {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,당신의 이름
+DocType: Event Producer Document Type,Event Producer Document Type,이벤트 프로듀서 문서 유형
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,연결 성공
DocType: DocType,InnoDB,InnoDB의
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,슬라이드 유형 계속의 온 보딩 슬라이드가 이미 존재합니다.
@@ -3236,6 +3269,7 @@ DocType: Address,Postal Code,우편 번호
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,다시 연결 통신
DocType: Translation,Contributed,기여한
apps/frappe/frappe/config/customization.py,Form Customization,양식 사용자 정의
+DocType: Event Update Log,Event Update Log,이벤트 업데이트 로그
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,활성 세션 없음
DocType: Web Form,Route to Success Link,성공 링크로 연결
DocType: Onboarding Slide Field,Right,오른쪽
@@ -3262,7 +3296,7 @@ DocType: Website Settings,Chat Operators,채팅 연산자
DocType: S3 Backup Settings,ca-central-1,중부 표준시 - 1
DocType: Contact Us Settings,Pincode,PIN 코드
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,빈 열이 파일이 있는지 확인하십시오.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,여러 단계를 거친 문서의 라이프 사이클에서 이정표를 추적합니다.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,여러 단계를 거친 문서의 라이프 사이클에서 이정표를 추적합니다.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",컨트롤러의 파일 이름이 바뀌었고 코드가 바뀌 었습니다. 확인하십시오!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,당신의 프로필에 이메일 주소가 있는지 확인하십시오
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,이 형태로 저장되지 않은 변경 사항이 있습니다.계속하기 전에 저장하십시오.
@@ -3289,7 +3323,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API 비밀번호 저장 :
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},취소 문서를 링크 할 수 없습니다 : {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,표준 보고서를 편집 할 수 없습니다. 복제하고 새 보고서를 작성하시기 바랍니다
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address",이 회사 주소로 회사는 필수입니다
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","예를 들어 문서 ID를 포함 할 경우, 사용 {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},를 선택 테이블 열 {0}
DocType: Custom Field,Options Help,옵션 도움말
@@ -3297,7 +3330,6 @@ DocType: Footer Item,Group Label,그룹 레이블
DocType: Kanban Board,Kanban Board,칸반 보드
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google 연락처가 구성되었습니다.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 레코드가 내보내집니다
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,사용자와 연결된 이메일 계정이 없습니다. 사용자> 이메일받은 편지함에 계정을 추가하십시오.
DocType: DocField,Report Hide,보고서 숨기기
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},사용할 수 없습니다 트리보기 {0}
DocType: DocType,Restrict To Domain,도메인으로 제한
@@ -3363,7 +3395,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0} : {2} 유형의 {1} 필드는 필수 항목 일 수 없습니다.
DocType: System Settings,In Days,일 중
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,미스
+DocType: Event Producer Document Type,Has Mapping,매핑 있음
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,지정하십시오
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,잘못된 필터 값
DocType: Comment,Bot,봇
DocType: Help Article,Help Article,도움말
DocType: Page,Page Name,페이지 이름
@@ -3471,7 +3505,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,인쇄 형식
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,그리드보기 토글
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,다음 레코드로 이동
-DocType: System Settings,Time Format,시간 형식
+DocType: Country,Time Format,시간 형식
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,잘못된 지불 게이트웨이 인증
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,이것은 일부 오류가있는 행으로 생성 된 템플리트 파일입니다. 수정 및 가져 오기에는이 파일을 사용해야합니다.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,문서의 종류와 역할에 대한 권한 설정
@@ -3808,6 +3842,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,사용자 이름을 사용하여 로그인 허용
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,보고서 사용
DocType: DocField,Display Depends On,디스플레이에 따라 달라집니다
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} 년 전
DocType: Social Login Key,API Endpoint,API 엔드 포인트
DocType: Web Page,Insert Code,코드에게 삽입
DocType: Data Migration Run,Current Mapping Type,현재 매핑 유형
@@ -3861,6 +3896,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,이
apps/frappe/frappe/www/login.html,Or login with,또는 로그인
DocType: Error Snapshot,Locals,지역 주민
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},를 통해 통신 {0}에 {1} {2}
+DocType: Event Producer,Event Producer Document Types,이벤트 프로듀서 문서 유형
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Group By ...를 선택하십시오.
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,예를 들어 (55 + 434) / 4 = Math.sin (Math.PI로 / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0}이 필요합니다
@@ -3893,9 +3930,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar 동기화 ID
DocType: Prepared Report,Report Start Time,보고서 시작 시간
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,데이터 내보내기
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,동기화 상태와 함께 소비 된 모든 이벤트 및 동기화 실패시 재 동기화 버튼을 기록합니다.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,열 선택
DocType: Translation,Source Text,원본 텍스트
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,이것은 배경 보고서입니다. 적절한 필터를 설정 한 다음 새 필터를 생성하십시오.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오
apps/frappe/frappe/www/login.py,Missing parameters for login,로그인에 대한 누락 된 매개 변수
DocType: Workflow State,folder-open,폴더 오픈
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",일단 제출되면 제출할 수있는 문서는 변경할 수 없습니다. 취소 및 수정 만 가능합니다.
@@ -3975,6 +4014,7 @@ DocType: Blog Post,Published On,에 게시
DocType: Contact,Gender,성별
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,누락 된 필수 정보 :
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0}이 (가) {1}에 점수를 되돌 렸습니다.
+DocType: Event Consumer,Event Subscriber,이벤트 가입자
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,요청 URL 확인
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,200 인서트는 하나의 요청에 허용
DocType: Footer Item,URL,URL
@@ -3987,6 +4027,7 @@ DocType: Auto Email Report,Half Yearly,반년
DocType: Communication,Marked As Spam,스팸으로 표시
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},파일 URL 몇 가지 문제가 있습니다 : {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,나무
+DocType: Event Producer Document Type,Use Same Name,같은 이름을 사용하십시오
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,이 보고서를 인쇄 할 수 없습니다
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,사용자 권한
DocType: Workflow State,warning-sign,경고 기호
@@ -3996,6 +4037,7 @@ DocType: Workflow State,User,사용자
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",같은 브라우저 창에 표시 제목 "접두어 - 제목"
DocType: Payment Gateway,Gateway Settings,게이트웨이 설정
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,문서 형식의 텍스트
+DocType: Event Sync Log,Event Sync Log,이벤트 동기화 로그
apps/frappe/frappe/handler.py,Logged Out,로그 아웃
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,더...
DocType: System Settings,User can login using Email id or Mobile number,사용자는 이메일 ID 또는 휴대 전화 번호를 사용하여 로그인 할 수 있습니다.
@@ -4036,12 +4078,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,하지에서
DocType: Workflow State,star,별
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,허브
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,이것이 체크되면 문서는 이벤트 프로듀서 사이트에서와 같은 이름을 갖습니다.
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,쉼표로 구분 된 값
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},유형의 통화에 대한 최대 폭은 행에있는 100 픽셀 {0}
apps/frappe/frappe/config/website.py,Content web page.,콘텐츠 웹 페이지.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,새 역할 추가
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,웹 페이지 방문
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,새로운 과제
+DocType: Event Consumer Document Type,Approved,인가 된
DocType: Google Contacts,Last Sync On,마지막 동기화
DocType: Deleted Document,Deleted Document,삭제 된 문서
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,죄송합니다. 문제가 발생했습니다
@@ -4094,7 +4138,6 @@ DocType: DocField,Unique,유일한
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0}은 (는) {1}에 감사했습니다.
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,부분적인 성공
DocType: Email Account,Service,서비스
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,설정> 사용자
DocType: File,File Name,파일 이름
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),에 대한 {0}를 찾을 수 없습니다 {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},해상도 : {0}
@@ -4106,11 +4149,10 @@ DocType: Calendar View,Calendar View,캘린더보기
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,형식 편집
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,등록 완료
DocType: GCalendar Settings,Enable,사용
-DocType: Google Maps Settings,Home Address,집 주소
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),당신은 한 번에 5000 개까지 기록을 업로드 할 수 있습니다. (경우에 따라 적을 수 있습니다)
DocType: Report,"output in the form of `data = [columns, result]`","`data = [columns, result]`형식으로 출력"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,적용 가능한 문서 유형
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,사용자 할당에 대한 규칙을 설정합니다.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,사용자 할당에 대한 규칙을 설정합니다.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}에 대한 권한이 충분하지 않습니다.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}에 대한 권한이 충분하지 않습니다.
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),보고서는 (오류가 있었다) 저장되지 않았습니다
diff --git a/frappe/translations/ku.csv b/frappe/translations/ku.csv
index df6c98a4e9..5e741ef6f3 100644
--- a/frappe/translations/ku.csv
+++ b/frappe/translations/ku.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Ev update rola Permissions ji bo bikarhênerek
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Rename {0}
DocType: Workflow State,zoom-out,dûr xistin
-DocType: Data Import Beta,Import Options,Vebijarkên import
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,ne dikarin veke {0} gava Mesela wê vekirî ye
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Table {0} ne vala be
DocType: SMS Parameter,Parameter,parametreyê
@@ -84,16 +83,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Belg
DocType: DocType,Is Published Field,Ma Published Field
DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings
DocType: Email Group,Email Group,Email Group
-apps/frappe/frappe/__init__.py,Only for {},Tenê ji bo {
DocType: Event,Pulled from Google Calendar,Ji Salnameya Google-ê vekişand
DocType: Note,Seen By,dît By
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,lê zêde bike Multiple
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Naveroka bikarhênerê ne derbasdar e.
DocType: Energy Point Log,Reverted,Vegerandin
DocType: Success Action,First Success Message,Pêşkeftina Peyama Pêşîn
+DocType: Document Type Mapping,Document Type Mapping,Mapping Type Type
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Like ne
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},nirxa rast nenivîsandiye: {0} divê {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","milkên Change qadê (hide, readonly, destûr û hwd.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Malpera ku bûyerên we dixwîne.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Rûmetdan
DocType: Notification Settings,Document Share,Belge parve kir
DocType: Workflow State,lock,qesr
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Rojname
DocType: Workflow State,indent-right,indent-mafê
DocType: Has Role,Has Role,has Role
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Demjimêr di sisiyan de li ser qonaxa QR codeê li ser serverê bimînin. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} ji bo {2} nayê indeks kirin
DocType: Dashboard Chart,Timespan,Timespan
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Link Web
DocType: Deleted Document,Restored,restore
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Connewtiya di girêdana serîlêdana QZ Tray QZ de ...
Hûn hewce ne ku serîlêdana QZ Tray-ê saz bikin û bisekinin, da ku taybetmendiya Raw çapkirinê bikar bînin.
Vira bikirtînin û QZ Tray bikirtînin .
Vira bikirtînin da ku di derbarê çapkirina Raw de bêtir fêr bibin ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 خولەک لەمەوبەر
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Ji bilî System Manager, roleke bi Set Permissions User mafê nikare destûrên ji bo bikarhênerên din jî, ji bo ku Corî dokumênt danîn."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Mijara mîheng bikî
@@ -188,6 +190,7 @@ DocType: Email Account,UNSEEN,nayên dîtin
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,file Manager
DocType: Website Settings,"HTML Header, Robots and Redirects","Sernavê HTML, Robotan û Beralîkirinan"
DocType: GCalendar Account,Refresh Token,Refresh Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Naha têkildar bû ku bi malpera hilberînerê Bihar re were girêdan. Piştî demekê dîsa biceribînin.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Ji bo vê malperê ti karên li bendî an niha nînin
DocType: Webhook,Doc Event,Doc Event
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Gerînendeyê Script
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Activityalakî tune
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps Apps
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,The yekem user dê bibe Manager System de (tu ev piştre biguherin).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Hûn dikarin hewl bidin ku parzûngehên rapora xwe biguhezînin.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Eventsro No Bûyer
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Hûn nikarin xalên review ji xwe re bidin alî
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,Divê DocType divê ji bo Doktorê bijartî ya Hilbijartinê be
@@ -238,6 +242,7 @@ apps/frappe/frappe/config/desk.py,Files,files
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permissions get applied on Users based on what Roles they are assigned.,Permissions get li ser Bikarhêner li ser çi ristên ew rêdan bi serî.
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Tu bi destûr ne ji bo şandina emails related to ev belge
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Tikaye Hindîstan 1 column ji {0} ji bo çareser bike koma / hilbijêre
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Pargîdaniya ne girêdayî ye
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"vê kontrol bike, eger tu bi ceribandina dayina we bi bikaranîna API Ceriban"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Tu nikarî bibî a Theme Website standard
DocType: Data Import,Log Details,Navnîşan Log
@@ -257,7 +262,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Guherand
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Slide Onboarding {0} bi heman fermana slide jixwe heye
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disable Report
DocType: Translation,Contributed Translation Doctype Name,Navê Doctype Wergerê Beşdar
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Forma Sêwiranê
DocType: PayPal Settings,Redirect To,Beralîkirina To
DocType: Data Migration Mapping,Pull,Kişandin
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports [ 'REPORTNAME'] = {}
@@ -269,6 +273,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Yorumlar ne
DocType: DocShare,Internal record of document shares,record navxweyî yên wek beşa belge
DocType: Energy Point Settings,Review Levels,Astên Review
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Destûrên bikarhêner
DocType: Workflow State,Comment,Agahkişî
DocType: Data Migration Plan,Postprocess Method,Methodprojeya Postprocess
DocType: DocType Action,Action Type,Cureya Actionalakiyê
@@ -319,7 +324,9 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Wee
DocType: Workflow State,remove-circle,jê-circle
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profîla min
DocType: Help Article,Beginner,Despêkevan
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Ev çalakî tenê ji bo {allowed tê destûr kirin.
DocType: Contact,Is Primary Contact,E Primary Contact
+DocType: Event Consumer,Event Consumer,Bûyerê Mezêxer
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript ji bo bişiyênê ji bo beşa serê rûpel.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Zêdekirin / Nûvekirin
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,destûr ne ji bo print pêşnûma belge
@@ -468,7 +475,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,dubare Till
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Nşh
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Hûn hewce ne ku yekem van biafirînin:
-DocType: Google Maps Settings,Google Maps Settings,Google Map Settings
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ...
DocType: DocField,Password,Şîfre
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,pergala te tê ve. Ji kerema xwe piştî çend xulekan de dîsa refresh
@@ -560,6 +566,7 @@ DocType: Onboarding Slide,Onboarding Slide,Slide serêkaniyê
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Şîfre Invalid:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Şîfre Invalid:
DocType: Print Settings,Send document web view link in email,Send belge link view web li email
+DocType: Event Consumer Document Type,Event Consumer Document Type,Type of Document Consumer
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Pêşî
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Sertîfîkayê Pêwîstî Daxwazin
@@ -634,6 +641,7 @@ DocType: Workflow State,volume-down,volume-down
DocType: Onboarding Slide,Help Links,Alîkariyên Rêzan
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Ji vê Navnîşana IP-yê destûr nayê dayîn
DocType: Notification Settings,Enable Email Notifications,Nîşeyên E-nameyê çalak bikin
+DocType: Document Type Field Mapping,Event Streaming,Barkirina bûyerê
apps/frappe/frappe/desk/reportview.py,No Tags,No Tags
DocType: Email Account,Send Notification to,Send agahdar bike ji bo
DocType: DocField,Collapsible,Navbar
@@ -650,6 +658,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Conditionsertên peyda nabin
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Fieldên Y Axis
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,warê Sort {0} divê fieldname derbasdar be
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nexşeya navnîşê ya xwerû nehat dîtin. Ji kerema xwe ji Setup> çapkirin û Berfirehbûnê> Temablonê Navnîşan a nû çêbikin.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Zêde
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Tomarek nû çêbikin
DocType: Contact,Sales Manager,Manager Sales
@@ -673,6 +682,7 @@ DocType: User,Reset Password Key,Key Password reset bike
DocType: Dashboard Chart,All Time,Her dem
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Rewşa Belgeyê ji bo {0}
DocType: Email Account,Enable Auto Reply,Çalak binivîse Auto
+apps/frappe/frappe/desk/query_report.py,No data to export,Danasîna hinardekirinê tune
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,nedîtiye
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Nabe ku gelek çapker hene ku bi rengek çapê yek çap bikin.
DocType: Workflow State,zoom-in,zoom-li
@@ -823,6 +833,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Bikarhêne
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Yekem
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Update Translations
DocType: Error Snapshot,Exception,Îstîsna
+DocType: Event Consumer,Event Consumer Document Types,Cûreyên Belgeya Xerîdar
DocType: Email Account,Use IMAP,bikaranîna oerienkommende
DocType: Activity Log,Activity Log,Activity bike Têkeve Têkeve
DocType: View Log,Viewed By,Viewed By
@@ -862,6 +873,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Guhertin
DocType: User,Last IP,Last IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Ji kerema xwe re mijarek bi e-nameya xwe re zêde bike
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Transactions şaş kirin
DocType: Data Migration Connector,Data Migration Connector,Têkiliya Koçberiyê
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vegerandin {1}
DocType: Email Account,Track Email Status,Track Status Email
@@ -891,6 +903,7 @@ DocType: Email Queue,Attachments,Attachments
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Tu destûrên di gihîştina ev belge tune ne
DocType: Language,Language Name,Navê zimanê
DocType: Email Group Member,Email Group Member,Email Pol Member
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ne hesabek e-nameyê bi bikarhênerê re têkildar e. Ji kerema xwe hesabek di bin Bikarhêner> E-nameya Emailê de zêde bikin.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Hesabê we ya vekirî ye û dê piştî {0} secre dîsa dest pê bikin
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Destûra bikarhêneran bikar anîn ku bikarhênerên xwe bi qeydên taybetî yên sînor bikin.
DocType: Notification,Value Changed,Nirx Guherî
@@ -982,6 +995,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Behsa mêjera U
DocType: Help Article,Expert,Pispor
DocType: Workflow State,circle-arrow-right,circle-tîra-mafê
DocType: Role Profile,Role Profile,Profile Profile
+DocType: Document Type Mapping,Remote Document Type,Tipa Belgeyê Bişêr
apps/frappe/frappe/permissions.py,Document Type is not importable,Tipa Belgeyê nayê importandin
DocType: LDAP Settings,LDAP Server Url,LDAP Server Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Can Mesela vekirina ne dema wê {0} vekirî ye
@@ -1066,7 +1080,6 @@ DocType: Web Form,Allow Print,Destûrê bide bo çapkirinê
DocType: Communication,Clicked,bi opsîyona
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Ragihîn
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},No destûr ji bo '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ji kerema xwe ji Sîstema> E-name> Hesabê E-nameya Ragihandinê şîfreya E-nameyê ya xwerû saz bike
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Scheduled bişînin
DocType: DocType,Track Seen,Track Ruiz
DocType: Dropbox Settings,File Backup,Backup
@@ -1136,6 +1149,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,an
DocType: Data Export,Filter List,Lîsteya Filîteyê
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Rêzkirinên Bûyerê
DocType: Email Account,Auto Reply Message,Auto binivîse Message
DocType: Data Migration Mapping,Condition,Rewş
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} hours ago
@@ -1195,9 +1209,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Her tim wek
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Login to comment
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Destpêk dikevin welat li jêr vê line
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},nirxên guherand ji bo {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Nasnameya Navnîşan e-nameyek bêhempa ye, Hesabek E-Mail jixwe ve heye \ for {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ji bo berhevdanê,> 5, <10 an = 324 bikar bînin. Ji bo rêzan, 5:10 bikar bînin (ji bo nirxên di navbera 5 & 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Customize ...
DocType: Print Format,Align Labels to the Right,Şîfre li ser rast
DocType: Assignment Rule,Disabled,Bêmecel
@@ -1243,8 +1256,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Kurtikên Pêl
DocType: Post,Comments,Comments
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Tesdîqkirin
+DocType: Event Sync Log,Update Type,Type nûvekirin
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Nasname ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,hilweşe Hemû
+DocType: Event Producer,Last Update,Nûvekirina paşîn
apps/frappe/frappe/www/login.html,Forgot Password?,Şifre bîrkir?
DocType: System Settings,yyyy-mm-dd,YYYY-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1284,6 +1299,7 @@ DocType: LDAP Settings,Password for Base DN,Şîfre ji bo Base DN
apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Table Field
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Stûn li ser bingeha
DocType: Workflow State,move,barkirin
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Ji ber ku ji bo malpera nuha nehatiye qeydkirin Serfermandarek an Serfermandarek Event ku ji bo malpera heyî nehatiye qeyd kirin.
apps/frappe/frappe/model/document.py,Action Failed,çalakiyê de bi ser neket
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,ji bo User
DocType: View Log,View log,Log log
@@ -1444,6 +1460,7 @@ DocType: DefaultValue,Key,Qûfle
DocType: Address,Contacts,Têkilî
DocType: System Settings,Setup Complete,Setup Complete
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapora ji hemû pişkan belge
+DocType: Event Consumer,Callback URL,URL-ê vegera
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Divê şablonê importê ji celebê be .csv, .xlsx an .xls"
apps/frappe/frappe/www/update-password.html,New Password,Şîfre New
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} wenda
@@ -1510,7 +1527,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ser
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Di rewşa destûr ne
DocType: Async Task,Async Task,Async Task
DocType: Workflow State,picture,sûret
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Tevî
+DocType: Scheduled Job Log,Complete,Tevî
DocType: DocType,Image Field,Wêne Field
DocType: Print Format,Custom HTML Help,Custom HTML Alîkarî
DocType: LDAP Settings,Default Role on Creation,Rola Default li ser Afirandinê
@@ -1536,6 +1553,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Tevkarî li ser Search
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Xweqeydkirin di heman demê de seqet
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Pêdivî ye ku navnîş bi pargîdaniyek ve girêdayî be. Ji kerema xwe di tabloya girêdanan de li jêr navnîşê ji bo Company bidin.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Ji bo vê belgeyê dubareya Auto hatî veqetandin.
DocType: DocType,Hide Copy,Naverokan veşêre Copy
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Paqijkirina hemû rolên
@@ -1578,7 +1596,6 @@ DocType: Data Migration Run,Total Pages,Total Pages
DocType: DocField,Attach Image,attach Wêne
DocType: Workflow State,list-alt,lîsteya-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Şîfre Demê
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Destûrên bikarhêner
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Dema ku têketina we re şahidiyê bikin
apps/frappe/frappe/utils/password.py,Password not found,Şîfre dîtin ne
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1593,8 +1610,6 @@ DocType: Website Settings,Brand,Şanika şewatê
apps/frappe/frappe/config/integrations.py,Google API Settings.,Mîhengên API yên Google.
DocType: Report,Query Report,query Report
DocType: User,Set New Password,Set New Password
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S e a format raporê ne derbasdar e. Report format divê yek ji yên li jêr% s \
DocType: Chat Message,Chat,Galgalî
DocType: LDAP Group Mapping,LDAP Group Mapping,Nexşeya Koma LDAP
DocType: Dashboard Chart,Chart Options,Vebijarkên Chart
@@ -1628,7 +1643,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,nasnavê
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Têketinê Secret
DocType: Tag Link,Document Title,Sernavê Belgeyê
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Bicî)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} sal (sal) berê
DocType: Social Login Key,Social Login Provider,Têkiliya Civakî ya Civakî
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Lê zêde bike Comment din
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Daneyên pelan di pelê de nehat dîtin. Ji kerema xwe re pelê nû ya nû ve nûve bike.
@@ -1675,6 +1689,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Hilbij
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 sal
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Û her tim jê bibî {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,heman dosyayê de ji niha ve ji bo ku rekor di pêvekê de dîtin
+DocType: Event Sync Log,Synced,Hevber kirin
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} Dewleta Dewleta Karker a Nayê ne. Ji kerema xwe Karkeriya xwe nû bike û dîsa biceribînin.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,dane {0} xalên
DocType: Workflow State,wrench,badanvekir
@@ -1773,6 +1788,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,D
DocType: Web Form Field,Max Length,Max Length
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,map-marker
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Mîhengên nexşeyê di navbera du belgeyên belgeyê de.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Submit an Dozî Kurd
DocType: Event,Repeat this Event,Dubare vê Event
DocType: Address,Maintenance User,Maintenance Bikarhêner
@@ -1829,6 +1845,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test Email Address
DocType: Auto Repeat,Reference Document Type,Dokumenta Belgeyê
DocType: ToDo,Sender,virrêkerî
+DocType: Event Consumer,Incoming Change,Guhertina hatin
DocType: Google Drive,Backup Folder Name,Navê Peldanka Barker
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Di dema nirxandina şandina {0} de çewtiyek çewt. Ji kerema xwe tika ye.
DocType: GSuite Settings,Google Apps Script,Apps Script Google
@@ -1889,9 +1906,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Navê Fo
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Ji bo pejirandina daxwazê li ser lînka jêrîn bitikînin
DocType: Workflow State,align-left,align-hiştin
DocType: Onboarding Slide,Action Settings,Mîhengên çalakiyê
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Bikarhêner
DocType: User,Defaults,Têrbûn
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ji bo berhevdanê,>> 5, <10 an = 324 bikar bînin. Ji bo rêzan, 5:10 bikar bînin (ji bo nirxên di navbera 5 & 10)."
DocType: Energy Point Log,Revert Of,Vegere Of
+DocType: Document Type Mapping,Field Mapping,Nexşeya zeviyê
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Merge bi heyî
DocType: User,Birth Date,Date jidayikbûnê
DocType: Communication Link,Link Title,Title Link
@@ -1919,6 +1937,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Girêdana Tag
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Pêdengiya Çînê
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Di Test
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Exchange = [?] Fraction Ji bo nimûne: 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Tevger Serkeftî
@@ -1928,6 +1947,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Mappings Group LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Chat Message Attachment
DocType: LDAP Settings,Path to CA Certs File,Rê li pelê Certificates CA
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,Heke di belgeyê de navên qadên cûda li ser Hilberhêner û Serfermandarê heye dawiya wê kontrol bikin û Mapping saz bikin
DocType: Address,Manipur,Manîsa
DocType: Web Form Field,Allow Read On All Link Options,Destûra Hemû Lînkên Hilbijêre Li Hev bixwînin
DocType: DocType,Database Engine,Engine Database
@@ -2061,6 +2081,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Not
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Error Report
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Dabeşkirina Danûstandinê di formata CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Nexşeya Zeviyê Tipê ya Belgeyê
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Damezrandina belgeyên Lêgerîna Gloverî.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Hûn dikarin bikar bînin:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} already exists. Navê din hilbijêre
@@ -2135,7 +2156,6 @@ DocType: Workflow State,Upload,Upload
DocType: User Permission,Advanced Control,Control Control
DocType: System Settings,Date Format,Date Format
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Published ne
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nexşeya navnîşê ya xwerû nehat dîtin. Ji kerema xwe ji Setup> çapkirin û Berfirehkirina> Temablonê Navnîşan a nû çêbikin.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Çalakiyên ji bo workflow (wek nimûne erê, Cancel)."
DocType: Data Import,Skip rows with errors,Rengên bi çewtiyê vekin
DocType: Workflow State,flag,al
@@ -2197,6 +2217,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Nûnertiya dewletên destûr li yek belge û rola rêdan ji bo guhertina dewletê.
DocType: Data Migration Connector,Database Name,Navê Navnîşê
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Form Refresh
+DocType: Event Producer,Event Producer,Hilberînerê bûyerê
DocType: DocField,Select,Neqandin
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Log Full
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Xuyangkirina Python hêsan, Mînak: statû == 'Vebijêrk' û celeb == 'Bug'"
@@ -2311,6 +2332,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR Code Ji bo
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Add to To Do
DocType: Footer Item,Company,Şîrket
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Navînî {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Danûstendinên serkeftî
DocType: Scheduled Job Log,Scheduled,scheduled
DocType: User,Logout from all devices while changing Password,Logout ji hemî cîhazên di dema guhertina şîfreyê de
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Şîfre
@@ -2421,6 +2443,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Meh
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: lê zêde bike Reference: {{ reference_doctype }} {{ reference_name }} ji bo şandina referansa belge
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Tenê bikarhênerên ku beşdarî belgeyê bûne têne navnîş kirin
DocType: DocField,Fetch From,Fetch Ji
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Forma Sêwiranê
apps/frappe/frappe/modules/utils.py,App not found,App dîtin ne
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},ne dikarin biafirînin {0} dijî belgeyeke zarok: {1}
DocType: Social Login Key,Social Login Key,Key Keyeya Civakî
@@ -2431,7 +2454,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat me
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Mala Civakî
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Insert Piştî dikare wekî ne bê danîn {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Share {0} bi
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Email setup Account ji kerema xwe şîfreya xwe ji bo têkevin:
DocType: Workflow State,hand-up,hand-up
DocType: Blog Settings,Writers Introduction,nivîskarên Introduction
DocType: Address,Phone,Phone
@@ -2489,7 +2511,7 @@ DocType: Web Page,Insert Style,Insert Style
DocType: Prepared Report,Error Message,Peyama çewtiyê
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Navê Report New
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Week Week Hide
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Bixweber belgeyên dubare diafirîne.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Bixweber belgeyên dubare diafirîne.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,E
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-sign
@@ -2497,7 +2519,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Nirx ji
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Divê çawa vê currency were formatkirin? Heke ne, wê nirxên standard pergalê bi kar bîne"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Belgeyên {0} bişînin?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Divê tu ji bo xwe qeydbikê û System Manager rola ku bikaribe ji têkevim unterstützt.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Connewtiya di girêdana serîlêdana QZ Tray QZ de ...
Hûn hewce ne ku serîlêdana QZ Tray-ê saz bikin û bisekinin, da ku taybetmendiya Raw çapkirinê bikar bînin.
Vira bikirtînin û QZ Tray bikirtînin .
Vira bikirtînin da ku di derbarê çapkirina Raw de bêtir fêr bibin ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Nexşeya çapkirinê
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Ji kerema xwe ve Berî xilas bike.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Ma hûn dixwazin hemî belgeyên têkildar betal bikin?
@@ -2526,6 +2547,7 @@ DocType: Role Permission for Page and Report,Set Role For,Set Role Ji bo
DocType: GCalendar Account,The name that will appear in Google Calendar,Navê ku dê li Calendar Google be
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Odeya rasterast bi {0} berê heye.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Refreshing ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Ji kerema xwe nirxên filterê ji bo Dashboard Chart hatî veqetandin: {}
DocType: Event,Starts on,dest li ser
DocType: System Settings,System Settings,System Settings
DocType: GCalendar Settings,Google API Credentials,Google API Kredential
@@ -2550,6 +2572,7 @@ DocType: Workflow State,ok-sign,ok-sign
apps/frappe/frappe/config/settings.py,Deleted Documents,Belgeyên deleted
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Pirtûka CSV-kêşeya mestir e
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Icon Desktop jixwe heye
+DocType: Event Consumer Document Type,Approval Status,Rewş erêkirina
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Li kîjan deverê divê ku dirûşm destnîşan bikin destnîşan bikin. Heke tiştek neyê diyar kirin slaydek di hemî deveran de bixweber tê destnîşan kirin.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Cote
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Zeviyê {1} di rêza {2} de nexşandin û bê mecbûrkirin nayê veşartin
@@ -2569,6 +2592,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,alîkarî babetî
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Awa:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,dayina we bi ser neket.
+DocType: Event Producer,Producer URL,URL-ê hilberîner
DocType: Comment,Unshared,durist
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Module Not Found
@@ -2580,6 +2604,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,assignment Qediya
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Edit Gir {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Raporta Daxistin
+apps/frappe/frappe/model/workflow.py,Workflow Status,Rewşa xebata xebatê
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,çalak ne
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Tenê Rêveber destûr e ku Dashavkaniyên Dashertê Dashboard-ê biafirîne
DocType: About Us Settings,Settings for the About Us Page,Mîhengên ji bo About Us Page
@@ -2639,6 +2664,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Gişt
DocType: Email Queue,Recipient,Girtevan
DocType: Webhook,Webhook Security,Ewlekariya Webhook
+DocType: Event Sync Log,Producer Document Name,Navê Belgeya Pêşkêşker
DocType: Communication,Has Attachment,has Attachment
DocType: Address,Sales User,Sales Bikarhêner
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag û tool Drop bo avakirina û customize Formats Print.
@@ -2672,6 +2698,7 @@ DocType: Address,Arunachal Pradesh,Arunaçal Pradeş
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Tabloyên Zarokan di DocTypesên din de wekî Grid têne nîşandan
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setup Auto Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Malpera ku hûn dixwazin ji bo xwarina bûyeran bişopînin.
DocType: Chat Profile,Message Preview,Peyama Pêşniyarê
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Ev a şîfreya hevpar top-10 e.
DocType: User,User Defaults,Têrbûn Bikarhêner
@@ -2704,6 +2731,7 @@ DocType: Dashboard Chart,Last Synced On,Last Synced On
DocType: Comment,Comment Type,Raya Type
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Bikarhêner li
+DocType: Document Type Mapping,Local Document Type,Tipê Belgeya Herêmî
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Report Type
DocType: DocField,Signature,Destnîşan
@@ -2744,6 +2772,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} xwe bi vî karî ve diyar kir: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Welatê xwe
DocType: Assignment Rule Day,Sunday,Yekşem
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Ji bo belgeyên ku bikarhênerên wan hene, li ser Malpera Event Producer Log-ê ya hemî insert, nûvekirin û jêbirinan pêk tîne."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Navê qadê nikare yek ji {1} be
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Helwestan
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Li Grid View
@@ -2886,7 +2915,6 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,No {0}
DocType: OAuth Bearer Token,Revoked,bêparkirin
DocType: Web Page,Sidebar and Comments,Darikê Kêlekê û Comments
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Gava ku tu Qanûnên belgeyeke piştî Cancel û wê xilas bike, ew dê hejmara nû ye, ku version of hejmara kevin bistînin."
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Hesabê e-nameyê nehatiye saz kirin. Ji kerema xwe ji Sîstema> E-name> Hesaba E-nameyê hesabek Emailek nû çêbikin
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Belgeya li {0}
DocType: Stripe Settings,Publishable Key,Key Publishable
DocType: Stripe Settings,Publishable Key,Key Publishable
@@ -2963,7 +2991,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Level destûr
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Can set ne Submit, Cancel, Qanûnên bê Write"
DocType: List View Setting,Disable Count,Hejmartin disekinî
-DocType: Google Maps Settings,Client Key,Key Client
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,"Ma tu dizanî, tu dixwazî jê bibî girêdayî?"
apps/frappe/frappe/__init__.py,Thank you,Spas dikim
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Saving
@@ -3087,6 +3114,7 @@ DocType: Workflow Document State,Only Allow Edit For,Tenê Destûrê biguherîne
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Vegere Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},warê Mandatory: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Navê te
+DocType: Event Producer Document Type,Event Producer Document Type,Cureya Belgeya Pêşkêşvanê bûyerê
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Girêdana Serkeftinê
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Pirtûka Pirtûka Pirtûka Pêdivî ya Berfirehkirî ya Berê jî heye.
@@ -3154,6 +3182,7 @@ DocType: Address,Postal Code,Kodeya postê
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Communication Relink
DocType: Translation,Contributed,Beşdar kirin
apps/frappe/frappe/config/customization.py,Form Customization,Forma Xerîdarbûnê
+DocType: Event Update Log,Event Update Log,Log Têkeve Rojane
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Sessions Çalak
DocType: Web Form,Route to Success Link,Roja Serketina Serkeftinê
DocType: Onboarding Slide Field,Right,Rast
@@ -3179,7 +3208,7 @@ DocType: Website Settings,Chat Operators,Chat Operators
DocType: S3 Backup Settings,ca-central-1,ca-navendî-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Ji kerema xwe bila ku tu stûnên vala li file hene.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Ger di gelek qonaxan de derbas bibe, serpêhatiyên li ser jiyana jîngehekê didomîne."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Ger di gelek qonaxan de derbas bibe, serpêhatiyên li ser jiyana jîngehekê didomîne."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Pel û pelên nû hatin veguheztin û li şîfrekirinê koda li şûna, ji kerema xwe ve kontrol bikin!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Ji kerema xwe, da ku profîla te heye an email address"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Tu xwedî de guhertinên netomarkirî vê formê. Ji kerema xwe xilas bike Berî ku tu bidomîne.
@@ -3204,7 +3233,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Piştgiriya Apple API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Dikarin belgeya betalkirin rûpelê ne: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Can rapora standard biguherîne. Ji kerema xwe ve vedîtina û avakirina rapora nû
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Company wêneke e, wekî ku address şirketa we ye"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Ji bo nimûne: Heke tu dixwazî de ID belgeyê de, bi kar tînin {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Stûn Table Hilbijêre ji bo {0}
DocType: Custom Field,Options Help,Vebijêrkên Alîkarî
@@ -3212,7 +3240,6 @@ DocType: Footer Item,Group Label,Label Group
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Têkiliyên Google-ê hatiye mîheng kirin.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 tomar dê were hinardekirin
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ne hesabek e-nameyê bi bikarhênerê re têkildar e. Ji kerema xwe hesabek di bin Bikarhêner> E-nameya Emailê de zêde bikin.
DocType: DocField,Report Hide,Report veşêre
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},View Tree ji bo amade ne {0}
DocType: DocType,Restrict To Domain,Teng bike To Domain
@@ -3277,7 +3304,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Qada {1} ya celeb {2} ne mecbûrî ye
DocType: System Settings,In Days,Di Rojan de
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Revandin
+DocType: Event Producer Document Type,Has Mapping,Mapping heye
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,ji kerema xwe binivîsin
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Nirxa Filterê Nakokî
DocType: Comment,Bot,bot
DocType: Help Article,Help Article,alîkarî Babet
DocType: Page,Page Name,Page Name
@@ -3383,7 +3412,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Print Format
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Goggle Toggle View
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Herin tomarê din
-DocType: System Settings,Time Format,Format Time
+DocType: Country,Time Format,Format Time
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,muesseseyên peredana deryek Invalid
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ev pelê pelê tenê bi rêzên ku di hin çewtiyê de têne afirandin. Divê hûn pelê rastkirinê û importê bikar bînin.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Permissions Set li ser Types dokumênt û rolên
@@ -3699,6 +3728,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Destûrê bikar bîne Navê bikarhênerê bikar bînin
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,çalak Report
DocType: DocField,Display Depends On,Display Dimîne li ser
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} sal (sal) berê
DocType: Social Login Key,API Endpoint,API Endpoint
DocType: Web Page,Insert Code,Code Insert
DocType: Data Migration Run,Current Mapping Type,Tîpa Mapping
@@ -3751,6 +3781,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Ema
apps/frappe/frappe/www/login.html,Or login with,An jî têketinê bi
DocType: Error Snapshot,Locals,Locals
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Danûstandinê de bi rêya {0} li {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Cûreyên Belgefîlmên Pêşkeftinê
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ji kerema xwe ji Sîstema> E-name> Hesabê E-nameya Ragihandinê şîfreya E-nameyê ya default bike
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Koma Bi Hilbijêrin ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,eg (55 + 434) / 4 an = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} pêwîst e
@@ -3782,9 +3814,11 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have
DocType: Deleted Document,GCalendar Sync ID,Nasnameya GCalendar Sync
DocType: Prepared Report,Report Start Time,Rapora Destpêk Destpêk
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Daneyên Danûstandinê
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Her bûyerê ku bi rewşa hevgirtinê re têkildar re têkildar digire û pêvekê bişkojka Resyncê têkel bike.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Stûn Hilbijêre
DocType: Translation,Source Text,Source Nivîsar di
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Ev raporek paşîn e. Ji kerema xwe fîlterên guncandî saz bikin û dûv nû nû çêbikin.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Hesabê e-nameyê nehatiye saz kirin. Ji kerema xwe ji Sîstema> E-name> Hesaba E-nameyê hesabek Emailek nû çêbikin
apps/frappe/frappe/www/login.py,Missing parameters for login,Parametreyên Missing ji bo têketinê
DocType: Workflow State,folder-open,Peldanka-vekirî
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Piştî radestkirinê, belgeyên radest nayên guheztin. Ew tenê dikarin werin betalkirin û nûvekirin."
@@ -3861,6 +3895,7 @@ DocType: Event,Send an email reminder in the morning,Send an bîrxistineke email
DocType: Blog Post,Published On,Published ser
DocType: Contact,Gender,Regez
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Information wêneke missing:
+DocType: Event Consumer,Event Subscriber,Subscriber Event
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Request Request URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Tenê 200 inserts destûr li yek daxwazeke
DocType: Footer Item,URL,URL
@@ -3873,6 +3908,7 @@ DocType: Auto Email Report,Half Yearly,nîv Hit
DocType: Communication,Marked As Spam,Mohra xwe Wekî Spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},e hinek pirsgirêk bi url file hene: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Dar
+DocType: Event Producer Document Type,Use Same Name,Navê Hemî bikar bînin
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Tu bi destûr ne ji bo print vê raporê
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Permissions Bikarhêner
DocType: Workflow State,warning-sign,warning-sign
@@ -3882,6 +3918,7 @@ DocType: Workflow State,User,Bikaranîvan
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",title Show in browser window wek "pêşbendik - title"
DocType: Payment Gateway,Gateway Settings,Gateway Settings
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text li cureyê pelgeyê
+DocType: Event Sync Log,Event Sync Log,Log Têkeve Sînorê
apps/frappe/frappe/handler.py,Logged Out,(logged out)
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Zêde...
DocType: System Settings,User can login using Email id or Mobile number,Bikarhêner nikarim têkevim bikaranîna id Email an hejmara Mobile
@@ -3921,12 +3958,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ne In
DocType: Workflow State,star,stêrk
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,Heke ev were kontrolkirin belge dê heman navî bixwe heye ku li ser Malpera Hilberînerê Bûyerê heye
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,nirxên cuda ji aliyê commas
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},width Max ji bo cureyê Exchange 100px li row e {0}
apps/frappe/frappe/config/website.py,Content web page.,web page Content.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Lê zêde bike roleke nû
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Serdana Malperê bikin
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Destûrnameya nû
+DocType: Event Consumer Document Type,Approved,pejirandin
DocType: Google Contacts,Last Sync On,Sync Dîroka Dawîn
DocType: Deleted Document,Deleted Document,Dokumentê deleted
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Tiştek xelet çû
@@ -3978,7 +4017,6 @@ DocType: DocField,Unique,Yekane
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} li ser {1} tête nirxandin
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Serkeftina Partî
DocType: Email Account,Service,Xizmetkar
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Bikarhêner
DocType: File,File Name,file Name
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nedît {0} ji bo {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -3990,11 +4028,10 @@ DocType: Calendar View,Calendar View,Calendar View
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,biguherîne Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Registration Complete
DocType: GCalendar Settings,Enable,Bikêrkirin
-DocType: Google Maps Settings,Home Address,Navnîşana malê
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Tu tenê dikarî upto 5000 records li yek go bar. (Dibe ku kêmtir be di hinek rewşan de)
DocType: Report,"output in the form of `data = [columns, result]`","derketî di forma `dan = de,"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Cureyên Belgeya Bêdeng
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Ji bo erkên bikarhêner rêzikan bicîh bînin.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Ji bo erkên bikarhêner rêzikan bicîh bînin.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Destûr Têrê nake ji bo {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Destûr Têrê nake ji bo {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Report hat xilas ne (bûn de çewtî heye)
diff --git a/frappe/translations/lo.csv b/frappe/translations/lo.csv
index acc6100da1..b3aeec5138 100644
--- a/frappe/translations/lo.csv
+++ b/frappe/translations/lo.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,ນີ້ປັບປຸງພາລະບົດບາດການອະນຸຍາດຜູ້ໃຊ້ວຽກຂອງຜູ້ໃຊ້
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},ປ່ຽນຊື່ {0}
DocType: Workflow State,zoom-out,ຂະຫຍາຍອອກ
-DocType: Data Import Beta,Import Options,ຕົວເລືອກການ ນຳ ເຂົ້າ
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,ບໍ່ສາມາດເປີດ {0} ໃນເວລາຍົກຕົວຢ່າງຂອງຕົນເປີດ
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,ຕາຕະລາງ {0} ບໍ່ສາມາດປ່ອຍຫວ່າງ
DocType: SMS Parameter,Parameter,ພາລາມິເຕີ
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,ຍ
DocType: DocType,Is Published Field,ແມ່ນຈັດພີມມາຢູ່ພາກສະຫນາມ
DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings
DocType: Email Group,Email Group,Group Email
-apps/frappe/frappe/__init__.py,Only for {},ສຳ ລັບ {} ເທົ່ານັ້ນ
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar - ບໍ່ສາມາດລຶບເຫດການ {0} ຈາກ Google Calendar, ລະຫັດຜິດພາດ {1}."
DocType: Event,Pulled from Google Calendar,ດຶງຈາກ Google Calendar
DocType: Note,Seen By,ເຫັນໂດຍ
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,ຕື່ມຫຼ
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,ບໍ່ແມ່ນຮູບພາບຜູ້ໃຊ້ທີ່ຖືກຕ້ອງ.
DocType: Energy Point Log,Reverted,ກັບມາແລ້ວ
DocType: Success Action,First Success Message,ຂໍ້ຄວາມຄວາມສໍາເລັດຄັ້ງທໍາອິດ
+DocType: Document Type Mapping,Document Type Mapping,ແຜນທີ່ປະເພດເອກະສານ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ບໍ່ຄື
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ຄ່າບໍ່ຖືກຕ້ອງ: {0} ຕ້ອງ {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ຄຸນສົມບັດການປ່ຽນແປງພາກສະຫນາມ (hide, ອ່ານຢ່າງດຽວ, ອະນຸຍາດແລະອື່ນໆ)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,ເວັບໄຊທ໌ທີ່ ກຳ ລັງຊົມໃຊ້ເຫດການຂອງທ່ານ.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ຮູ້ບຸນຄຸນ
DocType: Notification Settings,Document Share,ການແບ່ງປັນເອກະສານ
DocType: Workflow State,lock,ລັອກ
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,ເຂົ້າສູ່ລະບົບ
DocType: Workflow State,indent-right,indent ສິດທິ
DocType: Has Role,Has Role,ມີພາລະບົດບາດ
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,ທີ່ໃຊ້ເວລາໃນວິນາທີທີ່ຈະຮັກສາຮູບພາບລະຫັດ QR ກ່ຽວກັບເຄື່ອງແມ່ຂ່າຍຂອງ. ຕ່ໍາສຸດ: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} ສຳ ລັບ {2} ບໍ່ສາມາດຖືກດັດສະນີ
DocType: Dashboard Chart,Timespan,Timespan
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web Link
DocType: Deleted Document,Restored,ການຟື້ນຟູ
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","ມີຂໍ້ຜິດພາດໃນການເຊື່ອມຕໍ່ QZ Tray Application ...
ທ່ານ ຈຳ ເປັນຕ້ອງມີການຕິດຕັ້ງແລະແລ່ນ QZ Tray, ເພື່ອໃຊ້ຄຸນລັກສະນະ Raw Print.
ກົດບ່ອນນີ້ເພື່ອດາວໂຫລດແລະຕິດຕັ້ງ QZ Tray .
ກົດບ່ອນນີ້ເພື່ອຮຽນຮູ້ເພີ່ມເຕີມກ່ຽວກັບການພິມດິບ ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 ນາທີກ່ອນຫນ້ານີ້
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","ນອກຈາກຈັດການລະບົບ, ພາລະບົດບາດທີ່ມີກໍານົດການອະນຸຍາດຂອງຜູ້ໃຊ້ທີ່ຖືກຕ້ອງສາມາດກໍານົດການອະນຸຍາດສໍາລັບຜູ້ຊົມໃຊ້ອື່ນໆສໍາລັບການທີ່ປະເພດເອກະສານ."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,ຕັ້ງຄ່າຫົວຂໍ້
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,UNSEEN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ຈັດການໄຟລ໌
DocType: Website Settings,"HTML Header, Robots and Redirects","ຫົວ HTML, ຫຸ່ນຍົນແລະການປ່ຽນເສັ້ນທາງ"
DocType: GCalendar Account,Refresh Token,Refresh Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,ລົ້ມເຫລວໃນການເຊື່ອມຕໍ່ກັບເວັບໄຊທ໌ Producer Event. ລອງ ໃໝ່ ອີກຄັ້ງ.
DocType: Address,Goa,ກົວ
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,ບໍ່ມີວຽກທີ່ຍັງຄ້າງຫລືປະຈຸບັນ ສຳ ລັບເວບໄຊທ໌ນີ້
DocType: Webhook,Doc Event,Doc Event
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,ຜູ້ຈັດການສະຄິບ
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,ບໍ່ມີກິດຈະ ກຳ
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps ພາກສ່ວນທີສາມ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ຜູ້ໃຊ້ທໍາອິດທີ່ຈະກາຍເປັນລະບົບຈັດການ (ທ່ານສາມາດມີການປ່ຽນແປງນີ້ຕໍ່ມາ).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,ທ່ານສາມາດລອງປ່ຽນການກັ່ນຕອງຂອງບົດລາຍງານຂອງທ່ານ.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ບໍ່ມີເຫດການໃນມື້ນີ້
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,ທ່ານບໍ່ສາມາດໃຫ້ຈຸດທົບທວນຄືນແກ່ທ່ານເອງ
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType ຕ້ອງສົ່ງຕໍ່ກັບເຫດການ Doc ທີ່ເລືອກ
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ສົ່ງອີເມວທີ່ກ່ຽວຂ້ອງກັບເອກະສານນີ້
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,ກະລຸນາເລືອກ atleast 1 ຖັນຈາກ {0} ຈະຮຽງລໍາດັບ / ກຸ່ມ
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},ບໍ່ອະນຸຍາດ ສຳ ລັບ {0}: {1}. ເຂດຂໍ້ ຈຳ ກັດ: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,ບໍລິສັດບໍ່ເຊື່ອມໂຍງ
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ກວດສອບການຖ້າຫາກວ່າທ່ານກໍາລັງທົດສອບການຊໍາລະເງິນຂອງທ່ານໂດຍໃຊ້ Sandbox API
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ລົບ Theme ເວັບໄຊທ໌ມາດຕະຖານ
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},ສ້າງ {0} ທຳ ອິດຂອງທ່ານ
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},ກາ
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,ສະໄລ້ Onboarding {0} ທີ່ມີ ຄຳ ສັ່ງສະໄລ້ດຽວກັນມີຢູ່ແລ້ວ
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ປິດການໃຊ້ງານ Report
DocType: Translation,Contributed Translation Doctype Name,ປະກອບສ່ວນຊື່ການແປພາສາ Doctype
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ຕັ້ງຄ່າ> ປັບແຕ່ງແບບຟອມ
DocType: PayPal Settings,Redirect To,ປ່ຽນເສັ້ນທາງໄປ
DocType: Data Migration Mapping,Pull,ດຶງ
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports [ 'REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,ບໍ່ອະນຸຍາດ
DocType: DocShare,Internal record of document shares,ການບັນທຶກພາຍໃນຂອງເອກສານ
DocType: Energy Point Settings,Review Levels,ລະດັບການທົບທວນຄືນ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ຕັ້ງຄ່າ> ການອະນຸຍາດຂອງຜູ້ໃຊ້
DocType: Workflow State,Comment,ຄໍາຄິດຄໍາເຫັນ
DocType: Data Migration Plan,Postprocess Method,Postprocess Method
DocType: DocType Action,Action Type,ປະເພດການປະຕິບັດງານ
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,ສ
DocType: Workflow State,remove-circle,ເອົາແຜ່ນປ້າຍວົງກົມ
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,ຂໍ້ມູນຂອງຂ້ອຍ
DocType: Help Article,Beginner,ເລີ່ມຕົ້ນ
+apps/frappe/frappe/__init__.py,This action is only allowed for {},ການກະ ທຳ ນີ້ແມ່ນອະນຸຍາດ ສຳ ລັບ {}
DocType: Contact,Is Primary Contact,ເປັນຕິດຕໍ່ຊັ້ນປະຖົມ
+DocType: Event Consumer,Event Consumer,ຜູ້ບໍລິໂພກເຫດການ
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript ຫາກຕ້ອງການຜນວກກັບພາກສ່ວນຫົວຂອງຫນ້າ.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,ເພີ່ມ / ປັບປຸງ
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,ບໍ່ອະນຸຍາດໃຫ້ພິມເອກະສານຮ່າງ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,ຕັ້ງຄ່າໄປໄວ້ໃນຕອນ
DocType: Workflow,Transition Rules,ກົດລະບຽບການປ່ຽນແປງ
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,ສະແດງພຽງແຕ່ແຖວ {0} ເທົ່ານັ້ນໃນການເບິ່ງກ່ອນ
apps/frappe/frappe/core/doctype/report/report.js,Example:,ຍົກຕົວຢ່າງ:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ຂໍ້ ຈຳ ກັດ
DocType: Workflow,Defines workflow states and rules for a document.,ໄດ້ກໍານົດປະເທດ workflow ແລະລະບຽບການສໍາລັບເອກະສານ.
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,ເຮັດເລື້ມຄືນ Till
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,ໃຫມ່
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,ທ່ານ ຈຳ ເປັນຕ້ອງສ້າງສິ່ງ ທຳ ອິດເຫລົ່ານີ້:
-DocType: Google Maps Settings,Google Maps Settings,Google Maps Settings
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ...
DocType: DocField,Password,ລະຫັດຜ່ານ
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,ລະບົບຂອງທ່ານຈະຖືກປັບປຸງ. ກະລຸນາໂຫຼດຫນ້າຈໍຄືນອີກເທື່ອຫນຶ່ງຫຼັງຈາກທີ່ປັດຈຸບັນບໍ່ຫຼາຍປານໃດ
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,ເລື່ອນລົງເທິ
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ:
DocType: Print Settings,Send document web view link in email,ສົ່ງເອກະສານການເຊື່ອມຕໍ່ເບິ່ງເວັບໄຊຕໃນອີເມລ໌
+DocType: Event Consumer Document Type,Event Consumer Document Type,ປະເພດເອກະສານຜູ້ບໍລິໂພກເຫດການ
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,ທີ່ຜ່ານມາ
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,ຕ້ອງການໃບຢັ້ງຢືນທີ່ເຊື່ອຖືໄດ້
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,ປະລິມານລົງ
DocType: Onboarding Slide,Help Links,ລິ້ງຊ່ວຍເຫຼືອ
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ການເຂົ້າເຖິງບໍ່ໄດ້ຮັບອະນຸຍາດຈາກທີ່ຢູ່ IP ນີ້
DocType: Notification Settings,Enable Email Notifications,ເປີດໃຊ້ການແຈ້ງເຕືອນອີເມວ
+DocType: Document Type Field Mapping,Event Streaming,ກະແສເຫດການ
apps/frappe/frappe/desk/reportview.py,No Tags,No Tags
DocType: Email Account,Send Notification to,ສົ່ງແຈ້ງການ
DocType: DocField,Collapsible,Collapsible
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,ບໍ່ມີເງື່ອນໄຂໃດໆ
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y Axis Fields
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ພາກສະຫນາມຈັດລຽງ {0} ຈະຕ້ອງເປັນ fieldname ຖືກຕ້ອງ
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ບໍ່ພົບແມ່ແບບທີ່ຢູ່ເລີ່ມຕົ້ນ. ກະລຸນາສ້າງແບບ ໃໝ່ ຈາກການຕິດຕັ້ງ> ການພິມແລະການສ້າງຍີ່ຫໍ້> ແມ່ແບບທີ່ຢູ່.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,ເພີ່ມເຕີມ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,ສ້າງບັນທຶກ ໃໝ່
DocType: Contact,Sales Manager,ຜູ້ຈັດການຝ່າຍຂາຍ
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,ປ່ຽນຊື່
DocType: Print Format,Format Data,ຮູບແບບຂໍ້ມູນ
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} ບໍ່ແມ່ນຮູບແບບການລາຍງານທີ່ຖືກຕ້ອງ. ຮູບແບບການລາຍງານຄວນຈະເປັນອັນດັບ ໜຶ່ງ ຕໍ່ໄປນີ້ {1}
DocType: List Filter,Filter Name,ຊື່ກອງ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,ເຊັ່ນດຽວກັນກັບ
DocType: Assignment Rule,Automation,ອັດຕະໂນມັດ
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,Key ລະຫັດຜ່ານ
DocType: Dashboard Chart,All Time,ຕະຫລອດເວລາ
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},ສະຖານະພາບເອກະສານຜິດກົດຫມາຍສໍາລັບ {0}
DocType: Email Account,Enable Auto Reply,ເຮັດໃຫ້ອັດຕະໂນມັດ Reply
+apps/frappe/frappe/desk/query_report.py,No data to export,ບໍ່ມີຂໍ້ມູນທີ່ຈະສົ່ງອອກ
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,ບໍ່ໄດ້ເຫັນ
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,ບໍ່ສາມາດມີຫລາຍເຄື່ອງພິມທີ່ຖືກສ້າງເປັນແຜນຜັງພິມດຽວ.
DocType: Workflow State,zoom-in,ຂະຫຍາຍເຂົ້າ
@@ -841,6 +851,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ປ່ຽ
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ກ່ອນອື່ນ ໝົດ
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,ປັບປຸງການແປພາສາ
DocType: Error Snapshot,Exception,ຂໍ້ຍົກເວັ້ນ
+DocType: Event Consumer,Event Consumer Document Types,ປະເພດເອກະສານຜູ້ບໍລິໂພກເຫດການ
DocType: Email Account,Use IMAP,ການນໍາໃຊ້ IMAP
DocType: Activity Log,Activity Log,ກິດຈະກໍາເຂົ້າສູ່ລະບົບ
DocType: View Log,Viewed By,Viewed By
@@ -880,6 +891,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ກ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configure Charts
DocType: User,Last IP,IP ຫຼ້າສຸດ
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,ໂປດເພີ່ມຫົວເລື່ອງໃຫ້ກັບອີເມວຂອງທ່ານ
+apps/frappe/frappe/model/workflow.py,Errored Transactions,ທຸລະ ກຳ ທີ່ເກີດຂື້ນ
DocType: Data Migration Connector,Data Migration Connector,ຕົວເຊື່ອມໂຍງການປ່ຽນແປງຂໍ້ມູນ
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ກັບຄືນໄປບ່ອນ {1}
DocType: Email Account,Track Email Status,ຕິດຕາມສະຖານະອີເມວ
@@ -911,6 +923,7 @@ DocType: Email Queue,Attachments,ໄຟລ໌ແນບ
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,ທ່ານບໍ່ມີການອະນຸຍາດໃນການເຂົ້າເຖິງເອກະສານນີ້
DocType: Language,Language Name,ພາສາ
DocType: Email Group Member,Email Group Member,ອີເມວ Group Member
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ບໍ່ມີບັນຊີອີເມວທີ່ກ່ຽວຂ້ອງກັບຜູ້ໃຊ້. ກະລຸນາເພີ່ມບັນຊີພາຍໃຕ້ຜູ້ໃຊ້> Inbox Email.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,ບັນຊີຂອງທ່ານຖືກລັອກແລະຈະດໍາເນີນຕໍ່ພາຍຫຼັງ {0} ວິນາທີ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,ສິດຂອງຜູ້ໃຊ້ຖືກນໍາໃຊ້ເພື່ອຈໍາກັດຜູ້ໃຊ້ໃຫ້ບັນທຶກສະເພາະ.
DocType: Notification,Value Changed,ມູນຄ່າການປ່ຽນແປງ
@@ -1003,6 +1016,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,ເວົ້າ
DocType: Help Article,Expert,ຜູ້ຊ່ຽວຊານ
DocType: Workflow State,circle-arrow-right,"ແຜ່ນປ້າຍວົງກົມ, ລູກສອນສິດ"
DocType: Role Profile,Role Profile,Profile Role
+DocType: Document Type Mapping,Remote Document Type,ປະເພດເອກະສານທາງໄກ
apps/frappe/frappe/permissions.py,Document Type is not importable,ປະເພດເອກະສານແມ່ນບໍ່ສາມາດ ນຳ ເຂົ້າໄດ້
DocType: LDAP Settings,LDAP Server Url,LDAP Server Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,ບໍ່ສາມາດເປີດການຍົກຕົວຢ່າງໃນເວລາທີ່ຂອງຕົນ {0} ເປີດ
@@ -1088,7 +1102,7 @@ DocType: Web Form,Allow Print,ອະນຸຍາດໃຫ້ພິມ
DocType: Communication,Clicked,ຄິກ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,ບໍ່ຕິດ
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ບໍ່ອະນຸຍາດໃຫ້ '{0} {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາຕັ້ງຄ່າບັນຊີອີເມວເລີ່ມຕົ້ນຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},ສະແດງພຽງແຕ່ {0} ແຖວ ທຳ ອິດຈາກ {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,ກໍານົດທີ່ຈະສົ່ງ
DocType: DocType,Track Seen,ຕິດຕາມຄັ້ງ
DocType: Dropbox Settings,File Backup,File Backup
@@ -1159,6 +1173,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ເ
DocType: Data Export,Filter List,Filter list
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: ມມ
+DocType: Event Sync Log,Event Configurations,ການຕັ້ງຄ່າເຫດການ
DocType: Email Account,Auto Reply Message,ອັດຕະໂນມັດ Reply ຂໍ້ຄວາມ
DocType: Data Migration Mapping,Condition,ສະພາບ
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ຊົ່ວໂມງກ່ອນຫນ້ານີ້
@@ -1218,9 +1233,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,ສະເຫ
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,ເຂົ້າສູ່ລະບົບເພື່ອສະແດງຄວາມເຫັນ
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,ເລີ່ມຕົ້ນການປ້ອນຂໍ້ມູນຂ້າງລຸ່ມນີ້ອອນໄລນ໌ນີ້
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},ຄຸນຄ່າການປ່ຽນແປງສໍາລັບ {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ID ອີເມວຕ້ອງເປັນເອກະລັກ, ບັນຊີ Email ຢູ່ແລ້ວ \ for {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ສຳ ລັບການປຽບທຽບ, ໃຊ້> 5, <10 ຫລື = 324. ສຳ ລັບຂອບເຂດ, ໃຫ້ໃຊ້ 5:10 (ສຳ ລັບຄ່າລະຫວ່າງ 5 ແລະ 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,ປັບ ...
DocType: Print Format,Align Labels to the Right,ຈັດການປ້າຍຊື່ໄປທາງຂວາ
DocType: Assignment Rule,Disabled,ຄົນພິການ
@@ -1269,8 +1283,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,ຄີບອດ
DocType: Post,Comments,ຄວາມຄິດເຫັນ
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,ຢືນຢັນ
+DocType: Event Sync Log,Update Type,ປະເພດການປັບປຸງ
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,ການກວດສອບຄວາມຖືກຕ້ອງ ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,ສະແດງ
+DocType: Event Producer,Last Update,ການປັບປຸງຫຼ້າສຸດ
apps/frappe/frappe/www/login.html,Forgot Password?,ລືມລະຫັດຜ່ານ?
DocType: System Settings,yyyy-mm-dd,"yyyy ມມ, dd"
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1311,6 +1327,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,ມືພ
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,ຄໍລໍາໂດຍອີງໃສ່
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","ການ ນຳ ເຂົ້າ {0} ຂອງ {1}, {2}"
DocType: Workflow State,move,ການເຄື່ອນໄຫວ
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,ລົ້ມເຫລວໃນການສ້າງ Event Consumer ຫລື Event Consumer ສຳ ລັບເວບໄຊທ໌ປັດຈຸບັນໄດ້ລົງທະບຽນແລ້ວ.
apps/frappe/frappe/model/document.py,Action Failed,ປະຕິບັດງານສົບຜົນສໍາເລັດ
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,ສໍາລັບຜູ້ໃຊ້
DocType: View Log,View log,ເບິ່ງບັນທຶກ
@@ -1474,6 +1491,7 @@ DocType: DefaultValue,Key,ທີ່ສໍາຄັນ
DocType: Address,Contacts,ຕິດຕໍ່ພົວພັນ
DocType: System Settings,Setup Complete,ການຕິດຕັ້ງສໍາເລັດ
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,ບົດລາຍງານຂອງຮຸ້ນເອກະສານທັງຫມົດ
+DocType: Event Consumer,Callback URL,URL ຂອງການໂທ
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","ແມ່ແບບການ ນຳ ເຂົ້າຄວນມີປະເພດ .csv, .xlsx ຫຼື .xls"
apps/frappe/frappe/www/update-password.html,New Password,ລະຫັດຜ່ານໃຫມ່
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ການກັ່ນຕອງ {0} ທີ່ຂາດຫາຍໄປ
@@ -1541,7 +1559,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ຄ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; ບໍລິການສະພາບ
DocType: Async Task,Async Task,Async Task
DocType: Workflow State,picture,ຮູບພາບ
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ສົມບູນ
+DocType: Scheduled Job Log,Complete,ສົມບູນ
DocType: DocType,Image Field,ມືພາກສະຫນາມຮູບພາບ
DocType: Print Format,Custom HTML Help,ຊ່ວຍເຫຼືອ HTML Custom
DocType: LDAP Settings,Default Role on Creation,ພາລະບົດບາດໃນຕອນຕົ້ນກ່ຽວກັບການສ້າງ
@@ -1567,6 +1585,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ຊ່ວຍເຫຼືອໃນການຄົ້ນຫາ
DocType: Milestone,Milestone Tracker,ຕິດຕາມ Milestone
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ທະບຽນແລ້ວແຕ່ຄົນພິການ
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,ທີ່ຢູ່ຕ້ອງໄດ້ເຊື່ອມໂຍງກັບບໍລິສັດ. ກະລຸນາຕື່ມແຖວ ສຳ ລັບບໍລິສັດໃນຕາຕະລາງ Links ຂ້າງລຸ່ມ.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Auto Repeat ສຳ ລັບເອກະສານນີ້ໄດ້ຖືກປິດໃຊ້ງານແລ້ວ.
DocType: DocType,Hide Copy,ຊ່ອນ Copy
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ອະນາໄມພາລະບົດບາດທັງຫມົດ
@@ -1605,6 +1624,7 @@ DocType: Bulk Update,Field,ພາກສະຫນາມ
DocType: Communication,Received,ໄດ້ຮັບ
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","ຜົນກະທົບຕໍ່ກັບວິທີການທີ່ຖືກຕ້ອງເຊັ່ນ: "before_insert", "after_update", ແລະອື່ນໆ (ຈະຂຶ້ນກັບ DocType ການຄັດເລືອກ)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},ມູນຄ່າການປ່ຽນແປງຂອງ {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},ການຕັ້ງຄ່າບັນຊີອີເມວກະລຸນາໃສ່ລະຫັດຜ່ານຂອງທ່ານ ສຳ ລັບ: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,ເພີ່ມລະບົບຈັດການກັບຜູ້ໃຊ້ນີ້ເປັນຈະຕ້ອງມີ atleast System ຫນຶ່ງ Manager
DocType: Chat Message,URLs,URLs
DocType: Data Migration Run,Total Pages,ຫນ້າທັງຫມົດ
@@ -1612,7 +1632,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,ຄັດຕິດຮູບພາບ
DocType: Workflow State,list-alt,"ບັນຊີລາຍຊື່, alt"
apps/frappe/frappe/www/update-password.html,Password Updated,ລະຫັດຜ່ານ Updated
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ຕັ້ງຄ່າ> ການອະນຸຍາດຂອງຜູ້ໃຊ້
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ຂັ້ນຕອນໃນການກວດສອບລະບົບຂອງທ່ານ
apps/frappe/frappe/utils/password.py,Password not found,ບໍ່ພົບລະຫັດຜ່ານ
DocType: Webhook,Webhook Secret,Webhook ລັບ
@@ -1628,8 +1647,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,ການຕັ
DocType: Report,Query Report,ບົດລາຍງານແບບສອບຖາມ
DocType: User,Set New Password,ກໍານົດລະຫັດຜ່ານໃຫມ່
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},ບໍ່ອະນຸຍາດ ສຳ ລັບ {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% s ບໍ່ແມ່ນຮູບແບບບົດລາຍງານທີ່ຖືກຕ້ອງ. ຮູບແບບບົດລາຍງານຄວນ \ ຫນຶ່ງໃນ% s ຕໍ່ໄປນີ້
DocType: Chat Message,Chat,ສົນທະນາ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},ບໍ່ພົບເອກະສານຖືກຕິດກັບ {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,ແຜນທີ່ກຸ່ມ LDAP
@@ -1665,7 +1682,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ກະລ
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ເຂົ້າ Secret
DocType: Tag Link,Document Title,ຫົວຂໍ້ເອກະສານ
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ບັງຄັບ)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ປີທີ່ຜ່ານມາ
DocType: Social Login Key,Social Login Provider,ຜູ້ໃຫ້ບໍລິການສັງຄົມ
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,ຕື່ມການຄໍາເຫັນອີກປະການຫນຶ່ງ
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ບໍ່ພົບຂໍ້ມູນໃນໄຟລ໌. ກະລຸນາແນບໄຟລ໌ໃຫມ່ດ້ວຍຂໍ້ມູນ.
@@ -1713,6 +1729,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ເລ
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ປີ
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,ຢ່າງຖາວອນລຶບ {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,ເອກະສານດຽວກັນໄດ້ຮັບການທີ່ຂຶ້ນກັບການບັນທຶກ
+DocType: Event Sync Log,Synced,ຊິ້ງ
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ບໍ່ແມ່ນລັດການເຮັດວຽກທີ່ຖືກຕ້ອງ. ກະລຸນາອັບເດດ Workflow ແລະລອງອີກຄັ້ງ.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,ໃຫ້ {0} ຈຸດ
DocType: Workflow State,wrench,wrench
@@ -1815,6 +1832,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,Length Max
DocType: Print Format,Jinja,ຈິນ
DocType: Workflow State,map-marker,"ແຜນທີ່, ເຄື່ອງຫມາຍ"
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,ການ ກຳ ນົດແຜນທີ່ລະຫວ່າງສອງ ຄຳ ສອນ.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ຍື່ນສະເຫນີບັນຫາ
DocType: Event,Repeat this Event,ເຮັດເລື້ມຄືນກິດຈະກໍານີ້
DocType: Address,Maintenance User,ຜູ້ໃຊ້ບໍາລຸງຮັກສາ
@@ -1874,6 +1892,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,ການທົດສອບທີ່ຢູ່ອີເມວ
DocType: Auto Repeat,Reference Document Type,ປະເພດເອກະສານອ້າງອີງ
DocType: ToDo,Sender,ຜູ້ສົ່ງ
+DocType: Event Consumer,Incoming Change,ການປ່ຽນແປງທີ່ເຂົ້າມາ
DocType: Google Drive,Backup Folder Name,ຊື່ແຟ້ມ ສຳ ຮອງ
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,ຂໍ້ຜິດພາດໃນຂະນະທີ່ປະເມີນການແຈ້ງເຕືອນ {0}. ກະລຸນາແກ້ໄຂແບບຟອມຂອງທ່ານ.
DocType: GSuite Settings,Google Apps Script,Script ກູໂກ Apps
@@ -1936,9 +1955,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,ຊື
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,ກົດເຂົ້າໄປທີ່ລິງຂ້າງລຸ່ມນີ້ເພື່ອອະນຸມັດ ຄຳ ຮ້ອງຂໍ
DocType: Workflow State,align-left,ວາງຊ້າຍ
DocType: Onboarding Slide,Action Settings,ການຕັ້ງຄ່າການປະຕິບັດງານ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ຕັ້ງຄ່າ> ຜູ້ໃຊ້
DocType: User,Defaults,ຄ່າເລີ່ມຕົ້ນ
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ສຳ ລັບການປຽບທຽບ, ໃຊ້> 5, <10 ຫລື = 324. ສຳ ລັບຂອບເຂດ, ໃຫ້ໃຊ້ 5:10 (ສຳ ລັບຄ່າລະຫວ່າງ 5 ແລະ 10)."
DocType: Energy Point Log,Revert Of,ການກັບຄືນຂອງ
+DocType: Document Type Mapping,Field Mapping,ການສ້າງແຜນທີ່ພາກສະ ໜາມ
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,merge ກັບທີ່ມີຢູ່ແລ້ວ
DocType: User,Birth Date,ວັນເດືອນປີເກີດ
DocType: Communication Link,Link Title,ການເຊື່ອມຕໍ່ຫົວຂໍ້
@@ -1966,6 +1986,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,ການເຊື່ອມຕໍ່ Tag
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Chain Integrity
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,ໃນການທົດສອບ
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 ສະກຸນເງິນ = [?] ແຕ່ສ່ວນຫນຶ່ງສໍາລັບຕົວຢ່າງ 1 USD = 100 Cent
DocType: Data Import,Partially Successful,ບາງສ່ວນສໍາເລັດຜົນ
@@ -1975,6 +1996,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP Group Mappings
DocType: Chat Message Attachment,Chat Message Attachment,Chat Attach Attachment
DocType: LDAP Settings,Path to CA Certs File,ເສັ້ນທາງໄປຫາເອກະສານອ້າງອິງ CA
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,ຖ້າເອກະສານມີຊື່ພາກສະຫນາມທີ່ແຕກຕ່າງກັນກ່ຽວກັບການສິ້ນສຸດຂອງຜູ້ຜະລິດແລະຜູ້ຊົມໃຊ້ກວດກາສິ່ງນີ້ແລະຕັ້ງຄ່າແຜນທີ່
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,ອະນຸຍາດໃຫ້ອ່ານກ່ຽວກັບການເຊື່ອມຕໍ່ຕົວເລືອກທັງຫມົດ
DocType: DocType,Database Engine,ສະຖານຂໍ້ມູນ
@@ -2109,6 +2131,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,ຫມາຍເຫດ
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,ບົດລາຍງານຄວາມຜິດພາດ
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,ສົ່ງຂໍ້ມູນໃນຮູບແບບ CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,ການສ້າງແຜນທີ່ປະເພດເອກະສານ
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,ການຕັ້ງຄ່າເອກະສານຄົ້ນຫາທົ່ວໂລກ.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Apps ການກວດສອບທີ່ທ່ານສາມາດນໍາໃຊ້ໄດ້ແກ່:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ມີຢູ່ແລ້ວ. ເລືອກຊື່ອື່ນ
@@ -2184,7 +2207,6 @@ DocType: Workflow State,Upload,Upload
DocType: User Permission,Advanced Control,Advanced Control
DocType: System Settings,Date Format,ຮູບແບບວັນທີ່
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ບໍ່ໄດ້ຈັດພີມ
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ບໍ່ພົບແມ່ແບບທີ່ຢູ່ເລີ່ມຕົ້ນ. ກະລຸນາສ້າງແບບ ໃໝ່ ຈາກການຕິດຕັ້ງ> ການພິມແລະການສ້າງຍີ່ຫໍ້> ແມ່ແບບທີ່ຢູ່.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","ການກະທໍາສໍາລັບການສະແດງວຽກ (ຕົວຢ່າງ: ການອະນຸມັດ, ຍົກເລີກ)."
DocType: Data Import,Skip rows with errors,ລາກແຖວທີ່ມີຂໍ້ຜິດພາດ
DocType: Workflow State,flag,ທຸງ
@@ -2248,6 +2270,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ເປັນຕົວແທນປະເທດອະນຸຍາດໃຫ້ຢູ່ໃນເອກະສານແລະພາລະບົດບາດການມອບຫມາຍໃຫ້ມີການປ່ຽນແປງລັດ.
DocType: Data Migration Connector,Database Name,ຊື່ຖານຂໍ້ມູນ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ໃນແບບຟອມການໂຫຼດຫນ້າຈໍຄືນ
+DocType: Event Producer,Event Producer,ຜູ້ຜະລິດເຫດການ
DocType: DocField,Select,ເລືອກ
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,ເບິ່ງບັນທຶກເຕັມ
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","ການສະແດງອອກ Python ແບບງ່າຍດາຍ, ຕົວຢ່າງ: ສະຖານະພາບ == 'ເປີດ' ແລະພິມ == 'ບັກ'"
@@ -2349,6 +2372,7 @@ DocType: DocType,User Cannot Search,ຜູ້ໃຊ້ບໍ່ສາມາດ
DocType: Communication Link,Communication Link,ການເຊື່ອມຕໍ່ການສື່ສານ
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Format Output ທີ່ບໍ່ຖືກຕ້ອງ
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},ບໍ່ສາມາດ {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,{0} {1} ໄດ້ເກີດຂື້ນ ສຳ ລັບທ່ານຜ່ານ Auto Repeat {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,ໃຊ້ກົດລະບຽບນີ້ຖ້າຫາກວ່າຜູ້ໃຊ້ທີ່ເປັນເຈົ້າຂອງໄດ້
DocType: Global Search Settings,Global Search Settings,ການຕັ້ງຄ່າການຄົ້ນຫາທົ່ວໂລກ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,ຈະ ID ເຂົ້າສູ່ລະບົບຂອງທ່ານ
@@ -2366,12 +2390,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ລະຫັ
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ຕື່ມການທີ່ຈະເຮັດແນວໃດ
DocType: Footer Item,Company,ບໍລິສັດ
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ສະເລ່ຍຂອງ {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,ການເຮັດທຸລະ ກຳ ທີ່ປະສົບຜົນ ສຳ ເລັດ
DocType: Scheduled Job Log,Scheduled,ກໍານົດ
DocType: User,Logout from all devices while changing Password,ອອກຈາກອຸປະກອນທັງຫມົດໃນຂະນະທີ່ປ່ຽນລະຫັດຜ່ານ
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,ກວດສອບລະຫັດຜ່ານ
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,ມີຄວາມຜິດພາດໄດ້
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,ໃສ່ Client Id ແລະ Client ລັບໃນ Google Settings.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,ປິດ
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","ID ອີເມວຕ້ອງເປັນເອກະລັກ, ບັນຊີອີເມວມີຢູ່ແລ້ວ ສຳ ລັບ {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,ບໍ່ສາມາດມີການປ່ຽນແປງ docstatus ຈາກ 0 2
DocType: File,Attached To Field,ຕິດຕໍ່ກັບພາກສະຫນາມ
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,ການປັບປຸງ
@@ -2479,6 +2505,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,ເດືອ
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: ຕື່ມການ Reference: {{ reference_doctype }} {{ reference_name }} ຈະສົ່ງເອກສານອ້າງອິງ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,ມີແຕ່ຜູ້ໃຊ້ທີ່ມີສ່ວນກ່ຽວຂ້ອງກັບເອກະສານເທົ່ານັ້ນ
DocType: DocField,Fetch From,Fetch From
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ຕັ້ງຄ່າ> ປັບແຕ່ງແບບຟອມ
apps/frappe/frappe/modules/utils.py,App not found,ບໍ່ພົບ App
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},ບໍ່ສາມາດສ້າງ {0} ກັບເອກະສານເດັກນ້ອຍ: {1}
DocType: Social Login Key,Social Login Key,ຄີການເຂົ້າສູ່ລະບົບສັງຄົມ
@@ -2490,7 +2517,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,ສົ
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,ເຮືອນສັງຄົມ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},ສະແດງກິ່ງງ່າຫຼັງຈາກທີ່ບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ເປັນ {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Share {0} ກັບ
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ການຕັ້ງຄ່າບັນຊີອີເມວກະລຸນາໃສ່ລະຫັດຜ່ານຂອງທ່ານສໍາລັບການ:
DocType: Workflow State,hand-up,ມືຂຶ້ນ
DocType: Blog Settings,Writers Introduction,ການນໍາສະເຫນີນັກຂຽນ
DocType: Address,Phone,ໂທລະສັບ
@@ -2549,7 +2575,7 @@ DocType: Web Page,Insert Style,ໃສ່ແບບ
DocType: Prepared Report,Error Message,ຂໍ້ຄວາມຜິດພາດ
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,ຊື່ບົດລາຍງານໃຫມ່
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Hide Weekends
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,ສ້າງເອກະສານທີ່ເກີດຂື້ນໂດຍອັດຕະໂນມັດ.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,ສ້າງເອກະສານທີ່ເກີດຂື້ນໂດຍອັດຕະໂນມັດ.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ແມ່ນ
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,"ຂໍ້ມູນ, ອາການ"
@@ -2557,7 +2583,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,ລາ
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ວິທີການຄວນສະກຸນເງິນນີ້ມີຮູບແບບ? ຖ້າຫາກວ່າບໍ່ກໍານົດ, ຈະໃຊ້ຄ່າເລີ່ມຕົ້ນລະບົບ"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ສົ່ງ {0} ເອກະສານ?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ທ່ານຈໍາເປັນຕ້ອງເຂົ້າສູ່ລະບົບແລະມີການຄຸ້ມຄອງລະບົບພາລະບົດບາດເພື່ອໃຫ້ສາມາດເຂົ້າເຖິງສໍາຮອງຂໍ້ມູນ.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","ມີຂໍ້ຜິດພາດໃນການເຊື່ອມຕໍ່ QZ Tray Application ...
ທ່ານ ຈຳ ເປັນຕ້ອງມີການຕິດຕັ້ງແລະແລ່ນ QZ Tray, ເພື່ອໃຊ້ຄຸນລັກສະນະ Raw Print.
ກົດບ່ອນນີ້ເພື່ອດາວໂຫລດແລະຕິດຕັ້ງ QZ Tray .
ກົດບ່ອນນີ້ເພື່ອຮຽນຮູ້ເພີ່ມເຕີມກ່ຽວກັບການພິມດິບ ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,ແຜນທີ່ຂອງເຄື່ອງພິມ
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,ກະລຸນາຊ່ວຍປະຢັດກ່ອນທີ່ຈະຕິດຄັດ.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ທ່ານຕ້ອງການຍົກເລີກເອກະສານທີ່ເຊື່ອມໂຍງທັງ ໝົດ ບໍ?
@@ -2587,6 +2612,7 @@ DocType: Role Permission for Page and Report,Set Role For,ກໍານົດພ
DocType: GCalendar Account,The name that will appear in Google Calendar,ຊື່ທີ່ຈະປາກົດໃນ Google Calendar
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,ຫ້ອງທີ່ມີ {0} ມີຢູ່ແລ້ວ.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,ສົດຊື່ນ ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},ກະລຸນາກວດເບິ່ງຄ່າຕົວກອງທີ່ ກຳ ນົດໄວ້ໃນຕາຕະລາງ Dashboard: {}
DocType: Event,Starts on,ເລີ່ມຕົ້ນກ່ຽວກັບ
DocType: System Settings,System Settings,ຕັ້ງຄ່າລະບົບ
DocType: GCalendar Settings,Google API Credentials,Google API Credentials
@@ -2612,6 +2638,7 @@ DocType: Workflow State,ok-sign,"ok, ອາການ"
apps/frappe/frappe/config/settings.py,Deleted Documents,ເອກະສານລຶບ
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,ຮູບແບບ CSV ແມ່ນມີຄວາມລະອຽດອ່ອນ
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon ຢູ່ແລ້ວ
+DocType: Event Consumer Document Type,Approval Status,ສະຖານະການອະນຸມັດ
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,ລະບຸໃນສິ່ງທີ່ໂດເມນທັງ ໝົດ ຄວນສະແດງໃຫ້ເຫັນ. ຖ້າບໍ່ມີຫຍັງ ກຳ ນົດຄ່າເລື່ອນພາບຈະຖືກສະແດງຢູ່ໃນທຸກໂດເມນໂດຍຄ່າເລີ່ມຕົ້ນ.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ຊ້ໍາ
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: ສະ ໜາມ {1} ຕິດຕໍ່ກັນ {2} ບໍ່ສາມາດຖືກປິດບັງແລະບັງຄັບໂດຍບໍ່ມີຄ່າເລີ່ມຕົ້ນ
@@ -2631,6 +2658,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,ບົດຄວາມການຊ່ວຍເຫຼືອ
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ປະເພດ:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,ການຊໍາລະເງິນຂອງທ່ານໄດ້ພົບຄວາມລົ້ມເຫຼວ.
+DocType: Event Producer,Producer URL,URL ຂອງຜູ້ຜະລິດ
DocType: Comment,Unshared,Unshared
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Module ບໍ່ພົບ
@@ -2642,6 +2670,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,ວຽກສໍາເລັດ
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},ແກ້ໄຂຫຼາຍ {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ດາວໂຫລດລາຍງານ
+apps/frappe/frappe/model/workflow.py,Workflow Status,ສະພາບການເຮັດວຽກ
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,ບໍ່ໄດ້ໃຊ້ວຽກ
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,ມີພຽງຜູ້ເບິ່ງແຍງລະບົບເທົ່ານັ້ນທີ່ໄດ້ຮັບອະນຸຍາດສ້າງແຫລ່ງຂໍ້ມູນຕາຕະລາງ Dashboard
DocType: About Us Settings,Settings for the About Us Page,ການຕັ້ງຄ່າສໍາລັບການກ່ຽວກັບພວກເຮົາ Page
@@ -2651,6 +2680,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,ພ
DocType: Notification Settings,Energy Points,ຈຸດພະລັງງານ
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},ເວລາ {0} ຕ້ອງເປັນຮູບແບບ: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ຕົວຢ່າງ pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: ບໍ່ສາມາດແນບເອກະສານ ໃໝ່ ທີ່ເກີດຂື້ນ ໃໝ່. ເພື່ອເປີດໃຊ້ເອກະສານໃນອີເມວແຈ້ງເຕືອນການເຮັດຊ້ ຳ ຄືນອັດຕະໂນມັດ, ໃຫ້ເປີດ {1} ໃນການຕັ້ງຄ່າການພິມ"
DocType: User,Generate Keys,ສ້າງຄີ
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,ສິ່ງນີ້ຈະເອົາຂໍ້ມູນຂອງທ່ານອອກໄປຢ່າງຖາວອນ.
DocType: DocType,View Settings,ເບິ່ງການຕັ້ງຄ່າ
@@ -2702,6 +2732,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,ທັງຫມົດ
DocType: Email Queue,Recipient,ຜູ້ຮັບ
DocType: Webhook,Webhook Security,ຄວາມປອດໄພ Webhook
+DocType: Event Sync Log,Producer Document Name,ຊື່ເອກະສານຜູ້ຜະລິດ
DocType: Communication,Has Attachment,ມີ Attachment
DocType: Address,Sales User,User ຂາຍ
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag ແລະເຄື່ອງມື Drop ການກໍ່ສ້າງແລະປັບແຕ່ງຮູບແບບພິມ.
@@ -2737,6 +2768,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,ຕາຕະລາງເດັກແມ່ນສະແດງເປັນ Grid ໃນ DocTypes ອື່ນໆ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,ການຕິດຕັ້ງອັດຕະໂນມັດ Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + ລົງ
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,ເວັບໄຊທ໌້ທີ່ທ່ານຕ້ອງການລົງທະບຽນເຂົ້າໃນການຊົມໃຊ້ເຫດການຕ່າງໆ.
DocType: Chat Profile,Message Preview,Message Preview
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,ນີ້ເປັນລະຫັດຜ່ານສາມັນເທິງ 10.
DocType: User,User Defaults,ຄ່າເລີ່ມຕົ້ນຂອງຜູ້ໃຊ້
@@ -2769,6 +2801,7 @@ DocType: Dashboard Chart,Last Synced On,ສະບັບສຸດທ້າຍໃ
DocType: Comment,Comment Type,ປະເພດຄໍາຄິດຄໍາເຫັນ
DocType: OAuth Client,OAuth Client,Client OAuth
DocType: Assignment Rule,Users,ຜູ້ຊົມໃຊ້
+DocType: Document Type Mapping,Local Document Type,ປະເພດເອກະສານທ້ອງຖິ່ນ
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,ປະເພດບົດລາຍງານ
DocType: DocField,Signature,ລາຍເຊັນ
@@ -2811,6 +2844,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} ຕົນເອງໄດ້ມອບຫມາຍວຽກນີ້: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,ປະເທດຂອງເຈົ້າ
DocType: Assignment Rule Day,Sunday,ວັນອາທິດ
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","ຮັກສາບັນທຶກຂອງຂໍ້ມູນການຂຽນ, ການປັບປຸງແລະການລຶບທັງ ໝົດ ຢູ່ໃນເວັບໄຊຂອງຜູ້ຜະລິດເຫດການ ສຳ ລັບເອກະສານທີ່ມີຜູ້ບໍລິໂພກ."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Fieldname ບໍ່ສາມາດເປັນ ໜຶ່ງ ໃນ {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,ອັນດັບ
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,ໃນຕາລາງ
@@ -2958,7 +2992,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar ແລະຄວາມຄິດເ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","ໃນເວລາທີ່ທ່ານແກ້ໄຂເອກະສານຫລັງຈາກທີ່ຍົກເລີກການແລະຊ່ວຍປະຢັດມັນ, ມັນຈະໄດ້ຮັບເປັນຈໍານວນໃຫມ່ວ່າແມ່ນສະບັບຂອງຈໍານວນອາຍຸໄດ້."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","ບໍ່ອະນຸຍາດໃຫ້ຄັດຕິດເອກະສານ {0}, ກະລຸນາໃຫ້ອະນຸຍາດໃຫ້ພິມສໍາລັບ {0} ໃນການຕັ້ງຄ່າພິມ"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ໄດ້ຕິດຕັ້ງ. ກະລຸນາສ້າງບັນຊີອີເມວ ໃໝ່ ຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},ເບິ່ງເອກະສານທີ່ {0}
DocType: Stripe Settings,Publishable Key,Key ຈັດພິມໄດ້
DocType: Stripe Settings,Publishable Key,Key ຈັດພິມໄດ້
@@ -3037,7 +3070,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,ຂໍ້ມູນ
DocType: Custom Field,Permission Level,ລະດັບອະນຸຍາດ
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: ບໍ່ສາມາດກໍານົດຍື່ນສະເຫນີການ, ຍົກເລີກ, ແກ້ໂດຍບໍ່ມີການຂຽນ"
DocType: List View Setting,Disable Count,ປິດການນັບ
-DocType: Google Maps Settings,Client Key,ລູກຄ້າທີ່ສໍາຄັນ
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,ທ່ານວ່າທ່ານແມ່ນແນ່ໃຈວ່າຕ້ອງການລຶບການຕິດ?
apps/frappe/frappe/__init__.py,Thank you,ຂອບໃຈ
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,ຝາກປະຢັດ
@@ -3164,6 +3196,7 @@ DocType: Workflow Document State,Only Allow Edit For,ພຽງແຕ່ອະນ
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,ການ ສຳ ຮອງ Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},ພາກສະຫນາມບັງຄັບ: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ຊື່ຂອງເຈົ້າ
+DocType: Event Producer Document Type,Event Producer Document Type,ປະເພດເອກະສານຜູ້ຜະລິດເຫດການ
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Connection Success
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ມີການເລື່ອນລົງປະເພດເລື່ອນລົງຂອງປະເພດເລື່ອນຢູ່ແລ້ວ.
@@ -3234,6 +3267,7 @@ DocType: Address,Postal Code,ລະຫັດໄປສະນີ
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,ການສື່ສານ Relink
DocType: Translation,Contributed,ປະກອບສ່ວນ
apps/frappe/frappe/config/customization.py,Form Customization,ການປັບແຕ່ງແບບຟອມ
+DocType: Event Update Log,Event Update Log,ບັນທຶກການອັບເດດເຫດການ
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,No Sessions Active
DocType: Web Form,Route to Success Link,Route to Success Link
DocType: Onboarding Slide Field,Right,ສິດ
@@ -3260,7 +3294,7 @@ DocType: Website Settings,Chat Operators,Chat Operators
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,ກະລຸນາເຮັດໃຫ້ແນ່ໃຈວ່າວ່າບໍ່ມີຄໍລໍາເປົ່າໃນໄຟລ໌.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ຕິດຕາມຈຸດ ສຳ ຄັນຂອງຊີວິດຂອງເອກະສານຖ້າມັນຜ່ານຫຼາຍໄລຍະ.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ຕິດຕາມຈຸດ ສຳ ຄັນຂອງຊີວິດຂອງເອກະສານຖ້າມັນຜ່ານຫຼາຍໄລຍະ.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","ປ່ຽນຊື່ໄຟລ໌ແລະປ່ຽນລະຫັດ ໃໝ່ ໃນຕົວຄວບຄຸມ, ກະລຸນາກວດເບິ່ງ!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,ກະລຸນາຮັບປະກັນວ່າຂໍ້ມູນຂອງທ່ານມີທີ່ຢູ່ອີເມວ
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ເຊື່ອໃນຮູບແບບນີ້. ກະລຸນາຊ່ວຍປະຢັດກ່ອນທີ່ທ່ານຈະດໍາເນີນການຕໍ່.
@@ -3287,7 +3321,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,ບັນທຶກ API ລັບ:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},ບໍ່ສາມາດເຊື່ອມຕໍ່ເອກະສານຍົກເລີກ: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,ບໍ່ສາມາດແກ້ໄຂບົດລາຍງານມາດຕະຖານ. ກະລຸນາຊ້ໍາແລະສ້າງບົດລາຍງານໃຫມ່
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","ບໍລິສັດເປັນການບັງຄັບ, ເປັນມັນແມ່ນຢູ່ບໍລິສັດຂອງທ່ານ"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","ສໍາລັບການຍົກຕົວຢ່າງ: ຖ້າຫາກວ່າທ່ານຕ້ອງການທີ່ຈະປະກອບມີລະຫັດເອກະສານ, ການນໍາໃຊ້ {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},ເລືອກຕາລາງ {0}
DocType: Custom Field,Options Help,ທາງເລືອກໃນການຊ່ວຍເຫລືອ
@@ -3295,7 +3328,6 @@ DocType: Footer Item,Group Label,Label Group
DocType: Kanban Board,Kanban Board,ຄະນະກໍາມະ Kanban
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacts ໄດ້ຖືກຕັ້ງຄ່າແລ້ວ.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 ບັນທຶກຈະຖືກສົ່ງອອກ
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ບໍ່ມີບັນຊີອີເມວທີ່ກ່ຽວຂ້ອງກັບຜູ້ໃຊ້. ກະລຸນາເພີ່ມບັນຊີພາຍໃຕ້ຜູ້ໃຊ້> Inbox Email.
DocType: DocField,Report Hide,ບົດລາຍງານເຊື່ອງ
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ເບິ່ງຕົ້ນໄມ້ທີ່ບໍ່ມີສໍາລັບການ {0}
DocType: DocType,Restrict To Domain,ຈໍາກັດການ Domain
@@ -3361,7 +3393,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: ສະ ໜາມ {1} ຂອງປະເພດ {2} ບໍ່ສາມາດ ຈຳ ເປັນໄດ້
DocType: System Settings,In Days,ໃນວັນ
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Miss
+DocType: Event Producer Document Type,Has Mapping,ມີແຜນທີ່
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,ກະລຸນາລະບຸ
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,ມູນຄ່າການກັ່ນຕອງບໍ່ຖືກຕ້ອງ
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,ບົດຄວາມ
DocType: Page,Page Name,ຊື່ຫນ້າ
@@ -3469,7 +3503,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,ຮູບແບບການພິມ
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle Grid View
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ໄປທີ່ບັນທຶກຕໍ່ໄປ
-DocType: System Settings,Time Format,ຮູບແບບເວລາ
+DocType: Country,Time Format,ຮູບແບບເວລາ
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,ຂໍ້ມູນປະຈໍາປະຕູການຈ່າຍເງິນທີ່ບໍ່ຖືກຕ້ອງ
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ນີ້ແມ່ນໄຟລ໌ແມ່ແບບທີ່ຜະລິດດ້ວຍແຖວພຽງແຕ່ມີຂໍ້ຜິດພາດບາງຢ່າງ. ທ່ານຄວນໃຊ້ໄຟລ໌ນີ້ເພື່ອແກ້ໄຂແລະນໍາເຂົ້າ.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ການອະນຸຍາດທີ່ກໍານົດໄວ້ໃນປະເພດເອກະສານແລະພາລະບົດບາດ
@@ -3795,6 +3829,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,ອະນຸຍາດໃຫ້ເຂົ້າໃຊ້ຊື່ຜູ້ໃຊ້
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,ເຮັດໃຫ້ບົດລາຍງານ
DocType: DocField,Display Depends On,ການສະແດງຂຶ້ນຢູ່ກັບ
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ປີທີ່ຜ່ານມາ
DocType: Social Login Key,API Endpoint,Endpoint API
DocType: Web Page,Insert Code,ລະຫັດໃສ່
DocType: Data Migration Run,Current Mapping Type,Current Mapping Type
@@ -3848,6 +3883,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ຢ
apps/frappe/frappe/www/login.html,Or login with,ຫລືເຂົ້າສູ່ລະບົບທີ່ມີ
DocType: Error Snapshot,Locals,ທ້ອງຖິ່ນ
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ສື່ສານໂດຍຜ່ານ {0} {1}: {2}
+DocType: Event Producer,Event Producer Document Types,ປະເພດເອກະສານຜູ້ຜະລິດເຫດການ
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາຕັ້ງຄ່າບັນຊີອີເມວເລີ່ມຕົ້ນຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ເລືອກກຸ່ມໂດຍ ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ຕົວຢ່າງ: (55 + 434) / 4 = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ຈໍາເປັນຕ້ອງມີ
@@ -3880,9 +3917,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Report Start Time
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Export Data
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,ຮັກສາບັນທຶກຂອງທຸກໆເຫດການທີ່ບໍລິໂພກພ້ອມກັບສະຖານະຂອງການຊິ້ງຂໍ້ມູນແລະປຸ່ມ Resync ໃນກໍລະນີການຊິ້ງຂໍ້ມູນລົ້ມເຫລວ.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,ເລືອກຖັນ
DocType: Translation,Source Text,ຂໍ້ຄວາມແຫຼ່ງຂໍ້ມູນ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,ນີ້ແມ່ນບົດລາຍງານຄວາມເປັນມາ. ກະລຸນາຕັ້ງຕົວກອງທີ່ ເໝາະ ສົມແລະຈາກນັ້ນສ້າງເຄື່ອງ ໃໝ່.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ໄດ້ຕິດຕັ້ງ. ກະລຸນາສ້າງບັນຊີອີເມວ ໃໝ່ ຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ
apps/frappe/frappe/www/login.py,Missing parameters for login,ຕົວກໍານົດການທີ່ຂາດຫາຍໄປສໍາລັບການເຂົ້າສູ່ລະບົບ
DocType: Workflow State,folder-open,ໂຟນເດີເປີດ
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","ເມື່ອຖືກຍື່ນແລ້ວ, ເອກະສານທີ່ສົ່ງຕໍ່ບໍ່ສາມາດປ່ຽນແປງໄດ້. ພວກເຂົາສາມາດຖືກຍົກເລີກແລະດັດແກ້ເທົ່ານັ້ນ."
@@ -3962,6 +4001,7 @@ DocType: Blog Post,Published On,ຈັດພີມມາກ່ຽວກັບ
DocType: Contact,Gender,ບົດບາດຍິງຊາຍ
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,ຂໍ້ມູນການບັງຄັບຫາຍສາບສູນ:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ໄດ້ກັບຄືນຈຸດຂອງທ່ານໃນ {1}
+DocType: Event Consumer,Event Subscriber,ຜູ້ຈອງເຫດການ
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,ກວດສອບການຮ້ອງຂໍ URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,ພຽງແຕ່ 200 ສະແດງກິ່ງງ່າອະນຸຍາດໃຫ້ໃນການຮ້ອງຂໍ
DocType: Footer Item,URL,URL
@@ -3974,6 +4014,7 @@ DocType: Auto Email Report,Half Yearly,ເຄິ່ງຫນຶ່ງປະຈ
DocType: Communication,Marked As Spam,ຫມາຍເປັນຂີ້ເຫຍື້ອ
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ມີບັນຫາບາງຢ່າງກັບ url ໄຟລ໌ແມ່ນ: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,ເປັນໄມ້ຢືນຕົ້ນ
+DocType: Event Producer Document Type,Use Same Name,ໃຊ້ຊື່ດຽວກັນ
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ພິມບົດລາຍງານນີ້
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,ການອະນຸຍາດຜູ້ໃຊ້
DocType: Workflow State,warning-sign,ການເຕືອນໄພອາການ
@@ -3983,6 +4024,7 @@ DocType: Workflow State,User,ຜູ້ໃຊ້
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ສະແດງໃຫ້ເຫັນຫົວຂໍ້ຢູ່ໃນປ່ອງຢ້ຽມຂອງຕົວທ່ອງເວັບເປັນ "ຄໍານໍາຫນ້າ - ຫົວຂໍ້"
DocType: Payment Gateway,Gateway Settings,ການຕັ້ງຄ່າ Gateway
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ຂໍ້ຄວາມໃນປະເພດເອກະສານ
+DocType: Event Sync Log,Event Sync Log,ເຫດການເຂົ້າລະບົບເຫດການ
apps/frappe/frappe/handler.py,Logged Out,ອອກຈາກລະບົບ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,ເພີ່ມເຕີມ ...
DocType: System Settings,User can login using Email id or Mobile number,User ສາມາດເຂົ້າສູ່ລະບົບໂດຍໃຊ້ id ອີເມວຫຼືເບີໂທລະສັບມືຖື
@@ -4023,12 +4065,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ບໍ່ໃນ
DocType: Workflow State,star,ດາວ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,ຖ້າສິ່ງນີ້ຖືກກວດກາແລ້ວເອກະສານຈະມີຊື່ຄືກັນກັບທີ່ພວກເຂົາມີຢູ່ໃນເວັບໄຊຂອງຜູ້ຜະລິດເຫດການ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,ຄ່າຂັ້ນດ້ວຍຈໍ້າຈຸດ
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},width ສູງສຸດສໍາລັບປະເພດສະກຸນເງິນຄື 100px ຕິດຕໍ່ກັນ {0}
apps/frappe/frappe/config/website.py,Content web page.,ເວັບໄຊທ໌ເນື້ອໃນ.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ຕື່ມການພາລະບົດບາດໃຫມ່
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ເຂົ້າເບິ່ງເວບໄຊທ໌
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,ການມອບ ໝາຍ ໃໝ່
+DocType: Event Consumer Document Type,Approved,ການອະນຸມັດ
DocType: Google Contacts,Last Sync On,Last Sync On
DocType: Deleted Document,Deleted Document,ເອກະສານລຶບ
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! ບາງສິ່ງບາງຢ່າງໄດ້ຜິດພາດ
@@ -4081,7 +4125,6 @@ DocType: DocField,Unique,ເປັນເອກະລັກ
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} ຍົກຍ້ອງໃນ {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Partial Success
DocType: Email Account,Service,ການບໍລິການ
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ຕັ້ງຄ່າ> ຜູ້ໃຊ້
DocType: File,File Name,ຊື່ເອກະສານ
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ບໍ່ໄດ້ຊອກຫາ {0} {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4093,11 +4136,10 @@ DocType: Calendar View,Calendar View,Calendar View
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,ດັດແກ້ຮູບແບບ
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,ການລົງທະບຽນສົມບູນ
DocType: GCalendar Settings,Enable,ເປີດນໍາໃຊ້
-DocType: Google Maps Settings,Home Address,ທີ່ຢູ່ເຮືອນ
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),ທ່ານພຽງແຕ່ສາມາດອັບໂຫລດໄດ້ບໍ່ເກີນ 5000 ການບັນທຶກການໃນຫນຶ່ງ Go. (ອາດຈະມີຫນ້ອຍໃນບາງກໍລະນີ)
DocType: Report,"output in the form of `data = [columns, result]`","ຜົນຜະລິດໃນຮູບແບບຂອງ `ຂໍ້ມູນ = [ຄໍລໍາ, ຜົນໄດ້ຮັບ]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ປະເພດເອກະສານທີ່ໃຊ້ໄດ້
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ຕັ້ງກົດລະບຽບ ສຳ ລັບການມອບ ໝາຍ ຂອງຜູ້ໃຊ້.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,ຕັ້ງກົດລະບຽບ ສຳ ລັບການມອບ ໝາຍ ຂອງຜູ້ໃຊ້.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},ການອະນຸຍາດບໍ່ພຽງພໍສໍາລັບການ {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},ການອະນຸຍາດບໍ່ພຽງພໍສໍາລັບການ {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),ບົດລາຍງານບໍ່ໄດ້ບັນທືກ (ມີຄວາມຜິດພາດ)
diff --git a/frappe/translations/lt.csv b/frappe/translations/lt.csv
index b0c171a404..313d6d8875 100644
--- a/frappe/translations/lt.csv
+++ b/frappe/translations/lt.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Šis vaidmuo Atnaujinti Vartotojo Leidimai vartotojas
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Pervadinti {0}
DocType: Workflow State,zoom-out,nutolinti
-DocType: Data Import Beta,Import Options,Importavimo parinktys
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Nepavyko atidaryti {0} kai jos atvejis yra atvira
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Stalo {0} negali būti tuščias
DocType: SMS Parameter,Parameter,Parametras
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Atš
DocType: DocType,Is Published Field,Skelbiama laukas
DocType: GCalendar Settings,GCalendar Settings,"GCalendar" nustatymai
DocType: Email Group,Email Group,paštas grupė
-apps/frappe/frappe/__init__.py,Only for {},Tik {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","„Google“ kalendorius - Nepavyko ištrinti įvykio {0} iš „Google“ kalendoriaus, klaidos kodas {1}."
DocType: Event,Pulled from Google Calendar,Ištrauktas iš „Google“ kalendoriaus
DocType: Note,Seen By,matyti
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Pridėti kelis
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Netinkamas vartotojo paveikslėlis.
DocType: Energy Point Log,Reverted,Grįžo
DocType: Success Action,First Success Message,Pirmasis sėkmės pranešimas
+DocType: Document Type Mapping,Document Type Mapping,Dokumento tipo žemėlapis
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Not Like
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Neteisingas vertė: {0} turi būti {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Pakeisti lauko savybės (slėpti, tik skaitymui, leidimas ir tt)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Jūsų renginius naudojanti svetainė.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Įvertink
DocType: Notification Settings,Document Share,Dokumentų bendrinimas
DocType: Workflow State,lock,spyna
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Prisijungti
DocType: Workflow State,indent-right,įtrauka dešiniajame
DocType: Has Role,Has Role,turi vaidmuo
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Laikas sekundėmis išlaikyti QR kodo vaizdą serveryje. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: {2} {1} lauko tipas negali būti indeksuojamas
DocType: Dashboard Chart,Timespan,Laiko tarpas
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Interneto nuoroda
DocType: Deleted Document,Restored,Atkurta
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Klaida jungiantis prie „QZ Tray Application“ ...
Jei norite naudoti neapdoroto spausdinimo funkciją, turite būti įdiegta ir paleista „QZ Tray“ programa.
Spustelėkite čia, jei norite atsisiųsti ir įdiegti „QZ Tray“ .
Spustelėkite čia, jei norite sužinoti daugiau apie neapdorotą spausdinimą ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,prieš 1 minutę
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",Be System Manager vaidmenys SET vartotojų teises teisė gali nustatyti leidimus kitiems vartotojams už šio dokumento tipą.
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigūruoti temą
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,unseen
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,failų tvarkyklė
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML antraštė, robotai ir peradresavimai"
DocType: GCalendar Account,Refresh Token,Atnaujinti ženklas
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Nepavyko prisijungti prie įvykių prodiuserio svetainės. Po kurio laiko bandykite dar kartą.
DocType: Address,Goa,Var
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Šioje svetainėje nėra laukiančių ar esamų darbų
DocType: Webhook,Doc Event,Doc renginys
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Scenarijų tvarkyklė
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Jokios veiklos
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Trečiųjų šalių programos
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Pirmasis vartotojas taps System Manager (galite keisti tai vėliau).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Galite pabandyti pakeisti ataskaitos filtrus.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Šiandien nėra įvykių
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Jūs negalite skirti apžvalgos taškų sau
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,"DocType" turi būti Pateiktas pasirinktam "Doc Event"
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,"Jums neleidžiama siųsti laiškus, susijusius su šio dokumento"
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Pasirinkite atleast 1 stulpelį nuo {0} rūšiuoti / grupės
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Neleidžiama {0}: {1}. Ribotas laukas: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Bendrovė nesusijusi
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Pažymėkite tai, jei jūs išbandyti savo mokėjimo naudojant sandbox API"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Jūs negalite trinti standartinę svetainės temą
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Sukurkite savo pirmąjį {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Atnaujin
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,„Onboarding Slide“ {0} su ta pačia skaidrių tvarka jau yra
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Išjungti ataskaita
DocType: Translation,Contributed Translation Doctype Name,Pridėtas vertimo „Doctype“ vardas
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sąranka> Tinkinti formą
DocType: PayPal Settings,Redirect To,nukreipti į
DocType: Data Migration Mapping,Pull,Traukti
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formatas: frappe.query_reports [ 'REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Neleidžiama
DocType: DocShare,Internal record of document shares,Vidaus įrašas dokumentų akcijas
DocType: Energy Point Settings,Review Levels,Apžvalgos lygiai
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sąranka> Vartotojo leidimai
DocType: Workflow State,Comment,komentaras
DocType: Data Migration Plan,Postprocess Method,Postprocess metodas
DocType: DocType Action,Action Type,Veiksmo tipas
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Rod
DocType: Workflow State,remove-circle,pašalinti-ratą
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mano profilis
DocType: Help Article,Beginner,Pradedantysis
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Šis veiksmas leidžiamas tik {}
DocType: Contact,Is Primary Contact,Ar Pagrindinis kontaktinis
+DocType: Event Consumer,Event Consumer,Renginio vartotojas
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript pridėti prie galvos skyriuje puslapyje.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Pridėti / atnaujinti
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,"Neleidžiama spausdinti dokumentus, projektus"
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Nust
DocType: Workflow,Transition Rules,Pereinamojo laikotarpio taisyklės
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Rodomos tik pirmosios peržiūros {0} eilutės
apps/frappe/frappe/core/doctype/report/report.js,Example:,Pavyzdys:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Apribojimai
DocType: Workflow,Defines workflow states and rules for a document.,Apibrėžia darbo eigos būsenas ir taisykles dokumentu.
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Pakartokite Iki
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,naujas
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Pirmiausia turite sukurti šiuos dalykus:
-DocType: Google Maps Settings,Google Maps Settings,"Google" žemėlapių nustatymai
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Kraunasi ...
DocType: DocField,Password,slaptažodis
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Jūsų sistema yra atnaujinta. Prašome atnaujinti po kelių akimirkų
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,Borto čiuožykla
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Neteisingas slaptažodis:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Neteisingas slaptažodis:
DocType: Print Settings,Send document web view link in email,Siųsti dokumento interneto vaizdo nuorodą elektroniniu paštu
+DocType: Event Consumer Document Type,Event Consumer Document Type,Renginio vartotojo dokumento tipas
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,ankstesnis
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Reikalauti patikimo pažymėjimo
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,Kiekis apačią
DocType: Onboarding Slide,Help Links,Pagalbos nuorodos
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Prieiga neleidžiama iš šio IP adreso
DocType: Notification Settings,Enable Email Notifications,Įgalinti el. Pašto pranešimus
+DocType: Document Type Field Mapping,Event Streaming,Įvykių srautas
apps/frappe/frappe/desk/reportview.py,No Tags,Žymų nėra
DocType: Email Account,Send Notification to,Siųsti pranešimą į
DocType: DocField,Collapsible,išardomas
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Jokių sąlygų nepateikta
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y ašies laukai
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Rūšiuoti laukas {0} turi būti galiojantis nazwapola
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nerastas numatytasis adreso šablonas. Sukurkite naują iš sąrankos> Spausdinimas ir prekės ženklo kūrimas> Adreso šablonas.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,daugiau
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Sukurkite naują įrašą
DocType: Contact,Sales Manager,Pardavimų vadybininkas
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,pervadinti
DocType: Print Format,Format Data,formatas duomenų
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} yra netinkamas ataskaitos formatas. Ataskaitos formatas turėtų būti vienas iš šių {1}
DocType: List Filter,Filter Name,Filtruoti pavadinimą
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Kaip
DocType: Assignment Rule,Automation,Automatika
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,Atstatyti slaptažodį raktas
DocType: Dashboard Chart,All Time,Visą laiką
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Neteisėtas dokumento statusas {0}
DocType: Email Account,Enable Auto Reply,Įgalinti automatinį Atsakyti
+apps/frappe/frappe/desk/query_report.py,No data to export,"Nėra duomenų, kuriuos būtų galima eksportuoti"
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nematytas
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,"Negalima turėti kelių spausdintuvų, priskirtų vienam spausdinimo formatui."
DocType: Workflow State,zoom-in,priartinti
@@ -841,6 +851,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Keisti var
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pirmas
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Atnaujinti vertimus
DocType: Error Snapshot,Exception,išimtis
+DocType: Event Consumer,Event Consumer Document Types,Renginių vartotojų dokumentų tipai
DocType: Email Account,Use IMAP,naudojate IMAP
DocType: Activity Log,Activity Log,veiklos žurnalas
DocType: View Log,Viewed By,Peržiūrėta
@@ -880,6 +891,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Nus
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigūruoti diagramas
DocType: User,Last IP,Paskutinis IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Prašome pridėti temą el. Paštu
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Klaidingos operacijos
DocType: Data Migration Connector,Data Migration Connector,Duomenų perkėlimo jungtis
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} grąžino {1}
DocType: Email Account,Track Email Status,Stebėti el. Pašto būseną
@@ -911,6 +923,7 @@ DocType: Email Queue,Attachments,įrangos
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Jūs neturite prieigos prie šio dokumento
DocType: Language,Language Name,Kalba Vardas
DocType: Email Group Member,Email Group Member,Siųskite grupės narys
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Su vartotoju nesusieta jokia el. Pašto paskyra. Pridėkite abonementą skiltyje Vartotojas> El. Pašto dėžutė.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Jūsų sąskaita užrakinta ir bus atnaujinta po {0} sekundžių
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Naudotojų leidimai naudojami norint apriboti naudotojus konkrečiais įrašais.
DocType: Notification,Value Changed,vertė Pakeitė
@@ -1003,6 +1016,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Nurodyk sandori
DocType: Help Article,Expert,ekspertas
DocType: Workflow State,circle-arrow-right,apskritimo rodyklės į dešinę
DocType: Role Profile,Role Profile,Vaidmens profilis
+DocType: Document Type Mapping,Remote Document Type,Nuotolinio dokumento tipas
apps/frappe/frappe/permissions.py,Document Type is not importable,Dokumento tipas neimportuojamas
DocType: LDAP Settings,LDAP Server Url,LDAP serverio URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Nepavyko atidaryti pavyzdžiui, kai jos {0} yra atvira"
@@ -1088,7 +1102,7 @@ DocType: Web Form,Allow Print,Leiskite Spausdinti
DocType: Communication,Clicked,paspaudėte
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Neatlikti
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nėra leidimo {0} "{1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nustatykite numatytąją el. Pašto paskyrą iš sąrankos> El. Paštas> El. Pašto abonementas
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Rodomos tik pirmosios {0} eilutės iš {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planuojama siųsti
DocType: DocType,Track Seen,Įrašo matytas
DocType: Dropbox Settings,File Backup,Failo atsarginė kopija
@@ -1159,6 +1173,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,pas
DocType: Data Export,Filter List,Filtrų sąrašas
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Renginių konfigūracijos
DocType: Email Account,Auto Reply Message,Automatinis Atsakyti pranešimas
DocType: Data Migration Mapping,Condition,būklė
apps/frappe/frappe/utils/data.py,{0} hours ago,prieš {0} valandos
@@ -1218,9 +1233,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,"Visada naud
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Prisijungti komentarą
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Pradėkite įvedinėti duomenis žemiau šios linijos
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},pasikeitusių vertės {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","El. Pašto ID turi būti unikalus, el. Pašto sąskaita jau egzistuoja \ {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Palyginimui naudokite> 5, <10 arba = 324. Jei norite diapazonų, naudokite 5:10 (reikšmėms nuo 5 iki 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Pritaikyti...
DocType: Print Format,Align Labels to the Right,Sureguliuokite etiketes į dešinę
DocType: Assignment Rule,Disabled,neįgalusis
@@ -1269,8 +1283,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klaviatūros nuorodos
DocType: Post,Comments,komentarai
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Patvirtinti
+DocType: Event Sync Log,Update Type,Atnaujinimo tipas
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Autentifikuojamas ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Sutraukti visus
+DocType: Event Producer,Last Update,Paskutiniai pakeitimai
apps/frappe/frappe/www/login.html,Forgot Password?,Pamiršote slaptažodį?
DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1311,6 +1327,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,stalo lauk
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Stulpeliai remiantis
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importuojama {0} iš {1}, {2}"
DocType: Workflow State,move,žingsnis
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,"Nepavyko sukurti „Event Consumer“ ar „Event Consumer“ dabartinėje svetainėje, jau yra registruotas."
apps/frappe/frappe/model/document.py,Action Failed,veiksmas Nepavyko
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,vartotojui
DocType: View Log,View log,Žiūrėti žurnalą
@@ -1474,6 +1491,7 @@ DocType: DefaultValue,Key,raktas
DocType: Address,Contacts,kontaktai
DocType: System Settings,Setup Complete,Sąranka Užbaigti
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Pranešti apie visų dokumentų akcijas
+DocType: Event Consumer,Callback URL,Atgalinio ryšio URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importavimo šablonas turėtų būti .csv, .xlsx arba .xls tipo"
apps/frappe/frappe/www/update-password.html,New Password,Naujas Slaptažodis
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtras {0} trūksta
@@ -1541,7 +1559,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Sė
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; neleistina sąlygoje
DocType: Async Task,Async Task,asinchroninis darbo
DocType: Workflow State,picture,nuotrauka
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,pilnas
+DocType: Scheduled Job Log,Complete,pilnas
DocType: DocType,Image Field,Vaizdo laukas
DocType: Print Format,Custom HTML Help,Ypatingas HTML Pagalba
DocType: LDAP Settings,Default Role on Creation,Numatytasis vaidmuo kuriant
@@ -1567,6 +1585,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pagalba dėl Ieškoti
DocType: Milestone,Milestone Tracker,„Milestone Tracker“
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Užsiregistravau, tačiau neįgaliesiems"
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adresą reikia susieti su įmone. Žemiau esančioje nuorodų lentelėje pridėkite įmonės eilutę.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatinis šio dokumento pakartojimas buvo išjungtas.
DocType: DocType,Hide Copy,Slėpti Kopijuoti
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Išvalyti visus vaidmenis
@@ -1605,6 +1624,7 @@ DocType: Bulk Update,Field,laukas
DocType: Communication,Received,gavo
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Sukelti ant patvirtintais metodais, pavyzdžiui, "before_insert", "after_update", ir tt (priklauso nuo dokumentų tipas pasirinktos)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},pakeista {0} {1} vertė
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},El. Pašto paskyros sąranka įveskite savo slaptažodį: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Įrašyta System Manager šį vartotoją kaip ten turi būti atleast viena sistema direktorius
DocType: Chat Message,URLs,URL adresai
DocType: Data Migration Run,Total Pages,Iš viso puslapių
@@ -1612,7 +1632,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,prisegti Image
DocType: Workflow State,list-alt,sąrašas Alt
apps/frappe/frappe/www/update-password.html,Password Updated,Slaptažodis Atnaujinta
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sąranka> Vartotojo leidimai
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Žingsniai siekiant patvirtinti prisijungimą
apps/frappe/frappe/utils/password.py,Password not found,Slaptažodis nerastas
DocType: Webhook,Webhook Secret,„Webhook Secret“
@@ -1628,8 +1647,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,„Google“ API
DocType: Report,Query Report,užklausa ataskaita
DocType: User,Set New Password,Nustatyti naują slaptažodį
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Neleidžiama {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s yra neteisingas ataskaitos formatas. Ataskaitos formatas turi \ būti vienas iš išvardintų %s
DocType: Chat Message,Chat,kalbėtis
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},"Nerasta dokumentų, pažymėtų {0}"
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP grupės žemėlapis
@@ -1665,7 +1682,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Įveskite
DocType: Dropbox Settings,Dropbox Access Secret,ZMI Prieiga paslaptis
DocType: Tag Link,Document Title,Dokumento pavadinimas
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Privaloma)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Prieš {0} metus (-ių)
DocType: Social Login Key,Social Login Provider,Socialinės paskyros teikėjas
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Pridėti kitą komentarą
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Failo nerasta. Prašome dar kartą pridėti naują failą su duomenimis.
@@ -1713,6 +1729,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Pasirin
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 metai
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Visam laikui ištrinti {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Pats failas jau buvo prisegtas prie registracijos
+DocType: Event Sync Log,Synced,Sinchronizuota
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} nėra tinkamas darbo srauto būsena. Atnaujinkite savo darbo eigą ir bandykite dar kartą.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,davė {0} taškų
DocType: Workflow State,wrench,veržliaraktis
@@ -1815,6 +1832,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,P
DocType: Web Form Field,Max Length,Maksimalus ilgis
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,žemėlapis gabaritinis
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Dviejų tipų žemėlapių konfigūracija.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Pateikti numeris
DocType: Event,Repeat this Event,Pakartokite šį renginį
DocType: Address,Maintenance User,priežiūra Vartotojas
@@ -1874,6 +1892,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Testas pašto adresas
DocType: Auto Repeat,Reference Document Type,Atskaitos dokumento tipas
DocType: ToDo,Sender,Siuntėjas
+DocType: Event Consumer,Incoming Change,Priimami pokyčiai
DocType: Google Drive,Backup Folder Name,Atsarginio aplanko pavadinimas
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Klaida įvertinant pranešimą {0}. Pataisykite savo šabloną.
DocType: GSuite Settings,Google Apps Script,"Google Apps Script
@@ -1936,9 +1955,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Naujas s
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Spustelėkite žemiau esančią nuorodą, kad patvirtintumėte prašymą"
DocType: Workflow State,align-left,lygiavimas-kairė
DocType: Onboarding Slide,Action Settings,Veiksmo nustatymai
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sąranka> vartotojas
DocType: User,Defaults,Numatytasis
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Palyginimui naudokite> 5, <10 arba = 324. Jei norite diapazonų, naudokite 5:10 (reikšmėms nuo 5 iki 10)."
DocType: Energy Point Log,Revert Of,Grįžti
+DocType: Document Type Mapping,Field Mapping,Lauko žemėlapis
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sujungti su esama
DocType: User,Birth Date,Gimimo data
DocType: Communication Link,Link Title,Link Title
@@ -1966,6 +1986,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Žymos nuoroda
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Grandinės vientisumas
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Testas
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Valiutos = [?] dalis pvz. 1 USD = 100 centų
DocType: Data Import,Partially Successful,Iš dalies sėkmingas
@@ -1975,6 +1996,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP grupės žemėlapiai
DocType: Chat Message Attachment,Chat Message Attachment,Pokalbio pranešimo priedas
DocType: LDAP Settings,Path to CA Certs File,Kelias į CA Certs failą
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Jei dokumento gamintojo ir vartotojo pabaigoje yra skirtingi laukų pavadinimai, patikrinkite tai ir nustatykite žymėjimą"
DocType: Address,Manipur,Manipuras
DocType: Web Form Field,Allow Read On All Link Options,Leisti skaityti visose nuorodų parinktyse
DocType: DocType,Database Engine,duomenų bazės variklis
@@ -2109,6 +2131,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,pastaba
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,klaida ataskaita
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Eksportuoti duomenis CSV / Excel formatu.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Dokumento tipo lauko žemėlapis
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Visuotinės paieškos dokumentų nustatymas.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Autentifikavimo programos, kurias galite naudoti, yra šios:"
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} jau egzistuoja. Pasirinkite kitą pavadinimą
@@ -2184,7 +2207,6 @@ DocType: Workflow State,Upload,Įkelti
DocType: User Permission,Advanced Control,Išplėstinė kontrolė
DocType: System Settings,Date Format,Datos formatas
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ne Paskelbta
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nerastas numatytasis adreso šablonas. Sukurkite naują iš sąrankos> Spausdinimas ir prekės ženklo kūrimas> Adreso šablonas.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",Ieškinys dėl eigos (pvz patvirtinti Atšaukti).
DocType: Data Import,Skip rows with errors,Praleisti eilutes su klaidomis
DocType: Workflow State,flag,vėliava
@@ -2248,6 +2270,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Atstovauja narėms leidžiama į vieną dokumentą ir priskirtą vaidmenį pakeisti būseną.
DocType: Data Migration Connector,Database Name,Duomenų bazės pavadinimas
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Atnaujinti forma
+DocType: Event Producer,Event Producer,Renginių prodiuseris
DocType: DocField,Select,pasirinkti
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Žiūrėti visą žurnalą
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Paprastas Python išraiška, pavyzdys: status == 'Open' ir įveskite == 'Bug'"
@@ -2349,6 +2372,7 @@ DocType: DocType,User Cannot Search,Vartotojas negali Paieška
DocType: Communication Link,Communication Link,Ryšio saitas
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Neteisingas Išvesties formatas
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Negali {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Pasikartojantis {0} {1} buvo sukurtas naudojant automatinį pakartojimą {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Taikyti šią taisyklę, jeigu vartotojas yra savininkas"
DocType: Global Search Settings,Global Search Settings,Visuotinės paieškos nustatymai
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Bus jūsų prisijungimo ID
@@ -2366,12 +2390,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR patvirtinim
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Pridėti To Do
DocType: Footer Item,Company,Bendrovė
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Vidutiniškai {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Sėkmingi sandoriai
DocType: Scheduled Job Log,Scheduled,planuojama
DocType: User,Logout from all devices while changing Password,"Išjunkite iš visų įrenginių, pakeisdami slaptažodį"
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Patvirtinkite slaptažodį
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Įvyko klaidų
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,„Google“ nustatymuose įveskite kliento ID ir kliento paslaptį.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Uždaryti
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","El. Pašto ID turi būti unikalus, {0} el. Pašto paskyra jau yra."
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Nepavyksta pakeisti docstatus nuo 0 iki 2
DocType: File,Attached To Field,Pritvirtintas prie lauko
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,atnaujinimas
@@ -2479,6 +2505,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,mėnuo
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Pridėti Reference: {{ reference_doctype }} {{ reference_name }} siųsti dokumento nuoroda
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Nurodomi tik dokumente dalyvaujantys vartotojai
DocType: DocField,Fetch From,Išeiti iš
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sąranka> Tinkinti formą
apps/frappe/frappe/modules/utils.py,App not found,Programos nerastas
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Negalima sukurti {0} prieš vaikų dokumentas: {1}
DocType: Social Login Key,Social Login Key,Socialinio prisijungimo raktas
@@ -2490,7 +2517,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Pokalbi
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Socialiniai namai
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},"Įdėkite Po negalima nustatyti, kaip {0}"
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Dalintis {0} su
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Pašto paskyros nustatymas prašome įvesti savo slaptažodį:
DocType: Workflow State,hand-up,rankų iki
DocType: Blog Settings,Writers Introduction,rašytojų Įvadas
DocType: Address,Phone,telefonas
@@ -2549,7 +2575,7 @@ DocType: Web Page,Insert Style,Įdėkite Stilius
DocType: Prepared Report,Error Message,Klaidos pranešimas
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nauja ataskaita pavadinimas
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Paslėpti savaitgalius
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatiškai generuoja pasikartojančius dokumentus.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Automatiškai generuoja pasikartojančius dokumentus.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Ar
DocType: Onboarding Slide,ERPNext,„ERPNext“
DocType: Workflow State,info-sign,informacijos-ženklas
@@ -2557,7 +2583,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vertė
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kaip tai valiuta, turi būti suformatuotas? Jei nenustatytas, naudosis sistema pagal nutylėjimą"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Pateikti {0} dokumentus?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Jūs turite būti registruotas ir turėti System Manager vaidmuo, kad būtų galima prieiti prie atsargines kopijas."
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Klaida jungiantis prie „QZ Tray Application“ ...
Jei norite naudoti neapdoroto spausdinimo funkciją, turite būti įdiegta ir paleista „QZ Tray“ programa.
Spustelėkite čia, jei norite atsisiųsti ir įdiegti „QZ Tray“ .
Spustelėkite čia, jei norite sužinoti daugiau apie neapdorotą spausdinimą ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Spausdintuvo žemėlapių sudarymas
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Prašome išsaugoti Prieš tvirtindami.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Ar norite atšaukti visus susietus dokumentus?
@@ -2587,6 +2612,7 @@ DocType: Role Permission for Page and Report,Set Role For,Nustatyti vaidmuo
DocType: GCalendar Account,The name that will appear in Google Calendar,"Pavadinimas, kuris bus rodomas "Google" kalendoriuje"
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Tiesioginis kambarys su {0} jau egzistuoja.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Gaivus ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Patikrinkite informacijos suvestinės diagramos filtro reikšmes: {}
DocType: Event,Starts on,prasideda
DocType: System Settings,System Settings,sistemos nustatymai
DocType: GCalendar Settings,Google API Credentials,"Google" API įgaliojimai
@@ -2612,6 +2638,7 @@ DocType: Workflow State,ok-sign,OK-ženklas
apps/frappe/frappe/config/settings.py,Deleted Documents,Ištrintos dokumentai
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV formatas yra didžiosios ir mažosios raidės
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop ikona jau egzistuoja
+DocType: Event Consumer Document Type,Approval Status,patvirtinimo būsena
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Nurodykite, kuriuose visuose domenuose skaidrės turėtų būti rodomos. Jei nieko nenurodyta, skaidrė pagal numatytuosius nustatymus rodoma visuose domenuose."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,dublikatas
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: {2} eilutės {1} laukas negali būti paslėptas ir privalomas be numatytųjų
@@ -2631,6 +2658,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Pagalba straipsniai
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,tipas:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Jūsų mokėjimas nepavyko.
+DocType: Event Producer,Producer URL,Gamintojo URL
DocType: Comment,Unshared,nebebendrinate
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modulis nerastas
@@ -2642,6 +2670,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Uždavinys Baigtas
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Masiniai Redaguoti {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Atsisiųsti ataskaitą
+apps/frappe/frappe/model/workflow.py,Workflow Status,Darbo eigos būsena
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,neaktyvus
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Tik administratoriui leidžiama kurti informacijos suvestinės diagramos šaltinius
DocType: About Us Settings,Settings for the About Us Page,Nustatymai Apie mus Puslapis
@@ -2651,6 +2680,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Spa
DocType: Notification Settings,Energy Points,Energijos taškai
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Laikas {0} turi būti tokio formato: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,pvz pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Nepavyko pridėti naujo pasikartojančio dokumento. Norėdami įgalinti dokumento pridėjimą automatinio pakartojimo pranešimų el. Laiške, spausdinimo nustatymuose įgalinkite {1}"
DocType: User,Generate Keys,Sukurti raktus
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Tai visam laikui pašalins jūsų duomenis.
DocType: DocType,View Settings,Peržiūrėti Nustatymai
@@ -2702,6 +2732,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Visi
DocType: Email Queue,Recipient,Gavėjas
DocType: Webhook,Webhook Security,„Webhook“ sauga
+DocType: Event Sync Log,Producer Document Name,Gamintojo dokumento pavadinimas
DocType: Communication,Has Attachment,turi priedą
DocType: Address,Sales User,pardavimų Vartotojas
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Vilkite ir upuść įrankis kurti ir pritaikyti Spausdinti formatai.
@@ -2737,6 +2768,7 @@ DocType: Address,Arunachal Pradesh,Arunačal Pradešas
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Vaikų lentelės rodomos kaip tinklelis kituose „DocTypes“
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Sąranka auto pašto
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,"Ctrl" + žemyn
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Svetainė, kurią norite užsiprenumeruoti renginiams."
DocType: Chat Profile,Message Preview,Pranešimo peržiūra
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Tai yra iš viršaus 10 bendras slaptažodį.
DocType: User,User Defaults,Vartotojo Numatytasis
@@ -2769,6 +2801,7 @@ DocType: Dashboard Chart,Last Synced On,Paskutinį kartą sinchronizuotas
DocType: Comment,Comment Type,Komentuoti tipas
DocType: OAuth Client,OAuth Client,OAuth klientas
DocType: Assignment Rule,Users,vartotojai
+DocType: Document Type Mapping,Local Document Type,Vietinio dokumento tipas
DocType: Address,Odisha,orisa
DocType: Report,Report Type,Ataskaitos tipas
DocType: DocField,Signature,Parašas
@@ -2811,6 +2844,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} savarankiškai priskyrė šią užduotį: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Tavo šalis
DocType: Assignment Rule Day,Sunday,sekmadienis
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Tvarko visų įterpimų, atnaujinimų ir ištrynimų žurnalą renginių rengėjo svetainėje dokumentams, kuriuose yra vartotojai."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Lauko pavadinimas negali būti vienas iš {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Padėtis
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Be Tinklelis
@@ -2958,7 +2992,6 @@ DocType: Web Page,Sidebar and Comments,Šoninė juosta ir komentarai
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kai pakeisti dokumentą po Atšaukti ir išsaugokite jį, jis gaus naują numerį, kuris yra senojo numerio versiją."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Negalima pridėti {0} dokumento, įjunkite "Leisti spausdinti" {0} spausdinimo nustatymuose"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El. Pašto sąskaita nėra nustatyta. Sukurkite naują el. Pašto paskyrą apsilankę Sąranka> El. Paštas> El. Pašto abonementas
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Žr. Dokumentą {0}
DocType: Stripe Settings,Publishable Key,skelbtinas raktas
DocType: Stripe Settings,Publishable Key,skelbtinas raktas
@@ -3037,7 +3070,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Informacija:
DocType: Custom Field,Permission Level,leidimas lygis
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Negalima nustatyti Pateikti, atšaukti pakeisti be Rašykite"
DocType: List View Setting,Disable Count,Išjungti skaičiavimą
-DocType: Google Maps Settings,Client Key,Kliento raktas
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Ar tikrai norite ištrinti priedą?
apps/frappe/frappe/__init__.py,Thank you,Ačiū
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Vyksta išsaugojimas
@@ -3164,6 +3196,7 @@ DocType: Workflow Document State,Only Allow Edit For,Leisti tik redagavimą
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Atsarginių kopijų kūrimas „Google“ diske.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Privalomas laukas: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tavo vardas
+DocType: Event Producer Document Type,Event Producer Document Type,Renginio rengėjo dokumento tipas
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Prisijungimo sėkmė
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,„Onboarding“ skaidrių tipo skaidrė jau egzistuoja.
@@ -3234,6 +3267,7 @@ DocType: Address,Postal Code,Pašto kodas
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,reLink Bendravimas
DocType: Translation,Contributed,Prisidėjo
apps/frappe/frappe/config/customization.py,Form Customization,Formos pritaikymas
+DocType: Event Update Log,Event Update Log,Įvykių atnaujinimo žurnalas
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nėra aktyvių seansų
DocType: Web Form,Route to Success Link,Maršrutas į sėkmės nuorodą
DocType: Onboarding Slide Field,Right,teisė
@@ -3260,7 +3294,7 @@ DocType: Website Settings,Chat Operators,Pokalbių operatoriai
DocType: S3 Backup Settings,ca-central-1,ca-centrinis-1
DocType: Contact Us Settings,Pincode,PIN kodas
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Prašome įsitikinkite, kad nėra tuščios skiltys faile."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Stebimi svarbiausi dokumento gyvavimo ciklo etapai, jei jis praeina keliais etapais."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Stebimi svarbiausi dokumento gyvavimo ciklo etapai, jei jis praeina keliais etapais."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Pervardyti failai ir pakeistas kodas valdikliuose, patikrinkite!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Įsitikinkite, kad jūsų profilis yra elektroninio pašto adresą"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Turite neišsaugotų pakeitimų, šią formą. Prašome įrašyti prieš tęsdami."
@@ -3287,7 +3321,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Išsaugoti API slaptumą:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Negalima susieti atšauktą dokumentą: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Negalite redaguoti standartinę ataskaitą. Prašome dubliuoti ir sukurti naują ataskaitą
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Bendrovė yra privalomas, nes tai jūsų įmonė adresas"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Pavyzdžiui: Jei norite įtraukti dokumento ID, naudokite {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Pasirinkite lentelės stulpelių už {0}
DocType: Custom Field,Options Help,Nustatymai Pagalba
@@ -3295,7 +3328,6 @@ DocType: Footer Item,Group Label,Grupės etikėtė
DocType: Kanban Board,Kanban Board,Kanban lenta
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,„Google“ kontaktai sukonfigūruoti.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Bus eksportuotas 1 įrašas
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Su vartotoju nesusieta jokia el. Pašto paskyra. Pridėkite abonementą skiltyje Vartotojas> El. Pašto dėžutė.
DocType: DocField,Report Hide,Pranešti Slėpti
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Medis nėra už {0}
DocType: DocType,Restrict To Domain,Apriboti domenų
@@ -3361,7 +3393,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: {2} tipo {1} laukas negali būti privalomas
DocType: System Settings,In Days,Dienomis
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,praleisti
+DocType: Event Producer Document Type,Has Mapping,Turi žemėlapių sudarymą
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Prašome nurodyti
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Netinkama filtro vertė
DocType: Comment,Bot,botas
DocType: Help Article,Help Article,Pagalba straipsnis
DocType: Page,Page Name,puslapio pavadinimas
@@ -3469,7 +3503,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Spausdinti Formatas
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Perjungti tinklelio rodinį
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pereiti prie kito įrašo
-DocType: System Settings,Time Format,Laiko formatas
+DocType: Country,Time Format,Laiko formatas
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Negaliojantys Mokėjimo šliuzai įgaliojimai
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Tai yra šablonų failas, sugeneruotas tik su eilėmis, turinčiomis tam tikrą klaidą. Turėtumėte naudoti šį failą pataisymui ir importui."
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Nustatyti teises į Dokumentų tipai ir vaidmenys
@@ -3795,6 +3829,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Leisti prisijungimą naudojant vartotojo vardą
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Įjungti pranešimą
DocType: DocField,Display Depends On,Rodyti Priklauso nuo
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Prieš {0} metus (-ių)
DocType: Social Login Key,API Endpoint,API baigimo taškas
DocType: Web Page,Insert Code,Įveskite kodą
DocType: Data Migration Run,Current Mapping Type,Dabartinis kartografavimo tipas
@@ -3848,6 +3883,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pat
apps/frappe/frappe/www/login.html,Or login with,Arba prisijunkite su
DocType: Error Snapshot,Locals,vietiniai
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Perduota per {0} ant {1} {2}
+DocType: Event Producer,Event Producer Document Types,Renginių rengėjų dokumentų tipai
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nustatykite numatytąją el. Pašto paskyrą iš sąrankos> El. Paštas> El
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Pasirinkite grupę pagal ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,pvz (55 + 434) / 4 arba = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} reikalingas
@@ -3880,9 +3917,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,"GCalendar" sinchronizavimo ID
DocType: Prepared Report,Report Start Time,Ataskaitos pradžios laikas
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Eksporto duomenys
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Tvarko kiekvieno suvartoto įvykio žurnalą, sinchronizacijos būseną ir mygtuką Resync, jei sinchronizuoti nepavyks."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,pasirinkti stulpelius
DocType: Translation,Source Text,šaltinis tekstas
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Tai yra pagrindinė ataskaita. Nustatykite tinkamus filtrus ir sugeneruokite naują.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El. Pašto sąskaita nėra nustatyta. Sukurkite naują el. Pašto paskyrą apsilankę Sąranka> El. Paštas> El. Pašto abonementas
apps/frappe/frappe/www/login.py,Missing parameters for login,Trūksta parametrai prisijungęs
DocType: Workflow State,folder-open,Aplankas-atvira
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Pateikti dokumentai negali būti pakeisti. Jie gali būti tik atšaukti ir pakeisti.
@@ -3962,6 +4001,7 @@ DocType: Blog Post,Published On,paskelbta
DocType: Contact,Gender,Lytis
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Privaloma informacija truksta:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} grąžino jūsų taškus {1}
+DocType: Event Consumer,Event Subscriber,Renginių abonentas
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Patikrinkite užklausos URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Tik 200 įdėklai leidžiama viename prašyme
DocType: Footer Item,URL,URL
@@ -3974,6 +4014,7 @@ DocType: Auto Email Report,Half Yearly,pusmečio
DocType: Communication,Marked As Spam,Pažymėtas kaip šlamštas
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Yra kai kurie su URL failui problema: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,medis
+DocType: Event Producer Document Type,Use Same Name,Naudoti tą patį vardą
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Jums neleidžiama spausdinti šią ataskaitą
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Vartotojo Leidimai
DocType: Workflow State,warning-sign,įspėjamasis ženklas
@@ -3983,6 +4024,7 @@ DocType: Workflow State,User,Vartotojas
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Rodyti Pavadinimas naršyklės lange "priešdėlio - pavadinimas"
DocType: Payment Gateway,Gateway Settings,Vartai nustatymai
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Teksto dokumento tipui
+DocType: Event Sync Log,Event Sync Log,Įvykių sinchronizavimo žurnalas
apps/frappe/frappe/handler.py,Logged Out,Atsijungęs
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Daugiau ...
DocType: System Settings,User can login using Email id or Mobile number,Vartotojas gali prisijungti naudojant elektroninio pašto ID arba Mobilaus telefono numeris
@@ -4023,12 +4065,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nėra viduje
DocType: Workflow State,star,žvaigždė
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,įvorė
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Jei tai pažymėta, dokumentai turės tą patį pavadinimą kaip ir renginių rengėjo svetainėje"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,vertės atskirti kableliais
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maksimalus plotis tipo valiuta yra 100px iš eilės {0}
apps/frappe/frappe/config/website.py,Content web page.,Turinio interneto puslapis.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Įdėti naują vaidmenį
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Apsilankykite tinklalapyje
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nauja užduotis
+DocType: Event Consumer Document Type,Approved,patvirtinta
DocType: Google Contacts,Last Sync On,Paskutinė sinchronizacija įjungta
DocType: Deleted Document,Deleted Document,ištrintas Dokumento
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oi! Kažkas negerai
@@ -4081,7 +4125,6 @@ DocType: DocField,Unique,Unikalus
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} įvertintas {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Dalinis sėkmė
DocType: Email Account,Service,tarnyba
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sąranka> vartotojas
DocType: File,File Name,Failo pavadinimas
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Neradote {0} už {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4093,11 +4136,10 @@ DocType: Calendar View,Calendar View,Kalendoriaus vaizdas
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Redaguoti Formatas
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,pilnas Registracija
DocType: GCalendar Settings,Enable,įgalinti
-DocType: Google Maps Settings,Home Address,Namų adresas
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Galite įkelti tik iki 5000 įrašų vienu ypu. (Gali būti mažiau kai kuriais atvejais)
DocType: Report,"output in the form of `data = [columns, result]`","išvesties forma „duomenys = [stulpeliai, rezultatas]“"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Taikomi dokumentų tipai
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Nustatykite vartotojo priskyrimo taisykles.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Nustatykite vartotojo priskyrimo taisykles.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nepakanka Leidimas {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nepakanka Leidimas {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Ataskaita nebuvo išgelbėtas (ten buvo klaidų)
diff --git a/frappe/translations/lv.csv b/frappe/translations/lv.csv
index af5641bcf4..f98b1fd9c9 100644
--- a/frappe/translations/lv.csv
+++ b/frappe/translations/lv.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Šī loma atjaunina lietotāja atļaujas lietotājs
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Pārdēvēt {0}
DocType: Workflow State,zoom-out,zoom-out
-DocType: Data Import Beta,Import Options,Importēšanas opcijas
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Nevar atvērt {0}, kad tā instance ir atvērts"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabula {0} nevar būt tukša
DocType: SMS Parameter,Parameter,Parametrs
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Atce
DocType: DocType,Is Published Field,Vai Publicēts lauks
DocType: GCalendar Settings,GCalendar Settings,GCalendar iestatījumi
DocType: Email Group,Email Group,Email Group
-apps/frappe/frappe/__init__.py,Only for {},Tikai priekš {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google kalendārs - nevarēja izdzēst notikumu {0} no Google kalendāra, kļūdas kods {1}."
DocType: Event,Pulled from Google Calendar,Tiek noņemts no Google kalendāra
DocType: Note,Seen By,redzams
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Vairāku pievieno
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nav derīgs lietotāja attēls.
DocType: Energy Point Log,Reverted,Atgriezts
DocType: Success Action,First Success Message,Pirmā veiksmes ziņa
+DocType: Document Type Mapping,Document Type Mapping,Dokumenta veida kartēšana
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nepatīk
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nepareiza vērtība: {0} ir {1}{2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Mainīt lauka īpašības (slēpt, tikai lasāms, atļauja uc)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,"Vietne, kas patērē jūsu pasākumus."
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Novērtē
DocType: Notification Settings,Document Share,Dokumentu kopīgošana
DocType: Workflow State,lock,atslēga
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,log
DocType: Workflow State,indent-right,ievilkums labajā
DocType: Has Role,Has Role,ir lomas
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,"Laiks sekundēs, lai saglabātu QR koda attēlu serverī. Min: 240"
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: {2} lauka tips {1} nevar tikt indeksēts
DocType: Dashboard Chart,Timespan,Laika sprīdis
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Saite
DocType: Deleted Document,Restored,atjaunota
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Kļūda, savienojot ar QZ teknes lietojumprogrammu ...
Lai izmantotu neapstrādātas drukāšanas funkciju, ir jābūt instalētai un palaistai lietojumprogrammai QZ Tray.
Noklikšķiniet šeit, lai lejupielādētu un instalētu QZ Tray .
Noklikšķiniet šeit, lai uzzinātu vairāk par neapstrādātu drukāšanu ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 stunda pirms
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Neatkarīgi no System Manager, lomas ar noteikt lietotāja atļauju tiesības var noteikt atļaujas citiem lietotājiem šim dokumenta veidu."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigurēt motīvu
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,neredzēts
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Failu pārvaldnieks
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML galvene, roboti un novirzīšana"
DocType: GCalendar Account,Refresh Token,Atsvaidzināt Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Neizdevās izveidot savienojumu ar notikumu producenta vietni. Pēc kāda laika mēģiniet vēlreiz.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Šajā vietnē nav neapstiprinātu vai pašreizējo darbu
DocType: Webhook,Doc Event,Doc notikums
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Skriptu pārvaldnieks
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nav aktivitātes
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Trešo pušu lietotnes
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Pirmais lietotājs kļūs System Manager (jūs varat mainīt šo vēlāk).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Jūs varat mēģināt mainīt pārskata filtrus.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Šodien nav notikumu
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Jūs nevarat dot pārskatīšanas punktus sev
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType jābūt iesniedzamajam atlasītajam Doc notikumam
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,"Jums nav atļauts sūtīt e-pastus, kas saistīti ar šā dokumenta"
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,"Atlasiet atleast 1 kolonnu no {0}, lai sakārtotu / grupu"
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nav atļauts {0}: {1}. Ierobežots lauks: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Uzņēmums nav saistīts
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Atzīmējiet šo, ja esat testēšana jūsu maksājumu, izmantojot Sandbox API"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Jums nav atļauts dzēst standarta mājas lapas tēmu
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Izveidojiet savu pirmo {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} atja
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Iekšpusē esošs slaids {0} ar tādu pašu slaidu secību jau pastāv
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Atslēgt pārskats
DocType: Translation,Contributed Translation Doctype Name,Iegādātais tulkojums Doctype Name
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Iestatīšana> Pielāgot veidlapu
DocType: PayPal Settings,Redirect To,novirzīt Lai
DocType: Data Migration Mapping,Pull,Izvelciet
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formāts: frappe.query_reports ['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Nav atļauts
DocType: DocShare,Internal record of document shares,Iekšējā ieraksts dokumentu akciju
DocType: Energy Point Settings,Review Levels,Pārskata līmeņi
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Iestatīšana> Lietotāja atļaujas
DocType: Workflow State,Comment,Komentēt
DocType: Data Migration Plan,Postprocess Method,Pēcapstrādes metode
DocType: DocType Action,Action Type,Darbības veids
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Rā
DocType: Workflow State,remove-circle,noņemt-apli
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mans profils
DocType: Help Article,Beginner,iesācējs
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Šī darbība ir atļauta tikai {}
DocType: Contact,Is Primary Contact,Vai Primārā Contact
+DocType: Event Consumer,Event Consumer,Pasākuma patērētājs
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript lai pievienotu uz galvas sadaļā lapas.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Pievienot / atjaunināt
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Nav atļauts drukāt dokumentu projektus
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Atjaunot noklus
DocType: Workflow,Transition Rules,Pārejas noteikumi
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Priekšskatījumā tiek rādītas tikai pirmās {0} rindas
apps/frappe/frappe/core/doctype/report/report.js,Example:,Piemērs:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Ierobežojumi
DocType: Workflow,Defines workflow states and rules for a document.,Definē darbplūsmas valstis un noteikumus attiecībā uz dokumentu.
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Atkārtot Līdz
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Jauns
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Vispirms jāizveido šie:
-DocType: Google Maps Settings,Google Maps Settings,Google Maps iestatījumi
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ...
DocType: DocField,Password,Parole
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Jūsu sistēma tiek atjaunināts. Lūdzu atsvaidzināt atkal pēc dažiem mirkļiem
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,Borta slidkalniņš
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nepareiza parole:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nepareiza parole:
DocType: Print Settings,Send document web view link in email,Nosūtīt dokumentu web skata saiti e-pastā
+DocType: Event Consumer Document Type,Event Consumer Document Type,Pasākuma patērētāja dokumenta tips
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Iepriekšējais
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Nepieciešams uzticams sertifikāts
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,tilpums uz leju
DocType: Onboarding Slide,Help Links,Palīdzības saites
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Piekļuve nav atļauta no šīs IP adreses
DocType: Notification Settings,Enable Email Notifications,Iespējot e-pasta paziņojumus
+DocType: Document Type Field Mapping,Event Streaming,Pasākumu straumēšana
apps/frappe/frappe/desk/reportview.py,No Tags,Nav Birkas
DocType: Email Account,Send Notification to,Nosūtīt Paziņošana
DocType: DocField,Collapsible,Saliekams
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Nav nosacījumu
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y asis lauki
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Kārtot lauks {0} ir jābūt derīgam fieldname
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Netika atrasta noklusējuma adreses veidne. Lūdzu, izveidojiet jaunu no Iestatīšana> Drukāšana un zīmolu veidošana> Adreses veidne."
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Vairāk
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Izveidojiet jaunu ierakstu
DocType: Contact,Sales Manager,Pārdošanas vadītājs
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Pārdēvēt
DocType: Print Format,Format Data,Format Data
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} nav derīgs pārskata formāts. Pārskata formātam jābūt vienam no šiem {1}
DocType: List Filter,Filter Name,Filtra nosaukums
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Tāpat
DocType: Assignment Rule,Automation,Automatizācija
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,Reset Password Key
DocType: Dashboard Chart,All Time,Visu laiku
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Nelegāla dokumenta statuss {0}
DocType: Email Account,Enable Auto Reply,Ieslēgt Auto Atbildēt
+apps/frappe/frappe/desk/query_report.py,No data to export,Nav eksportējamu datu
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Neesmu redzējis
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,"Nevar būt vairāki printeri, kas sakārtoti vienā drukas formātā."
DocType: Workflow State,zoom-in,zoom-in
@@ -841,6 +851,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Mainīt li
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pirmkārt
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Atjaunināt tulkojumus
DocType: Error Snapshot,Exception,Izņēmums
+DocType: Event Consumer,Event Consumer Document Types,Pasākumu patērētāju dokumentu veidi
DocType: Email Account,Use IMAP,Izmantot IMAP
DocType: Activity Log,Activity Log,Aktivitāte Log
DocType: View Log,Viewed By,Skatīts ar
@@ -880,6 +891,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Uzs
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurēt diagrammas
DocType: User,Last IP,Pēdējais IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Lūdzu, pievienojiet tēmu savam e-pastam"
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Kļūdaini darījumi
DocType: Data Migration Connector,Data Migration Connector,Datu migrācijas savienotājs
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} atsaukts {1}
DocType: Email Account,Track Email Status,Izsekot e-pasta statusu
@@ -911,6 +923,7 @@ DocType: Email Queue,Attachments,Pielikumi
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Jums nav atļaujas piekļūt šo dokumentu
DocType: Language,Language Name,Language Name
DocType: Email Group Member,Email Group Member,E-pasts grupas dalībnieks
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Ar Lietotāju nav saistīts neviens e-pasta konts. Lūdzu, pievienojiet kontu sadaļā Lietotājs> E-pasta iesūtne."
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Jūsu konts ir bloķēts un atsāksies pēc {0} sekundēm
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,"Lietotāju atļaujas tiek izmantotas, lai ierobežotu lietotājus konkrētiem ierakstiem."
DocType: Notification,Value Changed,Vērtība Mainīts
@@ -1003,6 +1016,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Pieminēt darī
DocType: Help Article,Expert,eksperts
DocType: Workflow State,circle-arrow-right,loks bultas pa labi
DocType: Role Profile,Role Profile,Lomu profils
+DocType: Document Type Mapping,Remote Document Type,Attālā dokumenta tips
apps/frappe/frappe/permissions.py,Document Type is not importable,Dokumenta tips nav importējams
DocType: LDAP Settings,LDAP Server Url,LDAP servera URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Nevar atvērt gadījumu, kad tā {0} ir atvērts"
@@ -1088,7 +1102,7 @@ DocType: Web Form,Allow Print,atļaut drukāt
DocType: Communication,Clicked,Uzklikšķināt
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Neizsekot
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nav atļaujas '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Lūdzu, iestatiet noklusējuma e-pasta kontu no Iestatīšana> E-pasts> E-pasta konts"
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Tiek rādītas tikai pirmās {0} rindas no {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Plānotais sūtīt
DocType: DocType,Track Seen,Track Seen
DocType: Dropbox Settings,File Backup,Failu dublējums
@@ -1159,6 +1173,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izv
DocType: Data Export,Filter List,Filtra saraksts
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Pasākumu konfigurācijas
DocType: Email Account,Auto Reply Message,Auto Atbildēt Message
DocType: Data Migration Mapping,Condition,Nosacījums
apps/frappe/frappe/utils/data.py,{0} hours ago,Pirms {0} stundas
@@ -1218,9 +1233,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,"Vienmēr iz
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,"Ienāciet, lai komentētu"
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Sākt datu ievadīšanai zem šīs līnijas
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},maiņa vērtības {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","E-pasta ID ir unikāls, e-pasta konts jau eksistē \ for {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Salīdzinājumam izmantojiet> 5, <10 vai = 324. Diapazoniem izmantojiet 5:10 (vērtībām no 5 līdz 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Pielāgot ...
DocType: Print Format,Align Labels to the Right,Izlīdziniet iezīmes uz labo pusi
DocType: Assignment Rule,Disabled,Invalīdiem
@@ -1268,8 +1282,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tastatūras īsceļi
DocType: Post,Comments,Komentāri
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Apstiprināt
+DocType: Event Sync Log,Update Type,Atjaunināšanas tips
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Autentificēšana ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Sakļaut visu
+DocType: Event Producer,Last Update,Pēdējā atjaunošana
apps/frappe/frappe/www/login.html,Forgot Password?,Aizmirsi paroli?
DocType: System Settings,yyyy-mm-dd,gggg-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1310,6 +1326,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,galda Fiel
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,"Kolonnas, pamatojoties uz"
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Tiek importēts {0} no {1}, {2}"
DocType: Workflow State,move,pārvietot
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Neizdevās izveidot notikumu patērētāju vai notikumu patērētāju pašreizējai vietnei jau ir reģistrēts.
apps/frappe/frappe/model/document.py,Action Failed,darbība neizdevās
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,lietotājam
DocType: View Log,View log,Skatīt žurnālu
@@ -1473,6 +1490,7 @@ DocType: DefaultValue,Key,Taustiņš
DocType: Address,Contacts,Kontakti
DocType: System Settings,Setup Complete,Setup Complete
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Ziņojums Visu dokumentu akcijas
+DocType: Event Consumer,Callback URL,Atzvanīšanas URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importēšanas veidnei jābūt .csv, .xlsx vai .xls veidam"
apps/frappe/frappe/www/update-password.html,New Password,New Password
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} trūkst
@@ -1539,7 +1557,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Pan
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; nav atļauts stāvoklī
DocType: Async Task,Async Task,Async Task
DocType: Workflow State,picture,bilde
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Pilnīgs
+DocType: Scheduled Job Log,Complete,Pilnīgs
DocType: DocType,Image Field,Image Field
DocType: Print Format,Custom HTML Help,Custom HTML Help
DocType: LDAP Settings,Default Role on Creation,Noklusētā loma radīšanā
@@ -1565,6 +1583,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Palīdzība uz Meklēt
DocType: Milestone,Milestone Tracker,Starpposma izsekotājs
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Reģistrēta bet invalīdiem
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,"Adrese jāsaista ar uzņēmumu. Lūdzu, pievienojiet rindiņu uzņēmumam zemāk esošajā saišu tabulā."
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Šī dokumenta automātiskā atkārtošana ir atspējota.
DocType: DocType,Hide Copy,Slēpt Copy
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Skaidrs visiem lomas
@@ -1603,6 +1622,7 @@ DocType: Bulk Update,Field,lauks
DocType: Communication,Received,Saņemti
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger par pamatotas metodes, piemēram, "before_insert", "after_update", uc (būs atkarīgs no izvēlētā DOCTYPE)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},mainīta vērtība: {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"E-pasta konta iestatīšana, lūdzu, ievadiet savu paroli: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Pievienojot System Manager šo lietotāju, jo ir jābūt Vismaz vienam System Manager"
DocType: Chat Message,URLs,Vietrāži URL
DocType: Data Migration Run,Total Pages,Kopējais lapu skaits
@@ -1610,7 +1630,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Pievienojiet attēlu
DocType: Workflow State,list-alt,saraksta alt
apps/frappe/frappe/www/update-password.html,Password Updated,Paroles Atjaunots
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Iestatīšana> Lietotāja atļaujas
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,"Pasākumi, lai pārbaudītu jūsu pieteikšanos"
apps/frappe/frappe/utils/password.py,Password not found,Parole nav atrasts
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1626,8 +1645,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API iestat
DocType: Report,Query Report,Vaicājums pārskats
DocType: User,Set New Password,Uzstādīt jauno paroli
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nav atļauts {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S nav derīgs ziņojumu formātu. Ziņojumā formāts būtu \ vienu no šīm% s
DocType: Chat Message,Chat,Tērzēšana
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Neviens dokuments nav atrasts ar atzīmi {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP grupas kartēšana
@@ -1663,7 +1680,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ievadiet
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret
DocType: Tag Link,Document Title,Dokumenta nosaukums
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligāts)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pirms {0} gada (-iem)
DocType: Social Login Key,Social Login Provider,Sociālās pieslēgšanās nodrošinātājs
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Pievienot citu komentāru
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,"Failā nav atrasta neviena datu. Lūdzu, vēlreiz pievienojiet jauno failu ar datiem."
@@ -1711,6 +1727,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Izvēl
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 gads
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Neatgriezeniski dzēst {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Pats fails jau ir pievienota ierakstam
+DocType: Event Sync Log,Synced,Sinhronizēts
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,"{0} nav derīga darbplūsmas valsts. Lūdzu, atjauniniet savu darbplūsmu un mēģiniet vēlreiz."
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,deva {0} punktus
DocType: Workflow State,wrench,izmežģījums
@@ -1813,6 +1830,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,S
DocType: Web Form Field,Max Length,Max garums
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,karte-marķieris
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Kartēšanas konfigurācija starp diviem doctipiem.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Iesniegt Problēma
DocType: Event,Repeat this Event,Atkārtojiet šo notikumu
DocType: Address,Maintenance User,Uzturēšanas lietotājs
@@ -1872,6 +1890,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Testa e-pasta adrese
DocType: Auto Repeat,Reference Document Type,Atsauces dokuments Type
DocType: ToDo,Sender,Nosūtītājs
+DocType: Event Consumer,Incoming Change,Ienākošās izmaiņas
DocType: Google Drive,Backup Folder Name,Dublēt mapes nosaukumu
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,"Novērtējot paziņojumu {0}, radās kļūda. Lūdzu, izlabojiet savu veidni."
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1934,9 +1953,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Jauns dr
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Noklikšķiniet uz saites zemāk, lai apstiprinātu pieprasījumu"
DocType: Workflow State,align-left,saskaņot kreiso
DocType: Onboarding Slide,Action Settings,Darbības iestatījumi
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Iestatīšana> Lietotājs
DocType: User,Defaults,Noklusējumi
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Salīdzinājumam izmantojiet> 5, <10 vai = 324. Diapazoniem izmantojiet 5:10 (vērtībām no 5 līdz 10)."
DocType: Energy Point Log,Revert Of,Atgriezties
+DocType: Document Type Mapping,Field Mapping,Lauka kartēšana
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Saplūst ar esošo
DocType: User,Birth Date,Dzimšanas datums
DocType: Communication Link,Link Title,saites nosaukums
@@ -1964,6 +1984,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tagu saite
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Ķēdes integritāte
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Pārbaudē
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Valūtas = [?] Frakcija Par piem 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Daļēji veiksmīga
@@ -1973,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP grupas kartēšana
DocType: Chat Message Attachment,Chat Message Attachment,Tērzēšanas ziņojuma pielikums
DocType: LDAP Settings,Path to CA Certs File,Ceļš uz CA Certs failu
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Ja dokumentam ir atšķirīgi lauku nosaukumi ražotāja un patērētāja beigās, pārbaudiet to un iestatiet kartēšanu"
DocType: Address,Manipur,Manipūra
DocType: Web Form Field,Allow Read On All Link Options,Atļaut lasīt visu saišu opcijas
DocType: DocType,Database Engine,Database Engine
@@ -2107,6 +2129,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Piezīme
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Kļūdas ziņojums
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Eksportēt datus CSV / Excel formātā.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Dokumenta veida lauka kartēšana
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Globālās meklēšanas dokumentu iestatīšana.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Autentifikācijas lietojumprogrammas, kuras varat izmantot, ir šādas:"
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} jau eksistē. Izvēlieties citu vārdu
@@ -2182,7 +2205,6 @@ DocType: Workflow State,Upload,Augšupielāde
DocType: User Permission,Advanced Control,Uzlabota kontrole
DocType: System Settings,Date Format,Date Format
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nav Izdots
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Netika atrasta noklusējuma adreses veidne. Lūdzu, izveidojiet jaunu no Iestatīšana> Drukāšana un zīmolu veidošana> Adreses veidne."
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Pasākumi darbplūsmas (piemēram apstiprināt, Atcelt)."
DocType: Data Import,Skip rows with errors,Izlaist rindas ar kļūdām
DocType: Workflow State,flag,karogs
@@ -2246,6 +2268,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Pārstāv valstis atļauts vienā dokumentā, un piešķirto lomu, lai mainītu stāvokli."
DocType: Data Migration Connector,Database Name,Datubāzes nosaukums
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Atsvaidzināt Form
+DocType: Event Producer,Event Producer,Pasākuma producents
DocType: DocField,Select,Atlasīt
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Skatīt pilnu žurnālu
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",Vienkāršs Python izteiksmes piemērs: status == 'Open' un ierakstiet == 'Bug'
@@ -2347,6 +2370,7 @@ DocType: DocType,User Cannot Search,Lietotājs Nevar Meklēt
DocType: Communication Link,Communication Link,Saziņas saite
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Nederīga Output Format
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Nevar {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,"Izmantojot automātisko atkārtošanu {2}, jums tika izveidots atkārtots {0} {1}."
DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Piemēro šo noteikumu, ja Lietotājs ir Īpašnieks"
DocType: Global Search Settings,Global Search Settings,Globālie meklēšanas iestatījumi
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Būs jūsu pieteikšanās ID
@@ -2364,12 +2388,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kods ieejas
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Pievienot darīt
DocType: Footer Item,Company,Kompānija
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Vidēji {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Veiksmīgi darījumi
DocType: Scheduled Job Log,Scheduled,Plānotais
DocType: User,Logout from all devices while changing Password,"Atteikties no visām ierīcēm, mainot paroli"
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Apstiprini Paroli
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Bija kļūdas
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Google iestatījumos ievadiet Klienta ID un Klienta noslēpums.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Aizvērt
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","E-pasta ID ir jābūt unikālam, {0} e-pasta konts jau pastāv."
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Nevar mainīt docstatus no 0 līdz 2
DocType: File,Attached To Field,Pievienots laukam
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Atjaunināt
@@ -2477,6 +2503,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Mēnesis
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,"ProTip: Pievienot Reference: {{ reference_doctype }} {{ reference_name }} , lai nosūtītu dokumentu atsauce"
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Ir uzskaitīti tikai tie dokumenti, kas iesaistīti dokumentā"
DocType: DocField,Fetch From,Ielādēt no
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Iestatīšana> Pielāgot veidlapu
apps/frappe/frappe/modules/utils.py,App not found,App nav atrasts
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Nevar izveidot {0} pret bērnu dokumenta: {1}
DocType: Social Login Key,Social Login Key,Sociālās pieslēgšanās atslēga
@@ -2488,7 +2515,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Čats z
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Sociālā māja
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Ievietojiet Pēc nevar iestatīt kā {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Share {0} ar
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"E-pasta konta iestatīšana lūdzu, ievadiet savu paroli:"
DocType: Workflow State,hand-up,rokas uz aukšu
DocType: Blog Settings,Writers Introduction,Rakstnieku Ievads
DocType: Address,Phone,Telefons
@@ -2547,7 +2573,7 @@ DocType: Web Page,Insert Style,Ievietot Style
DocType: Prepared Report,Error Message,Kļūdas ziņojums
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Jaunais ziņojums nosaukums
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Slēpt nedēļas nogalēs
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automātiski ģenerē atkārtotus dokumentus.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Automātiski ģenerē atkārtotus dokumentus.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Vai
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-zīme
@@ -2555,7 +2581,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vērtī
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kā tas valūtu var formatēt? Ja nav noteikts, izmantos sistēmas noklusējumus"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Iesniegt {0} dokumentus?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Jums ir nepieciešams, ir jāpiesakās, un ir sistēmas pārzinis loma, lai varētu piekļūt backups."
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Kļūda, savienojot ar QZ teknes lietojumprogrammu ...
Lai izmantotu neapstrādātas drukāšanas funkciju, ir jābūt instalētai un palaistai lietojumprogrammai QZ Tray.
Noklikšķiniet šeit, lai lejupielādētu un instalētu QZ Tray .
Noklikšķiniet šeit, lai uzzinātu vairāk par neapstrādātu drukāšanu ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Printera kartēšana
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Lūdzu, saglabājiet pirms pievienošanas."
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Vai vēlaties atcelt visus saistītos dokumentus?
@@ -2585,6 +2610,7 @@ DocType: Role Permission for Page and Report,Set Role For,Uzstādīt loma
DocType: GCalendar Account,The name that will appear in Google Calendar,"Nosaukums, kas tiks parādīts Google kalendārā"
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Tieša telpa ar {0} jau pastāv.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Atsvaidzinošs ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},"Lūdzu, pārbaudiet paneļa diagrammai iestatītās filtru vērtības: {}"
DocType: Event,Starts on,Sākas
DocType: System Settings,System Settings,Sistēmas iestatījumi
DocType: GCalendar Settings,Google API Credentials,Google API pilnvaras
@@ -2610,6 +2636,7 @@ DocType: Workflow State,ok-sign,ok-zīme
apps/frappe/frappe/config/settings.py,Deleted Documents,Dzēstas dokumenti
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV formāts ir reģistrjutīgs
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop ikona jau eksistē
+DocType: Event Consumer Document Type,Approval Status,Apstiprinājums statuss
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Norādiet, kādos visos domēnos vajadzētu parādīties slaidiem. Ja nekas nav norādīts, slaids pēc noklusējuma tiek parādīts visos domēnos."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Dublēt
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: {2}. Rindas {1} lauks nevar būt paslēpts un obligāts bez noklusējuma
@@ -2629,6 +2656,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Palīdzības raksti
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tips:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Jūsu maksājums nav izdevies.
+DocType: Event Producer,Producer URL,Ražotāja URL
DocType: Comment,Unshared,vienpusējs
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modulis nav atrasts
@@ -2640,6 +2668,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,uzdevums Pabeigts
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Bulk Edit {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Lejupielādēt atskaiti
+apps/frappe/frappe/model/workflow.py,Workflow Status,Darbplūsmas statuss
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Nav aktīvs
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Informācijas paneļa diagrammas avotus var izveidot tikai administrators
DocType: About Us Settings,Settings for the About Us Page,Iestatījumi Par mums Page
@@ -2649,6 +2678,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Dru
DocType: Notification Settings,Energy Points,Enerģijas punkti
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Laikam {0} jābūt formātā: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,piemēram pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Neizdevās pievienot jaunu atkārtotu dokumentu. Lai iespējotu dokumenta pievienošanu automātiskā atkārtota paziņojuma e-pastā, drukāšanas iestatījumos iespējojiet {1}"
DocType: User,Generate Keys,Izveidot taustiņus
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Tas jūsu datus neatgriezeniski noņems.
DocType: DocType,View Settings,Skatīt iestatījumi
@@ -2700,6 +2730,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Viss
DocType: Email Queue,Recipient,Saņēmējs
DocType: Webhook,Webhook Security,Webhook drošība
+DocType: Event Sync Log,Producer Document Name,Ražotāja dokumenta nosaukums
DocType: Communication,Has Attachment,ir pielikums
DocType: Address,Sales User,Sales User
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,"Velciet un Drop instruments, lai veidotu un pielāgot drukas formātus."
@@ -2735,6 +2766,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Bērnu galdi tiek parādīti kā režģis citos DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setup Auto Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Vietne, kuru vēlaties abonēt, lai patērētu pasākumus."
DocType: Chat Profile,Message Preview,Ziņojuma priekšskatījums
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Tas ir top-10 kopējā paroli.
DocType: User,User Defaults,Lietotāja Noklusējumi
@@ -2767,6 +2799,7 @@ DocType: Dashboard Chart,Last Synced On,Pēdējoreiz sinhronizēts
DocType: Comment,Comment Type,Komentārs Type
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Lietotāji
+DocType: Document Type Mapping,Local Document Type,Vietējā dokumenta tips
DocType: Address,Odisha,Orisa
DocType: Report,Report Type,Ziņojums Type
DocType: DocField,Signature,Paraksts
@@ -2809,6 +2842,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} pats šim uzdevumam piešķīris: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Tava valsts
DocType: Assignment Rule Day,Sunday,Svētdiena
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Uztur visu ievietotu, atjauninātu un dzēstu žurnālu notikumu producenta vietnē dokumentiem, kuriem ir patērētāji."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Lauka nosaukums nevar būt viens no {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Kopvērtējumi
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,In Grid View
@@ -2956,7 +2990,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar un komentāri
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kad jūs Grozīt dokuments pēc Atcelt un saglabājiet to, tas iegūs jaunu numuru, kas ir versija veco numuru."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Nav atļauts pievienot dokumentu {0}, lūdzu, ieslēdziet opciju Atļaut drukāšanu {0} drukāšanas iestatījumos"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-pasta konts nav iestatīts. Lūdzu, izveidojiet jaunu e-pasta kontu sadaļā Iestatīšana> E-pasts> E-pasta konts"
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Skatiet dokumentu vietnē {0}
DocType: Stripe Settings,Publishable Key,publicējamā Key
DocType: Stripe Settings,Publishable Key,publicējamā Key
@@ -3035,7 +3068,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Atļauja Level
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nevar iestatīt Iesniegt, Atcelt, Grozīt bez Write"
DocType: List View Setting,Disable Count,Atspējot skaitīšanu
-DocType: Google Maps Settings,Client Key,Klienta atslēga
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Vai jūs tiešām vēlaties dzēst pielikumu?
apps/frappe/frappe/__init__.py,Thank you,Paldies
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Glābšana
@@ -3162,6 +3194,7 @@ DocType: Workflow Document State,Only Allow Edit For,Tikai Atļaut Rediģēt
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Notiek dublēšana Google diskā.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Obligāts lauks: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tavs vārds
+DocType: Event Producer Document Type,Event Producer Document Type,Pasākuma producenta dokumenta tips
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Savienojuma veiksme
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Iekšējais slaidā tipa slaids jau pastāv.
@@ -3232,6 +3265,7 @@ DocType: Address,Postal Code,Pasta indekss
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,relink Paziņojums
DocType: Translation,Contributed,Ieguldīts
apps/frappe/frappe/config/customization.py,Form Customization,Veidlapas pielāgošana
+DocType: Event Update Log,Event Update Log,Notikumu atjaunināšanas žurnāls
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nav aktīvo sesiju
DocType: Web Form,Route to Success Link,Ceļš uz veiksmes saiti
DocType: Onboarding Slide Field,Right,Tiesības
@@ -3258,7 +3292,7 @@ DocType: Website Settings,Chat Operators,Tērzēšanas operatori
DocType: S3 Backup Settings,ca-central-1,ca-centrālā-1
DocType: Contact Us Settings,Pincode,Pasta indeksa
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Lūdzu, pārliecinieties, ka nav tukšas kolonnas failā."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Izseko pavērsienus dokumenta dzīves ciklā, ja tas iziet vairākus posmus."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Izseko pavērsienus dokumenta dzīves ciklā, ja tas iziet vairākus posmus."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Pārdēvēti faili un nomainīts kods kontrolieros, lūdzu, pārbaudiet!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Lūdzu, pārliecinieties, ka jūsu profils ir e-pasta adrese"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Jums ir nesaglabātas izmaiņas šajā formā. Lūdzu, saglabājiet pirms turpināt."
@@ -3285,7 +3319,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Saglabāt API sleju:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Nevar saistīt anulēto dokumentu: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,"Nevar rediģēt standarta ziņojumu. Lūdzu, dublēt un izveidot jaunu pārskatu"
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Uzņēmums ir obligāta, jo tas ir jūsu uzņēmums adrese"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Piemēram: Ja jūs vēlaties, lai iekļautu dokumentu ID, izmantojiet {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Izvēlieties tabula Columns par {0}
DocType: Custom Field,Options Help,Opcijas Palīdzība
@@ -3293,7 +3326,6 @@ DocType: Footer Item,Group Label,marķējums
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google kontakti ir konfigurēti.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Tiks eksportēts 1 ieraksts
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Ar Lietotāju nav saistīts neviens e-pasta konts. Lūdzu, pievienojiet kontu sadaļā Lietotājs> E-pasta iesūtne."
DocType: DocField,Report Hide,Ziņojums Paslēpt
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Koka skats nav pieejams {0}
DocType: DocType,Restrict To Domain,Ierobežot Lai Domain
@@ -3359,7 +3391,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: {2} tipa {1} lauks nevar būt obligāts
DocType: System Settings,In Days,Dienās
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,palaist garām
+DocType: Event Producer Document Type,Has Mapping,Ir kartēšana
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,"Lūdzu, norādiet"
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Nederīga filtra vērtība
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Palīdzība pants
DocType: Page,Page Name,Lapas nosaukums
@@ -3467,7 +3501,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Print Format
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Pārslēgt režģa skatu
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pāriet uz nākamo ierakstu
-DocType: System Settings,Time Format,Laika formāts
+DocType: Country,Time Format,Laika formāts
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Nederīgi maksājumu vārteja pilnvaras
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Šis ir veidnes fails, kuru ģenerē tikai ar rindām, kurām ir kāda kļūda. Jums vajadzētu izmantot šo failu labošanai un importēšanai."
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Uzstādīt tiesības dokumentu tipiem un lomām
@@ -3793,6 +3827,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,"Atļaut ieiet, izmantojot lietotāja vārdu"
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Ieslēgt ziņojumu
DocType: DocField,Display Depends On,Displejs Atkarīgs On
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pirms {0} gada (-iem)
DocType: Social Login Key,API Endpoint,API galapunkts
DocType: Web Page,Insert Code,Ievietot Code
DocType: Data Migration Run,Current Mapping Type,Pašreizējais kartēšanas veids
@@ -3846,6 +3881,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Aps
apps/frappe/frappe/www/login.html,Or login with,Vai pieteikties ar
DocType: Error Snapshot,Locals,Vietējie
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Paziņoti via {0} uz {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Pasākumu producentu dokumentu veidi
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Lūdzu, iestatiet noklusējuma e-pasta kontu no Iestatīšana> E-pasts> E-pasta konts"
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Atlasīt grupu pēc ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"piemēram, (55 + 434) / 4 vai = Math.sin (Math.PI / 2), ..."
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ir nepieciešams
@@ -3878,9 +3915,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar sinhronizācijas ID
DocType: Prepared Report,Report Start Time,Ziņojuma sākuma laiks
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Eksportēt datus
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Uztur visu patērēto notikumu žurnālu, kā arī sinhronizācijas statusu un pogu Resync, ja sinhronizācija neizdodas."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Izvēlieties Columns
DocType: Translation,Source Text,Avota teksts
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"Šis ir fona ziņojums. Lūdzu, iestatiet atbilstošos filtrus un pēc tam ģenerējiet jaunu."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-pasta konts nav iestatīts. Lūdzu, izveidojiet jaunu e-pasta kontu sadaļā Iestatīšana> E-pasts> E-pasta konts"
apps/frappe/frappe/www/login.py,Missing parameters for login,Trūkstošie parametri login
DocType: Workflow State,folder-open,mapes-open
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Pēc iesniegšanas iesniedzamos dokumentus nevar mainīt. Tos var tikai atcelt un grozīt.
@@ -3960,6 +3999,7 @@ DocType: Blog Post,Published On,Publicēts On
DocType: Contact,Gender,Dzimums
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Obligātā informācija trūkst:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} atsaucis jūsu punktus šādā datumā: {1}
+DocType: Event Consumer,Event Subscriber,Pasākuma abonents
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Pārbaudiet pieprasījumu URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Tikai 200 ieliktņi atļauta vienā pieprasījumā
DocType: Footer Item,URL,URL
@@ -3972,6 +4012,7 @@ DocType: Auto Email Report,Half Yearly,Pusgada
DocType: Communication,Marked As Spam,Atzīmētas kā mēstules
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Ir dažas problēmas ar faila url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Koks
+DocType: Event Producer Document Type,Use Same Name,Izmantojiet to pašu vārdu
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Jums nav atļauts drukāt šo ziņojumu
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Lietotāja atļaujas
DocType: Workflow State,warning-sign,brīdinājuma-zīme
@@ -3981,6 +4022,7 @@ DocType: Workflow State,User,Lietotājs
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Rādīt titulu pārlūkprogrammas logā kā "prefiksu - virsraksts"
DocType: Payment Gateway,Gateway Settings,Vārtu iestatījumi
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Teksta dokumenta veida
+DocType: Event Sync Log,Event Sync Log,Notikumu sinhronizācijas žurnāls
apps/frappe/frappe/handler.py,Logged Out,Izlogojies
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,More ...
DocType: System Settings,User can login using Email id or Mobile number,"Lietotājs var pieteikties, izmantojot e-pasta ID vai mobilā tālruņa numurs"
@@ -4021,12 +4063,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Not In
DocType: Workflow State,star,zvaigzne
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Rumba
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Ja tas ir atzīmēts, dokumentiem būs tāds pats nosaukums kā tiem, kas ir Pasākumu producenta vietnē"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,vērtības atdalītas ar komatiem
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max platums tipa Valūta ir 100px rindā {0}
apps/frappe/frappe/config/website.py,Content web page.,Saturs mājas lapa.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Pievienot jauno lomu
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Apmeklējiet Web lapu
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Jauns uzdevums
+DocType: Event Consumer Document Type,Approved,Apstiprināts
DocType: Google Contacts,Last Sync On,Pēdējā sinhronizācija ir ieslēgta
DocType: Deleted Document,Deleted Document,svītrots Document
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hmm! Kaut kas nogāja greizi
@@ -4079,7 +4123,6 @@ DocType: DocField,Unique,Unikāls
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} novērtēts {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Daļēja veiksme
DocType: Email Account,Service,Pakalpojums
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Iestatīšana> Lietotājs
DocType: File,File Name,Faila nosaukums
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Neatrada {0} par {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4091,11 +4134,10 @@ DocType: Calendar View,Calendar View,Kalendāra skats
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Rediģēt formāts
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Complete Reģistrācija
DocType: GCalendar Settings,Enable,Dot iespēju
-DocType: Google Maps Settings,Home Address,Mājas adrese
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Jūs varat augšupielādēt tikai līdz pat 5000 ierakstiem vienā piegājienā. (Var būt mazāk dažos gadījumos)
DocType: Report,"output in the form of `data = [columns, result]`","izvade formā “dati = [kolonnas, rezultāts]”"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Piemērojamie dokumentu veidi
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Iestatiet lietotāju piešķiršanas noteikumus.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Iestatiet lietotāju piešķiršanas noteikumus.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nepietiekams Atļauja {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nepietiekams Atļauja {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Ziņojums netika saglabāts (tur bija kļūdas)
diff --git a/frappe/translations/mk.csv b/frappe/translations/mk.csv
index 194e42688c..f217e2c058 100644
--- a/frappe/translations/mk.csv
+++ b/frappe/translations/mk.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Ова ажурирање улога на корисничките дозволи за корисникот
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Преименувај {0}
DocType: Workflow State,zoom-out,намали
-DocType: Data Import Beta,Import Options,Опции за увоз
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Не може да се отвори {0} кога неговата пример е отворена
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Табела {0} не може да биде празна
DocType: SMS Parameter,Parameter,Параметар
@@ -83,16 +82,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,От
DocType: DocType,Is Published Field,Објавено е поле
DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings
DocType: Email Group,Email Group,Е-група
-apps/frappe/frappe/__init__.py,Only for {},Само за {}
DocType: Event,Pulled from Google Calendar,Извлечено од Календарот на Гугл
DocType: Note,Seen By,Видено од
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Додади Повеќе
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Не е валидна слика за корисникот.
DocType: Energy Point Log,Reverted,Вратен
DocType: Success Action,First Success Message,Прва порака за успех
+DocType: Document Type Mapping,Document Type Mapping,Мапирање на типот на документот
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Не како
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Неточна вредност: {0} мора да биде {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Сменете го полето својства (Скриј, само за читање, дозвола и сл)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Веб-страницата што ги троши вашите настани.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Цени
DocType: Notification Settings,Document Share,Споделување на документи
DocType: Workflow State,lock,заклучување
@@ -112,11 +112,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Пријавете се
DocType: Workflow State,indent-right,алинеја-десничарската
DocType: Has Role,Has Role,има улога
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Повторно да се продолжи
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Време во секунди за да се задржи QR-кодот на серверот. Мин: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} за {2} не може да се индексира
DocType: Dashboard Chart,Timespan,Timespan
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Веб врска
DocType: Deleted Document,Restored,Вратена
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Грешка при поврзување со апликацијата за фиоки за QZ Tray ...
Треба да имате инсталирано и работи апликацијата QZ Tray, за да ја користите функцијата Raw Print.
Кликнете овде за да ја преземете и инсталирате QZ лентата .
Кликнете овде за да дознаете повеќе за Raw print ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Пред 1 минута
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Освен Систем за менаџер, улоги со собата дозволи пристап право да го поставите дозволи за други корисници за кои типот на документот."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Конфигурирајте ја темата
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,невидена
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Менаџер на датотеки
DocType: Website Settings,"HTML Header, Robots and Redirects","Заглавие на HTML, роботи и пренасочувања"
DocType: GCalendar Account,Refresh Token,Освежи токен
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Не успеа да се поврзе на страницата на Производител на настани. Повторно обидете се по некое време.
DocType: Address,Goa,Гоа
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Нема чекање или тековни работни места за оваа страница
DocType: Webhook,Doc Event,Док настан
@@ -208,6 +211,7 @@ DocType: Server Script,Script Manager,Управувач со скрипти
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Нема активност
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Апликации од трети лица
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Првиот корисник ќе стане менаџер на систем (можете да го промените ова подоцна).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Може да се обидете да ги промените филтрите на вашиот извештај.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Нема настани денес
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Вие не можете да дадете поени за преглед на себе
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType мора да биде поднесено за избраниот Док-настан
@@ -237,6 +241,7 @@ apps/frappe/frappe/config/desk.py,Files,додадени фајлови:
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permissions get applied on Users based on what Roles they are assigned.,Дозволи да се примени на корисниците врз основа на она што тие улоги се доделени.
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Не ви е дозволено да испраќаат електронски пораки во врска со овој документ
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Ве молиме изберете барем 1 колона од {0} да средиме / група
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Компанија не е поврзана
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Изберете го ова ако се тестира вашата исплата користење на API Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Не ви е дозволено да ги избришете стандардна веб-сајт Тема
DocType: Data Import,Log Details,Детали за дневникот
@@ -256,7 +261,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Ажур
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Лизгачки плоча за возење {0} со ист редослед за лизгање веќе постои
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Оневозможи Извештај
DocType: Translation,Contributed Translation Doctype Name,Придонесено име на докторски превод
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Поставување> Персонализирајте форма
DocType: PayPal Settings,Redirect To,За пренасочување
DocType: Data Migration Mapping,Pull,Повлечете
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Го вклучите Javascript-формат: frappe.query_reports ['REPORTNAME'] = {}
@@ -268,6 +272,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Не е дозволено
DocType: DocShare,Internal record of document shares,Внатрешна евиденција на акции документ
DocType: Energy Point Settings,Review Levels,Нивоа за прегледување
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Поставување> Кориснички дозволи
DocType: Workflow State,Comment,Коментар
DocType: Data Migration Plan,Postprocess Method,Постпроцес метод
DocType: DocType Action,Action Type,Вид на акција
@@ -317,7 +322,9 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,П
DocType: Workflow State,remove-circle,Отстрани-круг
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Мој Профил
DocType: Help Article,Beginner,почетник
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Оваа акција е дозволена само за {}
DocType: Contact,Is Primary Contact,Е основно Контакт
+DocType: Event Consumer,Event Consumer,Потрошувач на настани
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript-от за да додадете на делот шеф на страната.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Додај / ажурирај
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Не е дозволено да печатите нацрт документи
@@ -469,7 +476,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Повторете До
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Нови
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Прво треба да ги креирате овие:
-DocType: Google Maps Settings,Google Maps Settings,Поставки на "Карти на Google"
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Се вчитува ...
DocType: DocField,Password,Лозинка
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Вашиот систем се ажурира. Освежете го повторно по неколку минути
@@ -561,6 +567,7 @@ DocType: Onboarding Slide,Onboarding Slide,Лизгачки плоча
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Невалидна лозинка:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Невалидна лозинка:
DocType: Print Settings,Send document web view link in email,Испрати документи на веб-приказ линк во е-мејл
+DocType: Event Consumer Document Type,Event Consumer Document Type,Тип на документ за потрошувачи на настани
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Претходната
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Барајте доверлив сертификат
@@ -636,6 +643,7 @@ DocType: Workflow State,volume-down,волумен надолу
DocType: Onboarding Slide,Help Links,Линкови за помош
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Не е дозволен пристап од оваа IP адреса
DocType: Notification Settings,Enable Email Notifications,Овозможете ги известувањата за е-пошта
+DocType: Document Type Field Mapping,Event Streaming,Стриминг на настани
apps/frappe/frappe/desk/reportview.py,No Tags,Не Тагови
DocType: Email Account,Send Notification to,Испрати известување до
DocType: DocField,Collapsible,Склопувачки
@@ -652,6 +660,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Фи
apps/frappe/frappe/database/database.py,No conditions provided,Не се обезбедени услови
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y оска полиња
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Подреди поле {0} мора да биде валидна fieldname
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не е пронајдена стандардна образец за адреса. Ве молиме, создадете нова од Поставување> Печатење и брендирање> Шаблон за адреса."
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Повеќе
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Создадете нов рекорд
DocType: Contact,Sales Manager,Менаџер за продажба
@@ -675,6 +684,7 @@ DocType: User,Reset Password Key,Ресетирање на Лозинка Клу
DocType: Dashboard Chart,All Time,Цело време
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Статус на нелегален документ за {0}
DocType: Email Account,Enable Auto Reply,Овозможи Авто Одговор
+apps/frappe/frappe/desk/query_report.py,No data to export,Нема податоци за извоз
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Не се гледа
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Не може да има повеќе печатачи мапирани во еден формат за печатење.
DocType: Workflow State,zoom-in,зголеми
@@ -825,6 +835,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Проме
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Прво
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Ажурирај преводи
DocType: Error Snapshot,Exception,Исклучок
+DocType: Event Consumer,Event Consumer Document Types,Видови на документи за потрошувачи на настани
DocType: Email Account,Use IMAP,Користење на IMAP
DocType: Activity Log,Activity Log,Активност Влез
DocType: View Log,Viewed By,Гледано од
@@ -863,6 +874,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Н
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Конфигурирај ги графиконите
DocType: User,Last IP,Последните IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Ве молиме додадете тема на вашата е-пошта
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Грешни трансакции
DocType: Data Migration Connector,Data Migration Connector,Конектор за миграција на податоци
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} вратен {1}
DocType: Email Account,Track Email Status,Следете статус на е-пошта
@@ -893,6 +905,7 @@ DocType: Email Queue,Attachments,Додатоци
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Вие немате дозволи за пристап до овој документ
DocType: Language,Language Name,јазик Име
DocType: Email Group Member,Email Group Member,Е-мејл група земји
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Нема сметка за е-пошта поврзана со Корисникот. Ве молиме, додадете сметка под Корисникот> Е-пошта во пошта."
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Вашата сметка е заклучена и ќе продолжи по {0} секунди
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Корисничките дозволи се користат за ограничување на корисниците на одредени записи.
DocType: Notification,Value Changed,Променети вредност
@@ -985,6 +998,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Спомнет
DocType: Help Article,Expert,експерт
DocType: Workflow State,circle-arrow-right,круг стрелка-десничарската
DocType: Role Profile,Role Profile,Профил на улоги
+DocType: Document Type Mapping,Remote Document Type,Тип на далечински документ
apps/frappe/frappe/permissions.py,Document Type is not importable,Тип на документ не се увезува
DocType: LDAP Settings,LDAP Server Url,LDAP сервер URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Не може да се отвори пример кога неговата {0} е отворена
@@ -1069,7 +1083,6 @@ DocType: Web Form,Allow Print,Дозволи за печатење
DocType: Communication,Clicked,Кликнато
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Неуспешно
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Нема дозвола за '{0} {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ве молиме поставете ја стандардната сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Треба да се испрати
DocType: DocType,Track Seen,песна Гледано
DocType: Dropbox Settings,File Backup,Датотека резервна копија
@@ -1139,6 +1152,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,и
DocType: Data Export,Filter List,Листа на филтри
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,НВ: мм
+DocType: Event Sync Log,Event Configurations,Конфигурации за настани
DocType: Email Account,Auto Reply Message,Авто Одговор порака
DocType: Data Migration Mapping,Condition,Состојба
apps/frappe/frappe/utils/data.py,{0} hours ago,Пред {0} часа
@@ -1198,9 +1212,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,"Секог
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Влези за да го коментира
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Почнете со внесување на податоци под оваа линија
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},изменетите вредности за {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Е-поштата мора да биде уникатна, Е-пошта веќе постои \ for {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За споредба, користете> 5, <10 или = 324. За опсег, користете 5:10 (за вредности помеѓу 5 и 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Прилагоди ...
DocType: Print Format,Align Labels to the Right,Порамни етикети на десно
DocType: Assignment Rule,Disabled,Со посебни потреби
@@ -1244,8 +1257,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Кратенки на тастатурата
DocType: Post,Comments,Коментари
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Потврди
+DocType: Event Sync Log,Update Type,Тип на ажурирање
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Потврдување ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Намали се
+DocType: Event Producer,Last Update,Последно ажурирање
apps/frappe/frappe/www/login.html,Forgot Password?,Ја заборави лозинката?
DocType: System Settings,yyyy-mm-dd,гггг-мм-дд
apps/frappe/frappe/desk/report/todo/todo.py,ID,проект
@@ -1286,6 +1301,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Табел
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Столбови врз основа на
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Увезување {0} од {1}, {2}"
DocType: Workflow State,move,потег
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Не успеа да се создаде Потрошувач на настани или Потрошувач на настани за тековната страница е веќе регистриран.
apps/frappe/frappe/model/document.py,Action Failed,акција не успеа
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,за пристап
DocType: View Log,View log,Преглед на дневник
@@ -1446,6 +1462,7 @@ DocType: DefaultValue,Key,Клучни
DocType: Address,Contacts,Контакт
DocType: System Settings,Setup Complete,Целосно подесување
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Извештај од сите акции со документ
+DocType: Event Consumer,Callback URL,URL-то за повратен повик
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Урнек за увоз треба да биде од типот .csv, .xlsx или .xls"
apps/frappe/frappe/www/update-password.html,New Password,Нова лозинка
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Филтер {0} исчезнати
@@ -1513,7 +1530,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,У
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; не е дозволено во состојба
DocType: Async Task,Async Task,Async Задача
DocType: Workflow State,picture,слика
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Заврши
+DocType: Scheduled Job Log,Complete,Заврши
DocType: DocType,Image Field,поле сликата
DocType: Print Format,Custom HTML Help,Прилагодено HTML Помош
DocType: LDAP Settings,Default Role on Creation,Стандардна улога за создавање
@@ -1537,6 +1554,7 @@ DocType: Role,"If disabled, this role will be removed from all users.","Доко
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Помош за пребарување
DocType: Milestone,Milestone Tracker,Преглед на пресврт
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Се регистрирав но со посебни потреби
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Адресата треба да биде поврзана со компанија. Додадете ред за компанијата во табелата Линкови подолу.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Автоматското повторување за овој документ е оневозможено.
DocType: DocType,Hide Copy,Сокриј Copy
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Исчистите сите улоги
@@ -1579,7 +1597,6 @@ DocType: Data Migration Run,Total Pages,Вкупно страници
DocType: DocField,Attach Image,Прикачи слика
DocType: Workflow State,list-alt,Листата-алт
apps/frappe/frappe/www/update-password.html,Password Updated,Лозинка освежено
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Поставување> Кориснички дозволи
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Чекори за да го потврдите вашето најавување
apps/frappe/frappe/utils/password.py,Password not found,Лозинка не е пронајден
DocType: Webhook,Webhook Secret,Тајната на веб-страниците
@@ -1594,8 +1611,6 @@ DocType: Website Settings,Brand,Бренд
apps/frappe/frappe/config/integrations.py,Google API Settings.,Поставки за API на Google.
DocType: Report,Query Report,Пријави пребарување
DocType: User,Set New Password,Намести Нова лозинка
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S не е валиден формат извештај. Извештај формат треба \ еден од% s
DocType: Chat Message,Chat,Чет
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Не се пронајдени документи обележани со {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Мапирање на групите LDAP
@@ -1676,6 +1691,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Изб
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 година
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Трајно да го избришете {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Истата датотека е веќе во прилог на рекорд
+DocType: Event Sync Log,Synced,Синхронизиран
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} не е валидна состојба на работното процесирање. Ве молиме да го ажурирате вашиот работен тек и обидете се повторно.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,даде {0} поени
DocType: Workflow State,wrench,клуч
@@ -1774,6 +1790,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,Максимална должина
DocType: Print Format,Jinja,Jaинџа
DocType: Workflow State,map-marker,мапа маркер
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Конфигурацијата за мапирање помеѓу две тестаменти.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Поднесете ја претставува проблем
DocType: Event,Repeat this Event,Повторете го овој настан
DocType: Address,Maintenance User,Одржување пристап
@@ -1830,6 +1847,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Тест-мејл адреса
DocType: Auto Repeat,Reference Document Type,Референтен документ Тип
DocType: ToDo,Sender,Испраќачот
+DocType: Event Consumer,Incoming Change,Дојдовни промени
DocType: Google Drive,Backup Folder Name,Име на резервна копија
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Грешка при оценувањето на Известувањето {0}. Ве молиме поправете го вашиот образец.
DocType: GSuite Settings,Google Apps Script,Апликации на Google
@@ -1890,9 +1908,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Име
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Кликнете на врската подолу за да го одобрите барањето
DocType: Workflow State,align-left,усогласат-левичарската
DocType: Onboarding Slide,Action Settings,Активни поставки
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Поставување> Корисник
DocType: User,Defaults,Стандардни
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За споредба, користете> 5, <10 или = 324. За опсег, користете 5:10 (за вредности помеѓу 5 и 10)."
DocType: Energy Point Log,Revert Of,Врати се
+DocType: Document Type Mapping,Field Mapping,Поле мапирање
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Се спои со постојната
DocType: User,Birth Date,Дата на раѓање
DocType: Communication Link,Link Title,линк Наслов
@@ -1920,6 +1939,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Врска со ознака
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Интегритет на синџири
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Во тест
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Валута = [?] Фракции за пример 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Делумно успешна
@@ -1929,6 +1949,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Мапирање на групите LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Прилог за пораката за пораки
DocType: LDAP Settings,Path to CA Certs File,Пат до датотека со сертификати за CA
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Ако документот има различни имиња на полиња на крајот на Производителот и Потрошувачот, проверете го ова и поставете го Мапирање"
DocType: Address,Manipur,Манипур
DocType: Web Form Field,Allow Read On All Link Options,Дозволи Прочитајте ги сите опции за линкови
DocType: DocType,Database Engine,база на податоци мотор
@@ -2062,6 +2083,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Забелешка
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Пријави грешка
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Извоз на податоци во CSV / Excel формат.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Мапирање на полето од типот на документ
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Поставување документи за глобално пребарување.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Апликациите за автентикација кои можете да ги користите се:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} веќе постои. Изберете друго име
@@ -2136,7 +2158,6 @@ DocType: Workflow State,Upload,Додавање
DocType: User Permission,Advanced Control,Напредна контрола
DocType: System Settings,Date Format,Формат на датум
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Не се објавени
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не е пронајдена стандардна образец за адреса. Ве молиме, создадете нова од Поставување> Печатење и брендирање> Шаблон за адреса."
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Акции за работа (на пр одобри, Cancel)."
DocType: Data Import,Skip rows with errors,Прескокнете ги редовите со грешки
DocType: Workflow State,flag,знаме
@@ -2198,6 +2219,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Претставува државите дозволено во еден документ и улогата доделен на промена на државата.
DocType: Data Migration Connector,Database Name,Име на базата
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Refresh Форма
+DocType: Event Producer,Event Producer,Производител на настани
DocType: DocField,Select,Изберете
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Прикажи целосен дневник
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Едноставно изразување на Питон, Пример: статус == 'Отвори' и тип == 'Бубачка'"
@@ -2312,6 +2334,7 @@ DocType: GSuite Settings,Google Credentials,Google Сертификати
apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR код за верификација на најава
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Додади во да се направи
DocType: Footer Item,Company,Компанијата
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Успешни трансакции
DocType: Scheduled Job Log,Scheduled,Закажана
DocType: User,Logout from all devices while changing Password,Одјавување од сите уреди при промена на лозинката
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Потврди ја лозинката
@@ -2422,6 +2445,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Месец
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Додади Reference: {{ reference_doctype }} {{ reference_name }} за да се испрати референтен документ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Наведени се само корисници вклучени во документот
DocType: DocField,Fetch From,Земи од
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Поставување> Персонализирајте форма
apps/frappe/frappe/modules/utils.py,App not found,Стан не е пронајдена
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Не можам да создадам {0} против документ дете: {1}
DocType: Social Login Key,Social Login Key,Клучен клуч за пријавување
@@ -2432,7 +2456,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Раз
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Социјален дом
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Внесете Откако не може да се постави како {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Сподели {0} со
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,поставување на е-сметка ве молиме внесете ја вашата лозинка за:
DocType: Workflow State,hand-up,рака-up
DocType: Blog Settings,Writers Introduction,Писатели Вовед
DocType: Address,Phone,Телефон
@@ -2490,7 +2513,7 @@ DocType: Web Page,Insert Style,Внеси Стил
DocType: Prepared Report,Error Message,Грешка порака
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ново име извештај
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Сокриј ги викендите
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Автоматски генерира периодични документи.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Автоматски генерира периодични документи.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Е
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,инфо-знак
@@ -2498,7 +2521,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Вре
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Како треба да се форматира оваа валута? Ако не е поставено, ќе ја користи систем стандардно"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Поднесете {0} документи?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Вие треба да бидете најавени на системот и имаат Систем за менаџер улога да биде во можност да пристапите бекап.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Грешка при поврзување со апликацијата за фиоки за QZ фиоки ...
Треба да имате инсталирано и работи апликацијата QZ Tray, за да ја користите функцијата Raw Print.
Кликнете овде за да ја преземете и инсталирате QZ лентата .
Кликнете овде за да дознаете повеќе за Raw print ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Мапирање на печатачот
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Ве молиме да се спаси пред приложување.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Дали сакате да ги откажете сите поврзани документи?
@@ -2528,6 +2550,7 @@ DocType: Role Permission for Page and Report,Set Role For,Поставете у
DocType: GCalendar Account,The name that will appear in Google Calendar,Името што ќе се појави во Google Календар
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Директната соба со {0} веќе постои.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Освежувачки ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Проверете ги вредностите на филтерот поставени за табелата со табла: {}
DocType: Event,Starts on,Почнува на
DocType: System Settings,System Settings,System Settings
DocType: GCalendar Settings,Google API Credentials,Сертификати за API на Google
@@ -2552,6 +2575,7 @@ DocType: Workflow State,ok-sign,OK-знак
apps/frappe/frappe/config/settings.py,Deleted Documents,избришани документи
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Форматот на CSV е осетлив на големи букви
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Десктоп икони веќе постои
+DocType: Event Consumer Document Type,Approval Status,Статус на Одобри
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Наведете во кои домени треба да се појават слајдовите. Ако ништо не е одредено, слајдот се прикажува во сите домени по дифолт."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,СТРОГО
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Полето {1} по ред {2} не може да се скрие и задолжително без стандардно
@@ -2571,6 +2595,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,помош членовите
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Тип:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,вашата исплата не успеа.
+DocType: Event Producer,Producer URL,URL-то на производителот
DocType: Comment,Unshared,неразделен
DocType: Address,Karnataka,Карнатака
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Модул Не е пронајдено
@@ -2582,6 +2607,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,задача заврши
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Масовно Измени {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Преземи извештај
+apps/frappe/frappe/model/workflow.py,Workflow Status,Статус на работниот тек
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Не се активни
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Само администраторот е дозволен да креира извори на табла за табели
DocType: About Us Settings,Settings for the About Us Page,Подесувања за За нас страница
@@ -2590,6 +2616,7 @@ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Лен
apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Печати Испратено до печатачот!
DocType: Notification Settings,Energy Points,Енергетски поени
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,на пр pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Не успеа да приложи нов документ што се повторува. За да овозможите прикачување на документ во е-поштата за известување за автоматско повторување, овозможете {1} во поставките за печатење"
DocType: User,Generate Keys,Генерирање клучеви
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ова трајно ќе ги отстрани вашите податоци.
DocType: DocType,View Settings,Погледнете Подесувања
@@ -2640,6 +2667,7 @@ DocType: User Social Login,User Social Login,Кориснички социјал
DocType: Contact,All,Сите
DocType: Email Queue,Recipient,Примачот
DocType: Webhook,Webhook Security,Безбедност на веб-страници
+DocType: Event Sync Log,Producer Document Name,Име на документ на производителот
DocType: Communication,Has Attachment,има Прилог
DocType: Address,Sales User,Продажбата пристап
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and drop алатка за да се изгради и да се прилагодите печатење формати.
@@ -2673,6 +2701,7 @@ DocType: Address,Arunachal Pradesh,Аруначал Прадеш
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Табелите за деца се прикажани како решетка во другите доктипи
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Поставување Авто-пошта
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Веб-страницата на која сакате да се претплатите за консумирање настани.
DocType: Chat Profile,Message Preview,Преглед на пораки
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Ова е топ-10 заеднички лозинка.
DocType: User,User Defaults,Корисникот Стандардни
@@ -2705,6 +2734,7 @@ DocType: Dashboard Chart,Last Synced On,Последно синхронизир
DocType: Comment,Comment Type,Коментар Тип
DocType: OAuth Client,OAuth Client,OAuth потрошувач
DocType: Assignment Rule,Users,Корисници
+DocType: Document Type Mapping,Local Document Type,Тип на локален документ
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Тип на излагањето
DocType: DocField,Signature,Потпис
@@ -2746,6 +2776,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} само назначи оваа задача: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Твојата земја
DocType: Assignment Rule Day,Sunday,Недела
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Одржува дневник на сите додатоци, ажурирања и бришења на страницата на Производител на настани за документи што имаат потрошувачи."
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Рангирање
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Во преглед на решетка
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,Нема повеќе активност
@@ -2889,7 +2920,6 @@ DocType: Web Page,Sidebar and Comments,Лента и Коментари
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Кога ќе се измени на документот по Cancel и спаси го, ќе добие нов број, кој е верзија на стариот број."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Не е дозволено да приложите {0} документ, ве молиме овозможете Дозволи печатење за {0} во Поставки за печатење"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не е поставена сметка за е-пошта. Создадете нова сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Погледнете го документот на {0}
DocType: Stripe Settings,Publishable Key,Клучни publishable
DocType: Stripe Settings,Publishable Key,Клучни publishable
@@ -2966,7 +2996,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Инфо:
DocType: Custom Field,Permission Level,Дозвола ниво
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Не може да се постави Прати, Откажи, измени без Напиши"
DocType: List View Setting,Disable Count,Оневозможи броење
-DocType: Google Maps Settings,Client Key,Клиентски клуч
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Дали сте сигурни дека сакате да ја избришете прилог?
apps/frappe/frappe/__init__.py,Thank you,Ви благодариме
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Заштеда
@@ -3090,6 +3119,7 @@ DocType: Workflow Document State,Only Allow Edit For,Само што им ово
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Резервна копија на Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Задолжително поле: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Вашето име
+DocType: Event Producer Document Type,Event Producer Document Type,Тип на документ за продуцент на настани
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Успех во поврзувањето
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Продолжува веќе постојниот слајд од типот на слајд.
@@ -3159,6 +3189,7 @@ DocType: Address,Postal Code,поштенски код
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,relink Порака
DocType: Translation,Contributed,Придонеси
apps/frappe/frappe/config/customization.py,Form Customization,Персонализација на формата
+DocType: Event Update Log,Event Update Log,Дневник за ажурирање на настани
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Нема активни сесии
DocType: Web Form,Route to Success Link,Пат до успех линк
DocType: Onboarding Slide Field,Right,Право
@@ -3184,7 +3215,7 @@ DocType: Website Settings,Chat Operators,Оператори на разгово
DocType: S3 Backup Settings,ca-central-1,ка-централно-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Ве молиме бидете сигурни дека не постојат празни колони во датотеката.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Ги следи пресвртниците на животниот циклус на документот ако поминува во повеќе фази.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Ги следи пресвртниците на животниот циклус на документот ако поминува во повеќе фази.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Преименувани датотеки и заменет код во контролорите, проверете!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Ве молиме да се осигура дека вашиот профил е-мејл адреса
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Сте имале незачувани промени во оваа форма. Ве молиме да се спаси пред да продолжите.
@@ -3209,7 +3240,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Зачувај API Secret:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Не може да се поврзе откажани документ: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Не можете да менувате стандарден извештај. Ве молиме да се дуплираат и да се создаде нов извештај
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Компанијата е задолжително, како што е на вашата компанија адреса"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","На пример: Ако сакате да ги вклучите проект на документот, користете {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Изберете Колумни Табела за {0}
DocType: Custom Field,Options Help,Опции Помош
@@ -3217,7 +3247,6 @@ DocType: Footer Item,Group Label,Етикета група
DocType: Kanban Board,Kanban Board,Kanban одбор
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Контактите Google се конфигурирани.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 рекорд ќе биде извезен
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Нема сметка за е-пошта поврзана со Корисникот. Ве молиме, додадете сметка под Корисникот> Е-пошта во пошта."
DocType: DocField,Report Hide,Извештај Сокриј
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},преглед на дрвото не се достапни за {0}
DocType: DocType,Restrict To Domain,Ограничување на домен
@@ -3279,7 +3308,9 @@ DocType: DocField,Fold,Пати
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,Стандард за печатење формат не може да се ажурира
DocType: System Settings,In Days,Во денови
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Мис
+DocType: Event Producer Document Type,Has Mapping,Има мапирање
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Ве молиме наведете
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Невалидна вредност на филтерот
DocType: Comment,Bot,бот
DocType: Help Article,Help Article,помош член
DocType: Page,Page Name,Страница Име
@@ -3382,7 +3413,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Печати формат
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Вклучи го приказот на мрежата
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Оди до следниот рекорд
-DocType: System Settings,Time Format,Формат на време
+DocType: Country,Time Format,Формат на време
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Невалиден ингеренциите исплата портал
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ова е датотека со шаблони генерирана само со редови кои имаат некоја грешка. Треба да ја користите оваа датотека за корекција и увоз.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Поставување на дозволи за видовите и улоги документ
@@ -3747,6 +3778,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,П
apps/frappe/frappe/www/login.html,Or login with,Или пријавете се со
DocType: Error Snapshot,Locals,Локалните жители
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Доставени преку {0} на {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Видови на документи на продуцент на настани
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ве молиме поставете ја стандардната сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Изберете група по ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"на пример, (55 + 434) / 4 или = Math.sin (Math.PI / 2) ..."
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} е потребно
@@ -3778,9 +3811,11 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Пријавете го времето на започнување
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Извозни податоци
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Одржува дневник на секој настан потрошен заедно со статусот на синхронизација и копчето Resync доколку синхронизацијата не успее.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Изберете Колони
DocType: Translation,Source Text,извор на текстот
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Ова е позадински извештај. Поставете соодветни филтри и потоа генерирајте нов.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не е поставена сметка за е-пошта. Создадете нова сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта
apps/frappe/frappe/www/login.py,Missing parameters for login,Недостасува параметри за да се логирате
DocType: Workflow State,folder-open,папка отворена
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Откако ќе се достават, документите за испраќање не можат да се променат. Тие можат да бидат откажани и дополнети само."
@@ -3858,6 +3893,7 @@ DocType: Event,Send an email reminder in the morning,Испрати е-потс
DocType: Blog Post,Published On,Објавено на
DocType: Contact,Gender,Пол
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Задолжителна информации недостасува:
+DocType: Event Consumer,Event Subscriber,Претплатник на настани
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Проверете УРЛ-адреса
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,На само 200 инсерти дозволено во едно барање
DocType: Footer Item,URL,URL
@@ -3870,6 +3906,7 @@ DocType: Auto Email Report,Half Yearly,Половина годишно
DocType: Communication,Marked As Spam,Означени како спам
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Има некој проблем со URL-то на фајл: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,дрво
+DocType: Event Producer Document Type,Use Same Name,Користете исто име
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Не ви е дозволено да се печати на овој извештај
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Кориснички права
DocType: Workflow State,warning-sign,предупредување знакот
@@ -3879,6 +3916,7 @@ DocType: Workflow State,User,Корисникот
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Прикажи титула во прозорецот на прелистувачот како "Префикс - назив"
DocType: Payment Gateway,Gateway Settings,Поставувања за портата
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,текст во типот на документот
+DocType: Event Sync Log,Event Sync Log,Дневник за синхронизација на настани
apps/frappe/frappe/handler.py,Logged Out,одјавени
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Повеќе...
DocType: System Settings,User can login using Email id or Mobile number,Корисникот може да се логирате со користење на е-мејл ID или мобилен број
@@ -3918,12 +3956,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,А не во
DocType: Workflow State,star,ѕвезда
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Центар
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Доколку ова е проверено, документите ќе го имаат истото име како што се на страницата на Производителот на настани"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,"вредности, разделени со запирки"
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Макс ширина за видот на валута е 100пк во ред {0}
apps/frappe/frappe/config/website.py,Content web page.,Содржина на веб страница.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Додадете нова улога
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Посетете ја веб-страницата
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Нова распределба
+DocType: Event Consumer Document Type,Approved,Одобрени
DocType: Google Contacts,Last Sync On,Последно синхронизирање е вклучено
DocType: Deleted Document,Deleted Document,избришани документ
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Упс! Нешто не беше во ред
@@ -3974,7 +4014,6 @@ DocType: DocField,Unique,Уникатен
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} ценето на {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Делумен успех
DocType: Email Account,Service,Услуги
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Поставување> Корисник
DocType: File,File Name,Име на датотеката
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Не најде {0} {0} ({1})
apps/frappe/frappe/utils/bot.py,"Oops, you are not allowed to know that","Упс, не Ви е дозволено да се знае дека"
@@ -3985,11 +4024,10 @@ DocType: Calendar View,Calendar View,Календарски приказ
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Уреди формат
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Комплетна регистрација
DocType: GCalendar Settings,Enable,Овозможи
-DocType: Google Maps Settings,Home Address,Домашна адреса
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Можете да испратите само до 5000 записи во еден да одам. (Може да биде помал во некои случаи)
DocType: Report,"output in the form of `data = [columns, result]`","излез во форма на 'податоци = [колони, резултат] `"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Видови на применлив документ
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Поставете правила за кориснички задачи.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Поставете правила за кориснички задачи.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недоволна дозвола за {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недоволна дозвола за {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Извештајот не е зачувано (имаше грешки)
diff --git a/frappe/translations/ml.csv b/frappe/translations/ml.csv
index e2f148615d..163abac9b5 100644
--- a/frappe/translations/ml.csv
+++ b/frappe/translations/ml.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,ഒരു ഉപയോക്താവിനായി ഈ പങ്ക് അപ്ഡേറ്റ് ഉപയോക്തൃ അനുമതികൾ
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},{0} പേരു്മാറ്റുക
DocType: Workflow State,zoom-out,സൂം ഔട്ട്
-DocType: Data Import Beta,Import Options,ഇമ്പോർട്ടുചെയ്യൽ ഓപ്ഷനുകൾ
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,അതിന്റെ ഉദാഹരണത്തിന് തുറക്കുമ്പോൾ {0} തുറക്കാൻ കഴിയില്ല
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,ടേബിൾ {0} ഒഴിച്ചിടാനാവില്ല
DocType: SMS Parameter,Parameter,പാരാമീറ്റർ
@@ -84,16 +83,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,പ
DocType: DocType,Is Published Field,ഫീൽഡ് പ്രസിദ്ധീകരിച്ചു
DocType: GCalendar Settings,GCalendar Settings,GCalendar ക്രമീകരണങ്ങൾ
DocType: Email Group,Email Group,ഇമെയിൽ ഗ്രൂപ്പ്
-apps/frappe/frappe/__init__.py,Only for {},വേണ്ടി മാത്രം {}
DocType: Event,Pulled from Google Calendar,Google കലണ്ടറിൽ നിന്ന് വലിച്ചു
DocType: Note,Seen By,പ്രത്യക്ഷമായി
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,ഒന്നിലധികം ചേർക്കുക
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,സാധുവായ ഒരു ഉപയോക്തൃ ചിത്രമല്ല.
DocType: Energy Point Log,Reverted,പഴയപടിയാക്കി
DocType: Success Action,First Success Message,ആദ്യ വിജയം സന്ദേശം
+DocType: Document Type Mapping,Document Type Mapping,പ്രമാണ തരം മാപ്പിംഗ്
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ഇഷ്ടമല്ല
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},തെറ്റായ മൂല്യം: {0} {1} {2} ആയിരിക്കണം
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","മാറ്റുക ഫീൽഡ് സവിശേഷതകൾ (തോൽ, വായന, അനുമതി മുതലായവ)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,നിങ്ങളുടെ ഇവന്റുകൾ ഉപയോഗിക്കുന്ന സൈറ്റ്.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,അഭിനന്ദിക്കുക
DocType: Notification Settings,Document Share,പ്രമാണ പങ്കിടൽ
DocType: Workflow State,lock,ലോക്ക്
@@ -113,10 +113,12 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,പ്രവേശിക്കുക
DocType: Workflow State,indent-right,ഇൻഡന്റ്-വലത്
DocType: Has Role,Has Role,റോൾ ഉണ്ട്
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,വീണ്ടും സമന്വയിപ്പിക്കുക
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,സെർവറിലെ QR കോഡ് ഇമേജ് നിലനിർത്താൻ നിമിഷങ്ങൾക്കുള്ളിൽ. കുറഞ്ഞത്: 240
DocType: Dashboard Chart,Timespan,ടൈംസ്പൻ
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,വെബ് ലിങ്ക്
DocType: Deleted Document,Restored,പുനഃസ്ഥാപിച്ചു
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ ട്രേ അപ്ലിക്കേഷനിലേക്ക് കണക്റ്റുചെയ്യുന്നതിൽ പിശക് ...
അസംസ്കൃത പ്രിന്റ് സവിശേഷത ഉപയോഗിക്കുന്നതിന് നിങ്ങൾ QZ ട്രേ ആപ്ലിക്കേഷൻ ഇൻസ്റ്റാൾ ചെയ്ത് പ്രവർത്തിപ്പിക്കേണ്ടതുണ്ട്.
QZ ട്രേ ഡ Download ൺലോഡ് ചെയ്ത് ഇൻസ്റ്റാൾ ചെയ്യുന്നതിന് ഇവിടെ ക്ലിക്കുചെയ്യുക .
അസംസ്കൃത പ്രിന്റിംഗിനെക്കുറിച്ച് കൂടുതലറിയാൻ ഇവിടെ ക്ലിക്കുചെയ്യുക ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 മിനിറ്റ് മുമ്പ്
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","ഞങ്ങളുടെ സിസ്റ്റം മാനേജർ നിന്നും, സെറ്റ് ഉപയോക്തൃ അനുമതികൾ കൂടി വേഷങ്ങൾ വലത് ആ ഡോക്യുമെന്റ് ഇനം മറ്റ് ഉപയോക്താക്കൾക്കായി അനുമതികൾ സജ്ജമാക്കാൻ കഴിയും."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,തീം കോൺഫിഗർ ചെയ്യുക
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,അദൃശ്യജ്ഞാനം
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,പ്രമാണം മാനേജർ
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML തലക്കെട്ട്, റോബോട്ടുകൾ, റീഡയറക്ടുകൾ"
DocType: GCalendar Account,Refresh Token,പുതുക്കുക ടോക്കൺ
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,ഇവന്റ് പ്രൊഡ്യൂസർ സൈറ്റിലേക്ക് കണക്റ്റുചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു. കുറച്ച് സമയത്തിന് ശേഷം വീണ്ടും ശ്രമിക്കുക.
DocType: Address,Goa,ഗോവ
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,ഈ സൈറ്റിനായി തീർച്ചപ്പെടുത്തിയിട്ടില്ല അല്ലെങ്കിൽ നിലവിലുള്ള ജോലികളൊന്നുമില്ല
DocType: Webhook,Doc Event,ഡോക് ഇവന്റ്
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,സ്ക്രിപ്റ്റ് മ
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,പ്രവർത്തനമൊന്നുമില്ല
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,മൂന്നാം കക്ഷി ആപ്ലിക്കേഷനുകൾ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ആദ്യ ഉപയോക്താവിന് സിസ്റ്റം മാനേജർ (നിങ്ങൾ പിന്നീട് മാറ്റാനാകും) മാറും.
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,നിങ്ങളുടെ റിപ്പോർട്ടിന്റെ ഫിൽട്ടറുകൾ മാറ്റാൻ ശ്രമിക്കാം.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ഇന്ന് ഇവന്റുകളൊന്നുമില്ല
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,നിങ്ങൾക്ക് സ്വയം അവലോകന പോയിന്റുകൾ നൽകാൻ കഴിയില്ല
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,തിരഞ്ഞെടുത്ത ഡോ ഇവന്റിനായി ഡോക്ടൈപ്പ് സമർപ്പിക്കേണ്ടതുണ്ട്
@@ -238,6 +242,7 @@ apps/frappe/frappe/config/desk.py,Files,ഫയലുകൾ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permissions get applied on Users based on what Roles they are assigned.,അനുമതികൾ തങ്ങൾ ലഭ്യമാക്കുകയും എന്ത് റോളുകൾ അടിസ്ഥാനമാക്കി ഉപയോക്താക്കൾ തേച്ച് ലഭിക്കും.
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,ഈ പ്രമാണത്തിൽ ബന്ധപ്പെട്ട ഇമെയിലുകൾ അയക്കാൻ അനുവദനീയമല്ല
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,/ ഗ്രൂപ്പ് അടുക്കുന്നതിന് {0} നിന്ന് കുറയാതെ 1 നിര തിരഞ്ഞെടുക്കുക
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,കമ്പനി ലിങ്കുചെയ്തിട്ടില്ല
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ഈ പരിശോധിക്കുക നിങ്ങൾ സാൻഡ്ബോക്സ് API ഉപയോഗിച്ച് പേയ്മെന്റ് പരീക്ഷിക്കുന്നതിനാൽ എങ്കിൽ
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,ഒരു സാധാരണ വെബ്സൈറ്റ് തീം ഇല്ലാതാക്കാൻ അനുവദനീയമല്ല
DocType: Data Import,Log Details,ലോഗ് വിശദാംശങ്ങൾ
@@ -256,7 +261,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} അപ്ഡേറ്റുചെയ്യുന്നു
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,അപ്രാപ്തമാക്കുക റിപ്പോർട്ട്
DocType: Translation,Contributed Translation Doctype Name,സംഭാവന ചെയ്ത വിവർത്തന ഡോക്റ്റൈപ്പ് പേര്
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,സജ്ജീകരണം> ഫോം ഇച്ഛാനുസൃതമാക്കുക
DocType: PayPal Settings,Redirect To,റീഡയറക്ട്
DocType: Data Migration Mapping,Pull,വലിക്കുക
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ജാവാസ്ക്രിപ്റ്റ് ഫോർമാറ്റ്: frappe.query_reports ['REPORTNAME'] = {}
@@ -268,6 +272,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,അനുവദനീയമല്ല
DocType: DocShare,Internal record of document shares,ഡോക്യുമെന്റ് ഓഹരികളുടെ ആന്തരിക റെക്കോർഡ്
DocType: Energy Point Settings,Review Levels,ലെവലുകൾ അവലോകനം ചെയ്യുക
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,സജ്ജീകരണം> ഉപയോക്തൃ അനുമതികൾ
DocType: Workflow State,Comment,അഭിപ്രായം
DocType: Data Migration Plan,Postprocess Method,പോസ്റ്റ് പ്രൊസസ് രീതി
DocType: DocType Action,Action Type,പ്രവർത്തന തരം
@@ -318,13 +323,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,വ
DocType: Workflow State,remove-circle,നീക്കം-സർക്കിൾ
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,എന്റെ പ്രൊഫൈൽ
DocType: Help Article,Beginner,തുടക്കക്കാരി
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Action} എന്നതിന് മാത്രമേ ഈ പ്രവർത്തനം അനുവദിക്കൂ
DocType: Contact,Is Primary Contact,പ്രാഥമിക കോൺടാക്റ്റിലുണ്ടെങ്കിൽ
+DocType: Event Consumer,Event Consumer,ഇവന്റ് ഉപഭോക്തൃ
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,പേജിന്റെ തല വിഭാഗം മാറ്റം ഏണാബ്ലെ.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,ചേർക്കുക / അപ്ഡേറ്റുചെയ്യുക
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,ഡ്രാഫ്റ്റ് പ്രമാണങ്ങൾ പ്രിന്റ് ചെയ്യാൻ അനുവാദമില്ല
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,സ്ഥിരസ്ഥിതികളിലേക്ക് വീണ്ടും സജ്ജീകരിക്കുക
DocType: Workflow,Transition Rules,ട്രാൻസിഷൻ നിയമങ്ങൾ
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,പ്രിവ്യൂവിൽ ആദ്യത്തെ {0} വരികൾ മാത്രം കാണിക്കുന്നു
apps/frappe/frappe/core/doctype/report/report.js,Example:,ഉദാഹരണം:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,നിയന്ത്രണങ്ങൾ
DocType: Workflow,Defines workflow states and rules for a document.,ഒരു പ്രമാണം വേണ്ടി വർക്ക്ഫ്ലോ സംസ്ഥാനങ്ങളും നിയമങ്ങൾ നിഷ്കർഷിക്കുന്നു.
@@ -468,7 +474,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,ആവർത്തിക്കുക അതുവരെ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,പുതിയ
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,നിങ്ങൾ ആദ്യം ഇവ സൃഷ്ടിക്കേണ്ടതുണ്ട്:
-DocType: Google Maps Settings,Google Maps Settings,Google മാപ്സ് ക്രമീകരണങ്ങൾ
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,ലോഡുചെയ്യുന്നു ...
DocType: DocField,Password,പാസ്വേഡ്
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,നിങ്ങളുടെ സിസ്റ്റം അപ്ഡേറ്റ് ചെയ്തുകൊണ്ടിരിക്കുന്നു. ഏതാനും നിമിഷങ്ങൾക്കുശേഷം വീണ്ടും പുതുക്കുക
@@ -561,6 +566,7 @@ DocType: Onboarding Slide,Onboarding Slide,ഓൺബോർഡിംഗ് സ്
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,അസാധുവായ പാസ്വേഡ്:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,അസാധുവായ പാസ്വേഡ്:
DocType: Print Settings,Send document web view link in email,ഇമെയിലിൽ പ്രമാണം വെബ് കാഴ്ച ലിങ്ക് അയയ്ക്കുക
+DocType: Event Consumer Document Type,Event Consumer Document Type,ഇവന്റ് ഉപഭോക്തൃ പ്രമാണ തരം
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,മുമ്പത്തെ
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,മറു:
DocType: LDAP Settings,Require Trusted Certificate,വിശ്വസനീയമായ സർട്ടിഫിക്കറ്റ് ആവശ്യമാണ്
@@ -635,6 +641,7 @@ DocType: Workflow State,volume-down,വോള്യം-ഡൗൺ
DocType: Onboarding Slide,Help Links,സഹായ ലിങ്കുകൾ
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ഈ ഐപി വിലാസത്തിൽ നിന്ന് ആക്സസ് അനുവദനീയമല്ല
DocType: Notification Settings,Enable Email Notifications,ഇമെയിൽ അറിയിപ്പുകൾ പ്രാപ്തമാക്കുക
+DocType: Document Type Field Mapping,Event Streaming,ഇവന്റ് സ്ട്രീമിംഗ്
apps/frappe/frappe/desk/reportview.py,No Tags,ടാഗുകൾ ഇല്ല
DocType: Email Account,Send Notification to,ഇതിനായി വിജ്ഞാപനം അയയ്ക്കുക
DocType: DocField,Collapsible,സൌകര്യങ്ങളൊക്കെ
@@ -651,6 +658,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,വ
apps/frappe/frappe/database/database.py,No conditions provided,നിബന്ധനകളൊന്നും നൽകിയിട്ടില്ല
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y ആക്സിസ് ഫീൽഡുകൾ
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,അടുക്കുക ഫീൽഡ് {0} സാധുവായ FIELDNAME ആയിരിക്കണം
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"സ്ഥിരസ്ഥിതി വിലാസ ടെംപ്ലേറ്റൊന്നും കണ്ടെത്തിയില്ല. സജ്ജീകരണം> അച്ചടി, ബ്രാൻഡിംഗ്> വിലാസ ടെംപ്ലേറ്റിൽ നിന്ന് പുതിയൊരെണ്ണം സൃഷ്ടിക്കുക."
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,കൂടുതൽ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,ഒരു പുതിയ റെക്കോർഡ് സൃഷ്ടിക്കുക
DocType: Contact,Sales Manager,സെയിൽസ് മാനേജർ
@@ -674,6 +682,7 @@ DocType: User,Reset Password Key,പാസ്വേഡ് കീ പുനഃസ
DocType: Dashboard Chart,All Time,എല്ലാ സമയവും
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} എന്നതിനുള്ള നിയമവിരുദ്ധമായ പ്രമാണം നില
DocType: Email Account,Enable Auto Reply,ഓട്ടോ മറുപടി പ്രവർത്തനക്ഷമമാക്കുക
+apps/frappe/frappe/desk/query_report.py,No data to export,എക്സ്പോർട്ടുചെയ്യാൻ ഡാറ്റയൊന്നുമില്ല
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,കണ്ടില്ലേ
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,ഒരൊറ്റ പ്രിന്റ് ഫോർമാറ്റിലേക്ക് ഒന്നിലധികം പ്രിന്ററുകൾ മാപ്പുചെയ്യാൻ കഴിയില്ല.
DocType: Workflow State,zoom-in,വലുതാക്കുക
@@ -822,6 +831,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ഉപയ
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ആദ്യം
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,വിവർത്തനങ്ങൾ അപ്ഡേറ്റുചെയ്യുക
DocType: Error Snapshot,Exception,ഒഴിവാക്കൽ
+DocType: Event Consumer,Event Consumer Document Types,ഇവന്റ് ഉപഭോക്തൃ പ്രമാണ തരങ്ങൾ
DocType: Email Account,Use IMAP,IMAP ഉപയോഗിക്കുക
DocType: Activity Log,Activity Log,പ്രവർത്തന ലോഗ്
DocType: View Log,Viewed By,വഴി കണ്ടു
@@ -861,6 +871,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ഇ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ചാർട്ടുകൾ കോൺഫിഗർ ചെയ്യുക
DocType: User,Last IP,കഴിഞ്ഞ ഐ.പി.
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,നിങ്ങളുടെ ഇമെയിലിന് ഒരു വിഷയം ചേർക്കുക
+apps/frappe/frappe/model/workflow.py,Errored Transactions,തെറ്റായ ഇടപാടുകൾ
DocType: Data Migration Connector,Data Migration Connector,ഡാറ്റ മൈഗ്രേഷൻ കണക്റ്റർ
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} പഴയപടിയാക്കി {1}
DocType: Email Account,Track Email Status,ഇമെയിൽ നില ട്രാക്കുചെയ്യുക
@@ -890,6 +901,7 @@ DocType: Email Queue,Attachments,അറ്റാച്മെന്റ്
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,ഈ പ്രമാണം ആക്സസ് ചെയ്യാൻ അനുമതികൾ ഇല്ല
DocType: Language,Language Name,ഭാഷ പേര്
DocType: Email Group Member,Email Group Member,ഇമെയിൽ ഗ്രൂപ്പ് മെമ്പറുടെ
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ഉപയോക്താവുമായി ബന്ധപ്പെട്ട ഇമെയിൽ അക്കൗണ്ടുകളൊന്നുമില്ല. ഉപയോക്താവ്> ഇമെയിൽ ഇൻബോക്സിന് കീഴിൽ ഒരു അക്കൗണ്ട് ചേർക്കുക.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,"നിങ്ങളുടെ അക്കൗണ്ട് ലോക്കുചെയ്തു, {0} സെക്കൻഡിനുശേഷം പുനരാരംഭിക്കും"
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,ഉപയോക്താക്കളുടെ അനുമതികൾ പ്രത്യേക റെക്കോർഡുകളിലേക്ക് പരിമിതപ്പെടുത്താൻ ഉപയോഗിക്കുന്നു.
DocType: Notification,Value Changed,മൂല്യം മാറ്റി
@@ -979,6 +991,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,ഇടപാട
DocType: Help Article,Expert,വിദഗ്ധ
DocType: Workflow State,circle-arrow-right,സർക്കിൾ-അമ്പ്-വലത്
DocType: Role Profile,Role Profile,റോൾ പ്രൊഫൈൽ
+DocType: Document Type Mapping,Remote Document Type,വിദൂര പ്രമാണ തരം
apps/frappe/frappe/permissions.py,Document Type is not importable,പ്രമാണ തരം ഇറക്കുമതി ചെയ്യാനാവില്ല
DocType: LDAP Settings,LDAP Server Url,എൽഡാപ്പ് സെർവർ URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,അതിന്റെ {0} തുറക്കുമ്പോൾ തുറന്ന ഉദാഹരണത്തിന് അല്ല Can
@@ -1064,7 +1077,6 @@ DocType: Web Form,Allow Print,പ്രിന്റ് അനുവദിക്
DocType: Communication,Clicked,ക്ലിക്കുചെയ്ത
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,പിന്തുടരരുത്
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ഇതിനായി '{0}' {1} അനുമതിയില്ല
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് സ്ഥിരസ്ഥിതി ഇമെയിൽ അക്കൗണ്ട് സജ്ജമാക്കുക
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,അയയ്ക്കാൻ ഷെഡ്യൂൾ
DocType: DocType,Track Seen,ട്രാക്ക് കാണുന്നത്
DocType: Dropbox Settings,File Backup,ഫയൽ ബാക്കപ്പ്
@@ -1134,6 +1146,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ഒ
DocType: Data Export,Filter List,ഫിൽട്ടർ ലിസ്റ്റ്
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,ഇവന്റ് കോൺഫിഗറേഷനുകൾ
DocType: Email Account,Auto Reply Message,ഓട്ടോ മറുപടി സന്ദേശം
DocType: Data Migration Mapping,Condition,കണ്ടീഷൻ
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} മണിക്കൂർ മുമ്പ്
@@ -1192,9 +1205,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,അക്ക
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,അഭിപ്രായമിടുന്നതിന് ലോഗിൻ
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,ദാരിദ്ര്യരേഖയ്ക്കു താഴെ ഡാറ്റാ രേഖപ്പെടുത്തിയ ആരംഭിക്കുക
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},{0} മൂല്യങ്ങളെ മാറ്റി
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ഇമെയിൽ ഐഡി അദ്വിതീയമായിരിക്കണം, ഇമെയിൽ അക്കൗണ്ട് ഇതിനകം \ for {0}"
DocType: Workflow State,retweet,ReTweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","താരതമ്യത്തിന്,> 5, <10 അല്ലെങ്കിൽ = 324 ഉപയോഗിക്കുക. ശ്രേണികൾക്കായി, 5:10 ഉപയോഗിക്കുക (5 നും 10 നും ഇടയിലുള്ള മൂല്യങ്ങൾക്ക്)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,ഇഷ്ടാനുസൃതമാക്കുക ...
DocType: Print Format,Align Labels to the Right,ലേബലുകൾ വലതുവശത്തേക്ക് വിന്യസിക്കുക
DocType: Assignment Rule,Disabled,രഹിതമായ
@@ -1240,8 +1252,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,കീബോർഡ് കുറുക്കുവഴികൾ
DocType: Post,Comments,അഭിപ്രായങ്ങൾ
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,സ്ഥിരീകരിക്കുക
+DocType: Event Sync Log,Update Type,അപ്ഡേറ്റ് തരം
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,പ്രാമാണീകരിക്കുന്നു ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,എല്ലാം സങ്കോചിപ്പിക്കുക
+DocType: Event Producer,Last Update,അവസാന പരിഷ്കാരം
apps/frappe/frappe/www/login.html,Forgot Password?,പാസ്വേഡ് മറന്നോ?
DocType: System Settings,yyyy-mm-dd,വർഷം-മാസം-തീയതി
apps/frappe/frappe/desk/report/todo/todo.py,ID,ഐഡി
@@ -1281,6 +1295,7 @@ DocType: LDAP Settings,Password for Base DN,ബെയിസ് ഡിഎൻ പ
apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,പട്ടിക ഫീൽഡ്
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,അടിസ്ഥാനമാക്കി നിരകൾ
DocType: Workflow State,move,ഈ നീക്കം
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,നിലവിലെ സൈറ്റിനായി ഒരു ഇവന്റ് ഉപഭോക്താവോ ഒരു ഇവന്റ് ഉപഭോക്താവോ സൃഷ്ടിക്കുന്നതിൽ പരാജയപ്പെട്ടു.
apps/frappe/frappe/model/document.py,Action Failed,ആക്ഷൻ പരാജയപ്പെട്ടു
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,ഉപയോക്താവ് വേണ്ടി
DocType: View Log,View log,ലോഗ് കാണുക
@@ -1438,6 +1453,7 @@ DocType: DefaultValue,Key,കീ
DocType: Address,Contacts,ബന്ധങ്ങൾ
DocType: System Settings,Setup Complete,സെറ്റപ്പ് പൂർത്തിയാക്കുക
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,എല്ലാ ഡോക്യുമെന്റ് ഓഹരികളുടെ റിപ്പോർട്ട്
+DocType: Event Consumer,Callback URL,കോൾബാക്ക് URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","ഇറക്കുമതി ടെംപ്ലേറ്റ് .csv, .xlsx അല്ലെങ്കിൽ .xls തരം ആയിരിക്കണം"
apps/frappe/frappe/www/update-password.html,New Password,പുതിയ പാസ്വേഡ്
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ഫിൽട്ടർചെയ്യുക {0} കാണാതായി
@@ -1504,7 +1520,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,വ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; അവസ്ഥ അനുവദനീയമല്ല
DocType: Async Task,Async Task,Async ടാസ്ക്
DocType: Workflow State,picture,ചിതം
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,പൂർത്തിയാക്കുക
+DocType: Scheduled Job Log,Complete,പൂർത്തിയാക്കുക
DocType: DocType,Image Field,ചിത്രം ഫീൽഡ്
DocType: Print Format,Custom HTML Help,കസ്റ്റം എച്ച്ടിഎംഎൽ സഹായം
DocType: LDAP Settings,Default Role on Creation,സൃഷ്ടിയിലെ സ്ഥിരസ്ഥിതി പങ്ക്
@@ -1529,6 +1545,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,തിരച്ചിൽ ന് സഹായം
DocType: Milestone,Milestone Tracker,നാഴികക്കല്ല് ട്രാക്കർ
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,രജിസ്ട്രേഡ് പ്രവർത്തനരഹിതമാക്കി
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,വിലാസം ഒരു കമ്പനിയുമായി ലിങ്കുചെയ്യേണ്ടതുണ്ട്. ചുവടെയുള്ള ലിങ്ക് പട്ടികയിൽ കമ്പനിക്കായി ഒരു വരി ചേർക്കുക.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ഈ പ്രമാണത്തിനായുള്ള യാന്ത്രിക ആവർത്തനം പ്രവർത്തനരഹിതമാക്കി.
DocType: DocType,Hide Copy,പകർത്തുക മറയ്ക്കുക
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ഏകവ്യക്തി മായ്ക്കുക
@@ -1567,13 +1584,13 @@ DocType: Bulk Update,Field,ഫീൽഡ്
DocType: Communication,Received,ലഭിച്ച
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update" പോലുള്ള സാധുവായ രീതികൾ ട്രിഗർ എന്നിവ (തിരഞ്ഞെടുത്ത DocType ആശ്രയിച്ചിരിക്കും)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},മാറ്റിയ മൂല്യം {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരണം ദയവായി നിങ്ങളുടെ പാസ്വേഡ് നൽകുക: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,കുറഞ്ഞത് ഒരു സിസ്റ്റം മാനേജർ ഉണ്ടായിരിക്കണം ഈ ഉപയോക്താവ് സിസ്റ്റം മാനേജർ ചേർക്കുന്നു
DocType: Chat Message,URLs,URL കൾ
DocType: Data Migration Run,Total Pages,ആകെ പേജുകൾ
DocType: DocField,Attach Image,ചിത്രം അറ്റാച്ച്
DocType: Workflow State,list-alt,പട്ടിക-Alt
apps/frappe/frappe/www/update-password.html,Password Updated,പാസ്വേഡ് അപ്ഡേറ്റ്
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,സജ്ജീകരണം> ഉപയോക്തൃ അനുമതികൾ
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,നിങ്ങളുടെ ലോഗിൻ പരിശോധിക്കുന്നതിനുള്ള നടപടിക്രമങ്ങൾ
apps/frappe/frappe/utils/password.py,Password not found,പാസ്വേഡ് കണ്ടെത്തിയില്ല
DocType: Webhook,Webhook Secret,വെബ്ഹൂക്ക് രഹസ്യം
@@ -1588,8 +1605,6 @@ DocType: Website Settings,Brand,ബ്രാൻഡ്
apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API ക്രമീകരണങ്ങൾ.
DocType: Report,Query Report,ചോദ്യ റിപ്പോർട്ട്
DocType: User,Set New Password,പുതിയ പാസ്വേഡ് സജ്ജമാക്കുക
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% ങ്ങള് സാധുവായ റിപ്പോർട്ട് ഫോർമാറ്റിൽ അല്ല. റിപ്പോർട്ട് ഫോർമാറ്റ് ഇനിപ്പറയുന്ന% ഒന്നാണ് \ വേണം
DocType: Chat Message,Chat,ചാറ്റ്
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP ഗ്രൂപ്പ് മാപ്പിംഗ്
DocType: Dashboard Chart,Chart Options,ചാർട്ട് ഓപ്ഷനുകൾ
@@ -1624,7 +1639,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,നിങ
DocType: Dropbox Settings,Dropbox Access Secret,ഡ്രോപ്പ്ബോക്സ് അക്സസ് രഹസ്യം
DocType: Tag Link,Document Title,പ്രമാണ ശീർഷകം
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(നിർബന്ധിതം)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ്
DocType: Social Login Key,Social Login Provider,സാമൂഹിക ലോഗിൻ ദാതാവ്
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,മറ്റൊരു അഭിപ്രായം ചേർക്കുക
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ഫയലിൽ ഡാറ്റയൊന്നും കണ്ടെത്തിയില്ല. പുതിയ ഫയൽ ഡാറ്റ ഉപയോഗിച്ച് വീണ്ടും അറ്റാച്ചുചെയ്യുക.
@@ -1670,6 +1684,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ഒര
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 വർഷം
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,ശാശ്വതമായി {0} ഇല്ലാതാക്കുക?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,ഒരേ ഫയൽ ഇതിനകം റെക്കോർഡ് അറ്റാച്ച് ചെയ്തു
+DocType: Event Sync Log,Synced,സമന്വയിപ്പിച്ചു
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} സാധുവായ വർക്ക്ഫ്ലോ സംസ്ഥാനം അല്ല. നിങ്ങളുടെ വർക്ക്ഫ്ലോ അപ്ഡേറ്റുചെയ്ത് വീണ്ടും ശ്രമിക്കുക.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} പോയിന്റുകൾ നൽകി
DocType: Workflow State,wrench,പിടിച്ചു വലിക്കല്
@@ -1766,6 +1781,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,പരമാവധി നീളം
DocType: Print Format,Jinja,ജിഞ്ച
DocType: Workflow State,map-marker,മാപ്പ്-മാർക്കർ
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,രണ്ട് ഡോക്റ്റൈപ്പുകൾ തമ്മിലുള്ള മാപ്പിംഗ് കോൺഫിഗറേഷൻ.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ഒരു പ്രശ്നം സമർപ്പിക്കുക
DocType: Event,Repeat this Event,ഈ ഇവന്റ് ആവർത്തിക്കുക
DocType: Address,Maintenance User,മെയിൻറനൻസ് ഉപയോക്താവ്
@@ -1823,6 +1839,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,ടെസ്റ്റ് ഇമെയിൽ വിലാസം
DocType: Auto Repeat,Reference Document Type,റഫറൻസ് ഡോക്യുമെന്റ് തരം
DocType: ToDo,Sender,അയച്ചയാളുടെ
+DocType: Event Consumer,Incoming Change,ഇൻകമിംഗ് മാറ്റം
DocType: Google Drive,Backup Folder Name,ബാക്കപ്പ് ഫോൾഡറിന്റെ പേര്
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,അറിയിപ്പ് {0} മൂല്യനിർണ്ണയം ചെയ്യുമ്പോൾ പിശകുണ്ടായി. ദയവായി നിങ്ങളുടെ ടെംപ്ലേറ്റ് പരിഹരിക്കുക.
DocType: GSuite Settings,Google Apps Script,Google അപ്ലിക്കേഷനുകൾ സ്ക്രിപ്റ്റ്
@@ -1850,6 +1867,7 @@ DocType: Note,Seen By Table,ടേബിൾ കണ്ട
apps/frappe/frappe/www/third_party_apps.html,Logged in,ലോഗിൻ ചെയ്ത
apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,സ്വതേ അയയ്ക്കുന്നു ഇൻബോക്സ്
DocType: System Settings,OTP App,OTP അപ്ലിക്കേഷൻ
+apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,അപ്ഡേറ്റുചെയ്തത് {1} ൽ {0} റെക്കോർഡ് വിജയകരമായി.
DocType: Google Drive,Send Email for Successful Backup,വിജയകരമായ ബാക്കപ്പിൽ ഇമെയിൽ അയയ്ക്കുക
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,ഷെഡ്യൂളർ നിഷ്ക്രിയമാണ്. ഡാറ്റ ഇറക്കുമതി ചെയ്യാൻ കഴിയില്ല.
DocType: Print Settings,Letter,കത്ത്
@@ -1883,9 +1901,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,പു
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,അഭ്യർത്ഥന അംഗീകരിക്കുന്നതിന് ചുവടെയുള്ള ലിങ്കിൽ ക്ലിക്കുചെയ്യുക
DocType: Workflow State,align-left,വിന്യസിക്കുക-ഇടത്
DocType: Onboarding Slide,Action Settings,പ്രവർത്തന ക്രമീകരണങ്ങൾ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,സജ്ജീകരണം> ഉപയോക്താവ്
DocType: User,Defaults,സ്ഥിരസ്ഥിതികൾ
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","താരതമ്യത്തിന്,> 5, <10 അല്ലെങ്കിൽ = 324 ഉപയോഗിക്കുക. ശ്രേണികൾക്കായി, 5:10 ഉപയോഗിക്കുക (5 നും 10 നും ഇടയിലുള്ള മൂല്യങ്ങൾക്ക്)."
DocType: Energy Point Log,Revert Of,പഴയപടിയാക്കുക
+DocType: Document Type Mapping,Field Mapping,ഫീൽഡ് മാപ്പിംഗ്
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,നിലവിലുള്ള ലയിക്കാനുള്ള
DocType: User,Birth Date,ജനിച്ച ദിവസം
DocType: Communication Link,Link Title,ലിങ്ക് ശീർഷകം
@@ -1913,6 +1932,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,ടാഗ് ലിങ്ക്
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,ചൈൽഡ് ഇൻറഗ്രിറ്റി
DocType: Data Export,CSV,CSV- ൽ
+DocType: Event Consumer,In Test,ടെസ്റ്റിൽ
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",ഉദാ 1 ഡോളറായിരുന്നു = 100 സെന്റ് 1 കറൻസി = [?] വിഭജനപ്രവര്ത്തി
DocType: Data Import,Partially Successful,ഭാഗികമായി വിജയിച്ചു
@@ -1922,6 +1942,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP ഗ്രൂപ്പ് മാപ്പിംഗുകൾ
DocType: Chat Message Attachment,Chat Message Attachment,സന്ദേശം അറ്റാച്ചുമെന്റ് ചാറ്റ് ചെയ്യുക
DocType: LDAP Settings,Path to CA Certs File,സിഎ സെർട്സ് ഫയലിലേക്കുള്ള പാത
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,നിർമ്മാതാവിന്റെയും ഉപഭോക്താവിന്റെയും അവസാനം പ്രമാണത്തിന് വ്യത്യസ്ത ഫീൽഡ് പേരുകൾ ഉണ്ടെങ്കിൽ ഇത് പരിശോധിച്ച് മാപ്പിംഗ് സജ്ജമാക്കുക
DocType: Address,Manipur,മണിപ്പൂർ
DocType: Web Form Field,Allow Read On All Link Options,എല്ലാ ലിങ്ക് ഓപ്ഷനുകളിലും റീഡ് ചെയ്യാൻ അനുവദിക്കുക
DocType: DocType,Database Engine,ഡേറ്റാബേസ് എഞ്ചിൻ
@@ -2054,6 +2075,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,കുറിപ്പ്
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,പിശക് റിപ്പോർട്ട്
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / Excel ഫോർമാറ്റിൽ ഡാറ്റ എക്സ്പോർട്ട് ചെയ്യുക.
+DocType: Document Type Field Mapping,Document Type Field Mapping,പ്രമാണ തരം ഫീൽഡ് മാപ്പിംഗ്
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,ആഗോള തിരയൽ പ്രമാണങ്ങൾ സജ്ജമാക്കുന്നു.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,നിങ്ങൾ ഉപയോഗിക്കാൻ കഴിയുന്ന പ്രാമാണീകരണ അപ്ലിക്കേഷനുകൾ ഇവയാണ്:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ഇതിനകം നിലവിലുണ്ട്. മറ്റൊരു പേര് തിരഞ്ഞെടുക്കുക
@@ -2129,7 +2151,6 @@ DocType: Workflow State,Upload,അപ്ലോഡുചെയ്യുക
DocType: User Permission,Advanced Control,വിപുലമായ നിയന്ത്രണം
DocType: System Settings,Date Format,തീയതി ഫോർമാറ്റ്
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,പ്രസിദ്ധീകരിച്ചിട്ടില്ല
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"സ്ഥിരസ്ഥിതി വിലാസ ടെംപ്ലേറ്റൊന്നും കണ്ടെത്തിയില്ല. സജ്ജീകരണം> അച്ചടി, ബ്രാൻഡിംഗ്> വിലാസ ടെംപ്ലേറ്റിൽ നിന്ന് പുതിയൊരെണ്ണം സൃഷ്ടിക്കുക."
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","വർക്ക്ഫ്ലോ നടപടികൾ (ഉദാ അംഗീകാരം, റദ്ദാക്കുക)."
DocType: Data Import,Skip rows with errors,പിശകുകളുള്ള വരികൾ ഒഴിവാക്കുക
DocType: Workflow State,flag,പതാക
@@ -2193,6 +2214,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,സംസ്ഥാന മാറ്റാൻ അസൈൻ ഒന്ന് ഡോക്യുമെന്റ് പങ്കും അനുവദനീയമല്ല സംസ്ഥാനങ്ങളിൽ പ്രതിനിധാനം ചെയ്യുന്നു.
DocType: Data Migration Connector,Database Name,ഡാറ്റാബേസ് നാമം
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ഫോം പുതുക്കുക
+DocType: Event Producer,Event Producer,ഇവന്റ് പ്രൊഡ്യൂസർ
DocType: DocField,Select,തിരഞ്ഞെടുക്കുക
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,പൂർണ്ണ ലോഗ് കാണുക
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","ലളിതമായ പൈത്തൺ എക്സ്പ്രഷൻ, ഉദാഹരണം: സ്റ്റാറ്റസ് == 'ഓപ്പൺ' എന്ന് ടൈപ്പ് ചെയ്യുക == 'ബഗ്'"
@@ -2308,6 +2330,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,പ്രവ
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,പ്രവർത്തിക്കുന്നതു ചേർക്കുക
DocType: Footer Item,Company,കമ്പനി
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ശരാശരി {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,വിജയകരമായ ഇടപാടുകൾ
DocType: Scheduled Job Log,Scheduled,ഷെഡ്യൂൾഡ്
DocType: User,Logout from all devices while changing Password,പാസ്വേഡ് മാറ്റുന്ന സമയത്ത് എല്ലാ ഉപകരണങ്ങളിൽ നിന്നും പുറത്തുകടക്കുക
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,പാസ് വേർഡ്
@@ -2418,6 +2441,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,മാസം
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: ചേർക്കുക Reference: {{ reference_doctype }} {{ reference_name }} പ്രമാണ പരാമർശം അയയ്ക്കാൻ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,പ്രമാണത്തിൽ ഉൾപ്പെട്ട ഉപയോക്താക്കളെ മാത്രമേ പട്ടികപ്പെടുത്തിയിട്ടുള്ളൂ
DocType: DocField,Fetch From,നിന്ന് ലഭ്യമാക്കുക
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,സജ്ജീകരണം> ഫോം ഇച്ഛാനുസൃതമാക്കുക
apps/frappe/frappe/modules/utils.py,App not found,അപ്ലിക്കേഷൻ കാണാനായില്ല
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},ഒരു കുട്ടി പ്രമാണം നേരെ {0} സൃഷ്ടിക്കാൻ കഴിയില്ല: {1}
DocType: Social Login Key,Social Login Key,സോഷ്യൽ ലോഗിൻ കീ
@@ -2428,7 +2452,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,സന
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,സോഷ്യൽ ഹോം
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},{0} ആയി സജ്ജമാക്കാൻ കഴിയില്ല ശേഷം ചേർക്കൽ
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,പങ്കിടുക {0} ഉപയോഗിച്ച്
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരണം ദയവായി നിങ്ങളുടെ പാസ്വേഡ് നൽകുക:
DocType: Workflow State,hand-up,കൈ ഉയർത്തുക
DocType: Blog Settings,Writers Introduction,എഴുത്തുകാർ ആമുഖം
DocType: Address,Phone,ഫോൺ
@@ -2487,7 +2510,7 @@ DocType: Web Page,Insert Style,തിരുകുക സ്റ്റൈൽ
DocType: Prepared Report,Error Message,പിശക് സന്ദേശം
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,പുതിയ റിപ്പോർട്ട് പേര്
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,വാരാന്ത്യങ്ങൾ മറയ്ക്കുക
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,ആവർത്തിച്ചുള്ള പ്രമാണങ്ങൾ യാന്ത്രികമായി സൃഷ്ടിക്കുന്നു.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,ആവർത്തിച്ചുള്ള പ്രമാണങ്ങൾ യാന്ത്രികമായി സൃഷ്ടിക്കുന്നു.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Is
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,വിവരം-അടയാളം
@@ -2495,7 +2518,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} മ
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","എങ്ങനെ ഈ കറൻസി ഫോർമാറ്റ് ചെയ്യണം? സജ്ജമാക്കിയിട്ടില്ലെങ്കിൽ, സിസ്റ്റം സ്വതവേയുള്ളതു് ഉപയോഗിക്കുന്നു"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,പ്രമാണങ്ങൾ {0} സമർപ്പിക്കണോ?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,താങ്കൾ ലോഗിൻ ചെയ്യേണ്ടതുണ്ട് സിസ്റ്റം മാനേജർ റോൾ ബാക്കപ്പുകൾ ആക്സസ് ചെയ്യാൻ കഴിയുകയും വേണം.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ ട്രേ അപ്ലിക്കേഷനിലേക്ക് കണക്റ്റുചെയ്യുന്നതിൽ പിശക് ...
അസംസ്കൃത പ്രിന്റ് സവിശേഷത ഉപയോഗിക്കുന്നതിന് നിങ്ങൾ QZ ട്രേ ആപ്ലിക്കേഷൻ ഇൻസ്റ്റാൾ ചെയ്ത് പ്രവർത്തിപ്പിക്കേണ്ടതുണ്ട്.
QZ ട്രേ ഡ Download ൺലോഡ് ചെയ്ത് ഇൻസ്റ്റാൾ ചെയ്യുന്നതിന് ഇവിടെ ക്ലിക്കുചെയ്യുക .
അസംസ്കൃത പ്രിന്റിംഗിനെക്കുറിച്ച് കൂടുതലറിയാൻ ഇവിടെ ക്ലിക്കുചെയ്യുക ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,പ്രിന്റർ മാപ്പിംഗ്
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,കൂട്ടിച്ചേർത്തപ്പോൾ മുമ്പ് സംരക്ഷിക്കുക.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ലിങ്കുചെയ്ത എല്ലാ പ്രമാണങ്ങളും റദ്ദാക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോ?
@@ -2524,6 +2546,7 @@ DocType: Role Permission for Page and Report,Set Role For,എന്ന റോ
DocType: GCalendar Account,The name that will appear in Google Calendar,Google കലണ്ടറിൽ ദൃശ്യമാകുന്ന പേര്
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} ഉപയോഗിച്ചുള്ള റൂം റൂട്ട് ഇതിനകം നിലവിലുണ്ട്.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,പുതുക്കുന്നു ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},ഡാഷ്ബോർഡ് ചാർട്ടിനായി സജ്ജമാക്കിയ ഫിൽട്ടർ മൂല്യങ്ങൾ ദയവായി പരിശോധിക്കുക: {}
DocType: Event,Starts on,ആരംഭിക്കുന്നത്
DocType: System Settings,System Settings,സിസ്റ്റം സജ്ജീകരണങ്ങൾ
DocType: GCalendar Settings,Google API Credentials,Google API ക്രെഡെൻഷ്യലുകൾ
@@ -2549,6 +2572,7 @@ DocType: Workflow State,ok-sign,OK-അടയാളം
apps/frappe/frappe/config/settings.py,Deleted Documents,ഇല്ലാതാക്കിയ പ്രമാണങ്ങൾ
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ഫോർമാറ്റ് കേസ് സെൻസിറ്റീവ് ആണ്
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ഡെസ്ക്ടോപ്പ് ഐക്കൺ ഇതിനകം നിലവിലുണ്ട്
+DocType: Event Consumer Document Type,Approval Status,അംഗീകാരം അവസ്ഥ
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,സ്ലൈഡുകൾ കാണിക്കേണ്ട എല്ലാ ഡൊമെയ്നുകളിലും വ്യക്തമാക്കുക. ഒന്നും വ്യക്തമാക്കിയിട്ടില്ലെങ്കിൽ സ്ഥിരസ്ഥിതിയായി എല്ലാ ഡൊമെയ്നുകളിലും സ്ലൈഡ് കാണിക്കും.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,തനിപ്പകർപ്പ്
DocType: Newsletter,Create and Send Newsletters,"വാർത്താക്കുറിപ്പുകൾ സൃഷ്ടിക്കുക, അയയ്ക്കുക"
@@ -2567,6 +2591,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,സഹായം ലേഖനങ്ങൾ
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ടൈപ്പ്:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,നിങ്ങളുടെ പേയ്മെന്റ് പരാജയപ്പെട്ടു.
+DocType: Event Producer,Producer URL,നിർമ്മാതാവിന്റെ URL
DocType: Comment,Unshared,പങ്കിട്ടത്
DocType: Address,Karnataka,കർണാടക
apps/frappe/frappe/desk/moduleview.py,Module Not Found,മൊഡ്യൂൾ കണ്ടെത്തിയില്ല
@@ -2578,6 +2603,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,അസൈൻമെന്റ് പൂർത്തിയായത്
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},ബൾക്ക് എഡിറ്റ് {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,റിപ്പോർട്ട് ഡൗൺലോഡ് ചെയ്യുക
+apps/frappe/frappe/model/workflow.py,Workflow Status,വർക്ക്ഫ്ലോ നില
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,നിഷ്ക്രിയമെന്ന്
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,ഡാഷ്ബോർഡ് ചാർട്ട് ഉറവിടങ്ങൾ സൃഷ്ടിക്കാൻ അഡ്മിനിസ്ട്രേറ്ററെ മാത്രമേ അനുവദിക്കൂ
DocType: About Us Settings,Settings for the About Us Page,കുറിച്ച് ഞങ്ങളോട് പേജ് വേണ്ടി ക്രമീകരണങ്ങൾ
@@ -2636,6 +2662,7 @@ DocType: User Social Login,User Social Login,ഉപയോക്തൃ സോഷ
DocType: Contact,All,എല്ലാം
DocType: Email Queue,Recipient,സ്വീകർത്താവ്
DocType: Webhook,Webhook Security,വെബ്ഹൂക്ക് സുരക്ഷ
+DocType: Event Sync Log,Producer Document Name,നിർമ്മാതാവിന്റെ പ്രമാണത്തിന്റെ പേര്
DocType: Communication,Has Attachment,അറ്റാച്ചുമെൻ
DocType: Address,Sales User,സെയിൽസ് ഉപയോക്താവ്
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,പ്രിന്റ് ഫോർമാറ്റുകൾ പണിയും ഇഷ്ടാനുസൃതമാക്കാനും ഉപകരണം വലിച്ചിടാൻ.
@@ -2670,6 +2697,7 @@ DocType: Address,Arunachal Pradesh,അരുണാചൽ പ്രദേശ്
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,ചൈൽഡ് ടേബിളുകൾ മറ്റ് ഡോക് ടൈപ്പുകളിൽ ഒരു ഗ്രിഡായി കാണിക്കുന്നു
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,സെറ്റപ്പ് ഓട്ടോ ഇമെയിൽ
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,കണ്ട്രോൾ + താഴേക്കുള്ള
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,ഇവന്റുകൾ ഉപയോഗിക്കുന്നതിന് നിങ്ങൾ സബ്സ്ക്രൈബുചെയ്യാൻ ആഗ്രഹിക്കുന്ന സൈറ്റ്.
DocType: Chat Profile,Message Preview,സന്ദേശ പ്രിവ്യൂ
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,ഇത് ഒരു ടോപ് 10 സാധാരണ പാസ്വേഡ്.
DocType: User,User Defaults,ഉപയോക്താവിന്റെ സ്ഥിരസ്ഥിതികൾ
@@ -2702,6 +2730,7 @@ DocType: Dashboard Chart,Last Synced On,അവസാനം സമന്വയി
DocType: Comment,Comment Type,അഭിപ്രായം തരം
DocType: OAuth Client,OAuth Client,OAuth ക്ലയന്റ്
DocType: Assignment Rule,Users,ഉപയോക്താക്കൾ
+DocType: Document Type Mapping,Local Document Type,പ്രാദേശിക പ്രമാണ തരം
DocType: Address,Odisha,ഒഡീഷ
DocType: Report,Report Type,റിപ്പോർട്ട് തരം
DocType: DocField,Signature,ഒപ്പ്
@@ -2744,6 +2773,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} സ്വയം ഈ ചുമതല ഏൽപ്പിച്ചു: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,നിങ്ങളുടെ രാജ്യം
DocType: Assignment Rule Day,Sunday,ഞായറാഴ്ച
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",ഉപഭോക്താക്കളുള്ള പ്രമാണങ്ങൾക്കായി ഇവന്റ് പ്രൊഡ്യൂസർ സൈറ്റിലെ എല്ലാ ഉൾപ്പെടുത്തലുകളും അപ്ഡേറ്റുകളും ഇല്ലാതാക്കലുകളും ഒരു ലോഗ് പരിപാലിക്കുന്നു.
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,നിലകൾ
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,ഗ്രിഡ് കാഴ്ചയിൽ
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,കൂടുതൽ പ്രവർത്തനങ്ങളൊന്നുമില്ല
@@ -2888,7 +2918,6 @@ DocType: Web Page,Sidebar and Comments,സൈഡ്ബാർ അഭിപ്ര
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","നിങ്ങൾ ശേഷം അത് റദ്ദാക്കുക, രക്ഷിക്കും ഒരു പ്രമാണത്തിൽ നന്നാക്കുവിൻ, അത് പഴയ നമ്പർ ഒരു പതിപ്പാണ് ഒരു പുതിയ നമ്പർ ലഭിക്കും."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} പ്രമാണവുമായി അറ്റാച്ചുചെയ്യാൻ അനുവദിച്ചിട്ടില്ല, പ്രിന്റ് ക്രമീകരണങ്ങളിൽ {0} എന്നതിനായി പ്രിന്റ് അനുവദിക്കുക എന്നത് പ്രവർത്തനക്ഷമമാക്കുക"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരിക്കുന്നില്ല. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് ഒരു പുതിയ ഇമെയിൽ അക്ക create ണ്ട് സൃഷ്ടിക്കുക
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} എന്ന രേഖയിൽ പ്രമാണം കാണുക
DocType: Stripe Settings,Publishable Key,പുബ്ലിശബ്ലെ കീ
DocType: Stripe Settings,Publishable Key,പുബ്ലിശബ്ലെ കീ
@@ -2965,7 +2994,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,വിവരങ്
DocType: Custom Field,Permission Level,അനുമതി ലെവൽ
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}:, സമർപ്പിക്കുക സജ്ജമാക്കാൻ റദ്ദാക്കുക, റൈറ്റ് ഇല്ലാതെ നന്നാക്കുവിൻ ചെയ്യാൻ കഴിയില്ല"
DocType: List View Setting,Disable Count,എണ്ണം പ്രവർത്തനരഹിതമാക്കുക
-DocType: Google Maps Settings,Client Key,ക്ലയന്റ് കീ
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,നിങ്ങൾ അറ്റാച്ച്മെന്റ് ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ?
apps/frappe/frappe/__init__.py,Thank you,നന്ദി
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,സംരക്ഷിക്കുന്നു
@@ -3089,6 +3117,7 @@ DocType: Workflow Document State,Only Allow Edit For,എഡിറ്റ് എ
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google ഡ്രൈവിലേക്ക് ബാക്കപ്പുചെയ്യുന്നു.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},നിർബന്ധമായ ഒരു ഫീൽഡ്: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,താങ്കളുടെ പേര്
+DocType: Event Producer Document Type,Event Producer Document Type,ഇവന്റ് പ്രൊഡ്യൂസർ പ്രമാണ തരം
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,കണക്ഷൻ വിജയം
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,സ്ലൈഡ് തരത്തിന്റെ ഓൺബോർഡിംഗ് സ്ലൈഡ് തുടരുക ഇതിനകം നിലവിലുണ്ട്.
@@ -3157,6 +3186,7 @@ DocType: Address,Postal Code,തപാൽ കോഡ്
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,കമ്യൂണിക്കേഷൻ വീണ്ടും ലിങ്ക്
DocType: Translation,Contributed,സംഭാവന ചെയ്തു
apps/frappe/frappe/config/customization.py,Form Customization,ഫോം ഇഷ്ടാനുസൃതമാക്കൽ
+DocType: Event Update Log,Event Update Log,ഇവന്റ് അപ്ഡേറ്റ് ലോഗ്
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,സജീവ സെഷനുകളൊന്നുമില്ല
DocType: Web Form,Route to Success Link,വിജയിക്കുന്നതിന് ലിങ്ക് റൂട്ട് ചെയ്യുക
DocType: Onboarding Slide Field,Right,വലത്
@@ -3182,7 +3212,7 @@ DocType: Website Settings,Chat Operators,ചാറ്റ് ഓപ്പറേ
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,പിൻ കോഡ്
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,യാതൊരു ശൂന്യമായ നിരകൾ ഫയലിൽ ഉണ്ട് എന്നു ദയവായി ഉറപ്പാക്കുക.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ഒന്നിലധികം ഘട്ടങ്ങൾക്ക് വിധേയമായാൽ ഒരു പ്രമാണത്തിന്റെ ജീവിതചക്രത്തിലെ നാഴികക്കല്ലുകൾ ട്രാക്കുചെയ്യുന്നു.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ഒന്നിലധികം ഘട്ടങ്ങൾക്ക് വിധേയമായാൽ ഒരു പ്രമാണത്തിന്റെ ജീവിതചക്രത്തിലെ നാഴികക്കല്ലുകൾ ട്രാക്കുചെയ്യുന്നു.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","ഫയലുകളുടെ പേരുമാറ്റുകയും കൺട്രോളറുകളിൽ കോഡ് മാറ്റിസ്ഥാപിക്കുകയും ചെയ്തു, ദയവായി പരിശോധിക്കുക!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,നിങ്ങളുടെ പ്രൊഫൈൽ ഒരു ഇമെയിൽ വിലാസം എന്ന് ദയവായി ഉറപ്പ്
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,നിങ്ങൾ ഈ രൂപത്തിൽ സംരക്ഷിക്കാത്ത മാറ്റങ്ങളുണ്ട്. തുടരുന്നതിനു മുമ്പ് സംരക്ഷിക്കുക.
@@ -3209,7 +3239,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API രഹസ്യം സംരക്ഷിക്കുക:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},{0}: റദ്ദാക്കി പ്രമാണ ലിങ്ക് ചെയ്യാൻ കഴിയില്ല
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,ഒരു സാധാരണ റിപ്പോർട്ട് എഡിറ്റുചെയ്യുക കഴിയില്ല. ഡ്യൂപ്ലിക്കേറ്റ് സൃഷ്ടിക്കുക പുതിയ റിപ്പോർട്ട്
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","അതു നിങ്ങളുടെ കമ്പനി വിലാസം പോലെ കമ്പനി, നിർബന്ധമായും"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","ഉദാഹരണം: ഡോക്യുമെന്റ് ഐഡി ഉൾപ്പെടുത്താൻ ആഗ്രഹിക്കുന്നുവെങ്കിൽ, {0} ഉപയോഗിക്കുക"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},{0} വേണ്ടി ടേബിൾ നിരകൾ തിരഞ്ഞെടുക്കുക
DocType: Custom Field,Options Help,ഓപ്ഷനുകൾ സഹായം
@@ -3217,7 +3246,6 @@ DocType: Footer Item,Group Label,ഗ്രൂപ്പ് ലേബൽ
DocType: Kanban Board,Kanban Board,Kanban ബോർഡ്
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google കോൺടാക്റ്റുകൾ ക്രമീകരിച്ചു.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 റെക്കോർഡ് എക്സ്പോർട്ടുചെയ്യും
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ഉപയോക്താവുമായി ബന്ധപ്പെട്ട ഇമെയിൽ അക്കൗണ്ടുകളൊന്നുമില്ല. ഉപയോക്താവ്> ഇമെയിൽ ഇൻബോക്സിന് കീഴിൽ ഒരു അക്കൗണ്ട് ചേർക്കുക.
DocType: DocField,Report Hide,റിപ്പോർട്ട് മറയ്ക്കുക
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ട്രീ കാഴ്ച {0} ലഭ്യമല്ല
DocType: DocType,Restrict To Domain,ഡൊമൈൻ എന്നതിലേക്ക് പരിമിതപ്പെടുത്തുക
@@ -3226,6 +3254,7 @@ apps/frappe/frappe/core/doctype/file/file.py,Invalid file URL. Please contact Sy
DocType: Custom Field,Label Help,ലേബൽ സഹായം
DocType: Workflow State,star-empty,നക്ഷത്രം-ഒഴിഞ്ഞ
apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,തീയതി പലപ്പോഴും ഊഹിക്കാൻ എളുപ്പമാണ്.
+apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}.","Google കോൺടാക്റ്റുകൾ - Google കോൺടാക്റ്റുകളിൽ നിന്നുള്ള കോൺടാക്റ്റുകൾ സമന്വയിപ്പിക്കാനായില്ല {0}, പിശക് കോഡ് {1}."
apps/frappe/frappe/public/js/frappe/form/workflow.js,Next actions,അടുത്തത് പ്രവൃത്തികൾ
apps/frappe/frappe/email/doctype/notification/notification.py,"Cannot edit Standard Notification. To edit, please disable this and duplicate it","സ്റ്റാൻഡേർഡ് അറിയിപ്പ് എഡിറ്റുചെയ്യാൻ കഴിയില്ല. എഡിറ്റുചെയ്യാൻ, ദയവായി ഇത് അപ്രാപ്തമാക്കി തനിപ്പകർപ്പ് സൃഷ്ടിക്കുക"
apps/frappe/frappe/templates/includes/login/login.js,Verification code email not sent. Please contact Administrator.,സ്ഥിരീകരണ കോഡ് ഇമെയിൽ അയച്ചില്ല. അഡ്മിനിസ്ട്രേറ്ററുമായി ബന്ധപ്പെടുക.
@@ -3281,7 +3310,9 @@ DocType: DocField,Fold,മടങ്ങാണ്
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,സ്റ്റാൻഡേർഡ് പ്രിന്റ് ഫോർമാറ്റ് അപ്ഡേറ്റ് ചെയ്യാൻ കഴിയില്ല
DocType: System Settings,In Days,ദിവസങ്ങളിൽ
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,ഉന്നംതെറ്റുക
+DocType: Event Producer Document Type,Has Mapping,മാപ്പിംഗ് ഉണ്ട്
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,ദയവായി വ്യക്തമാക്കുക
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,ഫിൽട്ടർ മൂല്യം അസാധുവാണ്
DocType: Comment,Bot,ബോട്ടം
DocType: Help Article,Help Article,സഹായം ലേഖനം
DocType: Page,Page Name,പേജ് പേര്
@@ -3387,7 +3418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,പ്രിന്റ് ഫോർമാറ്റ്
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ഗ്രിഡ് കാഴ്ച ടോഗിൾ ചെയ്യുക
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,അടുത്ത റെക്കോർഡിലേക്ക് പോകുക
-DocType: System Settings,Time Format,സമയ ഫോർമാറ്റ്
+DocType: Country,Time Format,സമയ ഫോർമാറ്റ്
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,അസാധുവായ പേയ്മെന്റ് ഗേറ്റ്വേ ക്രെഡൻഷ്യലുകൾ
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ചില പിശകുകൾ ഉള്ള വരികളാൽ മാത്രം സൃഷ്ടിച്ച ടെംപ്ലേറ്റ് ഫയൽ ആണ് ഇത്. തിരുത്തലിനും ഇറക്കുമതിയ്ക്കുമായി നിങ്ങൾ ഈ ഫയൽ ഉപയോഗിക്കേണ്ടതുണ്ട്.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ഡോക്യുമെന്റ് ഇനങ്ങൾ റോളുകളും ന് അനുമതികൾ സജ്ജമാക്കുക
@@ -3705,6 +3736,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,ഉപയോക്തൃനാമം ഉപയോഗിച്ച് ലോഗിൻ അനുവദിക്കുക
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,റിപ്പോർട്ട് പ്രാപ്തമാക്കുക
DocType: DocField,Display Depends On,പ്രദർശിപ്പിക്കുക ആശ്രയിച്ചിരിക്കുന്നു
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ്
DocType: Social Login Key,API Endpoint,API എൻഡ്പോയിന്റ്
DocType: Web Page,Insert Code,തിരുകുക കോഡ്
DocType: Data Migration Run,Current Mapping Type,നിലവിലെ മാപ്പിംഗ് തരം
@@ -3757,6 +3789,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ന
apps/frappe/frappe/www/login.html,Or login with,അതല്ല ഉപയോഗിച്ച് ലോഗിൻ
DocType: Error Snapshot,Locals,നാട്ടുകാർ
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ന് {1} {0} വഴി ആശയവിനിമയം: {2}
+DocType: Event Producer,Event Producer Document Types,ഇവന്റ് പ്രൊഡ്യൂസർ പ്രമാണ തരങ്ങൾ
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് സ്ഥിരസ്ഥിതി ഇമെയിൽ അക്കൗണ്ട് സജ്ജമാക്കുക
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ഗ്രൂപ്പ് പ്രകാരം തിരഞ്ഞെടുക്കുക ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ഉദാ (55 + 434) / 4 അല്ലെങ്കിൽ = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ആവശ്യമാണ്
@@ -3787,9 +3821,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar സമന്വയ ID
DocType: Prepared Report,Report Start Time,ആരംഭ സമയം റിപ്പോർട്ട് ചെയ്യുക
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ഡാറ്റ എക്സ്പോർട്ട് ചെയ്യുക
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,സമന്വയത്തിന്റെ നിലയ്ക്കൊപ്പം ഉപഭോഗം ചെയ്യുന്ന ഓരോ ഇവന്റുകളുടെയും ഒരു ലോഗും സമന്വയം പരാജയപ്പെട്ടാൽ വീണ്ടും സമന്വയിപ്പിക്കുക ബട്ടണും പരിപാലിക്കുന്നു.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,നിരകൾ തിരഞ്ഞെടുക്കുക
DocType: Translation,Source Text,ഉറവിട ഉള്ളടക്കം
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,ഇതൊരു പശ്ചാത്തല റിപ്പോർട്ടാണ്. ഉചിതമായ ഫിൽറ്ററുകൾ സജ്ജമാക്കി പുതിയതൊന്ന് സൃഷ്ടിക്കുക.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരിക്കുന്നില്ല. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് ഒരു പുതിയ ഇമെയിൽ അക്ക create ണ്ട് സൃഷ്ടിക്കുക
apps/frappe/frappe/www/login.py,Missing parameters for login,ലോഗിന്നിനായി കാണുന്നില്ല പരാമീറ്ററുകൾ
DocType: Workflow State,folder-open,ഫോൾഡർ-ഓപ്പൺ
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","സമർപ്പിച്ചുകഴിഞ്ഞാൽ, സമർപ്പിക്കാവുന്ന രേഖകൾ മാറ്റാൻ കഴിയില്ല. അവ റദ്ദാക്കാനും ഭേദഗതി ചെയ്യാനും മാത്രമേ കഴിയൂ."
@@ -3864,6 +3900,7 @@ DocType: Event,Send an email reminder in the morning,രാവിലെ ഒര
DocType: Blog Post,Published On,ന് പ്രസിദ്ധീകരിച്ചു
DocType: Contact,Gender,സ്ത്രീ
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,നിർബന്ധിതം വിവരം കാണാനില്ല:
+DocType: Event Consumer,Event Subscriber,ഇവന്റ് സബ്സ്ക്രൈബർ
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,അഭ്യർത്ഥന URL ചെക്ക് ചെയ്യുക
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,മാത്രം 200 ചേർക്കുന്നു ഒറ്റ അഭ്യർത്ഥന അനുവദനീയമായ
DocType: Footer Item,URL,യുആർഎൽ
@@ -3876,6 +3913,7 @@ DocType: Auto Email Report,Half Yearly,പകുതി വാർഷികം
DocType: Communication,Marked As Spam,സ്പാം എന്ന് അടയാളപ്പെടുത്തി
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ഫയൽ URL ഉള്ള ചില പ്രശ്നം ഉണ്ട്: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,വൃക്ഷം
+DocType: Event Producer Document Type,Use Same Name,ഒരേ പേര് ഉപയോഗിക്കുക
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,നിങ്ങൾക്ക് ഈ റിപ്പോർട്ടിൽ പ്രിന്റ് അനുവാദമില്ല
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,ഉപയോക്താവിന്റെ അനുമതികൾ
DocType: Workflow State,warning-sign,മുന്നറിയിപ്പ്-അടയാളം
@@ -3885,6 +3923,7 @@ DocType: Workflow State,User,ഉപയോക്താവ്
DocType: Website Settings,"Show title in browser window as ""Prefix - title""","- തലക്കെട്ടിന്റെ ഘടന" ബ്രൗസർ വിൻഡോയിൽ കാണിക്കുക ശീർഷകം
DocType: Payment Gateway,Gateway Settings,ഗേറ്റ്വേ ക്രമീകരണങ്ങൾ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ഡോക്യുമെന്റ് തരം വാചകം
+DocType: Event Sync Log,Event Sync Log,ഇവന്റ് സമന്വയ ലോഗ്
apps/frappe/frappe/handler.py,Logged Out,ലോഗ് ഔട്ട്
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,കൂടുതൽ...
DocType: System Settings,User can login using Email id or Mobile number,ഉപയോക്തൃ ഇമെയിൽ ഐഡി അല്ലെങ്കിൽ മൊബൈൽ നമ്പർ ഉപയോഗിച്ച് പ്രവേശിക്കാൻ കഴിയും
@@ -3925,12 +3964,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,അകത്തു
DocType: Workflow State,star,നക്ഷത്രം
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,ഹബ്
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,ഇത് പരിശോധിച്ചാൽ പ്രമാണങ്ങൾക്ക് ഇവന്റ് പ്രൊഡ്യൂസറുടെ സൈറ്റിലുള്ള അതേ പേരുണ്ടാകും
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,കോമ ഉപയോഗിച്ച് വേർതിരിച്ച് മൂല്യങ്ങൾ
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},തരം കറന്സി മാക്സ് വീതി നിരയിൽ 100px {0} ആണ്
apps/frappe/frappe/config/website.py,Content web page.,ഉള്ളടക്ക വെബ് പേജ്.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ഒരു പുതിയ റോൾ ചേർക്കുക
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,വെബ് പേജ് സന്ദർശിക്കുക
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,പുതിയ അസൈൻമെന്റ്
+DocType: Event Consumer Document Type,Approved,അംഗീകരിച്ചു
DocType: Google Contacts,Last Sync On,അവസാനമായി സമന്വയിപ്പിക്കുക ഓണാണ്
DocType: Deleted Document,Deleted Document,ഇല്ലാതാക്കി പ്രമാണം
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ശ്ശോ! എന്തോ കുഴപ്പം സംഭവിച്ചു
@@ -3981,7 +4022,6 @@ DocType: Communication,Communication Type,കമ്മ്യൂണിക്ക
DocType: DocField,Unique,യുണീക്ക്
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,ഭാഗിക വിജയം
DocType: Email Account,Service,സേവനം
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,സജ്ജീകരണം> ഉപയോക്താവ്
DocType: File,File Name,ഫയലിന്റെ പേര്
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),({1}) {0} {0} വേണ്ടി കണ്ടെത്തിയില്ല
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},റേസ്: {0}
@@ -3993,11 +4033,10 @@ DocType: Calendar View,Calendar View,കലണ്ടറിലെ കാഴ്ച
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,എഡിറ്റ് ഫോർമാറ്റ്
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,പൂർത്തിയാക്കുക രജിസ്ട്രേഷൻ
DocType: GCalendar Settings,Enable,പ്രവർത്തനക്ഷമമാക്കുക
-DocType: Google Maps Settings,Home Address,ഹോം വിലാസം
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),നിങ്ങൾ മാത്രം ഒന്നിലൂടെ 5000 റെക്കോർഡുകൾ വരെ അപ്ലോഡ് ചെയ്യാൻ കഴിയും. (ചില കേസുകളിൽ കുറവോ ആയിരിക്കാം)
DocType: Report,"output in the form of `data = [columns, result]`","`ഡാറ്റ = [നിരകൾ, ഫലം]` രൂപത്തിലുള്ള output ട്ട്പുട്ട്"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ബാധകമായ പ്രമാണ തരങ്ങൾ
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ഉപയോക്തൃ അസൈൻമെന്റുകൾക്കായി നിയമങ്ങൾ സജ്ജമാക്കുക.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,ഉപയോക്തൃ അസൈൻമെന്റുകൾക്കായി നിയമങ്ങൾ സജ്ജമാക്കുക.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} അപര്യാപ്തമാണ് അനുമതി
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} അപര്യാപ്തമാണ് അനുമതി
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),റിപ്പോർട്ട് (പിശകുകൾ ഉണ്ടായിരുന്നു) സംരക്ഷിച്ചില്ല
diff --git a/frappe/translations/mr.csv b/frappe/translations/mr.csv
index 44bedd0546..b266d8887a 100644
--- a/frappe/translations/mr.csv
+++ b/frappe/translations/mr.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,वापरकरर्त्या साठी हि भूमिका सुधारणा वापरकर्ता
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},पुनर्नामित करा {0}
DocType: Workflow State,zoom-out,झूम कमी करा
-DocType: Data Import Beta,Import Options,आयात पर्याय
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,त्याच्या घटना उघडा असताना {0} उघडू शकत नाही
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,टेबल {0} रिक्त असू शकत नाही
DocType: SMS Parameter,Parameter,मापदंड
@@ -84,16 +83,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,फील्ड प्रकाशित आहे
DocType: GCalendar Settings,GCalendar Settings,GCalendar सेटिंग्ज
DocType: Email Group,Email Group,ई-मेल गट
-apps/frappe/frappe/__init__.py,Only for {},फक्त {} साठी
DocType: Event,Pulled from Google Calendar,Google कॅलेंडरवरून खेचले
DocType: Note,Seen By,करून पाहिले
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,अनेक जोडा
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,एक वैध वापरकर्ता प्रतिमा नाही
DocType: Energy Point Log,Reverted,परत केले
DocType: Success Action,First Success Message,प्रथम यशस्वी संदेश
+DocType: Document Type Mapping,Document Type Mapping,दस्तऐवज प्रकार मॅपिंग
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,आवडत नाही
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},अयोग्य मूल्य: {0} असणे आवश्यक आहे {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","बदला क्षेत्रात गुणधर्म (कातडे, केवळ वाचनीय, परवानगी इ)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,आपल्या इव्हेंटचा वापर करणारी साइट.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,कौतुक
DocType: Notification Settings,Document Share,दस्तऐवज सामायिक करा
DocType: Workflow State,lock,लॉक
@@ -113,10 +113,12 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,लॉग
DocType: Workflow State,indent-right,मागणीपत्र-योग्य
DocType: Has Role,Has Role,भूमिका आहे
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,पुन्हा संकालित करा
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,सर्व्हरवर QR कोड प्रतिमा ठेवण्यासाठी सेकंदांचा कालावधी. किमान: 240
DocType: Dashboard Chart,Timespan,कालावधी
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,वेब लिंक
DocType: Deleted Document,Restored,पुनर्संचयित
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","क्यूझेड ट्रे अनुप्रयोगाशी कनेक्ट करताना त्रुटी ...
रॉ प्रिंट वैशिष्ट्य वापरण्यासाठी आपल्याकडे क्यूझेड ट्रे अनुप्रयोग स्थापित आणि चालू असणे आवश्यक आहे.
क्यूझेड ट्रे डाउनलोड आणि स्थापित करण्यासाठी येथे क्लिक करा .
रॉ प्रिंटिंगबद्दल अधिक जाणून घेण्यासाठी येथे क्लिक करा ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 मिनिटा पूर्वी
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","आमच्या प्रणाली व्यवस्थापक पासून, सेट वापरकर्ता परवानग्या सह भूमिका योग्य त्या दस्तऐवज प्रकार इतर वापरकर्त्यांची परवानगी सेट करू शकता."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,थीम कॉन्फिगर करा
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,न पाहिलेला
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,फाइल व्यवस्थापक
DocType: Website Settings,"HTML Header, Robots and Redirects","एचटीएमएल शीर्षलेख, रोबोट्स आणि पुनर्निर्देशने"
DocType: GCalendar Account,Refresh Token,रिफ्रेश टोकन
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,इव्हेंट निर्माता साइटशी कनेक्ट करण्यात अयशस्वी. थोड्या वेळाने पुन्हा प्रयत्न करा.
DocType: Address,Goa,गोवा
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,या साइटसाठी प्रलंबित किंवा सद्य नोकर्या नाहीत
DocType: Webhook,Doc Event,डॉक इव्हेंट
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,स्क्रिप्ट व्यव
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,कोणताही क्रियाकलाप नाही
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,तृतीय पक्ष अॅप्स
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,प्रथम वापरकर्ता प्रणाली व्यवस्थापक होईल(आपण हे नंतर बदलू शकता).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,आपण आपल्या अहवालाचे फिल्टर बदलण्याचा प्रयत्न करू शकता.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,आज घटना नाहीत
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,आपण स्वत: ला पुनरावलोकन बिंदू देऊ शकत नाही
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,डॉक्ट टाईप निवडलेल्या डॉक इव्हेंटसाठी सबमिशनयोग्य असणे आवश्यक आहे
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,आपल्याला या दस्तऐवजात संबंधित ईमेल पाठवण्याची परवानगी नाही
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,कृपया {0} वर्गीकरण करणे / गट किमान 1 स्तंभ निवडा
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} साठी परवानगी नाही: {1}. प्रतिबंधित फील्ड: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,कंपनी दुवा साधलेली नाही
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"आपण Sandbox API वापरून आपल्या भरणा चाचणी घेत आहोत, तर हे तपासा"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,आपल्याला मानक वेबसाइट थीम हटवण्यास परवानगी नाही
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},आपले प्रथम {0} तयार करा
@@ -258,7 +263,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} अद्यतनित करत आहे
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,अक्षम करा अहवाल
DocType: Translation,Contributed Translation Doctype Name,सहयोगी भाषांतर दस्तऐवजाचे नाव
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म सानुकूलित करा
DocType: PayPal Settings,Redirect To,पुनर्निर्देशित
DocType: Data Migration Mapping,Pull,खेचणे
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},जावास्क्रिप्ट स्वरूप: frappe.query_reports ['REPORTNAME'] = {}
@@ -270,6 +274,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,परवानगी नाही
DocType: DocShare,Internal record of document shares,दस्तऐवज समभाग अंतर्गत रेकॉर्ड
DocType: Energy Point Settings,Review Levels,पुनरावलोकन स्तर
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> वापरकर्त्याच्या परवानग्या
DocType: Workflow State,Comment,टिप्पणी
DocType: Data Migration Plan,Postprocess Method,पोस्टप्रक्रिया पद्धत
DocType: DocType Action,Action Type,क्रिया प्रकार
@@ -320,7 +325,9 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,आ
DocType: Workflow State,remove-circle,काढा-मंडळ/remove-circle
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,माझे प्रोफाइल
DocType: Help Article,Beginner,नवशिक्या
+apps/frappe/frappe/__init__.py,This action is only allowed for {},ही कृती केवळ {for ला अनुमती आहे
DocType: Contact,Is Primary Contact,प्राथमिक संपर्क आहे
+DocType: Event Consumer,Event Consumer,कार्यक्रम ग्राहक
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript पृष्ठाच्या प्रमुख विभागावर समाविष्ट करणे.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,जोडा / अद्यतनित करा
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,मसुदा प्रिंट करण्यास परवानगी नाही
@@ -474,7 +481,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,पर्यंत पुन्हा करा
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,नवीन
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,आपल्याला हे प्रथम तयार करण्याची आवश्यकता आहे:
-DocType: Google Maps Settings,Google Maps Settings,Google नकाशे सेटिंग्ज
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,लोड करीत आहे ...
DocType: DocField,Password,पासवर्ड
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,तुमची प्रणाली सुधारीत केले जात आहे. काही क्षण पुन्हा रिफ्रेश करा
@@ -566,6 +572,7 @@ DocType: Onboarding Slide,Onboarding Slide,ऑनबोर्डिंग स्
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,अवैध पासवर्ड:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,अवैध पासवर्ड:
DocType: Print Settings,Send document web view link in email,ई-मेल मध्ये दस्तऐवज वेब दृश्य लिंक पाठवा
+DocType: Event Consumer Document Type,Event Consumer Document Type,इव्हेंट ग्राहक दस्तऐवज प्रकार
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,मागील
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,पुन्हा:
DocType: LDAP Settings,Require Trusted Certificate,विश्वसनीय प्रमाणपत्र आवश्यक आहे
@@ -641,6 +648,7 @@ DocType: Workflow State,volume-down,आवाज -कमी
DocType: Onboarding Slide,Help Links,मदत दुवे
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,या आयपी पत्त्यावरून प्रवेशास परवानगी नाही
DocType: Notification Settings,Enable Email Notifications,ईमेल सूचना सक्षम करा
+DocType: Document Type Field Mapping,Event Streaming,कार्यक्रम प्रवाह
apps/frappe/frappe/desk/reportview.py,No Tags,टॅग्ज
DocType: Email Account,Send Notification to,सूचना पाठवा
DocType: DocField,Collapsible,संक्षिप्त
@@ -657,6 +665,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,य
apps/frappe/frappe/database/database.py,No conditions provided,कोणत्याही अटी दिल्या नाहीत
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y अक्ष फील्ड
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,शेत {0} क्रमवारी एक वैध FIELDNAME असणे आवश्यक आहे
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,डीफॉल्ट अॅड्रेस टेम्पलेट आढळला नाही. कृपया सेटअप> मुद्रण आणि ब्रांडिंग> अॅड्रेस टेम्पलेट वरून नवीन तयार करा.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,आणखी
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,एक नवीन रेकॉर्ड तयार करा
DocType: Contact,Sales Manager,विक्री व्यवस्थापक
@@ -680,6 +689,7 @@ DocType: User,Reset Password Key,पासवर्ड की रीसेट
DocType: Dashboard Chart,All Time,सर्वकाळ
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} साठी अवैध दस्तऐवज स्थिती
DocType: Email Account,Enable Auto Reply,ऑटो प्रत्युत्तर सक्षम करा.
+apps/frappe/frappe/desk/query_report.py,No data to export,निर्यात करण्यासाठी कोणताही डेटा नाही
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,पाहिले नाही
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,एकाच प्रिंट स्वरूपात अनेक प्रिंटर मॅप केलेले असू शकत नाही.
DocType: Workflow State,zoom-in,झूम-इन
@@ -831,6 +841,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,वाप
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,पहिला
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,अद्यतने अनुवाद
DocType: Error Snapshot,Exception,अपवाद
+DocType: Event Consumer,Event Consumer Document Types,कार्यक्रम उपभोक्ता दस्तऐवज प्रकार
DocType: Email Account,Use IMAP,वापर IMAP कार्यक्षम
DocType: Activity Log,Activity Log,क्रियाकलाप लॉग
DocType: View Log,Viewed By,द्वारा पाहिल्या
@@ -870,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,व
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,चार्ट कॉन्फिगर करा
DocType: User,Last IP,गेल्या आयपी
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,कृपया आपल्या ईमेलवर एक विषय जोडा
+apps/frappe/frappe/model/workflow.py,Errored Transactions,चुकीचे व्यवहार
DocType: Data Migration Connector,Data Migration Connector,डेटा माइग्रेशन कनेक्टर
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} परत केले {1}
DocType: Email Account,Track Email Status,ईमेल स्थितीचा मागोवा घ्या
@@ -900,6 +912,7 @@ DocType: Email Queue,Attachments,संलग्नक
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,आपल्याला या दस्तऐवजात प्रवेश करण्याची परवानगी नाही
DocType: Language,Language Name,भाषा नाव
DocType: Email Group Member,Email Group Member,गट सदस्य ईमेल
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,वापरकर्त्याशी संबंधित कोणतेही ईमेल खाते नाही. कृपया वापरकर्ता> ईमेल इनबॉक्स अंतर्गत खाते जोडा.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,आपले खाते लॉक केले गेले आहे आणि {0} सेकंदांनंतर पुन्हा सुरू होईल
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,वापरकर्ता परवानग्या विशिष्ट उपयोगकर्त्यांना मर्यादित करण्यासाठी वापरले जातात.
DocType: Notification,Value Changed,मूल्य बदलले
@@ -989,6 +1002,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,व्यवह
DocType: Help Article,Expert,तज्ज्ञ
DocType: Workflow State,circle-arrow-right,मंडळ-बाण-उजव्या
DocType: Role Profile,Role Profile,भूमिका प्रोफाइल
+DocType: Document Type Mapping,Remote Document Type,दूरस्थ दस्तऐवज प्रकार
apps/frappe/frappe/permissions.py,Document Type is not importable,दस्तऐवज प्रकार आयात करण्यायोग्य नाही
DocType: LDAP Settings,LDAP Server Url,LDAP सर्व्हर URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,त्याच्या {0} उघडा असताना उदाहरणार्थ उघडू शकत नाही
@@ -1073,7 +1087,7 @@ DocType: Web Form,Allow Print,प्रिंट परवानगी द्य
DocType: Communication,Clicked,क्लिक केले
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,अनुसरण करणे रद्द करा
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} ला परवानगी नाही
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते वरून डीफॉल्ट ईमेल खाते सेट करा
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},{1} पैकी केवळ प्रथम {0} पंक्ती दर्शवित आहे
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,पाठविण्यासाठी अनुसूचित
DocType: DocType,Track Seen,ट्रॅक पाहिले
DocType: Dropbox Settings,File Backup,फाईल बॅकअप
@@ -1144,6 +1158,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,न
DocType: Data Export,Filter List,फिल्टर सूची
DocType: Data Export,Excel,एक्सेल
DocType: System Settings,HH:mm,प.पू.: मिमी
+DocType: Event Sync Log,Event Configurations,कार्यक्रम कॉन्फिगरेशन
DocType: Email Account,Auto Reply Message,ऑटो प्रत्युत्तर संदेश
DocType: Data Migration Mapping,Condition,अट
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} तासांपूर्वी
@@ -1202,9 +1217,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,प्रे
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,टिप्पणी लॉगिन करा
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,ह्या ओळी खालील डेटा प्रविष्ट करण्यास प्रारंभ
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},बदलला मूल्ये {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ईमेल आयडी अद्वितीय असणे आवश्यक आहे, ईमेल खाते आधीपासून अस्तित्वात आहे {0}"
DocType: Workflow State,retweet,पुन्हा ट्विट करा
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलनासाठी,> 5, <10 किंवा = 324 वापरा. श्रेणीसाठी, 5:10 वापरा (5 आणि 10 मधील मूल्यांसाठी)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,सानुकूल करा ...
DocType: Print Format,Align Labels to the Right,लेबले उजवीकडील संरेखित करा
DocType: Assignment Rule,Disabled,अपंग
@@ -1252,8 +1266,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,कीबोर्ड शॉर्टकट
DocType: Post,Comments,टिप्पण्या
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,पुष्टी करा
+DocType: Event Sync Log,Update Type,अद्यतन प्रकार
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,प्रमाणीकरण करीत आहे ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,सर्व संकुचित करा
+DocType: Event Producer,Last Update,शेवटचे अद्यतन
apps/frappe/frappe/www/login.html,Forgot Password?,पासवर्ड विसरलात?
DocType: System Settings,yyyy-mm-dd,वर्ष-mm-dd या
apps/frappe/frappe/desk/report/todo/todo.py,ID,आयडी
@@ -1294,6 +1310,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,टेब
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,स्तंभ आधारित
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{1}, {2} मधील {0} आयात करीत आहे"
DocType: Workflow State,move,हलवा
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,वर्तमान साइटसाठी इव्हेंट ग्राहक किंवा इव्हेंट ग्राहक तयार करण्यात अयशस्वी आधीच नोंदणीकृत आहे.
apps/frappe/frappe/model/document.py,Action Failed,क्रिया अयशस्वी
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,वापरकर्ता
DocType: View Log,View log,लॉग पहा
@@ -1450,6 +1467,7 @@ DocType: DefaultValue,Key,की
DocType: Address,Contacts,संपर्क
DocType: System Settings,Setup Complete,सेटअप पूर्ण
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,सर्व दस्तऐवज शेअर अहवाल
+DocType: Event Consumer,Callback URL,कॉलबॅक URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","आयात टेम्पलेट .csv, .xlsx किंवा .xls प्रकाराचे असावेत"
apps/frappe/frappe/www/update-password.html,New Password,नवीन पासवर्ड
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,फिल्टर {0} गहाळ
@@ -1515,7 +1533,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,य
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; अट परवानगी नाही
DocType: Async Task,Async Task,Async कार्य
DocType: Workflow State,picture,चित्र
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,पूर्ण
+DocType: Scheduled Job Log,Complete,पूर्ण
DocType: DocType,Image Field,प्रतिमा फील्ड
DocType: Print Format,Custom HTML Help,सानुकूल HTML मदत
DocType: LDAP Settings,Default Role on Creation,निर्मितीवरील डीफॉल्ट भूमिका
@@ -1540,6 +1558,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,शोध मदत
DocType: Milestone,Milestone Tracker,माईलस्टोन ट्रॅकर
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,नोंदणीकृत परंतु अकार्यान्वीत
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,पत्त्याचा कंपनीशी दुवा साधणे आवश्यक आहे. कृपया खालील दुवे तक्त्यात कंपनीसाठी एक पंक्ती जोडा.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,या दस्तऐवजासाठी स्वयं पुनरावृत्ती अक्षम केली गेली आहे.
DocType: DocType,Hide Copy,कॉपी लपवा
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,सर्व भूमिका साफ करा
@@ -1578,13 +1597,13 @@ DocType: Bulk Update,Field,फील्ड
DocType: Communication,Received,प्राप्त
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update", इ वैध पद्धती कारक (DocType निवड अवलंबून असेल)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1} चे मूल्य बदलले
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},ईमेल खाते सेटअप यासाठी आपला संकेतशब्द प्रविष्ट करा: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,किमान एक प्रणाली व्यवस्थापक असणे आवश्यक आहे म्हणून प्रणाली व्यवस्थापक जमा केला
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,एकूण पृष्ठे
DocType: DocField,Attach Image,प्रतिमा संलग्न
DocType: Workflow State,list-alt,यादी-Alt
apps/frappe/frappe/www/update-password.html,Password Updated,पासवर्ड अद्यतनित
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> वापरकर्त्याच्या परवानग्या
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,आपले लॉगिन सत्यापित करण्यासाठी चरण
apps/frappe/frappe/utils/password.py,Password not found,संकेतशब्द आढळले नाहीत
DocType: Webhook,Webhook Secret,वेबहूक सीक्रेट
@@ -1600,8 +1619,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API से
DocType: Report,Query Report,क्वेरी अहवाल
DocType: User,Set New Password,नवीन संकेतशब्द सेट करा
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} साठी परवानगी नाही: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S वैध अहवाल स्वरूपात नाही. अहवाल स्वरूप खालील% s च्या एक \ पाहिजे
DocType: Chat Message,Chat,गप्पा
DocType: LDAP Group Mapping,LDAP Group Mapping,एलडीएपी ग्रुप मॅपिंग
DocType: Dashboard Chart,Chart Options,चार्ट पर्याय
@@ -1636,7 +1653,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,आपल
DocType: Dropbox Settings,Dropbox Access Secret,ड्रॉपबॉक्स प्रवेश गुपित
DocType: Tag Link,Document Title,दस्तऐवज शीर्षक
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(अनिवार्य)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} वर्षापूर्वी
DocType: Social Login Key,Social Login Provider,सामाजिक लॉग इन प्रदाता
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,आणखी टिप्पणी जोडा
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,फाईलमध्ये कोणताही डेटा आढळला नाही कृपया डेटासह नवीन फाईल पुन्हा जोडा.
@@ -1683,6 +1699,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","target
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 वर्ष
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,कायमचे हटवा {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,समान फाइल आधिपासूनच रेकॉर्डला संलग्न केले आहे
+DocType: Event Sync Log,Synced,समक्रमित
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} वैध वर्कफ्लो स्टेट नाही. कृपया आपले कार्यप्रवाह अद्यतनित करा आणि पुन्हा प्रयत्न करा.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} गुण दिले
DocType: Workflow State,wrench,पाना
@@ -1780,6 +1797,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,कमाल लांबी
DocType: Print Format,Jinja,जिंजा
DocType: Workflow State,map-marker,नकाशा-मार्कर
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,दोन दस्तऐवज दरम्यान मॅपिंग कॉन्फिगरेशन.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,एक समस्या सादर करा
DocType: Event,Repeat this Event,या कार्यक्रमाची पुनरावृत्ती
DocType: Address,Maintenance User,देखभाल सदस्य
@@ -1837,6 +1855,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,कसोटी ई-मेल पत्ता
DocType: Auto Repeat,Reference Document Type,संदर्भ दस्तऐवज प्रकार
DocType: ToDo,Sender,प्रेषक
+DocType: Event Consumer,Incoming Change,येणारा बदल
DocType: Google Drive,Backup Folder Name,बॅकअप फोल्डर नाव
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,सूचना {0} चे मूल्यांकन करताना त्रुटी. कृपया आपले टेम्पलेट निश्चित करा.
DocType: GSuite Settings,Google Apps Script,Google Apps स्क्रिप्ट
@@ -1899,9 +1918,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,नव
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,विनंती मंजूर करण्यासाठी खालील दुव्यावर क्लिक करा
DocType: Workflow State,align-left,-संरेखित बाकी
DocType: Onboarding Slide,Action Settings,कृती सेटिंग्ज
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> वापरकर्ता
DocType: User,Defaults,मुलभूत
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलनासाठी,> 5, <10 किंवा = 324 वापरा. श्रेणीसाठी, 5:10 वापरा (5 आणि 10 मधील मूल्यांसाठी)."
DocType: Energy Point Log,Revert Of,परत करा
+DocType: Document Type Mapping,Field Mapping,फील्ड मॅपिंग
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,विद्यमान विलीन
DocType: User,Birth Date,जन्म तारीख
DocType: Communication Link,Link Title,दुवा शीर्षक
@@ -1929,6 +1949,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,टॅग दुवा
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,चैन इंटिग्रिटी
DocType: Data Export,CSV,सी
+DocType: Event Consumer,In Test,चाचणी मध्ये
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",१ चलन = [?] अपूर्णांक उदा १ डॉलर = १०० सेंट
DocType: Data Import,Partially Successful,अंशतः यशस्वी
@@ -1938,6 +1959,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,एलडीएपी ग्रुप मॅपिंग्ज
DocType: Chat Message Attachment,Chat Message Attachment,गप्पा संदेश संलग्नक
DocType: LDAP Settings,Path to CA Certs File,सीए प्रमाणपत्रे फाईलचा मार्ग
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,जर उत्पादकाच्या आणि ग्राहकांच्या शेवटी दस्तऐवजात फील्डची नावे असतील तर हे तपासा आणि मॅपिंग सेट अप करा
DocType: Address,Manipur,मणिपूर
DocType: Web Form Field,Allow Read On All Link Options,सर्व लिंक पर्यायांवर वाचा
DocType: DocType,Database Engine,डेटाबेस इंजिन
@@ -2071,6 +2093,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,टीप
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,त्रुटी अहवाल
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / Excel स्वरूपात डेटा निर्यात करा.
+DocType: Document Type Field Mapping,Document Type Field Mapping,दस्तऐवज प्रकार फील्ड मॅपिंग
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,ग्लोबल सर्च डॉक्युमेंट्स सेट अप करत आहे.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,आपण वापरू शकता प्रमाणीकरण अॅप्स आहेत:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} आधीच अस्तित्वात आहे. दुसरे नाव निवडा
@@ -2146,7 +2169,6 @@ DocType: Workflow State,Upload,अपलोड करा
DocType: User Permission,Advanced Control,प्रगत नियंत्रण
DocType: System Settings,Date Format,तारीख स्वरूप
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,प्रकाशित नाही
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,डीफॉल्ट अॅड्रेस टेम्पलेट आढळला नाही. कृपया सेटअप> मुद्रण आणि ब्रांडिंग> अॅड्रेस टेम्पलेट वरून नवीन तयार करा.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","कार्यपद्धत क्रिया (उदा, रद्द करा स्वीकारा)."
DocType: Data Import,Skip rows with errors,त्रुटी असलेल्या पंक्ती वगळा
DocType: Workflow State,flag,ध्वज
@@ -2210,6 +2232,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,स्थिती बदलण्यात नियुक्त एक दस्तऐवज आणि भूमिका परवानगी राज्ये प्रतिनिधित्व करतो.
DocType: Data Migration Connector,Database Name,डेटाबेस नाव
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,रिफ्रेश फॉर्म
+DocType: Event Producer,Event Producer,कार्यक्रम निर्माता
DocType: DocField,Select,निवडा
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,पूर्ण लॉग पहा
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","साधे पायथन एक्सप्रेशन, उदाहरण: स्थिती == 'उघडा' आणि टाइप करा == 'बग'"
@@ -2309,6 +2332,7 @@ DocType: DocType,User Cannot Search,वापरकर्त्याच्य
DocType: Communication Link,Communication Link,संप्रेषण दुवा
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,अवैध आउटपुट स्वरूप
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},{0} {1} शक्य नाही
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,आपल्यासाठी स्वयं पुनरावृत्ती {2} मार्गे आवर्ती {0} {1} तयार केले गेले आहे.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,सदस्य मालक असेल तर हा नियम लागू करा
DocType: Global Search Settings,Global Search Settings,ग्लोबल शोध सेटिंग्ज
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,आपले लॉगिन आयडी काय असेल
@@ -2325,6 +2349,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,लॉगि
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,करावे जोडा
DocType: Footer Item,Company,कंपनी
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},सरासरी {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,यशस्वी व्यवहार
DocType: Scheduled Job Log,Scheduled,अनुसूचित
DocType: User,Logout from all devices while changing Password,पासवर्ड बदलताना सर्व डिव्हाइसेसवरून लॉगआउट करा
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,संकेतशब्द सत्यापित करा
@@ -2436,6 +2461,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,महिन
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: जोडा Reference: {{ reference_doctype }} {{ reference_name }} पाठविण्यासाठी दस्तऐवज संदर्भ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,केवळ कागदजत्रात समाविष्ट वापरकर्ते सूचीबद्ध आहेत
DocType: DocField,Fetch From,कडून प्राप्त करा
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म सानुकूलित करा
apps/frappe/frappe/modules/utils.py,App not found,अनुप्रयोग आढळले नाही
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},{0} तयार करू शकत नाही एक एक मूल दस्तऐवजावर: {1}
DocType: Social Login Key,Social Login Key,सामाजिक लॉगिन की
@@ -2446,7 +2472,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,गप
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,सोशल होम
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},नंतर समाविष्ट केल्यानंतर {0} म्हणून सेट केली जाऊ शकत नाही
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,सामायिक करा {0} सह
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ई-मेल खाते सेटअप आपला संकेतशब्द प्रविष्ट करा:
DocType: Workflow State,hand-up,हात-अप
DocType: Blog Settings,Writers Introduction,लेखक परिचय
DocType: Address,Phone,फोन
@@ -2504,7 +2529,7 @@ DocType: Web Page,Insert Style,घाला शैली
DocType: Prepared Report,Error Message,त्रुटी संदेश
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,नवीन अहवाल नाव
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,आठवडा लपवा
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,स्वयंचलितपणे आवर्ती दस्तऐवज व्युत्पन्न करते.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,स्वयंचलितपणे आवर्ती दस्तऐवज व्युत्पन्न करते.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,आहे
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,माहिती-चिन्ह
@@ -2512,7 +2537,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,मू
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","या चलनाचे रूपण कसे करावे? सेट न केल्यास, प्रणाली मुलभूत वापरा"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} दस्तऐवज सबमिट करायचे?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,तुम्ही लॉग-इन होणे आवश्यक आहे आणि बॅकअप प्रवेश करण्यात सक्षम होऊ प्रणाली व्यवस्थापक भूमिका असण्याची आवश्यकता आहे.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","क्यूझेड ट्रे अनुप्रयोगाशी कनेक्ट करताना त्रुटी ...
रॉ प्रिंट वैशिष्ट्य वापरण्यासाठी आपल्याकडे क्यूझेड ट्रे अनुप्रयोग स्थापित आणि चालू असणे आवश्यक आहे.
क्यूझेड ट्रे डाउनलोड आणि स्थापित करण्यासाठी येथे क्लिक करा .
रॉ प्रिंटिंगबद्दल अधिक जाणून घेण्यासाठी येथे क्लिक करा ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,प्रिंटर मॅपिंग
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,संलग्न करण्यापूर्वी जतन करा.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,आपण सर्व दुवा साधलेली कागदपत्रे रद्द करू इच्छिता?
@@ -2541,6 +2565,7 @@ DocType: Role Permission for Page and Report,Set Role For,भूमिका स
DocType: GCalendar Account,The name that will appear in Google Calendar,Google Calendar मध्ये दिसेल असे नाव
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} सह थेट खोली आधीपासून अस्तित्वात आहे.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,रिफ्रेश करत आहे ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},कृपया डॅशबोर्ड चार्टसाठी सेट केलेली फिल्टर मूल्ये तपासा: {}
DocType: Event,Starts on,सुरू
DocType: System Settings,System Settings,प्रणाली संयोजना
DocType: GCalendar Settings,Google API Credentials,Google API क्रेडेन्शियल
@@ -2566,6 +2591,7 @@ DocType: Workflow State,ok-sign,ठीक-चिन्ह
apps/frappe/frappe/config/settings.py,Deleted Documents,हटविले दस्तऐवज
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,सीएसव्ही स्वरूपात केस संवेदनशील आहे
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,डेस्कटॉप चिन्ह आधीच अस्तित्वात आहे
+DocType: Event Consumer Document Type,Approval Status,मंजूरीची स्थिती
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,स्लाइड्स कशा दर्शविल्या पाहिजेत हे सर्व डोमेनमध्ये निर्दिष्ट करा. काहीही निर्दिष्ट नसल्यास स्लाइड सर्व डोमेनमध्ये डीफॉल्टनुसार दर्शविली जाते.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,डुप्लिकेट
DocType: Newsletter,Create and Send Newsletters,वृत्तपत्रे तयार करा आणि पाठवा
@@ -2584,6 +2610,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,मदत लेख
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,प्रकार:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,आपले देयक अयशस्वी झाले आहे.
+DocType: Event Producer,Producer URL,निर्माता URL
DocType: Comment,Unshared,सामायिक
DocType: Address,Karnataka,कर्नाटक
apps/frappe/frappe/desk/moduleview.py,Module Not Found,विभाग सापडले नाही
@@ -2595,6 +2622,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,नेमणूक पूर्ण
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},मोठ्या प्रमाणात संपादित करा {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,अहवाल डाउनलोड करा
+apps/frappe/frappe/model/workflow.py,Workflow Status,कार्यप्रवाह स्थिती
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,सक्रिय नाही
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,केवळ प्रशासकास डॅशबोर्ड चार्ट स्त्रोत तयार करण्याची परवानगी आहे
DocType: About Us Settings,Settings for the About Us Page,आमच्या विषयी पृष्ठ सेटिंग्ज
@@ -2653,6 +2681,7 @@ DocType: User Social Login,User Social Login,वापरकर्ता सा
DocType: Contact,All,सर्व
DocType: Email Queue,Recipient,प्राप्तकर्ता
DocType: Webhook,Webhook Security,वेबहुक सुरक्षा
+DocType: Event Sync Log,Producer Document Name,उत्पादक दस्तऐवज नाव
DocType: Communication,Has Attachment,संलग्नक आहे
DocType: Address,Sales User,विक्री सदस्य
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ड्रॅग आणि ड्रॉप साधन तयार करा आणि विविध प्रिंट सानुकूल करा .
@@ -2687,6 +2716,7 @@ DocType: Address,Arunachal Pradesh,अरुणाचल प्रदेश
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,चाइल्ड टेबल्स इतर डॉकटाइपमध्ये ग्रिड म्हणून दर्शविल्या जातात
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,सेटअप ऑटो ईमेल
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,आपण ज्या साइटची सदस्यता घेऊ इच्छित आहात त्या कार्यक्रमांचे सेवन करण्यासाठी.
DocType: Chat Profile,Message Preview,संदेश पूर्वावलोकन
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,हे टॉप 10 सामान्य पासवर्ड आहे.
DocType: User,User Defaults,सदस्य डीफॉल्ट
@@ -2719,6 +2749,7 @@ DocType: Dashboard Chart,Last Synced On,अंतिम संकालित
DocType: Comment,Comment Type,टिप्पणी प्रकार
DocType: OAuth Client,OAuth Client,OAuth क्लायंट
DocType: Assignment Rule,Users,वापरकर्ते
+DocType: Document Type Mapping,Local Document Type,स्थानिक दस्तऐवज प्रकार
DocType: Address,Odisha,ओडिशा
DocType: Report,Report Type,अहवाल प्रकार
DocType: DocField,Signature,स्वाक्षरी
@@ -2760,6 +2791,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} स्वतः ने हे काम नियुक्त केले: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,आपला देश
DocType: Assignment Rule Day,Sunday,रविवारी
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","ग्राहक ज्यांच्याकडे कागदपत्र आहेत त्यांच्यासाठी इव्हेंट निर्माता साइटवरील सर्व अंतर्भूत माहिती, अद्यतने आणि हटवण्यांचा लॉग राखतो."
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,स्थायी
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,ग्रिड दृश्य मध्ये
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,अधिक क्रियाकलाप नाही
@@ -2904,7 +2936,6 @@ DocType: Web Page,Sidebar and Comments,साइडबार आणि टिप
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","आपण एक दस्तऐवजामध्ये सुधारणा करतो आणि नंतर तो रद्द करतो आणि जतन करतो , तेव्हा एक नवीन नंबर मिळेल जो जुना नंबरची एक आवृत्ती आहे."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} दस्तऐवज संलग्न करण्यास परवानगी नाही, कृपया मुद्रण सेटिंग्जमधील {0} साठी परवानगी मुद्रित करा सक्षम करा"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते सेटअप केलेले नाही. कृपया सेटअप> ईमेल> ईमेल खाते वरून नवीन ईमेल खाते तयार करा
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} वर दस्तऐवज पहा
DocType: Stripe Settings,Publishable Key,Publishable की
DocType: Stripe Settings,Publishable Key,Publishable की
@@ -2983,7 +3014,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,माहिती
DocType: Custom Field,Permission Level,परवानगी स्तर
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: सबमिट करा, रद्द करा, न लिहिता दुरुस्ती केल्याशिवाय सेट करू शकत नाही"
DocType: List View Setting,Disable Count,गणना अक्षम करा
-DocType: Google Maps Settings,Client Key,क्लायंट की
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,तुम्ही संलग्नक हटवू इच्छिता आपल्याला खात्री आहे?
apps/frappe/frappe/__init__.py,Thank you,धन्यवाद
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,जतन करीत आहे
@@ -3107,6 +3137,7 @@ DocType: Workflow Document State,Only Allow Edit For,फक्त संपा
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google ड्राइव्ह वर बॅक अप घेत आहे.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},अनिवार्य फील्ड: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,आपले नाव
+DocType: Event Producer Document Type,Event Producer Document Type,कार्यक्रम निर्माता दस्तऐवज प्रकार
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,कनेक्शन यशस्वी
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,स्लाइड प्रकाराचा एक ऑनबोर्डिंग स्लाइड आधीपासून विद्यमान आहे.
@@ -3174,6 +3205,7 @@ DocType: Address,Postal Code,पिन कोड
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,पुन्हा दुवा कम्युनिकेशन
DocType: Translation,Contributed,योगदान दिले
apps/frappe/frappe/config/customization.py,Form Customization,फॉर्म सानुकूलन
+DocType: Event Update Log,Event Update Log,कार्यक्रम अद्यतन लॉग
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,सक्रिय सत्र नाहीत
DocType: Web Form,Route to Success Link,यशस्वी दुवा मार्ग
DocType: Onboarding Slide Field,Right,अधिकार
@@ -3200,7 +3232,7 @@ DocType: Website Settings,Chat Operators,ऑपरेटर गप्पा म
DocType: S3 Backup Settings,ca-central-1,सीए-मध्य -1
DocType: Contact Us Settings,Pincode,पिनकोड
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,फाइल मधे रिकामे स्तंभ नाहीत याची कृपया खात्री करा.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,एखाद्या दस्तऐवजाच्या एकाधिक टप्प्यातून गेल्यास त्याने आयुष्यावरील टप्पे शोधतो.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,एखाद्या दस्तऐवजाच्या एकाधिक टप्प्यातून गेल्यास त्याने आयुष्यावरील टप्पे शोधतो.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","फायलींचे नाव बदलले आणि नियंत्रकांमध्ये कोड पुनर्स्थित केले, कृपया तपासा!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,आपल्या प्रोफाइलला ई-मेल पत्ता आहे याची खात्री करा
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,आपण हा फॉर्म जतन न केलेले बदल आहेत. आपण सुरू ठेवण्यापूर्वी जतन करा.
@@ -3227,7 +3259,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API गुप्त जतन करा:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},रद्द दस्तऐवज दुवा करू शकत नाही: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,एक मानक अहवाल संपादित करू शकत नाही. नक्कल आणि एक नवीन अहवाल तयार करा
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","तो आपल्या कंपनीचा पत्ता आहे म्हणून कंपनी, अनिवार्य आहे"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","उदाहरणार्थ: जर आपण दस्तऐवज आयडी समाविष्ट करू इच्छित असल्यास, वापरा {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},{0}साठी टेबल स्तंभ निवडा
DocType: Custom Field,Options Help,पर्याय मदत
@@ -3235,7 +3266,6 @@ DocType: Footer Item,Group Label,गट लेबल
DocType: Kanban Board,Kanban Board,Kanban मंडळ
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google संपर्क कॉन्फिगर केले गेले आहेत.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 रेकॉर्ड निर्यात केली जाईल
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,वापरकर्त्याशी संबंधित कोणतेही ईमेल खाते नाही. कृपया वापरकर्ता> ईमेल इनबॉक्स अंतर्गत खाते जोडा.
DocType: DocField,Report Hide,अहवाल लपवा
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},वृक्ष दृश्य उपलब्ध नाही {0}
DocType: DocType,Restrict To Domain,डोमेन करण्यासाठी प्रतिबंधित
@@ -3300,7 +3330,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: फील्ड {1} प्रकार {2} अनिवार्य असू शकत नाही
DocType: System Settings,In Days,दिवसात
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,मिस
+DocType: Event Producer Document Type,Has Mapping,मॅपिंग आहे
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,कृपया निर्दिष्ट करा
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,अवैध फिल्टर मूल्य
DocType: Comment,Bot,बॉट
DocType: Help Article,Help Article,मदत लेख
DocType: Page,Page Name,पृष्ठ नाव
@@ -3405,7 +3437,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,मुद्रण स्वरूप
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ग्रिड दृश्य टॉगल करा
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,पुढील रेकॉर्डवर जा
-DocType: System Settings,Time Format,वेळ स्वरूप
+DocType: Country,Time Format,वेळ स्वरूप
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,अवैध पेमेंट गेटवे श्रेय
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ही काही फाईल असलेल्या केवळ ओळींमधून तयार केलेली टेम्पलेट फाइल आहे. आपण दुरुस्ती आणि आयात करण्यासाठी या फाईलचा वापर करावा.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,दस्तऐवज प्रकार आणि भूमिका सेट परवानगी
@@ -3723,6 +3755,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,युजरनेम वापरुन प्रवेश परवानगी द्या
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,अहवाल सक्षम
DocType: DocField,Display Depends On,रोजी प्रदर्शन अवलंबून
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} वर्षापूर्वी
DocType: Social Login Key,API Endpoint,API Endpoint
DocType: Web Page,Insert Code,घाला कोड
DocType: Data Migration Run,Current Mapping Type,वर्तमान मॅपिंग प्रकार
@@ -3775,6 +3808,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,आ
apps/frappe/frappe/www/login.html,Or login with,किंवा लॉगिन
DocType: Error Snapshot,Locals,लोकल
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},संप्रेषित द्वारे {0} वर {1}: {2}
+DocType: Event Producer,Event Producer Document Types,कार्यक्रम निर्माता दस्तऐवज प्रकार
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते वरून डीफॉल्ट ईमेल खाते सेट करा
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,याद्वारे गट निवडा ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,उदा (55 + 434) / 4 किंवा = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} आवश्यक आहे
@@ -3807,9 +3842,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,प्रारंभ वेळचा अहवाल द्या
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,डेटा निर्यात करा
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,संकालनाच्या स्थितीसह वापरलेल्या प्रत्येक कार्यक्रमाचा लॉग आणि संकालन अयशस्वी झाल्यास एक रीसिंक बटण ठेवते.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,स्तंभ निवडा
DocType: Translation,Source Text,स्रोत मजकूर
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,हा पार्श्वभूमी अहवाल आहे. कृपया योग्य फिल्टर सेट करा आणि नंतर नवीन तयार करा.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते सेटअप केलेले नाही. कृपया सेटअप> ईमेल> ईमेल खाते वरून नवीन ईमेल खाते तयार करा
apps/frappe/frappe/www/login.py,Missing parameters for login,लॉग इन साठी गहाळ मापदंड
DocType: Workflow State,folder-open,फोल्डर उघडा
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",एकदा सबमिट झाल्यानंतर सबमिट करण्यायोग्य कागदपत्रे बदलली जाऊ शकत नाहीत. ते केवळ रद्द आणि सुधारित केले जाऊ शकतात.
@@ -3857,6 +3894,7 @@ DocType: Social Login Key,User ID Property,वापरकर्ता आयड
DocType: Email Domain,domain name,डोमेनचे नाव
DocType: Contact Email,Contact Email,संपर्क ईमेल
DocType: Kanban Board Column,Order,ऑर्डर
+apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No results found for {0} in Global Search,ग्लोबल सर्चमध्ये {0} साठी कोणतेही परिणाम आढळले नाहीत
DocType: Report,Ref DocType,संदर्भ DocType
apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,कृपया सामाजिक प्रवेश सक्षम करण्यापूर्वी क्लायंट ID प्रविष्ट करा
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: सेट करू शकत नाही न बदलणे रद्द करा
@@ -3885,6 +3923,7 @@ DocType: Event,Send an email reminder in the morning,सकाळी एक ई
DocType: Blog Post,Published On,रोजी प्रकाशित
DocType: Contact,Gender,लिंग
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,अनिवार्य माहिती गहाळ:
+DocType: Event Consumer,Event Subscriber,कार्यक्रम सदस्य
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,चेक विनंती URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,फक्त 200 दाखल एक विनंती परवानगी
DocType: Footer Item,URL,URL
@@ -3897,6 +3936,7 @@ DocType: Auto Email Report,Half Yearly,सहामाही
DocType: Communication,Marked As Spam,स्पॅम म्हणून चिन्हांकित
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},फाइल URL सह काही समस्या आहे: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,झाड
+DocType: Event Producer Document Type,Use Same Name,समान नाव वापरा
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,आपल्याला हा अहवाल प्रिंट करण्यास परवानगी नाही
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,वापरकर्ता परवानग्या
DocType: Workflow State,warning-sign,चेतावणी-चिन्ह
@@ -3906,6 +3946,7 @@ DocType: Workflow State,User,सदस्य
DocType: Website Settings,"Show title in browser window as ""Prefix - title""","""पूर्वपद - शीर्षक"" म्हणून शीर्षक ब्राउझर विंडोमध्ये दर्शवा"
DocType: Payment Gateway,Gateway Settings,गेटवे सेटिंग्ज
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,दस्तऐवज प्रकार मजकूर
+DocType: Event Sync Log,Event Sync Log,कार्यक्रम संकालन लॉग
apps/frappe/frappe/handler.py,Logged Out,लॉग आउट
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,अधिक ...
DocType: System Settings,User can login using Email id or Mobile number,वापरकर्ता ईमेल ID किंवा मोबाईल नंबर वापरून लॉग इन करू शकता
@@ -3946,12 +3987,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,नाही
DocType: Workflow State,star,स्टार
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,हब
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,जर हे तपासले गेले तर इव्हेंट निर्मात्याच्या साइटवर कागदपत्रांप्रमाणेच त्यांचे नाव असेल
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,मूल्ये स्वल्पविरामाने विभक्त केलेले
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},सलग {0} मधे चलन प्रकारा साठी मॅक्स रूंदी 100px आहे
apps/frappe/frappe/config/website.py,Content web page.,सामग्री वेब पृष्ठ.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,एक नवीन भूमिका जोडा
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,वेब पृष्ठास भेट द्या
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,नवीन असाइनमेंट
+DocType: Event Consumer Document Type,Approved,मंजूर
DocType: Google Contacts,Last Sync On,अंतिम सिंक चालू
DocType: Deleted Document,Deleted Document,हटविले दस्तऐवज
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,अरेरे! काहीतरी चूक झाली
@@ -4004,7 +4047,6 @@ DocType: DocField,Unique,युनिक
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{1} वर {0} कौतुक
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,आंशिक यश
DocType: Email Account,Service,सेवा
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> वापरकर्ता
DocType: File,File Name,फाइल नाव
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),{0} शोधू शकत नाही {0} ({1}) साठी
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4016,11 +4058,10 @@ DocType: Calendar View,Calendar View,कॅलेंडर दृश्य
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,स्वरूप संपादित करा
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,नोंदणी पूर्ण
DocType: GCalendar Settings,Enable,सक्षम
-DocType: Google Maps Settings,Home Address,घरचा पत्ता
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),आपण केवळ एक जाता जाता 5000 पर्यंत रेकॉर्ड अपलोड करू शकता. (काही बाबतीत कमी असू शकते)
DocType: Report,"output in the form of `data = [columns, result]`","आउटपुट `डेटा = [स्तंभ, परिणाम] of च्या स्वरूपात"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,लागू कागदपत्र प्रकार
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,वापरकर्ता असाइनमेंटसाठी नियम सेट करा.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,वापरकर्ता असाइनमेंटसाठी नियम सेट करा.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},अपुरी परवानगी {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},अपुरी परवानगी {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),अहवाल जतन केला गेला नाही (त्रुटी होत्या)
diff --git a/frappe/translations/ms.csv b/frappe/translations/ms.csv
index c45712d3f4..f91380aa53 100644
--- a/frappe/translations/ms.csv
+++ b/frappe/translations/ms.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Update peranan Kebenaran pengguna untuk pengguna
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Nama semula {0}
DocType: Workflow State,zoom-out,zum keluar
-DocType: Data Import Beta,Import Options,Pilihan Import
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Tidak dapat membuka {0} apabila contoh yang dibuka
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Jadual {0} tidak boleh kosong
DocType: SMS Parameter,Parameter,Parameter
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Bata
DocType: DocType,Is Published Field,Adalah Published Field
DocType: GCalendar Settings,GCalendar Settings,Tetapan GCalendar
DocType: Email Group,Email Group,e-mel Group
-apps/frappe/frappe/__init__.py,Only for {},Hanya untuk {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalendar Google - Tidak dapat memadamkan Acara {0} dari Google Calendar, kod ralat {1}."
DocType: Event,Pulled from Google Calendar,Ditarik dari Kalendar Google
DocType: Note,Seen By,Dilihat oleh
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,menambah Pelbagai
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Bukan Imej Pengguna yang sah.
DocType: Energy Point Log,Reverted,Dibalikkan
DocType: Success Action,First Success Message,Mesej Sukses Pertama
+DocType: Document Type Mapping,Document Type Mapping,Pemetaan Jenis Dokumen
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Bukan seperti
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nilai yang tidak betul: {0} mesti {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Sifat perubahan lapangan (sembunyi, baca sahaja, kebenaran dan lain-lain)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Tapak yang memakan acara anda.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Menghargai
DocType: Notification Settings,Document Share,Kongsi Dokumen
DocType: Workflow State,lock,mengunci
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Log
DocType: Workflow State,indent-right,inden kanan
DocType: Has Role,Has Role,mempunyai Peranan
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Masa dalam beberapa saat untuk mengekalkan imej kod QR pada pelayan. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} untuk {2} tidak boleh diindeks
DocType: Dashboard Chart,Timespan,Jangka masa
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Pautan Web
DocType: Deleted Document,Restored,dipulihkan
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Kesalahan menyambung ke Aplikasi QZ Tray ...
Anda perlu memasang dan menjalankan aplikasi QZ Tray, untuk menggunakan ciri Cetak Raw.
Klik di sini untuk Muat turun dan pasang QZ Tray .
Klik di sini untuk mengetahui lebih lanjut mengenai Percetakan Raw ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minit yang lalu
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Selain daripada Pengurus Sistem, peranan dengan Set pengguna Kebenaran betul boleh menetapkan kebenaran untuk pengguna lain untuk itu Jenis Dokumen."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigurasikan Tema
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,GHAIB
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager
DocType: Website Settings,"HTML Header, Robots and Redirects","Header HTML, Robot dan Redirect"
DocType: GCalendar Account,Refresh Token,Refresh Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Gagal menyambung ke tapak Pengeluar Acara. Cuba semula selepas beberapa ketika.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Tiada pekerjaan belum selesai atau semasa untuk laman web ini
DocType: Webhook,Doc Event,Acara Dokumen
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Pengurus Skrip
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Tiada aktiviti
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps Pihak Ketiga
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Pengguna yang pertama akan menjadi Pengurus Sistem (anda boleh menukarnya kemudian).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Anda boleh cuba mengubah penapis laporan anda.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Tiada Peristiwa Hari Ini
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Anda tidak boleh memberikan ulasan kajian kepada diri sendiri
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType mestilah diserahkan untuk Acara Dok Dokumen yang dipilih
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Anda tidak dibenarkan untuk menghantar e-mel yang berkaitan dengan dokumen ini
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Sila pilih atleast 1 lajur dari {0} untuk menyusun / kumpulan
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Tidak dibenarkan untuk {0}: {1}. Medan terhad: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Syarikat tidak Berkaitan
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Semak ini jika anda sedang menguji pembayaran menggunakan API Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Anda tidak dibenarkan untuk memadam Laman Web Tema standard
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Buat pertama anda {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Mengemas
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Slaid Onboarding {0} dengan susunan slaid yang sama sudah wujud
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Laporan Disable
DocType: Translation,Contributed Translation Doctype Name,Terjemahan Terjemahan Doktor
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Persediaan> Peribadikan Borang
DocType: PayPal Settings,Redirect To,redirect To
DocType: Data Migration Mapping,Pull,Tarik
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Tidak dibenarkan
DocType: DocShare,Internal record of document shares,Rekod dalaman saham dokumen
DocType: Energy Point Settings,Review Levels,Tahap Semakan
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Persediaan> Kebenaran Pengguna
DocType: Workflow State,Comment,Ulasan
DocType: Data Migration Plan,Postprocess Method,Kaedah Postprocess
DocType: DocType Action,Action Type,Jenis Tindakan
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Pap
DocType: Workflow State,remove-circle,menghilangkan bulatan
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profil saya
DocType: Help Article,Beginner,Permulaan
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Tindakan ini hanya dibenarkan untuk {}
DocType: Contact,Is Primary Contact,Adalah Hubungi Rendah
+DocType: Event Consumer,Event Consumer,Pengguna Acara
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript untuk melampirkan pada bahagian kepala halaman.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Tambah / Kemas kini
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Tidak dibenarkan mencetak draf dokumen
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Tetapkan semula kepada lalai
DocType: Workflow,Transition Rules,Peraturan Peralihan
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Menunjukkan hanya {0} baris pertama dalam pratonton
apps/frappe/frappe/core/doctype/report/report.js,Example:,Contoh:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Sekatan
DocType: Workflow,Defines workflow states and rules for a document.,Mentakrifkan negeri aliran kerja dan kaedah-kaedah bagi dokumen.
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Ulang Hingga
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Baru
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Anda perlu membuatnya terlebih dahulu:
-DocType: Google Maps Settings,Google Maps Settings,Tetapan Peta Google
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ...
DocType: DocField,Password,Kata laluan
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Sistem anda sedang dikemaskini. Sila muat semula sekali lagi selepas beberapa ketika
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,Slide Onboarding
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Kata laluan tidak sah:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Kata laluan tidak sah:
DocType: Print Settings,Send document web view link in email,Menghantar dokumen lihat web link dalam e-mel
+DocType: Event Consumer Document Type,Event Consumer Document Type,Jenis Dokumen Pengguna Acara
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Sebelumnya
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Memerlukan Sijil Dipercayai
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,kelantangan kurang
DocType: Onboarding Slide,Help Links,Pautan Bantuan
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Akses tidak dibenarkan dari Alamat IP ini
DocType: Notification Settings,Enable Email Notifications,Dayakan Pemberitahuan E-mel
+DocType: Document Type Field Mapping,Event Streaming,Streaming Acara
apps/frappe/frappe/desk/reportview.py,No Tags,Tiada Tags
DocType: Email Account,Send Notification to,Hantar Pemberitahuan kepada
DocType: DocField,Collapsible,Lipat
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Tapi
apps/frappe/frappe/database/database.py,No conditions provided,Tiada syarat yang disediakan
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y Axis Fields
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,bidang jenis {0} mesti FIELDNAME yang sah
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Tiada Templat Alamat lalai yang ditemui. Sila buat yang baru dari Persediaan> Percetakan dan Penjenamaan> Template Alamat.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Lebih banyak
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Buat rekod baru
DocType: Contact,Sales Manager,Pengurus Jualan
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Nama semula
DocType: Print Format,Format Data,Format Data
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} bukan format laporan yang sah. Format laporan harus salah satu dari {1} berikut
DocType: List Filter,Filter Name,Nama Penapis
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Seperti
DocType: Assignment Rule,Automation,Automasi
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,Reset Password Key
DocType: Dashboard Chart,All Time,Setiap masa
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Status Dokumen Haram untuk {0}
DocType: Email Account,Enable Auto Reply,Membolehkan Auto Balas
+apps/frappe/frappe/desk/query_report.py,No data to export,Tiada data untuk dieksport
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Tidak Kelihatan
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Tidak boleh mempunyai beberapa pencetak dipetakan ke format cetakan tunggal.
DocType: Workflow State,zoom-in,zum masuk
@@ -841,6 +851,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Ubah Pengg
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pertama
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Terjemahan Terjemahan
DocType: Error Snapshot,Exception,Pengecualian
+DocType: Event Consumer,Event Consumer Document Types,Acara Jenis Dokumen Pengguna
DocType: Email Account,Use IMAP,Penggunaan IMAP
DocType: Activity Log,Activity Log,Log Aktiviti
DocType: View Log,Viewed By,Dilihat Oleh
@@ -880,6 +891,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ter
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurasikan Carta
DocType: User,Last IP,IP lalu
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Sila tambahkan subjek ke e-mel anda
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Kesalahan Transaksi
DocType: Data Migration Connector,Data Migration Connector,Penyambung Migrasi Data
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} dibalik {1}
DocType: Email Account,Track Email Status,Jejaki Status E-mel
@@ -911,6 +923,7 @@ DocType: Email Queue,Attachments,Lampiran
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Anda tidak mempunyai kebenaran untuk mengakses dokumen ini
DocType: Language,Language Name,Nama bahasa
DocType: Email Group Member,Email Group Member,Emel Kumpulan Ahli
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Tiada akaun e-mel yang berkaitan dengan Pengguna. Sila tambahkan akaun di bawah Pengguna> Peti Masuk E-mel.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Akaun anda telah dikunci dan akan disambung semula selepas {0} saat
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Kebenaran Pengguna digunakan untuk mengehadkan pengguna ke rekod tertentu.
DocType: Notification,Value Changed,Nilai Berubah
@@ -1003,6 +1016,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Sebut transaksi
DocType: Help Article,Expert,pakar
DocType: Workflow State,circle-arrow-right,bulatan-anak panah kanan
DocType: Role Profile,Role Profile,Profil Peranan
+DocType: Document Type Mapping,Remote Document Type,Jenis Dokumen Jauh
apps/frappe/frappe/permissions.py,Document Type is not importable,Jenis Dokumen tidak boleh diimport
DocType: LDAP Settings,LDAP Server Url,LDAP Server Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Tidak dapat membuka contoh apabila mereka {0} dibuka
@@ -1088,7 +1102,7 @@ DocType: Web Form,Allow Print,Benarkan Cetak
DocType: Communication,Clicked,Klik
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Tiada kebenaran untuk '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Sila persiapkan Akaun E-mel lalai dari Persediaan> E-mel> Akaun E-mel
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Memaparkan hanya baris pertama {0} daripada {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Dijadual menghantar
DocType: DocType,Track Seen,Track Seen
DocType: Dropbox Settings,File Backup,Backup Fail
@@ -1159,6 +1173,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,pil
DocType: Data Export,Filter List,Senarai Penapis
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Konfigurasi Acara
DocType: Email Account,Auto Reply Message,Auto Balas Mesej
DocType: Data Migration Mapping,Condition,Keadaan
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} hours ago
@@ -1218,9 +1233,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Sentiasa gun
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Log masuk untuk komen
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Mula memasukkan data di bawah garis ini
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},nilai-nilai berubah untuk {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ID E-mel mestilah unik, Akaun E-mel sudah wujud \ untuk {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Sebagai perbandingan, gunakan> 5, <10 atau = 324. Untuk julat, gunakan 5:10 (untuk nilai antara 5 & 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Peribadikan ...
DocType: Print Format,Align Labels to the Right,Align Label ke Kanan
DocType: Assignment Rule,Disabled,Orang kurang upaya
@@ -1269,8 +1283,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Pintasan papan kekunci
DocType: Post,Comments,Comments
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Mengesahkan
+DocType: Event Sync Log,Update Type,Jenis Kemas Kini
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Mengesahkan ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Tutup Semua
+DocType: Event Producer,Last Update,Kemaskini terakhir
apps/frappe/frappe/www/login.html,Forgot Password?,Lupa kata laluan?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1311,6 +1327,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Jadual Fie
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolum berdasarkan
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Mengimport {0} daripada {1}, {2}"
DocType: Workflow State,move,langkah
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Gagal mencipta Pengguna Acara atau Pengguna Acara untuk tapak web semasa telah didaftarkan.
apps/frappe/frappe/model/document.py,Action Failed,tindakan Gagal
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,untuk Pengguna
DocType: View Log,View log,Lihat log
@@ -1474,6 +1491,7 @@ DocType: DefaultValue,Key,Utama
DocType: Address,Contacts,Kenalan
DocType: System Settings,Setup Complete,Persediaan Lengkap
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Laporan semua saham dokumen
+DocType: Event Consumer,Callback URL,URL balik balik
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Templat import harus bersifat .csv, .xlsx atau .xls"
apps/frappe/frappe/www/update-password.html,New Password,Kata laluan baru
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Penapis {0} hilang
@@ -1541,7 +1559,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Kej
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; tidak dibenarkan dalam keadaan
DocType: Async Task,Async Task,Async Petugas
DocType: Workflow State,picture,gambar
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Lengkap
+DocType: Scheduled Job Log,Complete,Lengkap
DocType: DocType,Image Field,Field Image
DocType: Print Format,Custom HTML Help,Custom HTML Bantuan
DocType: LDAP Settings,Default Role on Creation,Peranan lalai pada Penciptaan
@@ -1567,6 +1585,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Bantuan di Cari
DocType: Milestone,Milestone Tracker,Penjejak Milestone
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Mendaftar tetapi kurang upaya
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Alamat perlu dikaitkan dengan Syarikat. Sila tambah satu baris untuk Syarikat dalam jadual Pautan di bawah.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Ulang Auto untuk dokumen ini telah dilumpuhkan.
DocType: DocType,Hide Copy,Menyembunyikan Salinan
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Kosongkan semua peranan
@@ -1605,6 +1624,7 @@ DocType: Bulk Update,Field,Field
DocType: Communication,Received,Diterima
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger mengenai kaedah sah seperti "before_insert", "after_update", dan lain-lain (bergantung kepada DOCTYPE yang dipilih)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},menukar nilai {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},Persediaan Akaun E-mel sila masukkan kata laluan anda untuk: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Menambah Sistem Pengurus kepada pengguna ini mesti ada atleast satu Sistem Pengurus
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,Jumlah Halaman
@@ -1612,7 +1632,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Lampirkan imej
DocType: Workflow State,list-alt,senarai-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Kata laluan Dikemaskini
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Persediaan> Kebenaran Pengguna
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Langkah-langkah untuk mengesahkan login anda
apps/frappe/frappe/utils/password.py,Password not found,Kata laluan tidak dijumpai
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1628,8 +1647,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Tetapan API Googl
DocType: Report,Query Report,Laporan Pertanyaan
DocType: User,Set New Password,Tetapkan Kata Laluan Baru
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Tidak dibenarkan untuk {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S tidak format laporan yang sah. Laporan format perlu \ salah satu daripada% s berikut
DocType: Chat Message,Chat,Chat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Tiada dokumen dijumpai ditandakan dengan {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Pemetaan Kumpulan LDAP
@@ -1665,7 +1682,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Masukkan
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Akses Rahsia
DocType: Tag Link,Document Title,Tajuk dokumen
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Wajib)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu
DocType: Social Login Key,Social Login Provider,Penyedia Log Masuk Sosial
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Tambahkan lagi komen
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Tiada data yang terdapat dalam fail tersebut. Sila masukkan semula fail baru dengan data.
@@ -1713,6 +1729,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Sasaran
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 tahun
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Padamkan terus {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Fail yang sama telah dilampirkan pada rekod
+DocType: Event Sync Log,Synced,Disegerakkan
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} bukanlah State Workflow yang sah. Sila kemas kini Alur Kerja anda dan cuba lagi.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,memberi {0} mata
DocType: Workflow State,wrench,kunci
@@ -1815,6 +1832,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,M
DocType: Web Form Field,Max Length,Max Panjang
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,peta-penanda
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Konfigurasi pemetaan antara dua doktrin.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Hantar Isu
DocType: Event,Repeat this Event,Ulangi Peristiwa ini
DocType: Address,Maintenance User,Penyelenggaraan pengguna
@@ -1874,6 +1892,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test Alamat E-mel
DocType: Auto Repeat,Reference Document Type,Rujukan Jenis Dokumen
DocType: ToDo,Sender,Penghantar
+DocType: Event Consumer,Incoming Change,Perubahan masuk
DocType: Google Drive,Backup Folder Name,Nama Folder Sandaran
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Ralat semasa menilai Pemberitahuan {0}. Sila tukar templat anda.
DocType: GSuite Settings,Google Apps Script,Script Google Apps
@@ -1936,9 +1955,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nama For
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klik pada pautan di bawah untuk meluluskan permintaan
DocType: Workflow State,align-left,menyelaraskan kiri
DocType: Onboarding Slide,Action Settings,Tetapan Tindakan
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Persediaan> Pengguna
DocType: User,Defaults,Lalai
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Sebagai perbandingan, gunakan> 5, <10 atau = 324. Untuk julat, gunakan 5:10 (untuk nilai antara 5 & 10)."
DocType: Energy Point Log,Revert Of,Balik Semula
+DocType: Document Type Mapping,Field Mapping,Pemetaan Lapangan
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Bergabung dengan yang sedia ada
DocType: User,Birth Date,Tarikh Lahir
DocType: Communication Link,Link Title,link Title
@@ -1966,6 +1986,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Pautan Tag
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Integriti Rantaian
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Dalam Ujian
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 Matawang = [?] Pecahan Bagi, contohnya 1 USD = 100 Cent"
DocType: Data Import,Partially Successful,Sebahagian besar berjaya
@@ -1975,6 +1996,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP Group Mappings
DocType: Chat Message Attachment,Chat Message Attachment,Lampiran Mesej Sembang
DocType: LDAP Settings,Path to CA Certs File,Jalankan ke CA Certs File
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,Sekiranya dokumen tersebut mempunyai nama medan yang berlainan pada pemeriksa akhir Pengeluar dan Pengguna ini dan sediakan Pemetaan
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Benarkan Baca Pada Semua Pilihan Pautan
DocType: DocType,Database Engine,database Engine
@@ -2109,6 +2131,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Nota
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Laporan ralat
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Data Eksport dalam format CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Pemetaan Jenis Jenis Dokumen
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Menyediakan dokumen Carian Global.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplikasi pengesahan yang boleh anda gunakan adalah:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} sudah wujud. Pilih nama lain
@@ -2184,7 +2207,6 @@ DocType: Workflow State,Upload,Muat naik
DocType: User Permission,Advanced Control,Kawalan Lanjutan
DocType: System Settings,Date Format,Format tarikh
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Tidak Diterbitkan
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Tiada Templat Alamat lalai yang ditemui. Sila buat yang baru dari Persediaan> Percetakan dan Penjenamaan> Template Alamat.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Tindakan untuk aliran kerja (contohnya Meluluskan, Membatalkan)."
DocType: Data Import,Skip rows with errors,Langkau baris dengan ralat
DocType: Workflow State,flag,bendera
@@ -2248,6 +2270,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Mewakili negeri dibenarkan dalam satu dokumen dan peranan yang ditugaskan untuk mengubah negeri ini.
DocType: Data Migration Connector,Database Name,Nama Pangkalan Data
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Borang Muat semula
+DocType: Event Producer,Event Producer,Pengeluar Acara
DocType: DocField,Select,Pilih
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Lihat Log Penuh
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Ekspresi Python Mudah, Contoh: status == 'Terbuka' dan ketik == 'Bug'"
@@ -2349,6 +2372,7 @@ DocType: DocType,User Cannot Search,Pengguna tidak boleh Carian
DocType: Communication Link,Communication Link,Pautan Komunikasi
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Format Output sah
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Tidak boleh {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,A berulang {0} {1} telah dibuat untuk anda melalui Auto Ulang {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Guna kaedah ini jika pengguna adalah Pemilik
DocType: Global Search Settings,Global Search Settings,Tetapan Carian Global
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Akan menjadi ID log masuk anda
@@ -2366,12 +2390,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kod QR untuk P
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Tambah ke To Do
DocType: Footer Item,Company,Syarikat
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Purata {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Urusniaga yang berjaya
DocType: Scheduled Job Log,Scheduled,Berjadual
DocType: User,Logout from all devices while changing Password,Log keluar dari semua peranti semasa menukar Kata Laluan
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Sahkan Kata Laluan
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Terdapat ralat
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Masukkan ID Pelanggan dan Rahsia Pelanggan dalam Tetapan Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Tutup
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","ID E-mel mestilah unik, Akaun E-mel sudah wujud untuk {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Tidak boleh menukar docstatus 0-2
DocType: File,Attached To Field,Dilampirkan Ke Lapangan
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Update
@@ -2479,6 +2505,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Bulan
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Tambah Reference: {{ reference_doctype }} {{ reference_name }} rujukan dokumen untuk menghantar
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Hanya pengguna yang terlibat dalam dokumen yang disenaraikan
DocType: DocField,Fetch From,Ambil Dari
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Persediaan> Peribadikan Borang
apps/frappe/frappe/modules/utils.py,App not found,App tidak dijumpai
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Tidak boleh mencipta {0} terhadap dokumen kanak-kanak: {1}
DocType: Social Login Key,Social Login Key,Kunci Masuk Sosial
@@ -2490,7 +2517,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Dinding
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Rumah Sosial
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Masukkan Selepas tidak boleh ditetapkan sebagai {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Share {0} dengan
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-mel Persediaan akaun sila masukkan kata laluan anda untuk:
DocType: Workflow State,hand-up,tangan-up
DocType: Blog Settings,Writers Introduction,Penulis Pengenalan
DocType: Address,Phone,Telefon
@@ -2549,7 +2575,7 @@ DocType: Web Page,Insert Style,Masukkan Style
DocType: Prepared Report,Error Message,Mesej Ralat
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,nama Laporan Baru
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Sembunyikan hujung minggu
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Secara automatik menghasilkan dokumen berulang.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Secara automatik menghasilkan dokumen berulang.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Adalah
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-tanda
@@ -2557,7 +2583,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Nilai u
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Bagaimanakah mata wang ini diformat? Jika tidak ditetapkan, akan menggunakan default sistem"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Hantar {0} dokumen?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Anda perlu log masuk dan mempunyai Pengurus Sistem Peranan untuk dapat mengakses backup.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Kesalahan menyambung ke Aplikasi QZ Tray ...
Anda perlu memasang dan menjalankan aplikasi QZ Tray, untuk menggunakan ciri Cetak Raw.
Klik di sini untuk Muat turun dan pasang QZ Tray .
Klik di sini untuk mengetahui lebih lanjut mengenai Percetakan Raw ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Pemetaan Pencetak
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Sila simpan sebelum melampirkan.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Adakah anda ingin membatalkan semua dokumen yang dikaitkan?
@@ -2587,6 +2612,7 @@ DocType: Role Permission for Page and Report,Set Role For,Set Peranan Untuk
DocType: GCalendar Account,The name that will appear in Google Calendar,Nama yang akan muncul dalam Kalendar Google
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Bilik langsung dengan {0} sudah wujud.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Menyegarkan ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Sila semak nilai penapis yang ditetapkan untuk Carta Dashboard: {}
DocType: Event,Starts on,Bermula pada
DocType: System Settings,System Settings,Tetapan sistem
DocType: GCalendar Settings,Google API Credentials,Kredensial API Google
@@ -2612,6 +2638,7 @@ DocType: Workflow State,ok-sign,ok-tanda
apps/frappe/frappe/config/settings.py,Deleted Documents,Dokumen dipadam
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Format CSV adalah sensitif huruf
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon sudah wujud
+DocType: Event Consumer Document Type,Approval Status,Kelulusan Status
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Nyatakan di mana semua domain harus dipaparkan. Jika tiada yang dinyatakan, slaid dipaparkan dalam semua domain secara lalai."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Salinan
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Bidang {1} dalam baris {2} tidak dapat disembunyikan dan wajib tanpa lalai
@@ -2631,6 +2658,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,bantuan Artikel
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Jenis:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Bayaran anda telah gagal.
+DocType: Event Producer,Producer URL,URL pengeluar
DocType: Comment,Unshared,dinyahkongsi
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modul Not Found
@@ -2642,6 +2670,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,tugasan Bidang
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Edit Bulk {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Muat turun Laporan
+apps/frappe/frappe/model/workflow.py,Workflow Status,Status Aliran Kerja
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Tidak aktif
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Hanya Pentadbir dibenarkan membuat Sumber Carta Dashboard
DocType: About Us Settings,Settings for the About Us Page,Tetapan untuk Mengenai Kami Page
@@ -2651,6 +2680,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Cet
DocType: Notification Settings,Energy Points,Mata Tenaga
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Masa {0} mesti dalam bentuk: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,contohnya pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Gagal melampirkan dokumen berulang baru. Untuk mendayakan dokumen penyerahan dalam e-mel pemberitahuan berulang auto, dayakan {1} dalam Tetapan Cetak"
DocType: User,Generate Keys,Menjana Kunci
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ini akan mengalih keluar data anda secara kekal.
DocType: DocType,View Settings,Lihat Tetapan
@@ -2702,6 +2732,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Semua
DocType: Email Queue,Recipient,Penerima
DocType: Webhook,Webhook Security,Keselamatan Webhook
+DocType: Event Sync Log,Producer Document Name,Nama Dokumen Pengeluar
DocType: Communication,Has Attachment,mempunyai Lampiran
DocType: Address,Sales User,Jualan Pengguna
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag dan Drop alat untuk membina dan menyesuaikan Format Cetak.
@@ -2737,6 +2768,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Jadual Kanak-kanak ditunjukkan sebagai Grid dalam DocTypes lain
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Persediaan Auto Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Tapak yang anda ingin melanggan untuk acara yang dimakan.
DocType: Chat Profile,Message Preview,Preview Mesej
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Ini adalah top-10 kata laluan yang sama.
DocType: User,User Defaults,Lalai pengguna
@@ -2769,6 +2801,7 @@ DocType: Dashboard Chart,Last Synced On,Terkini Terkini
DocType: Comment,Comment Type,Komen Jenis
DocType: OAuth Client,OAuth Client,OAuth Pelanggan
DocType: Assignment Rule,Users,Pengguna
+DocType: Document Type Mapping,Local Document Type,Jenis Dokumen Tempatan
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Jenis Laporan
DocType: DocField,Signature,Tandatangan
@@ -2811,6 +2844,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} diri menugaskan tugas ini: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Negara awak
DocType: Assignment Rule Day,Sunday,Ahad
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Mengekalkan Log semua penyisipan, kemas kini dan penghapusan pada tapak Pengeluar Acara untuk dokumen yang mempunyai pengguna."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Nama lapangan tidak boleh menjadi salah satu daripada {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Kedudukan
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,In Grid View
@@ -2958,7 +2992,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar dan Komen
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Apabila anda Meminda dokumen selepas Batal dan menyimpannya, ia akan mendapat nombor baru iaitu versi nombor lama."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Tidak dibenarkan melampirkan {0} dokumen, sila aktifkan Sediakan Cetak Untuk {0} dalam Tetapan Cetak"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaun E-mel bukan persediaan. Sila buat Akaun E-mel baru dari Persediaan> E-mel> Akaun E-mel
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Lihat dokumen di {0}
DocType: Stripe Settings,Publishable Key,Key boleh diterbitkan
DocType: Stripe Settings,Publishable Key,Key boleh diterbitkan
@@ -3037,7 +3070,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Maklumat:
DocType: Custom Field,Permission Level,Tahap Kebenaran
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Tidak boleh menetapkan Hantar, Batal, Meminda tanpa Tulis"
DocType: List View Setting,Disable Count,Lumpuhkan Count
-DocType: Google Maps Settings,Client Key,Kunci Pelanggan
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Adakah anda pasti anda mahu memadam lampiran?
apps/frappe/frappe/__init__.py,Thank you,Terima kasih
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Menyimpan
@@ -3164,6 +3196,7 @@ DocType: Workflow Document State,Only Allow Edit For,Hanya Benarkan Edit Untuk
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Menyandarkan ke Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},medan mandatori: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Nama awak
+DocType: Event Producer Document Type,Event Producer Document Type,Jenis Dokumen Pengeluar Acara
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Kejayaan Sambungan
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Slaid Slide of Type Slide Teruskan sudah wujud.
@@ -3234,6 +3267,7 @@ DocType: Address,Postal Code,Poskod
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Komunikasi memautkan semula
DocType: Translation,Contributed,Sumbangan
apps/frappe/frappe/config/customization.py,Form Customization,Borang Penyesuaian
+DocType: Event Update Log,Event Update Log,Kemas Kini Peristiwa Log
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Tiada Sesi Aktif
DocType: Web Form,Route to Success Link,Laluan untuk Pautan Kejayaan
DocType: Onboarding Slide Field,Right,Hak
@@ -3260,7 +3294,7 @@ DocType: Website Settings,Chat Operators,Pengendali Sembang
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Sila pastikan bahawa tidak ada ruang kosong di dalam fail.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Jejaki tanda penting pada kitaran hayat dokumen jika ia mengalami pelbagai peringkat.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Jejaki tanda penting pada kitaran hayat dokumen jika ia mengalami pelbagai peringkat.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Telah dinamakan semula fail dan kod digantikan dalam pengawal, sila semak!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Sila pastikan profil anda mempunyai alamat e-mel
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Anda mempunyai perubahan yang tak disimpan dalam borang ini. Sila simpan sebelum anda meneruskan.
@@ -3287,7 +3321,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Simpan Rahsia API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Tidak boleh menghubungkan dokumen dibatalkan: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,tidak boleh mengedit laporan standard. Sila buat salinan dan membuat laporan baru
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Syarikat adalah wajib, kerana ia adalah alamat syarikat anda"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Sebagai contoh: Jika anda ingin memasukkan ID dokumen itu, gunakan {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Pilih Lajur Jadual untuk {0}
DocType: Custom Field,Options Help,Pilihan Bantuan
@@ -3295,7 +3328,6 @@ DocType: Footer Item,Group Label,Kumpulan Label
DocType: Kanban Board,Kanban Board,Lembaga Kanban
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kenalan Google telah dikonfigurasikan.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekod akan dieksport
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Tiada akaun e-mel yang berkaitan dengan Pengguna. Sila tambahkan akaun di bawah Pengguna> Peti Masuk E-mel.
DocType: DocField,Report Hide,Laporan Sembunyikan
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},pandangan Tree tidak tersedia untuk {0}
DocType: DocType,Restrict To Domain,Menyekat Untuk Domain
@@ -3361,7 +3393,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Medan {1} jenis {2} tidak boleh diwajibkan
DocType: System Settings,In Days,Dalam Hari
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Miss
+DocType: Event Producer Document Type,Has Mapping,Mempunyai Pemetaan
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Sila nyatakan
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Nilai Penapis Tidak Sah
DocType: Comment,Bot,bot
DocType: Help Article,Help Article,bantuan Perkara
DocType: Page,Page Name,Page Nama
@@ -3469,7 +3503,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Format cetak
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle View Grid
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pergi ke rekod seterusnya
-DocType: System Settings,Time Format,Format masa
+DocType: Country,Time Format,Format masa
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,kelayakan gerbang pembayaran tidak sah
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ini adalah fail templat yang dijana dengan hanya baris yang mempunyai ralat. Anda harus menggunakan fail ini untuk pembetulan dan import.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Kebenaran Set Pada Dokumen Jenis dan Peranan
@@ -3795,6 +3829,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Benarkan Log masuk menggunakan Nama Pengguna
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Membolehkan Laporan
DocType: DocField,Display Depends On,Paparan Bergantung Pada
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu
DocType: Social Login Key,API Endpoint,Titik Akhir API
DocType: Web Page,Insert Code,Masukkan Kod
DocType: Data Migration Run,Current Mapping Type,Jenis Pemetaan Semasa
@@ -3848,6 +3883,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Sah
apps/frappe/frappe/www/login.html,Or login with,Atau log masuk dengan
DocType: Error Snapshot,Locals,Penduduk tempatan
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Disampaikan melalui {0} pada {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Jenis Dokumen Pengeluar Acara
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Sila persiapkan Akaun E-mel lalai dari Persediaan> E-mel> Akaun E-mel
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Pilih Kumpulan Oleh ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,contohnya (55 + 434) / 4 = atau Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} diperlukan
@@ -3880,9 +3917,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,ID Sync GCalendar
DocType: Prepared Report,Report Start Time,Laporkan Masa Mula
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Data Eksport
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Mengekalkan log setiap peristiwa yang digunakan bersama status penyegerakan dan butang Resync sekiranya penyegerakan gagal.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Pilih Kolum
DocType: Translation,Source Text,Source Text
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Ini adalah laporan latar belakang. Sila tetapkan penapis yang sesuai dan kemudian buat yang baru.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaun E-mel bukan persediaan. Sila buat Akaun E-mel baru dari Persediaan> E-mel> Akaun E-mel
apps/frappe/frappe/www/login.py,Missing parameters for login,Parameter yang hilang untuk log masuk
DocType: Workflow State,folder-open,folder terbuka
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Sebaik sahaja dihantar, dokumen yang boleh diserahkan tidak boleh diubah. Mereka hanya boleh dibatalkan dan diubah."
@@ -3962,6 +4001,7 @@ DocType: Blog Post,Published On,Published On
DocType: Contact,Gender,Jantina
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Maklumat Mandatori hilang:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} mengembalikan mata anda pada {1}
+DocType: Event Consumer,Event Subscriber,Pelanggan Acara
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Semak Permintaan URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Hanya 200 memasukkan dibenarkan dalam satu permintaan
DocType: Footer Item,URL,URL
@@ -3974,6 +4014,7 @@ DocType: Auto Email Report,Half Yearly,Setengah Tahunan
DocType: Communication,Marked As Spam,Ditandakan sebagai spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Terdapat beberapa masalah dengan url fail: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Tree
+DocType: Event Producer Document Type,Use Same Name,Gunakan Nama Sama
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Anda tidak dibenarkan untuk mencetak laporan ini
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Kebenaran pengguna
DocType: Workflow State,warning-sign,amaran-tanda
@@ -3983,6 +4024,7 @@ DocType: Workflow State,User,Pengguna
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Show tajuk dalam tetingkap penyemak imbas sebagai "Awalan - tajuk"
DocType: Payment Gateway,Gateway Settings,Tetapan Gateway
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,teks dalam jenis dokumen
+DocType: Event Sync Log,Event Sync Log,Log Penyegerakan Acara
apps/frappe/frappe/handler.py,Logged Out,Logged Out
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,More ...
DocType: System Settings,User can login using Email id or Mobile number,Pengguna boleh login menggunakan id E-mel atau nombor Mobile
@@ -4023,12 +4065,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Tidak Dalam
DocType: Workflow State,star,bintang
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Sekiranya ini ditandai, dokumen akan mempunyai nama yang sama seperti yang terdapat pada tapak Pengeluar Acara"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,nilai-nilai yang dipisahkan oleh koma
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Lebar Max untuk jenis mata wang adalah 100px berturut-turut {0}
apps/frappe/frappe/config/website.py,Content web page.,Laman web kandungan.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Tambah Peranan Baru
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Lawati Halaman Web
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Tugasan Baru
+DocType: Event Consumer Document Type,Approved,Diluluskan
DocType: Google Contacts,Last Sync On,Penyegerakan Terakhir
DocType: Deleted Document,Deleted Document,Dokumen dipadam
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Sesuatu telah berlaku
@@ -4081,7 +4125,6 @@ DocType: DocField,Unique,Unik
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} dihargai pada {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Kejayaan Separi
DocType: Email Account,Service,Perkhidmatan
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Persediaan> Pengguna
DocType: File,File Name,Nama Fail
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Tidak jumpa {0} untuk {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4093,11 +4136,10 @@ DocType: Calendar View,Calendar View,Paparan Kalendar
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Edit Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Pendaftaran Selesai
DocType: GCalendar Settings,Enable,membolehkan
-DocType: Google Maps Settings,Home Address,Alamat rumah
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Anda hanya boleh memuat naik hamper 5000 rekod dalam satu pergi. (Mungkin kurang dalam beberapa kes)
DocType: Report,"output in the form of `data = [columns, result]`","output dalam bentuk `data = [lajur, hasil]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Jenis Dokumen yang Berkenaan
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Sediakan aturan untuk tugasan pengguna.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Sediakan aturan untuk tugasan pengguna.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Kebenaran tidak mencukupi untuk {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Kebenaran tidak mencukupi untuk {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Laporan tidak disimpan (terdapat kesilapan)
diff --git a/frappe/translations/my.csv b/frappe/translations/my.csv
index 88918f160a..c1935e3134 100644
--- a/frappe/translations/my.csv
+++ b/frappe/translations/my.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,အသုံးပြုသူတစ်ဘို့ဤအခန်းကဏ္ဍကို update ကိုအသုံးပြုသူခွင့်ပြုချက်
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},{0} Rename
DocType: Workflow State,zoom-out,zoom ကို-ထုတ်
-DocType: Data Import Beta,Import Options,သွင်းကုန် Options ကို
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,၎င်း၏ဥပမာအားဖြင့်ပွင့်လင်းသောအခါ {0} မဖွင့်နိုင်မလား
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,စားပွဲတင် {0} အချည်းနှီးမဖြစ်နိုင်
DocType: SMS Parameter,Parameter,parameter
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,ဖျော်ဖြေမှု Published ဖြစ်ပါတယ်
DocType: GCalendar Settings,GCalendar Settings,GCalendar Settings များ
DocType: Email Group,Email Group,အီးမေးလ်အုပ်စု
-apps/frappe/frappe/__init__.py,Only for {},{} အတွက်သာ
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google ကပြက္ခဒိန် - Google ကပြက္ခဒိန်, အမှားကုဒ် {1} ကနေပွဲ {0} ကိုဖျက်ပစ်လို့မရပါ။"
DocType: Event,Pulled from Google Calendar,Google ကပြက္ခဒိန်ထဲကနေဆွဲထုတ်
DocType: Note,Seen By,အားဖြင့်မြင်ကြ
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,အကွိမျ
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,မခိုင်လုံသောအသုံးပြုသူပုံရိပ်။
DocType: Energy Point Log,Reverted,မူလ
DocType: Success Action,First Success Message,ပထမဦးစွာအောင်မြင်မှုကို Message
+DocType: Document Type Mapping,Document Type Mapping,စာရွက်စာတမ်းအမျိုးအစားမြေပုံ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,မကြိုက်ဘူး
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},မမှန်ကန်တန်ဖိုးကို: {0} {1} {2} ဖြစ်ရမည်
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ပြောင်းလဲမှုကိုလယ်ဂုဏ်သတ္တိများ (ဝှက်, Readonly, ခွင့်ပြုချက်ဖြင့်)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,သင်၏အဖြစ်အပျက်များကိုလောင်ကျွမ်းနေသောဆိုက်။
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,လေးမွတျ
DocType: Notification Settings,Document Share,မှတ်တမ်းမျှဝေပါ
DocType: Workflow State,lock,သော့ခတ်
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,တုံး
DocType: Workflow State,indent-right,ကုန်အမှာစာညာ
DocType: Has Role,Has Role,အခန်းက္ပရှိပါတယ်
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,ပြန်လည်ပြုပြင်ခြင်း
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,ဆာဗာပေါ်တွင် QR ကုဒ်ကို image ကိုထိန်းသိမ်းထားဖို့စက္ကန့်အတွင်းအချိန်။ min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} {2} ရည်ညွှန်းမရနိုင်ဘို့
DocType: Dashboard Chart,Timespan,Timespan
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web ကို Link ကို
DocType: Deleted Document,Restored,ပွနျလညျထူထောငျ
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ Tray Application ချိတ်ဆက်မှုအမှား ...
Raw Print အင်္ဂါရပ်ကိုအသုံးပြုရန်သင် QZ Tray application ကို install လုပ်ပြီး run ရမည်။
QZ Tray ကိုဒေါင်းလုတ် လုပ်၍ တပ်ဆင်ရန်ဤနေရာကိုနှိပ်ပါ ။
ကုန်ကြမ်းပုံနှိပ်ခြင်းအကြောင်းပိုမိုလေ့လာသင်ယူရန်ဒီနေရာကိုနှိပ်ပါ ။"
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 မိနစ်အကြာက
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","အပြင်စနစ် Manager မှ, Set အသုံးပြုသူခွင့်ပြုချက်နှင့်အတူအခန်းကဏ္ဍမှန်ကြောင်း Document ဖိုင် Type သည်အခြားအသုံးပြုသူများသည်ခွင့်ပြုချက်သတ်မှတ်နိုင်သည်။"
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,အဓိကအကြောင်းအရာ configure
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,မမွငျရသော
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ဖိုင်မန်နေဂျာ
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML ကို Header ကို, စက်ရုပ်နှင့် redirection"
DocType: GCalendar Account,Refresh Token,Refresh တိုကင်
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Event Producer ဆိုဒ်နှင့် ချိတ်ဆက်၍ မရပါ။ အချိန်အကြာကြီးပြန်ကြိုးစားပါ
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,ဒီ site များအတွက်ဆိုင်းငံ့ထားသို့မဟုတ်လက်ရှိအလုပ်အကိုင်အခွင့်အဘယ်သူမျှမက
DocType: Webhook,Doc Event,doc Event
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Script Manager
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,လှုပ်ရှားမှုမရှိပါ
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,တတိယပါတီ Apps ကပ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ပထမဦးဆုံးအသုံးပြုသူဟာ System Manager က (သင်နောက်ပိုင်းမှာဒီပြောင်းလဲနိုင်သည်) ဖြစ်လာပါလိမ့်မယ်။
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,သင်သည်သင်၏အစီရင်ခံစာ၏ filter များကိုပြောင်းလဲရန်ကြိုးစားနိုင်သည်။
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ယနေ့အဖြစ်အပျက်များမရှိပါ
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,သင်ကိုယ်တိုင်မှပြန်လည်သုံးသပ်အချက်များကိုမပေးနိုငျပါ
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DOCTYPE ရွေးချယ်ထား Doc Event များအတွက်တင်ပြသူဖြစ်ရပါမည်
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,သင်သည်ဤစာရွက်စာတမ်းနှင့်ဆက်စပ်သောအီးမေးလ်များကိုပေးပို့ဖို့ခွင့်ပြုမထား
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,/ အုပ်စုတစ်စုစီမှ {0} ကနေ atleast 1 ကော်လံကို select ပေးပါ
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} အဘို့အခွင့်မပြုထား: {1} ။ ကန့်သတ်သောလယ်: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,ကုမ္ပဏီဆက်စပ်မှုမရှိပါ
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ဒီ Check သင် Sandbox API ကိုအသုံးပြုပြီးသင့်ငွေပေးချေမှုစမ်းသပ်ခံရလျှင်
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,သင်ကစံဝက်ဘ်ဆိုက် Theme ကိုပယ်ဖျက်ဖို့ခွင့်ပြုမထား
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},သင်၏ပထမဆုံး {0} ကိုဖန်တီးပါ။
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},အသ
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,တူညီသောဆလိုက်အမိန့်နှင့်အတူ Onboarding ဆလိုက် {0} ရှိပြီးသား
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disable လုပ်ထားအစီရင်ခံစာ
DocType: Translation,Contributed Translation Doctype Name,ဘာသာပြန်ခြင်း DOCTYPE အမည်လှူဒါန်းခဲ့
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Customize Form ကို
DocType: PayPal Settings,Redirect To,ရန် redirect
DocType: Data Migration Mapping,Pull,ဆွဲပါ
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript ကိုစီစဉ်ဖွဲ့စည်းမှုပုံစံ: frappe.query_reports ['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,ခွင့်မပြု
DocType: DocShare,Internal record of document shares,စာရွက်စာတမ်းရှယ်ယာ internal စံချိန်တင်
DocType: Energy Point Settings,Review Levels,ဆန်းစစ်ခြင်း Levels
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,setup ကို> အသုံးပြုသူခွင့်ပြုချက်
DocType: Workflow State,Comment,မှတ်ချက်
DocType: Data Migration Plan,Postprocess Method,Postprocess Method ကို
DocType: DocType Action,Action Type,လှုပ်ရှားမှုအမျိုးအစား
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Sho
DocType: Workflow State,remove-circle,ဖယ်ရှားရန်-စက်ဝိုင်း
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,အကြှနျုပျ၏ကိုယ်ရေးဖိုင်
DocType: Help Article,Beginner,အစပြုသူ
+apps/frappe/frappe/__init__.py,This action is only allowed for {},ဤလုပ်ဆောင်မှုကို {} အတွက်သာခွင့်ပြုသည်
DocType: Contact,Is Primary Contact,မူလတန်းဆက်သွယ်ရန်ဖြစ်ပါသည်
+DocType: Event Consumer,Event Consumer,ပွဲကျင်းပသူ
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,ထိုစာမျက်နှာ၏ဦးခေါင်းကိုအပိုင်း append မှ Javascript ကို။
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Update ကို Add /
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,မူကြမ်းစာရွက်စာတမ်းများပုံနှိပ်ခွင့်မ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,default အတိုင်း Reset
DocType: Workflow,Transition Rules,အကူးအပြောင်းနည်းဥပဒေများ
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,preview ကိုသာပထမဦးဆုံး {0} တန်းစီဖေါ်ပြခြင်း
apps/frappe/frappe/core/doctype/report/report.js,Example:,ဥပမာ:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ကန့်သတ်ချက်များ
DocType: Workflow,Defines workflow states and rules for a document.,တစ်ဦးစာရွက်စာတမ်းတွေအတွက်လုပ်ငန်းအသွားအလာပြည်နယ်နှင့်စည်းမျဉ်းစည်းကမ်းသတ်မှတ်ပါတယ်။
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Repeat မှီတိုငျအောငျ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,နယူး
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,သင်တို့သည်ဤပထမဦးဆုံးဖန်တီးရန်လိုအပ်:
-DocType: Google Maps Settings,Google Maps Settings,Google Maps ကိုချိန်ညှိမှုများ
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ...
DocType: DocField,Password,Password ကို
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,သင်၏ system updated လျက်ရှိသည်။ အနည်းငယ်အချိန်လေးပြီးနောက်နောက်တဖန် refresh ကျေးဇူးပြု.
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,onboarding လျှော
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,မှားနေသောစကားဝှက်:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,မှားနေသောစကားဝှက်:
DocType: Print Settings,Send document web view link in email,အီးမေးလ်ထဲတွင်စာရွက်စာတမ်းကို web အမြင် link ကို Send
+DocType: Event Consumer Document Type,Event Consumer Document Type,ပွဲစဉ်စားသုံးသူစာရွက်စာတမ်းအမျိုးအစား
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,လွန်ခဲ့သော
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,အသိမှတ်ပြုလက်မှတ်လိုအပ်
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,volume အ-Down
DocType: Onboarding Slide,Help Links,အကူအညီလင့်များ
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Access ကိုဤ IP Address ကိုထံမှခွင့်မပြု
DocType: Notification Settings,Enable Email Notifications,အီးမေးလ်သတိပေးချက်များကိုဖွင့်
+DocType: Document Type Field Mapping,Event Streaming,အစီအစဉ် Streaming
apps/frappe/frappe/desk/reportview.py,No Tags,အဘယ်သူမျှမ Tags:
DocType: Email Account,Send Notification to,မှအမိန့်ကြော်ငြာစာ Send
DocType: DocField,Collapsible,ခေါက်
@@ -666,6 +673,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,filt
apps/frappe/frappe/database/database.py,No conditions provided,ထောက်ပံ့ခြင်းမရှိပါအခြေအနေများ
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y ကဝင်ရိုးတန်း Fields
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,စီလယ်ကွင်း {0} ခိုင်လုံသော fieldname ဖြစ်ရမည်
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ပုံမှန်လိပ်စာ template ကိုမတွေ့ပါ။ Setup> ပုံနှိပ်ခြင်းနှင့်ကုန်အမှတ်တံဆိပ်> လိပ်စာပုံစံမှအသစ်တစ်ခုဖန်တီးပါ။
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,နောက်ထပ်
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,မှတ်တမ်းအသစ်တစ်ခုကိုဖန်တီး
DocType: Contact,Sales Manager,အရောင်းမန်နေဂျာ
@@ -689,6 +697,7 @@ DocType: User,Reset Password Key,Password ကို Reset Key ကို
DocType: Dashboard Chart,All Time,အချိန်အားလုံး
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} များအတွက်တရားမဝင်စာရွက်စာတမ်းအခြေအနေ
DocType: Email Account,Enable Auto Reply,မော်တော်ကားစာပြန်ရန် Enable
+apps/frappe/frappe/desk/query_report.py,No data to export,တင်ပို့ဖို့ဒေတာကိုအဘယ်သူမျှမ
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,မမွငျရ
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,တစ်ခုတည်းပုံနှိပ်ပုံစံတစ်ခုသို့ဆက်စပ်မျိုးစုံပရင်တာရှိသည်မဟုတ်နိုင်ပါ။
DocType: Workflow State,zoom-in,zoom ကို-in ပါ
@@ -841,6 +850,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,ပြေ
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ပထမ
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Update ကိုဘာသာပြန်ချက်များ
DocType: Error Snapshot,Exception,ချွင်းချက်
+DocType: Event Consumer,Event Consumer Document Types,ပွဲစဉ်စားသုံးသူစာရွက်စာတမ်းအမျိုးအစားများ
DocType: Email Account,Use IMAP,IMAP ထဲကကိုအသုံးပြုပါ
DocType: Activity Log,Activity Log,လုပ်ဆောင်ချက်အထဲ
DocType: View Log,Viewed By,အားဖြင့် Viewed
@@ -880,6 +890,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,အ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ဇယားကို configure
DocType: User,Last IP,နောက်ဆုံး IP ကို
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,သင့်အီးမေးလ်တစ်ခုဘာသာရပ် add ပေးပါ
+apps/frappe/frappe/model/workflow.py,Errored Transactions,အရောင်းအ ၀ ယ်များ
DocType: Data Migration Connector,Data Migration Connector,ဒေတာကိုရွှေ့ပြောင်း Connector
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} {1} သို့ပြောင်း
DocType: Email Account,Track Email Status,track အီးမေးလ်အခြေအနေ
@@ -911,6 +922,7 @@ DocType: Email Queue,Attachments,attachments
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,သင်သည်ဤစာရွက်စာတမ်းဝင်ရောက်ကြည့်ရှုဖို့ခွင့်ပြုချက်မရကြ
DocType: Language,Language Name,ဘာသာစကားအမည်
DocType: Email Group Member,Email Group Member,အီးမေးလ် Group မှအဖွဲ့ဝင်
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,အသုံးပြုသူနှင့်ဆက်စပ်သောအီးမေးလ်အကောင့်မရှိပါ။ ကျေးဇူးပြု၍ User> Email Inbox အောက်တွင်အကောင့်တစ်ခုထည့်ပါ။
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,သင့်အကောင့်သော့ခတ်ခဲ့ပြီး {0} စက္ကန့်အကြာတွင်ပြန်လည်စတင်ပါလိမ့်မယ်
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,အသုံးပြုသူခွင့်ပြုချက်များသတ်သတ်မှတ်မှတ်မှတ်တမ်းများမှအသုံးပြုသူများကိုကန့်သတ်ထားရန်အသုံးပြုကြသည်။
DocType: Notification,Value Changed,Value တစ်ခု Changed
@@ -1003,6 +1015,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,ငွေပေ
DocType: Help Article,Expert,ကျွမ်းကျင်သူ
DocType: Workflow State,circle-arrow-right,စက်ဝိုင်း-မြှားညာ
DocType: Role Profile,Role Profile,အခန်းက္ပကိုယ်ရေးဖိုင်
+DocType: Document Type Mapping,Remote Document Type,အဝေးမှစာရွက်စာတမ်းအမျိုးအစား
apps/frappe/frappe/permissions.py,Document Type is not importable,စာရွက်စာတမ်းအမျိုးအစား Import မဟုတ်ပါဘူး
DocType: LDAP Settings,LDAP Server Url,LDAP ဆာဗာ Url ကို
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,၎င်း၏ {0} ဖွင့်လှစ်သောအခါပွင့်လင်းဥပမာအားဖြင့်မနိုင်
@@ -1088,7 +1101,7 @@ DocType: Web Form,Allow Print,ပုံနှိပ်ပါ Allow
DocType: Communication,Clicked,နှိပ်လိုက်
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,လိုက်အောင်
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},မှ '' {0} {1} မရှိပါခွင့်ပြုချက်
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ကျေးဇူးပြု၍ Setup> Email> Email Account မှမူလအီးမေးလ်ကိုသတ်မှတ်ပါ
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},{1} ထဲကပထမဆုံး {0} တန်းကိုသာပြသသည်။
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,ပေးပို့ဖို့စီစဉ်ထား
DocType: DocType,Track Seen,Track မွငျ
DocType: Dropbox Settings,File Backup,file ကို Backup ကို
@@ -1159,6 +1172,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,တ
DocType: Data Export,Filter List,filter များစာရင်း
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,နာရီ - မီလီမီတာ
+DocType: Event Sync Log,Event Configurations,အဖြစ်အပျက် Configurations
DocType: Email Account,Auto Reply Message,မော်တော်ကားစာပြန်ရန် Message
DocType: Data Migration Mapping,Condition,condition
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} နာရီအကြာက
@@ -1218,9 +1232,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,ပေးပ
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,မှတ်ချက်ပေးရန် Login
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,ဒီမျဉ်းအောက်တွင်ဒေတာတွေကိုဝင်ရောက် Start
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},{0} များအတွက်တန်ဖိုးများပြောင်းလဲသွား
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","အီးမေးလ် ID ကိုထူးခြားတဲ့သူဖြစ်ရမည်, အီးမေးလ်အကောင့်ပြီးသား {0} များအတွက် \ တည်ရှိ"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","နှိုင်းယှဉ်မှုအဘို့,> 5, <10 or = 324 ကိုအသုံးပြုပါ။ အကွာအဝေးအဘို့, 5:10 (5 & 10 အကြားတန်ဖိုးများအတွက်) ကိုသုံးပါ။"
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Customize ...
DocType: Print Format,Align Labels to the Right,မှန်ကန်စွာရွေးချယ်ရန် Labels: align
DocType: Assignment Rule,Disabled,ချို့ငဲသော
@@ -1269,8 +1282,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,keyboard Shortcuts
DocType: Post,Comments,comments
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,အတည်ပြု
+DocType: Event Sync Log,Update Type,Update ကိုအမျိုးအစား
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Authenticating ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,အားလုံးပြိုကျ
+DocType: Event Producer,Last Update,နောက်ဆုံးအပ်ဒိတ်
apps/frappe/frappe/www/login.html,Forgot Password?,စကားဝှက်ကိုမေ့နေပါသလား?
DocType: System Settings,yyyy-mm-dd,yyyy မီလီမီတာ-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID ကို
@@ -1311,6 +1326,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,စား
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,အပေါ်အခြေခံပြီးကော်လံ
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","တင်သွင်းခြင်း {0} {1} ၏, {2}"
DocType: Workflow State,move,လှုပ်ရှား
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,လက်ရှိ ၀ က်ဘ်ဆိုဒ်အတွက် Event စားသုံးသူ (သို့) Event Consumer တစ်ခုဖန်တီးရန်မအောင်မြင်ပါ။
apps/frappe/frappe/model/document.py,Action Failed,လှုပ်ရှားမှုမအောင်မြင်ခဲ့ပါ
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,အသုံးပြုသူများအတွက်
DocType: View Log,View log,ကြည့်ရန်မှတ်တမ်း
@@ -1474,6 +1490,7 @@ DocType: DefaultValue,Key,သော့
DocType: Address,Contacts,ဆက်သွယ်ရန်
DocType: System Settings,Setup Complete,Setup ကို Complete
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,အားလုံးစာရွက်စာတမ်းရှယ်ယာအစီရင်ခံစာ
+DocType: Event Consumer,Callback URL,Callback URL ကို
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","သွင်းကုန်ပုံစံသည် .csv, .xlsx သို့မဟုတ် .xls အမျိုးအစားဖြစ်သင့်သည်"
apps/frappe/frappe/www/update-password.html,New Password,စကားဝှက်အသစ်
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ပျောက်ဆုံး {0} Filter
@@ -1541,7 +1558,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,အ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; အခြေအနေခွင့်မပြု
DocType: Async Task,Async Task,Async ရဲ့ Task
DocType: Workflow State,picture,ရုပ်ပုံ
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ပြည့်စုံသော
+DocType: Scheduled Job Log,Complete,ပြည့်စုံသော
DocType: DocType,Image Field,image ကိုဖျော်ဖြေမှု
DocType: Print Format,Custom HTML Help,custom က HTML အကူအညီ
DocType: LDAP Settings,Default Role on Creation,ဖန်ဆင်းခြင်းအပေါ် default အခန်းက္ပ
@@ -1567,6 +1584,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ရှာဖွေရန်အပေါ်အကူအညီ
DocType: Milestone,Milestone Tracker,မှတ်တိုင် Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,မှတ်ပုံတင်ရှိသော်လည်းမသန်စွမ်း
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,လိပ်စာသည်ကုမ္ပဏီနှင့်ချိတ်ဆက်ရန်လိုအပ်သည် ကျေးဇူးပြုပြီးအောက်ပါလင့်ခ်များဇယားတွင်ကုမ္ပဏီအတွက်အတန်းတစ်ခုထည့်ပေးပါ။
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ဤစာရွက်စာတမ်းများအတွက်အော်တိုထပ်ခါတလဲလဲပိတ်ထားလိုက်ပြီဖြစ်သည်။
DocType: DocType,Hide Copy,Copy ကူးဝှက်
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,အားလုံးအခန်းကဏ္ဍရှင်းလင်း
@@ -1605,6 +1623,7 @@ DocType: Bulk Update,Field,လယ်ယာ
DocType: Communication,Received,ရရှိထားသည့်
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""before_insert", "after_update" ကဲ့သို့တရားဝင်နည်းလမ်းများအပေါ်ခလုတ်, etc (ရွေးချယ်ထားသော DOCTYPE အပေါ်မူတည်ပါလိမ့်မယ်)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1} ၏ပြောင်းလဲတန်ဖိုးကို
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},အီးမေးလ်အကောင့် Setup ကျေးဇူးပြု၍ သင်၏စကားဝှက်ကိုရေးထည့်ပါ။ {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,atleast တယောက်စနစ် Manager ကရှိရမညျကြောင့်ဒီအသုံးပြုသူမှစနစ် Manager ကထည့်သွင်းခြင်း
DocType: Chat Message,URLs,URL များကို
DocType: Data Migration Run,Total Pages,စုစုပေါင်းစာမျက်နှာများ
@@ -1612,7 +1631,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Image ကို Attach
DocType: Workflow State,list-alt,စာရင်း-alt +
apps/frappe/frappe/www/update-password.html,Password Updated,Password ကို Updated
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,setup ကို> အသုံးပြုသူခွင့်ပြုချက်
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,သင်၏ login အတည်ပြုရန်ခြေလှမ်းများ
apps/frappe/frappe/utils/password.py,Password not found,Password ကိုမတွေ့ရှိ
DocType: Webhook,Webhook Secret,Webhook လျှို့ဝှက်ချက်
@@ -1628,8 +1646,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google က API
DocType: Report,Query Report,query အစီရင်ခံစာ
DocType: User,Set New Password,နယူး Password ကို Set
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{1}: {0} အဘို့အခွင့်မပြုထား
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",ကို% s ခိုင်လုံသောအစီရင်ခံစာပုံစံမဟုတ်ပါဘူး။ အစီရင်ခံစာပုံစံကိုအောက်ပါ% s ကိုများထဲမှ \ သင့်တယ်
DocType: Chat Message,Chat,chat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},{0} ဖြင့်တံဆိပ်ကပ်ထားသောစာရွက်စာတမ်းများမရှိပါ။
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP Group မှမြေပုံ
@@ -1665,7 +1681,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,သင်
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ကို Access ကလျှို့ဝှက်ချက်
DocType: Tag Link,Document Title,စာရွက်စာတမ်းခေါင်းစဉ်
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(မသင်မနေရ)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} လွန်ခဲ့သောနှစ်က
DocType: Social Login Key,Social Login Provider,လူမှုဝင်မည်ပေးသူ
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,နောက်ထပ်မှတ်ချက်လေး
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ဖိုင်ထဲမှာမှမတွေ့ပါဒေတာ။ ဒေတာနှင့်အတူသစ်ကိုဖိုင်ကိုပြန်ပြီးပူးတွဲရမည်ပေးပါ။
@@ -1713,6 +1728,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",သစ
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 နှစ်
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,အမြဲတမ်း {0} delete?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,ဖိုင်နဲ့အတူတူဖြစ်တယ်ထားပြီးစံချိန်တွဲခဲ့
+DocType: Event Sync Log,Synced,တိုက်ဆိုင်ညှိယူသည်
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ခိုင်လုံသောလုပ်ငန်းအသွားအလာပြည်နယ်မဟုတ်ပါဘူး။ သင့်ရဲ့လုပ်ငန်းအသွားအလာကို update များနှင့်ထပ်ကြိုးစားပါ။
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} ရမှတ်ပေးခဲ့တယ်
DocType: Workflow State,wrench,လိမ်ဖဲ့ခြင်း
@@ -1815,6 +1831,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,မက်စ်ရှည်
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,မြေပုံ-အမှတ်အသား
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,နှစ်ခု doctypes အကြားမြေပုံဖွဲ့စည်းမှုပုံစံ။
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,တစ်ဦး Issue Submit
DocType: Event,Repeat this Event,ဒီအဖြစ်အပျက် Repeat
DocType: Address,Maintenance User,ပြုပြင်ထိန်းသိမ်းမှုအသုံးပြုသူတို့၏
@@ -1874,6 +1891,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,စမ်းသပ်ခြင်းအီးမေးလ်လိပ်စာ
DocType: Auto Repeat,Reference Document Type,ကိုးကားစရာ Document ဖိုင် Type အမျိုးအစား
DocType: ToDo,Sender,ပေးပို့သူ
+DocType: Event Consumer,Incoming Change,ဝင်ငွေပြောင်းလဲခြင်း
DocType: Google Drive,Backup Folder Name,Backup ကို Folder ကိုအမည်
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,သတိပေးချက် {0} အကဲဖြတ်နေစဉ်အမှား။ သင့်ရဲ့ template ကို fix ပေးပါ။
DocType: GSuite Settings,Google Apps Script,Google Apps ကပ Script
@@ -1936,9 +1954,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,နယ
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,တောင်းဆိုချက်အတည်ပြုဖို့အောက်က link ကိုကလစ်နှိပ်ပါ
DocType: Workflow State,align-left,တေ့-လက်ဝဲ
DocType: Onboarding Slide,Action Settings,Action ချိန်ညှိချက်များ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,setup ကို> အသုံးပြုသူ
DocType: User,Defaults,Defaults ကို
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","နှိုင်းယှဉ်မှုအဘို့,> 5, <10 or = 324 ကိုအသုံးပြုပါ။ အကွာအဝေးအဘို့, 5:10 (5 & 10 အကြားတန်ဖိုးများအတွက်) ကိုသုံးပါ။"
DocType: Energy Point Log,Revert Of,၏ယခင်အခြေအနေပြန်သွားရန်
+DocType: Document Type Mapping,Field Mapping,ကွင်းဆင်းမြေပုံ
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,လက်ရှိအတူ merge
DocType: User,Birth Date,မွေးနေ့
DocType: Communication Link,Link Title,link ခေါင်းစဉ်
@@ -1966,6 +1985,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tag Link
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,ကွင်းဆက်သမာဓိ
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,စမ်းသပ်မှု၌တည်၏
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",ဥပမာ 1 အမေရိကန်ဒေါ်လာ = 100 ခန့် Cent က 1 ငွေကြေးစနစ် = [?] အစိတ်အပိုင်း
DocType: Data Import,Partially Successful,တစ်စိတ်တစ်ပိုင်းအောင်မြင်သော
@@ -1975,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP Group မှမြေပုံချထားပုံများ
DocType: Chat Message Attachment,Chat Message Attachment,chat ကို Message နှောင်ကြိုး
DocType: LDAP Settings,Path to CA Certs File,", CA Cert ဖိုင်မှတ်တမ်းမှလမ်းကြောင်းကို"
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,အကယ်၍ စာရွက်စာတမ်းတွင်ထုတ်လုပ်သူနှင့်သုံးစွဲသူ၏အဆုံးတွင်ကွဲပြားသောလယ်ကွင်းအမည်များပါရှိပါကဤအရာကိုစစ်ဆေးပြီး Mapping ပြုလုပ်ပါ
DocType: Address,Manipur,မဏိပူရ
DocType: Web Form Field,Allow Read On All Link Options,အားလုံး Link ကို Options ကိုတွင်ဖတ်ပါ Allow
DocType: DocType,Database Engine,ဒေတာဘေ့စအင်ဂျင်
@@ -2109,6 +2130,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,မှတ်ချက်
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,error အစီရင်ခံစာ
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV ဖိုင် / Excel ကို format နဲ့ပို့ကုန် Data ဖြစ်ပါတယ်။
+DocType: Document Type Field Mapping,Document Type Field Mapping,စာရွက်စာတမ်းအမျိုးအစား Field မြေပုံ
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Global Search စာရွက်စာတမ်းများကိုတည်ဆောက်ခြင်း။
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,သငျသညျကိုသုံးနိုင်သည် authentication Apps ကပနေသောခေါင်းစဉ်:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ရှိပြီးဖြစ်သည်။ အခြားအမည်တစ်ခုကိုရွေးချယ်ပါ
@@ -2184,7 +2206,6 @@ DocType: Workflow State,Upload,upload
DocType: User Permission,Advanced Control,အဆင့်မြင့်ထိန်းချုပ်ရေး
DocType: System Settings,Date Format,နေ့စွဲစီစဉ်ဖွဲ့စည်းမှုပုံစံ
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Published မဟုတ်
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ပုံမှန်လိပ်စာ template ကိုမတွေ့ပါ။ Setup> ပုံနှိပ်ခြင်းနှင့်ကုန်အမှတ်တံဆိပ်> လိပ်စာပုံစံမှအသစ်တစ်ခုဖန်တီးပါ။
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","လုပ်ငန်းအသွားအလာသည် * Actions (ဥပမာအတည်ပြု, Cancel) ။"
DocType: Data Import,Skip rows with errors,မှားယွင်းမှုများနှင့်အတူတန်းစီ Skip
DocType: Workflow State,flag,အလံ
@@ -2248,6 +2269,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ပြည်နယ်ကိုပြောင်းလဲတာဝန်ပေးတယောက်စာရွက်စာတမ်းနှင့်အခန်းကဏ္ဍအတွက်ခွင့်ပြုပြည်နယ်များကိုကိုယ်စားပြုပါတယ်။
DocType: Data Migration Connector,Database Name,ဒေတာဘေ့စအမည်
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Form တွင် refresh
+DocType: Event Producer,Event Producer,ပွဲထုတ်လုပ်သူ
DocType: DocField,Select,ကိုရွေးပါ
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,View Full Log in ဝင်ရန်
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","ရိုးရှင်းသော Python ကိုဖော်ပြမှု, ဥပမာ: status ကို == '' ပွင့်လင်း 'နှင့်အမျိုးအစား ==' 'ဘာဂ်' '"
@@ -2366,12 +2388,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ဝင်မ
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,လုပ်ပါရန်ထည့်သွင်းပါ
DocType: Footer Item,Company,ကုမ္ပဏီ
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} ၏ပျမ်းမျှ
+apps/frappe/frappe/model/workflow.py,Successful Transactions,အောင်မြင်သောအရောင်းအ
DocType: Scheduled Job Log,Scheduled,Scheduled
DocType: User,Logout from all devices while changing Password,Password ကိုပြောင်းလဲနေတဲ့စဉ်ကိရိယာအားလုံးမှ logout
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Password ကို Verify
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,အမှားများရှိကြ၏
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Google က Settings များအတွက်လိုင်း Id နဲ့လိုင်းလျှို့ဝှက်ရိုက်ထည့်ပါ။
apps/frappe/frappe/core/doctype/communication/communication.js,Close,ပိတ်
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",အီးမေးလ် ID သည်ထူးခြားရမည်၊ {0} အတွက်အီးမေးလ်အကောင့်ရှိပြီးဖြစ်သည်။
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,2 0 မှ docstatus မပြောင်းနိုင်ပါ
DocType: File,Attached To Field,ကွင်းဆင်းရန်ပူးတွဲ
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Update ကို
@@ -2479,6 +2503,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,လ
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} စာရွက်စာတမ်းကိုးကားစေလွှတ်မည်
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,စာရွက်စာတမ်းများတွင်ပါဝင်ပတ်သက်မှသာလျှင်သုံးစွဲသူများကဖော်ပြထားပါသည်
DocType: DocField,Fetch From,မှစ. ဆွဲယူ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Customize Form ကို
apps/frappe/frappe/modules/utils.py,App not found,App ကိုမတွေ့ရှိ
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},ကလေးတစ်ဦးစာရွက်စာတမ်းဆန့်ကျင်နေတဲ့ {0} ကိုမဖန်တီးနိုင်: {1}
DocType: Social Login Key,Social Login Key,လူမှုဝင်မည် Key ကို
@@ -2490,7 +2515,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,မက
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,လူမှုမူလစာမျက်နှာ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},{0} အဖြစ်သတ်မှတ်မရနိုငျပြီးနောက်ထည့်ပါ
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,ဝေမျှမယ် {0} နှင့်အတူ
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,အီးမေးလ်အကောင့် setup ကိုအဘို့သင့်စကားဝှက်ကိုရိုက်ထည့်ပါ:
DocType: Workflow State,hand-up,လက်-up က
DocType: Blog Settings,Writers Introduction,စာရေးဆရာများနိဒါန်း
DocType: Address,Phone,Phone များ
@@ -2549,7 +2573,7 @@ DocType: Web Page,Insert Style,INSERT ပုံစံ
DocType: Prepared Report,Error Message,အမှားပြစာ
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,နယူးအစီရင်ခံစာနာမကို
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,တနင်္ဂနွေ Hide
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,အလိုအလျှောက်ထပ်တလဲလဲစာရွက်စာတမ်းများကိုထုတ်ပေးပါတယ်။
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,အလိုအလျှောက်ထပ်တလဲလဲစာရွက်စာတမ်းများကိုထုတ်ပေးပါတယ်။
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ဖြစ်
DocType: Onboarding Slide,ERPNext,ERP နောက်တစ်ခု
DocType: Workflow State,info-sign,info-နိမိတ်လက္ခဏာ
@@ -2557,7 +2581,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} ဘ
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",ဒီငွေကြေး format ချရမည်လော ထားမသွားဘူးဆိုရင် system ကို default အတိုင်းအသုံးပြုလိမ့်မည်
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} စာရွက်စာတမ်းများ Submit?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,သင်တို့အထဲ၌ logged ရန်လိုခြင်းနှင့်စနစ် Manager ကအခန်းက္ပရန်သင့်သိမ်းဆည်းချက်တွေကိုဝင်ရောက်ကြည့်ရှုနိုင်မှရှိသည်။
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ Tray Application ချိတ်ဆက်မှုအမှား ...
Raw Print အင်္ဂါရပ်ကိုအသုံးပြုရန်သင် QZ Tray application ကို install လုပ်ပြီး run ရမည်။
QZ Tray ကိုဒေါင်းလုတ် လုပ်၍ တပ်ဆင်ရန်ဤနေရာကိုနှိပ်ပါ ။
ကုန်ကြမ်းပုံနှိပ်ခြင်းအကြောင်းပိုမိုလေ့လာသင်ယူရန်ဒီနေရာကိုနှိပ်ပါ ။"
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,ပရင်တာပုံထုတ်ခြင်း
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,တွဲထားခင်ကိုကယ်တင်ပေးပါ။
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ဆက်စပ်စာရွက်စာတမ်းများအားလုံးကိုဖျက်ချင်ပါသလား။
@@ -2587,6 +2610,7 @@ DocType: Role Permission for Page and Report,Set Role For,သည် set အခ
DocType: GCalendar Account,The name that will appear in Google Calendar,Google ကပြက္ခဒိန်၌ထင်ရှားလတံ့သောအမည်ဖြင့်
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} ပြီးသားတည်ရှိနှင့်အတူတိုက်ရိုက်အခန်းထဲမှာ။
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,လန်းဆန်း ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},ကျေးဇူးပြု၍ Dashboard Chart အတွက်သတ်မှတ်ထားသော filter တန်ဖိုးများကိုစစ်ဆေးပါ။ {}
DocType: Event,Starts on,အပေါ်စတင်
DocType: System Settings,System Settings,System Settings
DocType: GCalendar Settings,Google API Credentials,Google က API ကိုသံတမန်ဆောင်ဧည်
@@ -2612,6 +2636,7 @@ DocType: Workflow State,ok-sign,ok-နိမိတ်လက္ခဏာ
apps/frappe/frappe/config/settings.py,Deleted Documents,Deleted စာရွက်စာတမ်းများ
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,အဆိုပါ CSV ပုံစံအမှုအထိခိုက်မခံဖြစ်ပါသည်
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,desktop အိုင်ကွန်ပြီးသားတည်ရှိ
+DocType: Event Consumer Document Type,Approval Status,ခွင့်ပြုချက်နဲ့ Status
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,ဆလိုက်များပေါ်လာသင့်သည့် domains များအားလုံးကိုသတ်မှတ်ပါ။ ဘာမျှမသတ်မှတ်ထားပါကဆလိုက်ကိုမူလနေရာတိုင်းတွင်ပြသည်။
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,မူရငျးခှဲ
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: ကွင်းဆင်း {1} အတန်းအတွက် {2} က default မပါဘဲဝှက်ထားခြင်းနှင့်မဖြစ်မနေမရနိုငျ
@@ -2631,6 +2656,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,အကူအညီဆောင်းပါးများ
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,အမျိုးအစား:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,သင့်အတွက်ငွေပေးချေမှုပျက်ကွက်ခဲ့သည်။
+DocType: Event Producer,Producer URL,ထုတ်လုပ်သူ URL
DocType: Comment,Unshared,မျှဝေမ
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,module တွေ့သည်မ
@@ -2642,6 +2668,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,တာဝန်ကျတဲ့ Completed
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},ထုထည်ကြီး Edit ကို {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ဒေါင်းလုပ်အစီရင်ခံစာ
+apps/frappe/frappe/model/workflow.py,Workflow Status,လုပ်ငန်းအသွားအလာအခြေအနေ
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,တက်ကြွသောမ
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,အုပ်ချုပ်ရေးမှူး Dashboard ကိုဇယားသတင်းရပ်ကွက်များကိုဖန်တီးရန်ခွင့်ပြုမှသာ
DocType: About Us Settings,Settings for the About Us Page,ထိုအကြောင်း Us စာမျက်နှာဖြစ်သည် Settings ကို
@@ -2651,6 +2678,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,ပ
DocType: Notification Settings,Energy Points,စွမ်းအင်ဝန်ကြီးဌာနအမှတ်
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},အချိန် {0} သည်ပုံစံဖြင့်ဖြစ်ရမည် - {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ဥပမာ pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0} - ထပ်တလဲလဲစာရွက်စာတမ်းအသစ်ကိုပူးတွဲ။ မရပါ။ အလိုအလျောက်ပြန်ကြားချက်အီးမေးလ်အီးမေးလ်ဖြင့်စာရွက်စာတမ်းကိုပူးတွဲဖော်ပြရန်ပရင့်ထုတ်ချိန်အတွင်း {1} ကိုဖွင့်ပါ
DocType: User,Generate Keys,သော့ချက်များ Generate
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,ဤသည်ကိုအပြီးတိုင်သင့်ရဲ့ဒေတာကိုဖယ်ရှားပစ်မည်။
DocType: DocType,View Settings,ကြည့်ရန်ချိန်ညှိမှုများ
@@ -2702,6 +2730,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,အားလုံး
DocType: Email Queue,Recipient,လက်လံသူ
DocType: Webhook,Webhook Security,Webhook လုံခြုံရေး
+DocType: Event Sync Log,Producer Document Name,ထုတ်လုပ်သူစာရွက်စာတမ်းအမည်
DocType: Communication,Has Attachment,နှောင်ကြိုးများကိုရှိပါတယ်
DocType: Address,Sales User,အရောင်းအသုံးပြုသူတို့၏
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ပုံနှိပ် Formats တည်ဆောက်ရန်နှင့်စိတ်ကြိုက် tool ကို drag and drop ။
@@ -2737,6 +2766,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh ပြည်နယ်
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,ကလေးသူငယ်ဇယားသည်အခြား DOCTYPE အတွက် Grid အဖြစ်ပြသထားပါသည်
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setup ကိုအော်တိုအီးမေးလ်
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,ပြီးရင် Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,ဖြစ်ရပ်များကိုစားသုံးရန်အတွက်သင်စာရင်းသွင်းလိုသောဆိုက်။
DocType: Chat Profile,Message Preview,မက်ဆေ့ခ်ျကိုကို Preview
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,ဒါကထိပ်တန်း-10 ဘုံစကားဝှက်ဖြစ်ပါတယ်။
DocType: User,User Defaults,အသုံးပြုသူ Defaults ကို
@@ -2769,6 +2799,7 @@ DocType: Dashboard Chart,Last Synced On,နောက်ဆုံး Sync တွ
DocType: Comment,Comment Type,မှတ်ချက်ကအမျိုးအစား
DocType: OAuth Client,OAuth Client,OAuth လိုင်း
DocType: Assignment Rule,Users,အသုံးပြုသူများက
+DocType: Document Type Mapping,Local Document Type,ဒေသခံစာရွက်စာတမ်းအမျိုးအစား
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,အစီရင်ခံစာ Type
DocType: DocField,Signature,လက်မှတ်
@@ -2811,6 +2842,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{1}: ဤတာဝန်တာဝန်ပေးအပ် {0} မိမိကိုယ်မိမိ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,မင်းရဲ့တိုင်းပြည်
DocType: Assignment Rule Day,Sunday,တနင်္ဂနွေ
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",စားသုံးသူများရှိသည့်စာရွက်စာတမ်းများအတွက် Event Producer site တွင်ထည့်သွင်းမှုများ၊ အသစ်ပြောင်းခြင်းများနှင့်ဖျက်ခြင်းများ၏မှတ်တမ်းကိုထိန်းသိမ်းထားသည်။
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Fieldname {1} ၏တဦးတည်းမဖွစျနိုငျ
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,ရပ်တည်မှု
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Grid ကြည့်ရန်အတွက်
@@ -2958,7 +2990,6 @@ DocType: Web Page,Sidebar and Comments,sidebar နှင့်ထင်မြင
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","သင်ပြီးနောက်က Cancel and save document တစ်ခုပြင်ဆင်ချက်သောအခါ, အဟောင်းအရေအတွက်၏တစ်ဦးဗားရှင်းကြောင်းအသစ်တခုနံပါတ်ရလာကြလိမ့်မည်။"
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} စာရွက်စာတမ်း attach ခွင့်မပြု, ပုံနှိပ်ပါက Settings ထဲမှာ {0} သည်ပုံနှိပ်ပါ Allow enable ပေးပါ"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မတည်ဆောက်ရသေး ကျေးဇူးပြု၍ Setup> Email> Email Account မှအီးမေးလ်အကောင့်အသစ်ကိုဖွင့်ပါ
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} မှာစာရွက်စာတမ်းကိုကြည့်ပါ
DocType: Stripe Settings,Publishable Key,Publish Key ကို
DocType: Stripe Settings,Publishable Key,Publish Key ကို
@@ -3037,7 +3068,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,အချက်အ
DocType: Custom Field,Permission Level,ခွင့်ပြုချက်အဆင့်
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Submit သတ်မှတ် Cancel, Write မပါဘဲပြင်ဆင်ချက်မရပါ"
DocType: List View Setting,Disable Count,Disable လုပ်ထားအရေအတွက်
-DocType: Google Maps Settings,Client Key,client Key ကို
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,သင်ပူးတွဲဖိုင်ပယ်ဖျက်ချင်တာသေချာမှန်သလော
apps/frappe/frappe/__init__.py,Thank you,ကျေးဇူးတင်ပါသည်
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,သိမ်းဆည်းခြင်း
@@ -3164,6 +3194,7 @@ DocType: Workflow Document State,Only Allow Edit For,Edit ကိုသည်သ
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google Drive ကိုမှတက်အရန်ကူးယူခြင်း။
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},မသင်မနေရလယ်ကွင်း: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,မင်းနာမည်
+DocType: Event Producer Document Type,Event Producer Document Type,ပွဲထုတ်လုပ်သူစာရွက်စာတမ်းအမျိုးအစား
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,connection အောင်မြင်
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ဆော့ဖ်ဝဲအမျိုးအစား onboarding ဆလိုက်ဆက်လက်ရှိနေသည်။
@@ -3234,6 +3265,7 @@ DocType: Address,Postal Code,စာတိုက်သင်္ကေတ
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,ဆက်သွယ်ရေးလင့်ခ်ပြန်ချိတ်
DocType: Translation,Contributed,လှူဒါန်းခဲ့
apps/frappe/frappe/config/customization.py,Form Customization,form ကို Customization
+DocType: Event Update Log,Event Update Log,ဖြစ်ရပ် Update ကို Log
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,အဘယ်သူမျှမတက်ကြွ Sessions
DocType: Web Form,Route to Success Link,အောင်မြင်မှု Link ကိုမှလမ်းကြောင်း
DocType: Onboarding Slide Field,Right,မှန်သော
@@ -3260,7 +3292,7 @@ DocType: Website Settings,Chat Operators,chat လုပ်ငန်းရှင
DocType: S3 Backup Settings,ca-central-1,ca ကို-အလယ်ပိုင်း-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,အဘယ်သူမျှမလက်ချည်းကော်လံဖိုင်ကိုအတွက်ရှိတယ်လို့သေချာအောင်လေ့လာပါ။
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ကမျိုးစုံအဆင့်ခြင်းကိုသည်းခံလျှင်စာရွက်စာတမ်းများ၏ဘဝမှတ်တိုင်သံသရာစက်ဝိုင်းပေါ်မှာမှတ်တိုင်ခြေရာခံ။
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ကမျိုးစုံအဆင့်ခြင်းကိုသည်းခံလျှင်စာရွက်စာတမ်းများ၏ဘဝမှတ်တိုင်သံသရာစက်ဝိုင်းပေါ်မှာမှတ်တိုင်ခြေရာခံ။
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",ဖိုင်တွေအမည်ပြောင်းနှင့်ထိန်းချုပ်မှုအတွက်ကုဒ်အစားထိုးစစ်ဆေးကျေးဇူးပြုပြီး!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,သင့်ရဲ့ profile ကိုအီးမေးလ်လိပ်စာရှိကြောင်းသေချာစေရန် ကျေးဇူးပြု.
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,သင်သည်ဤပုံစံဖြင့်ကယ်တင်ခြင်းမအပြောင်းအလဲများရှိသည်။ ရှေ့ဆက်မသွားခင်ကိုကယ်တင်ပေးပါ။
@@ -3287,7 +3319,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,လျှို့ဝှက်ချက် API ကို Save:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},{0}: ဖျက်သိမ်းစာရွက်စာတမ်းလင့်ထားသည်နိုင်ဘူး
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,တစ်ဦးစံအစီရင်ခံစာတည်းဖြတ်မရနိုင်ပါ။ အစီရင်ခံစာသစ်ပွားခြင်းနှင့်ဖန်တီးပေးပါ
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","ဒါကြောင့်သင့်ရဲ့ကုမ္ပဏီလိပ်စာဖြစ်သကဲ့သို့ကုမ္ပဏီ, မဖြစ်မနေဖြစ်ပါသည်"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}",ဥပမာ: သင်စာရွက်စာတမ်း ID ကိုထည့်သွင်းလိုပါက {0} ကိုသုံး
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},{0} သည်စားပွဲတင်-Columns ကိုရွေးပါ
DocType: Custom Field,Options Help,Options ကိုအကူအညီ
@@ -3295,7 +3326,6 @@ DocType: Footer Item,Group Label,Group ကတံဆိပ်တပ်ရန်
DocType: Kanban Board,Kanban Board,Kanban ဘုတ်အဖွဲ့
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google အဆက်အသွယ် configured ခဲ့တာဖြစ်ပါတယ်။
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 စံချိန်တင်ပို့ပါလိမ့်မည်
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,အသုံးပြုသူနှင့်ဆက်စပ်သောအီးမေးလ်အကောင့်မရှိပါ။ ကျေးဇူးပြု၍ User> Email Inbox အောက်တွင်အကောင့်တစ်ခုထည့်ပါ။
DocType: DocField,Report Hide,အစီရင်ခံစာဖျောက်
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},{0} သည်အပင်၏အသီးကိုအမြင်မရရှိနိုင်ပါ
DocType: DocType,Restrict To Domain,ဒိုမိန်းစေရန်ကန့်သတ်ရန်
@@ -3361,7 +3391,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: အမျိုးအစားကွင်းဆင်း {1} {2} မဖြစ်မနေမဖွစျနိုငျ
DocType: System Settings,In Days,နေ့ရက်များအတွက်
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,လွမ်း
+DocType: Event Producer Document Type,Has Mapping,မြေပုံရှိတယ်
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,သတ်မှတ် ကျေးဇူးပြု.
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,မမှန်ကန်သော Filter တန်ဖိုး
DocType: Comment,Bot,bot
DocType: Help Article,Help Article,အကူအညီအပိုဒ်
DocType: Page,Page Name,စာမျက်နှာအမည်
@@ -3469,7 +3501,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံ
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,toggle Grid ကြည့်ရန်
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,လာမယ့်စံချိန်ကိုသွားပါ
-DocType: System Settings,Time Format,အချိန်ပုံစံ
+DocType: Country,Time Format,အချိန်ပုံစံ
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,မှားနေသောငွေပေးချေမှုတံခါးပေါက်အထောက်အထားများ
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ဤသည်အချို့သောအမှားရှိခြင်းကိုသာအတန်းနှင့်အတူနေထုတ်လုပ်လိုက်တဲ့ template ကိုဖိုင်ဖြစ်ပါသည်။ သငျသညျဆုံးမပဲ့ပြင်ခြင်းနှင့်သွင်းကုန်အဘို့ဤဖိုင်တွင်အသုံးပြုသင့်ပါတယ်။
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Document ဖိုင်အမျိုးအစားများနှင့်ရာထူးတာဝန်အပေါ် Set ခွင့်ပြုချက်
@@ -3795,6 +3827,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,ဝင်မည်အသုံးပြုသူအမည်သုံးပြီး Allow
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,အစီရင်ခံစာ Enable
DocType: DocField,Display Depends On,display တွင်မူတည်
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} လွန်ခဲ့သောနှစ်က
DocType: Social Login Key,API Endpoint,API ကိုဆုံးမှတ်
DocType: Web Page,Insert Code,INSERT Code ကို
DocType: Data Migration Run,Current Mapping Type,လက်ရှိမြေပုံအမျိုးအစား
@@ -3848,6 +3881,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,အ
apps/frappe/frappe/www/login.html,Or login with,ဒါမှမဟုတ်နှင့်အတူ login
DocType: Error Snapshot,Locals,ဒေသခံတွေ
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},{1} အပေါ် {0} ကနေတဆင့်ဆက်သွယ်: {2}
+DocType: Event Producer,Event Producer Document Types,ပွဲထုတ်လုပ်သူစာရွက်စာတမ်းအမျိုးအစားများ
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ကျေးဇူးပြု၍ Setup> Email> Email Account မှမူလအီးမေးလ်ကိုသတ်မှတ်ပါ
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,အုပ်စုဖြင့်ရွေးရန် ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ဥပမာ (55 + 434) / 4 သို့မဟုတ် = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} လိုအပ်သည်
@@ -3880,9 +3915,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ကို ID ကို
DocType: Prepared Report,Report Start Time,အစီရင်ခံစာ Start ကိုအချိန်
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ပို့ကုန်မှာ Data
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,ထပ်တူပြုခြင်း၏အခြေအနေနှင့်ထပ်တူပြုခြင်းပျက်ကွက်မှုတွင် Resync ခလုတ်များနှင့်အတူသုံးစွဲသောဖြစ်ရပ်တိုင်း၏မှတ်တမ်းကိုထိန်းသိမ်းသည်။
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,-Columns ကိုရွေးပါ
DocType: Translation,Source Text,source စာသား
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,ဒါကနောက်ခံအစီရင်ခံစာဖြစ်ပါတယ်။ သင့်လျော်သော filter များသတ်မှတ်ထားပြီးတော့သစ်တစ်ခုတဦးတည်းကို generate ပေးပါ။
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မတည်ဆောက်ရသေး ကျေးဇူးပြု၍ Setup> Email> Email Account မှအီးမေးလ်အကောင့်အသစ်ကိုဖွင့်ပါ
apps/frappe/frappe/www/login.py,Missing parameters for login,လော့ဂ်အင်အဘို့အဦးပျောက်ဆုံးနေ parameters တွေကို
DocType: Workflow State,folder-open,folder ကိုဖွင့်လိုက်ပါ
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","တင်သွင်းပြီးတာနဲ့တင်ပြသူစာရွက်စာတမ်းများကိုပြောင်းလဲမရပါ။ သူတို့ကသာဖျက်ပါ, ပြင်ဆင်နိုင်ပါသည်။"
@@ -3962,6 +3999,7 @@ DocType: Blog Post,Published On,တွင် Published
DocType: Contact,Gender,"ကျား, မ"
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,မသင်မနေရပြန်ကြားရေးပျောက်ဆုံး:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} {1} ပေါ်တွင်သင်၏မှတ်သို့ပြောင်း
+DocType: Event Consumer,Event Subscriber,ပွဲစီစဉ်သူ
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,တောင်းဆိုမှု URL ကို Check
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,တဦးတည်းတောင်းဆိုမှုအတွက်ခွင့်ပြုမှသာလျှင် 200 INSERT
DocType: Footer Item,URL,URL ကို
@@ -3974,6 +4012,7 @@ DocType: Auto Email Report,Half Yearly,တစ်ဝက်နှစ်အလိ
DocType: Communication,Marked As Spam,Spam email တွေကိုအမျှမှတ်သား
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ဖိုင်ကို url နှင့်အတူအချို့သောပြဿနာကိုလည်းရှိ၏: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,သစ်ပင်
+DocType: Event Producer Document Type,Use Same Name,နာမည်တူကိုသာသုံးပါ
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,သငျသညျဤအစီရင်ခံစာ print ထုတ်ခွင့်ပြုမထားပေ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,အသုံးပြုသူခွင့်ပြုချက်
DocType: Workflow State,warning-sign,သတိပေးချက်ကို-နိမိတ်လက္ခဏာ
@@ -3983,6 +4022,7 @@ DocType: Workflow State,User,အသုံးပြုသူ
DocType: Website Settings,"Show title in browser window as ""Prefix - title""","- ခေါင်းစဉ်ကို prefix" အဖြစ် browser ကိုပြတင်းပေါက်၌ Show ကိုခေါင်းစဉ်
DocType: Payment Gateway,Gateway Settings,gateway မှာ Settings များ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,စာရွက်စာတမ်းအမျိုးအစားထဲမှာစာသား
+DocType: Event Sync Log,Event Sync Log,ဖြစ်ရပ်စည်းညှိခြင်းမှတ်တမ်း
apps/frappe/frappe/handler.py,Logged Out,အထဲက Logged
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,နောက်ထပ်...
DocType: System Settings,User can login using Email id or Mobile number,အသုံးပြုသူအီးမေးလ်အိုင်ဒီသို့မဟုတ်ဖုန်းနံပါတ်ကိုအသုံးပြုပြီး login နိုင်ပါတယ်
@@ -4023,12 +4063,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,မခုနှစ်တွင်
DocType: Workflow State,star,ကြယ်
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,အကယ်၍ ဤအရာကိုစစ်ဆေးပါကစာရွက်စာတမ်းများသည်ပွဲထုတ်သူထုတ်လုပ်သူ၏ site တွင်ရှိသည့်နာမည်တူရမည်
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,ကော်မာ separated တန်ဖိုးများ
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},အမျိုးအစားငွေကြေးစနစ်များအတွက် max ကို width ကိုအတန်းအတွက် 100px {0} သည်
apps/frappe/frappe/config/website.py,Content web page.,content ဝဘ်စာမျက်နှာ။
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,တစ်ဦးက New အခန်းကဏ္ဍ Add
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ဝက်ဘ်စာမျက်နှာသို့သွားပါ
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,တာဝန်အသစ်
+DocType: Event Consumer Document Type,Approved,Approved
DocType: Google Contacts,Last Sync On,နောက်ဆုံး Sync ကိုတွင်
DocType: Deleted Document,Deleted Document,Deleted စာရွက်စာတမ်း
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! တစ်ခုခုမှားသွားတယ်
@@ -4081,7 +4123,6 @@ DocType: DocField,Unique,ထူးခြားသော
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} {1} အပေါ်တန်ဖိုးထား
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,တစ်စိတ်တစ်ပိုင်းအောင်မြင်မှု
DocType: Email Account,Service,ဝန်ဆောင်မှု
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,setup ကို> အသုံးပြုသူ
DocType: File,File Name,ဖိုင်နာမည်
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),({1}) {0} {0} သည်မတှေ့
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},res: {0}
@@ -4093,11 +4134,10 @@ DocType: Calendar View,Calendar View,ပြက္ခဒိန်ကြည့်
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Edit ကိုစီစဉ်ဖွဲ့စည်းမှုပုံစံ
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,complete မှတ်ပုံတင်ခြင်း
DocType: GCalendar Settings,Enable,Enable
-DocType: Google Maps Settings,Home Address,အိမ်လိပ်စာ
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),သင်ဟာတစ်ခုသာသွားအတွက် 5000 မှတ်တမ်းများအထိ upload နိုင်ပါတယ်။ (အချို့ကိစ္စများတွင်လျော့နည်းစေခြင်းငှါ)
DocType: Report,"output in the form of `data = [columns, result]`","`ဒေတာ = [ကော်လံ, ရလဒ်]` ၏ပုံစံအတွက် output ကို"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,သက်ဆိုင်စာရွက်စာတမ်းအမျိုးအစားများ
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,အသုံးပြုသူတာဝန်တွေဘို့စည်းမျဉ်းစည်းကမ်းတွေကိုတက်သတ်မှတ်မည်။
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,အသုံးပြုသူတာဝန်တွေဘို့စည်းမျဉ်းစည်းကမ်းတွေကိုတက်သတ်မှတ်မည်။
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} အဘို့မလုံလောက်ခွင့်ပြုချက်
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} အဘို့မလုံလောက်ခွင့်ပြုချက်
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),အစီရင်ခံစာ (error များရှိကြ၏) ကယ်တင်ခြင်းသို့မရောက်ကြခဲ့သည်
diff --git a/frappe/translations/nl.csv b/frappe/translations/nl.csv
index 20ec2f6c3e..0bd2c40a56 100644
--- a/frappe/translations/nl.csv
+++ b/frappe/translations/nl.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Deze rol werkt Gebruikersmachtigingen voor een gebruiker bij
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Hernoemen {0}
DocType: Workflow State,zoom-out,uitzoomen
-DocType: Data Import Beta,Import Options,Importeer opties
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Kan {0} niet openen wanneer er een instantie van is geopend
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabel {0} mag niet leeg zijn
DocType: SMS Parameter,Parameter,Parameter
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,Wordt gepubliceerd Field
DocType: GCalendar Settings,GCalendar Settings,GCalendar-instellingen
DocType: Email Group,Email Group,E-mail Group
-apps/frappe/frappe/__init__.py,Only for {},Alleen voor {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Agenda - Kon gebeurtenis {0} niet verwijderen uit Google Agenda, foutcode {1}."
DocType: Event,Pulled from Google Calendar,Getrokken uit Google Agenda
DocType: Note,Seen By,Gezien door
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Meerdere toevoegen
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Geen geldige gebruikersafbeelding.
DocType: Energy Point Log,Reverted,teruggekeerd
DocType: Success Action,First Success Message,Eerste succesbericht
+DocType: Document Type Mapping,Document Type Mapping,Documenttype Mapping
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Niet zoals
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Onjuiste waarde: {0} moet zijn {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Wijzig veldeigenschappen (verberg, alleen-lezen, toestemming, etc. )"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,De site die uw evenementen verbruikt.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Waarderen
DocType: Notification Settings,Document Share,Document delen
DocType: Workflow State,lock,slot
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Log
DocType: Workflow State,indent-right,inspringing-rechts
DocType: Has Role,Has Role,Heeft Rol
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Tijd in seconden om QR code-afbeelding op server te behouden. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Veldtype {1} voor {2} kan niet worden geïndexeerd
DocType: Dashboard Chart,Timespan,Tijdspanne
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Link
DocType: Deleted Document,Restored,Hersteld
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Fout bij verbinding maken met QZ-ladetoepassing ...
De toepassing QZ-lade moet zijn geïnstalleerd en actief zijn om de functie Raw Print te kunnen gebruiken.
Klik hier om de QZ-lade te downloaden en te installeren .
Klik hier voor meer informatie over Raw Printing ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuut geleden
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Afgezien van de System Manager, rollen met Set User Permissions recht kunt toestemmingen voor andere gebruikers voor dat type document."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Thema configureren
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,ONGEZIEN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Bestandsbeheer
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML-koptekst, robots en omleidingen"
DocType: GCalendar Account,Refresh Token,Vernieuwen Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Kan geen verbinding maken met de Event Producer-site. Probeer het na enige tijd opnieuw.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Geen openstaande of huidige vacatures voor deze site
DocType: Webhook,Doc Event,Doc Event
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Scriptbeheer
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Geen activiteit
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Apps van derden
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,De eerste gebruiker zal de System Manager te worden (u kunt deze later wijzigen).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,U kunt proberen de filters van uw rapport te wijzigen.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Geen evenementen vandaag
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Je kunt jezelf geen beoordelingspunten geven
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType moet Submitterbaar zijn voor het geselecteerde Doc Event
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,U bent niet bevoegd om e-mails met betrekking tot dit document te versturen
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Selecteer tenminste 1 kolom {0} sorteren / groeperen
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Niet toegestaan voor {0}: {1}. Beperkt veld: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Bedrijf niet gekoppeld
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Controleer dit als u het testen van uw betaling via de Sandbox API
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Het is niet toegestaan om een standaard website thema verwijderen
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Maak je eerste {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} upda
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Er bestaat al een Onboarding-dia {0} met dezelfde diavolgorde
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Uitschakelen Report
DocType: Translation,Contributed Translation Doctype Name,Bijgedragen vertaling Doctype Naam
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuratie> Formulier aanpassen
DocType: PayPal Settings,Redirect To,omleiden naar
DocType: Data Migration Mapping,Pull,Trekken
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formaat : frappe.query_reports ['REPORTNAME'] = { }
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Niet Toegestaan
DocType: DocShare,Internal record of document shares,Interne record van document aandelen
DocType: Energy Point Settings,Review Levels,Beoordeling niveaus
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuratie> Gebruikersrechten
DocType: Workflow State,Comment,Reactie
DocType: Data Migration Plan,Postprocess Method,Postprocess-methode
DocType: DocType Action,Action Type,actie type
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Wee
DocType: Workflow State,remove-circle,remove-cirkel
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mijn profiel
DocType: Help Article,Beginner,Beginner
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Deze actie is alleen toegestaan voor {}
DocType: Contact,Is Primary Contact,Is Primaire contactpersoon
+DocType: Event Consumer,Event Consumer,Evenement consument
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript toe te voegen aan de hoofdsectie van de pagina.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Toevoegen / bijwerken
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Niet toegestaan om ontwerpen van documenten af te drukken
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Teruggezet naar de standaardinstellingen
DocType: Workflow,Transition Rules,Overgang Regels
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Alleen eerste {0} rijen in voorbeeld weergeven
apps/frappe/frappe/core/doctype/report/report.js,Example:,Voorbeeld:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,beperkingen
DocType: Workflow,Defines workflow states and rules for a document.,Definieert workflow-staten en regels voor een document.
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Herhaal tot
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Nieuw
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,U moet deze eerst maken:
-DocType: Google Maps Settings,Google Maps Settings,Google Maps-instellingen
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Laden ...
DocType: DocField,Password,Wachtwoord
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Het systeem wordt bijgewerkt. Vernieuw opnieuw na enkele ogenblikken
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,Onboarding Slide
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ongeldig wachtwoord:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ongeldig wachtwoord:
DocType: Print Settings,Send document web view link in email,Stuur document web view koppeling in de email
+DocType: Event Consumer Document Type,Event Consumer Document Type,Type consumentendocument voor evenementen
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,vorig
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Vereist vertrouwd certificaat
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,volume-omlaag
DocType: Onboarding Slide,Help Links,Help-links
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Toegang niet toegestaan vanaf dit IP-adres
DocType: Notification Settings,Enable Email Notifications,E-mailmeldingen inschakelen
+DocType: Document Type Field Mapping,Event Streaming,Evenement streaming
apps/frappe/frappe/desk/reportview.py,No Tags,No Tags
DocType: Email Account,Send Notification to,Stuur Kennisgeving aan
DocType: DocField,Collapsible,Inklapbaar
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Geen voorwaarden voorzien
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y-asvelden
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sorteer veld {0} moet een geldige veldnaam te zijn
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adressjabloon gevonden. Maak een nieuwe aan via Setup> Printing and Branding> Address Template.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Meer
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Maak een nieuw record
DocType: Contact,Sales Manager,Verkoopsmanager
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Hernoemen
DocType: Print Format,Format Data,Formaat Gegevens
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} is geen geldige rapportindeling. Rapportindeling moet een van de volgende {1} zijn
DocType: List Filter,Filter Name,Naam filteren
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,zoals
DocType: Assignment Rule,Automation,Automatisering
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,Reset Password Key
DocType: Dashboard Chart,All Time,Altijd
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Illegale documentstatus voor {0}
DocType: Email Account,Enable Auto Reply,Inschakelen Automatisch Antwoord
+apps/frappe/frappe/desk/query_report.py,No data to export,Geen gegevens om te exporteren
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Niet Gezien
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Er kunnen niet meerdere printers worden toegewezen aan één afdrukindeling.
DocType: Workflow State,zoom-in,inzoomen
@@ -840,6 +850,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Verander g
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Eerste
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Update vertalingen
DocType: Error Snapshot,Exception,Uitzondering
+DocType: Event Consumer,Event Consumer Document Types,Soorten consumptiedocumenten voor evenementen
DocType: Email Account,Use IMAP,Met IMAP
DocType: Activity Log,Activity Log,Activiteitenlogboek
DocType: View Log,Viewed By,Bekeken door
@@ -879,6 +890,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ins
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Kaarten configureren
DocType: User,Last IP,Laatste IP-
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Voeg een onderwerp toe aan uw e-mail
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Foutieve transacties
DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} keerde terug {1}
DocType: Email Account,Track Email Status,Volg e-mailstatus
@@ -910,6 +922,7 @@ DocType: Email Queue,Attachments,Toebehoren
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,U hebt niet de rechten om toegang te krijgen tot dit document
DocType: Language,Language Name,Taalnaam
DocType: Email Group Member,Email Group Member,E-mail Groepslid
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Geen e-mailaccount gekoppeld aan de gebruiker. Voeg een account toe onder Gebruiker> E-mailinbox.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Uw account is vergrendeld en zal na {0} seconden worden hervat
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Gebruikersmachtigingen worden gebruikt om gebruikers te beperken tot specifieke records.
DocType: Notification,Value Changed,Waarde Veranderd
@@ -1002,6 +1015,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Vermeld transac
DocType: Help Article,Expert,Deskundige
DocType: Workflow State,circle-arrow-right,cirkel-pijl-rechts
DocType: Role Profile,Role Profile,Rolprofiel
+DocType: Document Type Mapping,Remote Document Type,Extern documenttype
apps/frappe/frappe/permissions.py,Document Type is not importable,Documenttype kan niet worden geïmporteerd
DocType: LDAP Settings,LDAP Server Url,LDAP-server Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Kan geen instantie openen als zijn {0} open is
@@ -1087,7 +1101,7 @@ DocType: Web Form,Allow Print,laat Print
DocType: Communication,Clicked,Geklikt
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Volg niet
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Geen toestemming om '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel het standaard e-mailaccount in via Setup> Email> Email Account
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Alleen de eerste {0} rijen uit {1} weergeven
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Gepland voor sturen
DocType: DocType,Track Seen,Track Seen
DocType: Dropbox Settings,File Backup,Bestandsback-up
@@ -1158,6 +1172,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,kie
DocType: Data Export,Filter List,Filterlijst
DocType: Data Export,Excel,uitmunten
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Evenement configuraties
DocType: Email Account,Auto Reply Message,Automatisch Antwoord
DocType: Data Migration Mapping,Condition,Voorwaarde
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} uur geleden
@@ -1217,9 +1232,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Gebruik alti
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Log in om commentaar
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Beginnen met het invoeren onder deze lijn
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},veranderde waarden voor {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","E-mail-ID moet uniek zijn, e-mailaccount bestaat al \ voor {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Gebruik voor vergelijking> 5, <10 of = 324. Gebruik voor bereiken 5:10 (voor waarden tussen 5 en 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Aanpassen...
DocType: Print Format,Align Labels to the Right,Richt Labels naar rechts
DocType: Assignment Rule,Disabled,Uitgeschakeld
@@ -1268,8 +1282,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Toetsenbord sneltoetsen
DocType: Post,Comments,Reacties
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Bevestigen
+DocType: Event Sync Log,Update Type,Update Type
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Verifiëren ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Alles inklappen
+DocType: Event Producer,Last Update,Laatste update
apps/frappe/frappe/www/login.html,Forgot Password?,Wachtwoord vergeten?
DocType: System Settings,yyyy-mm-dd,jjjj-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1310,6 +1326,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,tabelveld
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Columns gebaseerd op
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{0} van {1}, {2} importeren"
DocType: Workflow State,move,Verhuizing
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Het is niet gelukt om een Event Consumer of een Event Consumer voor de huidige site te maken.
apps/frappe/frappe/model/document.py,Action Failed,Actie is mislukt
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,voor Gebruikers
DocType: View Log,View log,Bekijk log
@@ -1473,6 +1490,7 @@ DocType: DefaultValue,Key,Sleutel
DocType: Address,Contacts,Contacten
DocType: System Settings,Setup Complete,Installatie voltooid
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Verslag van alle documenten aandelen
+DocType: Event Consumer,Callback URL,Terugbel-URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importsjabloon moet van het type .csv, .xlsx of .xls zijn"
apps/frappe/frappe/www/update-password.html,New Password,Nieuw wachtwoord
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} ontbrekende
@@ -1540,7 +1558,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; niet toegelaten in conditie
DocType: Async Task,Async Task,Async Task
DocType: Workflow State,picture,afbeelding
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Voltooien
+DocType: Scheduled Job Log,Complete,Voltooien
DocType: DocType,Image Field,beeldveld
DocType: Print Format,Custom HTML Help,Aangepaste HTML Help
DocType: LDAP Settings,Default Role on Creation,Standaardrol bij creatie
@@ -1566,6 +1584,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hulp bij zoeken
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Geregistreerd maar uitgeschakeld
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adres moet aan een bedrijf worden gekoppeld. Voeg een rij voor Bedrijf toe in de onderstaande tabel Links.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,De automatische herhaling voor dit document is uitgeschakeld.
DocType: DocType,Hide Copy,Verberg Copy
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Wis alle rollen
@@ -1604,6 +1623,7 @@ DocType: Bulk Update,Field,Veld
DocType: Communication,Received,ontvangen
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger geldige methoden zoals "before_insert", "after_update", etc (hangt af van de geselecteerde DocType)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},veranderde waarde van {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},E-mailaccount instellen Voer uw wachtwoord in voor: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,System Manager toe te voegen aan deze gebruikershandleiding als er tenminste een System Manager moet zijn
DocType: Chat Message,URLs,URL's
DocType: Data Migration Run,Total Pages,Totaal aantal pagina's
@@ -1611,7 +1631,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Bevestig Afbeelding
DocType: Workflow State,list-alt,list-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Wachtwoord bijgewerkt
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuratie> Gebruikersrechten
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Stappen om uw login te verifiëren
apps/frappe/frappe/utils/password.py,Password not found,Wachtwoord niet gevonden
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1627,8 +1646,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-instel
DocType: Report,Query Report,Query Rapport
DocType: User,Set New Password,Set Nieuw wachtwoord
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Niet toegestaan voor {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s is geen geldig rapport formaat. Rapport formaat moet \ een van de volgende %s
DocType: Chat Message,Chat,Chat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Geen documenten gevonden met de tag {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-groepstoewijzing
@@ -1664,7 +1681,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Voer uw w
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Toegang Secret
DocType: Tag Link,Document Title,Document titel
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Verplicht)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar geleden
DocType: Social Login Key,Social Login Provider,Social Login Provider
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Nog een reactie toevoegen
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Geen gegevens gevonden in het bestand. Maak het nieuwe bestand opnieuw vast met gegevens.
@@ -1712,6 +1728,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 jaar
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Definitief {0} verwijderen?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Hetzelfde bestand al is verbonden aan het record
+DocType: Event Sync Log,Synced,Gesynchroniseerd
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} is geen geldige workflowstatus. Werk uw Workflow bij en probeer het opnieuw.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,gaf {0} punten
DocType: Workflow State,wrench,moersleutel
@@ -1814,6 +1831,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,Maximale lengte
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,kaart-marker
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,De toewijzingsconfiguratie tussen twee doctypes.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Dien een Issue in
DocType: Event,Repeat this Event,Herhaal dit evenement
DocType: Address,Maintenance User,Onderhoud Gebruiker
@@ -1873,6 +1891,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test e-mailadres
DocType: Auto Repeat,Reference Document Type,Referentie Document Type
DocType: ToDo,Sender,Afzender
+DocType: Event Consumer,Incoming Change,Inkomende wijziging
DocType: Google Drive,Backup Folder Name,Naam back-upmap
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Fout bij het evalueren van Melding {0}. Corrigeer uw sjabloon.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1935,9 +1954,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Naam van
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klik op de onderstaande link om het verzoek goed te keuren
DocType: Workflow State,align-left,align-left
DocType: Onboarding Slide,Action Settings,Actie instellingen
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Stel in> Gebruiker
DocType: User,Defaults,Standaardwaarden
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Gebruik voor vergelijking> 5, <10 of = 324. Gebruik 5:10 voor bereiken (voor waarden tussen 5 en 10)."
DocType: Energy Point Log,Revert Of,Terugkeren van
+DocType: Document Type Mapping,Field Mapping,Veldtoewijzing
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Samenvoegen met bestaande
DocType: User,Birth Date,Geboortedatum
DocType: Communication Link,Link Title,Link Titel
@@ -1965,6 +1985,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tag Link
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Chain Integrity
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,In test
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 Valuta = [?] Fractie
Voor bijvoorbeeld 1 USD = 100 Cent"
@@ -1975,6 +1996,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP-groepstoewijzingen
DocType: Chat Message Attachment,Chat Message Attachment,Chatberichtbijlage
DocType: LDAP Settings,Path to CA Certs File,Pad naar CA Certs-bestand
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Als het document verschillende veldnamen heeft aan het einde van de producent en de consument, vink dit aan en stel de toewijzing in"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Lees verder over alle linkopties
DocType: DocType,Database Engine,Database Engine
@@ -2109,6 +2131,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Opmerking
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Fout rapport
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Gegevens exporteren in CSV / Excel-indeling.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Documenttype Veldtoewijzing
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Global Search-documenten instellen.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Authenticatie Apps die u kunt gebruiken zijn:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} bestaat al. Selecteer een andere naam
@@ -2183,7 +2206,6 @@ DocType: Workflow State,Upload,uploaden
DocType: User Permission,Advanced Control,Geavanceerde besturing
DocType: System Settings,Date Format,Datumnotatie
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Niet gepubliceerd
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adressjabloon gevonden. Maak een nieuwe aan via Setup> Printing and Branding> Address Template.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Acties voor workflow ( bijv. goedkeuren , Annuleren) ."
DocType: Data Import,Skip rows with errors,Sla rijen met fouten over
DocType: Workflow State,flag,vlag
@@ -2246,6 +2268,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Vertegenwoordigt de staten toegestaan in één document en de rol toegewezen aan de staat te veranderen.
DocType: Data Migration Connector,Database Name,Database naam
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Vernieuwen Form
+DocType: Event Producer,Event Producer,Producent van evenementen
DocType: DocField,Select,Kiezen
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Bekijk volledig logboek
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Eenvoudige Python-expressie, voorbeeld: status == 'Open' en type == 'Bug'"
@@ -2347,6 +2370,7 @@ DocType: DocType,User Cannot Search,Gebruiker kan niet zoeken
DocType: Communication Link,Communication Link,Communicatie Link
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Ongeldige Output Format
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Kan niet {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Er is een terugkerende {0} {1} voor u gemaakt via Auto Repeat {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Pas deze regel als de gebruiker met de eigenaar
DocType: Global Search Settings,Global Search Settings,Algemene zoekinstellingen
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Wordt uw login ID
@@ -2364,12 +2388,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-code voor i
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Toevoegen aan To Do
DocType: Footer Item,Company,Bedrijf
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gemiddelde van {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Succesvolle transacties
DocType: Scheduled Job Log,Scheduled,Geplande
DocType: User,Logout from all devices while changing Password,Uitloggen van alle apparaten tijdens het wijzigen van het wachtwoord
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Bevestig wachtwoord
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Er zijn fouten opgetreden.
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Voer klant-ID en klantgeheim in Google-instellingen in.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Sluiten
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","E-mail-ID moet uniek zijn, e-mailaccount bestaat al voor {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Kan docstatus niet wijzigen van 0 naar 2
DocType: File,Attached To Field,Bijgevoegd aan veld
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Bijwerken
@@ -2477,6 +2503,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Maand
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Toevoegen Reference: {{ reference_doctype }} {{ reference_name }} te sturen documentverwijzing
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Alleen gebruikers die bij het document betrokken zijn, worden vermeld"
DocType: DocField,Fetch From,Ophalen van
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuratie> Formulier aanpassen
apps/frappe/frappe/modules/utils.py,App not found,App niet gevonden
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Kan geen {0} maken tegen een onderliggend document: {1}
DocType: Social Login Key,Social Login Key,Social Login Key
@@ -2488,7 +2515,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chatber
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Sociaal thuis
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Steek Na kan niet worden ingesteld als {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Delen {0} met
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Email Account setup geef je je wachtwoord in te voeren:
DocType: Workflow State,hand-up,hand-op
DocType: Blog Settings,Writers Introduction,Schrijvers Introductie
DocType: Address,Phone,Telefoon
@@ -2547,7 +2573,7 @@ DocType: Web Page,Insert Style,Stijl invoegen
DocType: Prepared Report,Error Message,Foutmelding
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nieuwe naam Report
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Weekends verbergen
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genereert automatisch terugkerende documenten.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Genereert automatisch terugkerende documenten.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Is
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-teken
@@ -2555,7 +2581,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Waar vo
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hoe moet deze valuta worden geformatteerd? Indien niet ingesteld, dan zal gebruik gemaakt wroden van de systeem standaard"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} documenten verzenden?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,U moet ingelogd zijn en de System Manager Rol hebben om toegang te krijgen tot back-ups.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Fout bij verbinding maken met QZ-ladetoepassing ...
De toepassing QZ-lade moet zijn geïnstalleerd en actief zijn om de functie Raw Print te kunnen gebruiken.
Klik hier om de QZ-lade te downloaden en te installeren .
Klik hier voor meer informatie over Raw Printing ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Printertoewijzing
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Gelieve opslaan voordat het bevestigen.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Wilt u alle gekoppelde documenten annuleren?
@@ -2585,6 +2610,7 @@ DocType: Role Permission for Page and Report,Set Role For,Stel rol voor de
DocType: GCalendar Account,The name that will appear in Google Calendar,De naam die in Google Agenda wordt weergegeven
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Directe kamer met {0} bestaat al.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Verversen ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Controleer de filterwaarden die zijn ingesteld voor Dashboarddiagram: {}
DocType: Event,Starts on,Begint op
DocType: System Settings,System Settings,Systeeminstellingen
DocType: GCalendar Settings,Google API Credentials,Google API-referenties
@@ -2609,6 +2635,7 @@ DocType: Workflow State,ok-sign,ok-teken
apps/frappe/frappe/config/settings.py,Deleted Documents,Documenten verwijderd
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Het CSV-formaat is hoofdlettergevoelig
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop-icoon bestaat al
+DocType: Event Consumer Document Type,Approval Status,Goedkeuringsstatus
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Geef op in welke domeinen de dia's moeten worden weergegeven. Als er niets is opgegeven, wordt de dia standaard in alle domeinen weergegeven."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Dupliceer
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Veld {1} in rij {2} kan niet standaard worden verborgen en verplicht
@@ -2628,6 +2655,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Help Artikelen
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Type:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Uw betaling is mislukt.
+DocType: Event Producer,Producer URL,Producer-URL
DocType: Comment,Unshared,ongedeelde
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Module niet gevonden
@@ -2639,6 +2667,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,opdracht voltooid
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Bulk Bewerken {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Rapport downloaden
+apps/frappe/frappe/model/workflow.py,Workflow Status,Werkstroomstatus
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Niet actief
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Alleen de beheerder mag dashboardgrafiekbronnen maken
DocType: About Us Settings,Settings for the About Us Page,Instellingen voor de pagina Over ons
@@ -2648,6 +2677,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Afd
DocType: Notification Settings,Energy Points,Energiepunten
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tijd {0} moet de notatie hebben: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,bv pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}: kan geen nieuw terugkerend document bijvoegen. Schakel {1} in Afdrukinstellingen in om het bijvoegen van een document in de e-mail voor automatisch herhalen in te schakelen
DocType: User,Generate Keys,Genereer sleutels
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Hiermee worden uw gegevens permanent verwijderd.
DocType: DocType,View Settings,Bekijk instellingen
@@ -2699,6 +2729,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Alle
DocType: Email Queue,Recipient,Ontvanger
DocType: Webhook,Webhook Security,Webhook-beveiliging
+DocType: Event Sync Log,Producer Document Name,Producent Documentnaam
DocType: Communication,Has Attachment,Heeft bijlage
DocType: Address,Sales User,Sales Gebruiker
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and Drop tool om op te bouwen en aan te passen Print Formaten.
@@ -2734,6 +2765,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Onderliggende tabellen worden als raster weergegeven in andere DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setup Auto E-mail
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Omlaag
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,De site waarop u zich wilt abonneren voor het consumeren van evenementen.
DocType: Chat Profile,Message Preview,Bericht voorbeeld
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Dit is een gemeenschappelijk wachtwoord top-10.
DocType: User,User Defaults,Gebruiker Standaardwaarden
@@ -2766,6 +2798,7 @@ DocType: Dashboard Chart,Last Synced On,Laatst gesynchroniseerd
DocType: Comment,Comment Type,Reactie Type
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Gebruikers
+DocType: Document Type Mapping,Local Document Type,Lokaal documenttype
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Rapport Type
DocType: DocField,Signature,Handtekening
@@ -2808,6 +2841,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} heeft deze taak zelf toegewezen: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Jouw land
DocType: Assignment Rule Day,Sunday,Zondag
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Houdt een logboek bij van alle invoegingen, updates en verwijderingen op de site van Event Producer voor documenten met consumenten."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Veldnaam mag geen van {1} zijn
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Standen
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,In Grid View
@@ -2955,7 +2989,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar en Reacties
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Wanneer u een document na Annuleren wijzigt en opslaat, zal het een nieuw nummer krijgen, welke een versie is van het oude nummer."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Geen toestemming om een {0} document bij te voegen, schakel aub Afdrukken toestaan voor {0} in de afdrukinstellingen in"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailaccount niet ingesteld. Maak een nieuw e-mailaccount aan via Instellingen> E-mail> E-mailaccount
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Zie het document op {0}
DocType: Stripe Settings,Publishable Key,Publiceerbare sleutel
DocType: Stripe Settings,Publishable Key,Publiceerbare sleutel
@@ -3034,7 +3067,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Machtigingsniveau
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Kan niet Indienen, Annuleren, Wijzigen zonder te Schrijven"
DocType: List View Setting,Disable Count,Schakel graaf uit
-DocType: Google Maps Settings,Client Key,Client Key
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Weet u zeker dat u de bijlage wilt verwijderen?
apps/frappe/frappe/__init__.py,Thank you,Dankjewel
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Opslaan
@@ -3161,6 +3193,7 @@ DocType: Workflow Document State,Only Allow Edit For,Sta alleen Bewerken toe voo
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Back-up maken op Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Verplichte velden: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Uw naam
+DocType: Event Producer Document Type,Event Producer Document Type,Documenttype producent van evenementen
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Verbindingssucces
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Er bestaat al een Onboarding-dia van het diatype Doorgaan.
@@ -3232,6 +3265,7 @@ DocType: Address,Postal Code,Postcode
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Relink Communicatie
DocType: Translation,Contributed,bijgedragen
apps/frappe/frappe/config/customization.py,Form Customization,Formulier aanpassen
+DocType: Event Update Log,Event Update Log,Gebeurtenis-updatelogboek
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Geen actieve sessies
DocType: Web Form,Route to Success Link,Route naar succeskoppeling
DocType: Onboarding Slide Field,Right,Rechts
@@ -3258,7 +3292,7 @@ DocType: Website Settings,Chat Operators,Chat Operators
DocType: S3 Backup Settings,ca-central-1,ca-centrale-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Zorg ervoor dat er geen lege kolommen in het bestand staan.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Traceert mijlpalen in de levenscyclus van een document als het meerdere fasen doorloopt.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Traceert mijlpalen in de levenscyclus van een document als het meerdere fasen doorloopt.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Hernoemde bestanden en vervangen code in controllers, controleer dit!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Zorg ervoor dat uw profiel heeft een e-mailadres
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,U hebt niet-opgeslagen wijzigingen in dit scherm. Sla eerst op.
@@ -3285,7 +3319,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Save API Secret:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Kan het geannuleerde document niet koppelen: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Kan een standaard rapport niet bewerken. Gelieve te dupliceren en maak een nieuw rapport
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Bedrijf is vereist, want het is uw bedrijfsadres"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Bijvoorbeeld: Als u de document-id omvatten, gebruik {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Tabel selecteren Columns voor {0}
DocType: Custom Field,Options Help,Opties Help
@@ -3293,7 +3326,6 @@ DocType: Footer Item,Group Label,Etiket
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacten is geconfigureerd.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 record wordt geëxporteerd
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Geen e-mailaccount gekoppeld aan de gebruiker. Voeg een account toe onder Gebruiker> E-mailinbox.
DocType: DocField,Report Hide,Rapport Verbergen
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Boomstructuur niet beschikbaar voor {0}
DocType: DocType,Restrict To Domain,Beperkt tot Domein
@@ -3359,7 +3391,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Veld {1} van type {2} kan niet verplicht zijn
DocType: System Settings,In Days,In dagen
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Missen
+DocType: Event Producer Document Type,Has Mapping,Heeft mapping
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Specificeer
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Ongeldige filterwaarde
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Help Artikel
DocType: Page,Page Name,Page Name
@@ -3467,7 +3501,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Print Formaat
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Schakelen tussen rasterweergave
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Ga naar het volgende record
-DocType: System Settings,Time Format,Tijd formaat
+DocType: Country,Time Format,Tijd formaat
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ongeldige betaling gateway geloofsbrieven
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Dit is het sjabloonbestand dat is gegenereerd met alleen de rijen die een fout bevatten. U zou dit bestand moeten gebruiken voor correctie en import.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Instellen Machtigingen op Document Types en Rollen
@@ -3804,6 +3838,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Log in met gebruikersnaam
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Inschakelen Rapport
DocType: DocField,Display Depends On,Weergave is afhankelijk van
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar geleden
DocType: Social Login Key,API Endpoint,API-eindpunt
DocType: Web Page,Insert Code,Code invoegen
DocType: Data Migration Run,Current Mapping Type,Huidige toewijzingstype
@@ -3857,6 +3892,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Bev
apps/frappe/frappe/www/login.html,Or login with,Of log in met
DocType: Error Snapshot,Locals,Locals
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Gecommuniceerd via {0} on {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Soorten evenementproducenten
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel het standaard e-mailaccount in via Setup> Email> Email Account
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Selecteer Groeperen op ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,bijv (55 + 434) / 4 = of Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} is verplicht
@@ -3889,9 +3926,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Starttijd melden
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportgegevens
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Houdt een logboek bij van elke verbruikte gebeurtenis samen met de status van de synchronisatie en een knop Resync voor het geval de synchronisatie mislukt.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Kolommen selecteren
DocType: Translation,Source Text,bron tekst
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Dit is een achtergrondrapport. Stel de juiste filters in en genereer vervolgens een nieuwe.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailaccount niet ingesteld. Maak een nieuw e-mailaccount aan via Instellingen> E-mail> E-mailaccount
apps/frappe/frappe/www/login.py,Missing parameters for login,Ontbrekende parameters om in te loggen
DocType: Workflow State,folder-open,map te openen
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Na indiening kunnen de in te dienen documenten niet meer worden gewijzigd. Ze kunnen alleen worden geannuleerd en gewijzigd.
@@ -3971,6 +4010,7 @@ DocType: Blog Post,Published On,Gepubliceerd op
DocType: Contact,Gender,Geslacht
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Verplichte informatie ontbreekt:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} heeft uw punten teruggezet op {1}
+DocType: Event Consumer,Event Subscriber,Abonnee van evenement
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Controleer de aanvraag-URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Slechts 200 inserts toegestaan in één verzoek
DocType: Footer Item,URL,URL
@@ -3983,6 +4023,7 @@ DocType: Auto Email Report,Half Yearly,Halfjaarlijkse
DocType: Communication,Marked As Spam,Gemarkeerd als spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Er is een probleem met het bestand url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Boom
+DocType: Event Producer Document Type,Use Same Name,Gebruik dezelfde naam
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,U hebt geen toestemming om dit rapport af te drukken
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Gebruikersmachtigingen
DocType: Workflow State,warning-sign,waarschuwing-teken
@@ -3992,6 +4033,7 @@ DocType: Workflow State,User,Gebruiker
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Toon titel in browservenster als "Prefix - titel"
DocType: Payment Gateway,Gateway Settings,Gateway-instellingen
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,tekst in het documenttype
+DocType: Event Sync Log,Event Sync Log,Logboek voor gebeurtenissynchronisatie
apps/frappe/frappe/handler.py,Logged Out,Uitgelogd
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Meer...
DocType: System Settings,User can login using Email id or Mobile number,Gebruiker kan inloggen met e-mail id of mobiel nummer
@@ -4032,12 +4074,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Niet In
DocType: Workflow State,star,ster
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Naaf
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Als dit is aangevinkt, hebben de documenten dezelfde naam als op de site van de Evenementproducent"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,waarden gescheiden door komma's
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max. breedte voor het type Valuta is 100px in rij {0}
apps/frappe/frappe/config/website.py,Content web page.,Inhoud webpagina.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Voeg een nieuwe rol toe
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Bezoek webpagina
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nieuwe opdracht
+DocType: Event Consumer Document Type,Approved,Aangenomen
DocType: Google Contacts,Last Sync On,Last Sync On
DocType: Deleted Document,Deleted Document,verwijderde Document
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oeps! Er ging iets mis!
@@ -4090,7 +4134,6 @@ DocType: DocField,Unique,Uniek
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} gewaardeerd op {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Gedeeltelijk succes
DocType: Email Account,Service,Service
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Stel in> Gebruiker
DocType: File,File Name,Bestandsnaam
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Niet gevonden {0} voor {0} ( {1} )
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4102,11 +4145,10 @@ DocType: Calendar View,Calendar View,Kalenderweergave
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Bewerken Formaat
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Registratie voltooien
DocType: GCalendar Settings,Enable,in staat stellen
-DocType: Google Maps Settings,Home Address,Thuisadres
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),U kunt maximaal 5000 records in één keer uploaden (soms minder).
DocType: Report,"output in the form of `data = [columns, result]`","uitvoer in de vorm van `data = [kolommen, resultaat]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Toepasselijke documenttypen
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Regels instellen voor gebruikerstoewijzingen.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Regels instellen voor gebruikerstoewijzingen.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Onvoldoende Toestemming voor {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Onvoldoende Toestemming voor {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Rapport is niet opgeslagen (er waren fouten)
diff --git a/frappe/translations/no.csv b/frappe/translations/no.csv
index 14351c72f3..ef966bc606 100644
--- a/frappe/translations/no.csv
+++ b/frappe/translations/no.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Denne rollen oppdatere brukertillatelser for en bruker
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Gi nytt navn til {0}
DocType: Workflow State,zoom-out,zoome ut
-DocType: Data Import Beta,Import Options,Importer alternativer
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Kan ikke åpne {0} når sitt eksempel er åpen
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabell {0} kan ikke være tomt
DocType: SMS Parameter,Parameter,Parameter
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Avbr
DocType: DocType,Is Published Field,Er Publisert Feltet
DocType: GCalendar Settings,GCalendar Settings,GCalendar-innstillinger
DocType: Email Group,Email Group,E-post-konsernet
-apps/frappe/frappe/__init__.py,Only for {},Bare for {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Kalender - Kunne ikke slette hendelse {0} fra Google Kalender, feilkode {1}."
DocType: Event,Pulled from Google Calendar,Trekkes fra Google Kalender
DocType: Note,Seen By,Sett av
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Legg til flere
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ikke et gyldig brukerbilde.
DocType: Energy Point Log,Reverted,falt
DocType: Success Action,First Success Message,Første suksessmelding
+DocType: Document Type Mapping,Document Type Mapping,Kartlegging av dokumenttype
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Ikke like
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Feil verdi: {0} må være {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Endre feltegenskaper (hjem, skrivebeskyttet, tillatelse etc.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Nettstedet som konsumerer hendelsene dine.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Sette pris på
DocType: Notification Settings,Document Share,Dokumentandel
DocType: Workflow State,lock,låse
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Logg
DocType: Workflow State,indent-right,innrykk høyre
DocType: Has Role,Has Role,har rolle
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Tid i sekunder for å beholde QR-kodebilde på serveren. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Feltype {1} for {2} kan ikke indekseres
DocType: Dashboard Chart,Timespan,Tidsrom
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Internettlink
DocType: Deleted Document,Restored,restaurert
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Feil ved tilkobling til QZ Tray Application ...
Du må ha QZ Tray-applikasjon installert og kjørt for å bruke Raw Print-funksjonen.
Klikk her for å laste ned og installere QZ Tray .
Klikk her for å lære mer om Raw Printing ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minutt siden
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Bortsett fra System Manager, roller med Set brukertillatelser høyre kan angi tillatelser for andre brukere for at dokumenttype."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigurer tema
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,USETT
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Filbehandler
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML-topptekst, roboter og viderekoblinger"
DocType: GCalendar Account,Refresh Token,Refresh Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Kunne ikke koble til nettstedet Eventprodusent. Prøv igjen etter litt tid.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Ingen ventende eller nåværende jobber for dette nettstedet
DocType: Webhook,Doc Event,Doc Event
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Manusmanager
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Ingen aktivitet
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Tredjepartsprogrammer
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Den første brukeren vil bli System Manager (du kan endre dette senere).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Du kan prøve å endre filterene i rapporten.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Ingen hendelser i dag
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Du kan ikke gi vurderingspoeng til deg selv
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType må være Submitterable for den valgte Doc Event
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Du har ikke lov til å sende e-poster knyttet til dette dokumentet
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Velg minst en kolonne fra {0} til å sortere / gruppe
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Ikke tillatt for {0}: {1}. Begrenset felt: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Selskapet ikke tilknyttet
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Sjekk dette hvis du tester din betaling med Sandbox API
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Du har ikke lov til å slette en standard nettside Theme
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Lag din første {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Oppdater
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,En Onboarding-lysbilde {0} med samme lysbilde-rekkefølge eksisterer allerede
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Deaktiver Rapporter
DocType: Translation,Contributed Translation Doctype Name,Bidragt oversettelse Doctype Name
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Oppsett> Tilpass skjema
DocType: PayPal Settings,Redirect To,omdirigere å
DocType: Data Migration Mapping,Pull,Dra
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Javascript Format: frappe.query_reports ['rapportnavn'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Ikke tillatt
DocType: DocShare,Internal record of document shares,Intern oversikt over dokument aksjer
DocType: Energy Point Settings,Review Levels,Anmeldelse Levels
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Oppsett> Brukertillatelser
DocType: Workflow State,Comment,Kommentar
DocType: Data Migration Plan,Postprocess Method,Etterprosessmetode
DocType: DocType Action,Action Type,Handlingstype
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Vis
DocType: Workflow State,remove-circle,fjern-sirkel
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Min profil
DocType: Help Article,Beginner,Nybegynner
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Denne handlingen er bare tillatt for {}
DocType: Contact,Is Primary Contact,Er Primær kontaktperson
+DocType: Event Consumer,Event Consumer,Eventforbruker
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Script for å føye til hodet delen av siden.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Legg til / oppdater
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Ikke lov til å skrive ut kladder
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Tilbakestill til standard
DocType: Workflow,Transition Rules,Overgangsregler
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Viser bare de første {0} radene i forhåndsvisning
apps/frappe/frappe/core/doctype/report/report.js,Example:,Eksempel:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Begrensninger
DocType: Workflow,Defines workflow states and rules for a document.,Definerer arbeidsflyt stater og regler for et dokument.
@@ -481,7 +487,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Gjenta Till
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Ny
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Du må opprette disse først:
-DocType: Google Maps Settings,Google Maps Settings,Innstillinger for Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Laster inn ...
DocType: DocField,Password,Passord
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Systemet blir oppdatert. Vennligst oppdater igjen etter en liten stund
@@ -574,6 +579,7 @@ DocType: Onboarding Slide,Onboarding Slide,Onboarding Slide
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ugyldig passord:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Ugyldig passord:
DocType: Print Settings,Send document web view link in email,Send dokumentet web visning linken i e-post
+DocType: Event Consumer Document Type,Event Consumer Document Type,Forbrukerdokumenttype
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Forrige
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Krev pålitelig sertifikat
@@ -649,6 +655,7 @@ DocType: Workflow State,volume-down,volum-ned
DocType: Onboarding Slide,Help Links,Hjelp lenker
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Tilgang ikke tillatt fra denne IP-adressen
DocType: Notification Settings,Enable Email Notifications,Aktiver e-postvarsler
+DocType: Document Type Field Mapping,Event Streaming,Begivenhetsstrømming
apps/frappe/frappe/desk/reportview.py,No Tags,ingen tagger
DocType: Email Account,Send Notification to,Sende melding til
DocType: DocField,Collapsible,Sammenleggbar
@@ -665,11 +672,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Ingen betingelser
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y aksefelt
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sorteringsfelt {0} må være en gyldig feltnavn
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressemaler funnet. Opprett en ny fra Oppsett> Utskrift og merkevarebygging> Adressemal.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Mer
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Lag en ny post
DocType: Contact,Sales Manager,Salgssjef
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Gi nytt navn
DocType: Print Format,Format Data,Formater data
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} er ikke et gyldig rapportformat. Rapportformat skal være ett av følgende {1}
DocType: List Filter,Filter Name,Filternavn
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Som
DocType: Assignment Rule,Automation,Automasjon
@@ -688,6 +697,7 @@ DocType: User,Reset Password Key,Reset Password Key
DocType: Dashboard Chart,All Time,Hele tiden
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Ulovlig dokumentstatus for {0}
DocType: Email Account,Enable Auto Reply,Aktiver automatisk svar
+apps/frappe/frappe/desk/query_report.py,No data to export,Ingen data å eksportere
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ikke sett
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Kan ikke ha flere skrivere kartlagt til et enkelt utskriftsformat.
DocType: Workflow State,zoom-in,zoom inn
@@ -840,6 +850,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Bytt bruke
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Først
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Oppdater oversettelser
DocType: Error Snapshot,Exception,Unntak
+DocType: Event Consumer,Event Consumer Document Types,Forbrukerdokumenttyper
DocType: Email Account,Use IMAP,Bruk IMAP
DocType: Activity Log,Activity Log,Aktivitetsloggen
DocType: View Log,Viewed By,Sett av
@@ -878,6 +889,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurer diagrammer
DocType: User,Last IP,Siste IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Vennligst legg til et emne i din epost
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Feilte transaksjoner
DocType: Data Migration Connector,Data Migration Connector,Datamigreringskobling
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} tilbakeført {1}
DocType: Email Account,Track Email Status,Spor e-poststatus
@@ -909,6 +921,7 @@ DocType: Email Queue,Attachments,Vedlegg
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Du har ikke tillatelse til å få tilgang til dette dokumentet
DocType: Language,Language Name,språk Name
DocType: Email Group Member,Email Group Member,Send e-post Gruppe Medlem
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ingen e-postkonto tilknyttet brukeren. Legg til en konto under Bruker> E-postinnboks.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Kontoen din er låst og vil fortsette etter {0} sekunder
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Bruker Tillatelser brukes til å begrense brukere til bestemte poster.
DocType: Notification,Value Changed,Verdi Endret
@@ -1001,6 +1014,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Nevn transaksjo
DocType: Help Article,Expert,Ekspert
DocType: Workflow State,circle-arrow-right,sirkel-pil høyre
DocType: Role Profile,Role Profile,Rollespill
+DocType: Document Type Mapping,Remote Document Type,Ekstern dokumenttype
apps/frappe/frappe/permissions.py,Document Type is not importable,Dokumenttype kan ikke importeres
DocType: LDAP Settings,LDAP Server Url,LDAP Server Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Kan ikke åpne eksempel når sin {0} er åpen
@@ -1086,7 +1100,7 @@ DocType: Web Form,Allow Print,lar utskrifts
DocType: Communication,Clicked,Klikket
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Slutt å følge
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ingen tillatelse til {0} {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Angi standard e-postkonto fra Oppsett> E-post> E-postkonto
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Viser bare de første {0} radene av {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planlagt å sende
DocType: DocType,Track Seen,Track Seen
DocType: Dropbox Settings,File Backup,File Backup
@@ -1157,6 +1171,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vel
DocType: Data Export,Filter List,Filterliste
DocType: Data Export,Excel,utmerke
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Arrangementskonfigurasjoner
DocType: Email Account,Auto Reply Message,Auto svarmelding
DocType: Data Migration Mapping,Condition,Tilstand
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} timer siden
@@ -1216,9 +1231,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Bruk alltid
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Logg inn for å kommentere
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Begynne å legge inn data under denne linjen
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},endrede verdier for {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","E-post-ID må være unikt, E-postkonto eksisterer allerede \ for {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning, bruk> 5, <10 eller = 324. For områder kan du bruke 5:10 (for verdier mellom 5 og 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Tilpass ...
DocType: Print Format,Align Labels to the Right,Juster etiketter til høyre
DocType: Assignment Rule,Disabled,Funksjonshemmede
@@ -1267,8 +1281,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tastatursnarveier
DocType: Post,Comments,Kommentarer
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Bekrefte
+DocType: Event Sync Log,Update Type,Oppdateringstype
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Godkjenner ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Skjul alle
+DocType: Event Producer,Last Update,Siste oppdatering
apps/frappe/frappe/www/login.html,Forgot Password?,Glemt passord?
DocType: System Settings,yyyy-mm-dd,åååå-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1309,6 +1325,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabell Fel
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolonner basert på
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importerer {0} av {1}, {2}"
DocType: Workflow State,move,trekk
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Kunne ikke opprette en begivenhetsforbruker eller en begivenhetsforbruker for det nåværende nettstedet er allerede registrert.
apps/frappe/frappe/model/document.py,Action Failed,handling Kunne
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,for bruker
DocType: View Log,View log,Se Logg
@@ -1472,6 +1489,7 @@ DocType: DefaultValue,Key,Nøkkel
DocType: Address,Contacts,Kontakt
DocType: System Settings,Setup Complete,Setup Complete
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport fra alle dokument aksjer
+DocType: Event Consumer,Callback URL,Tilbakeringingsadresse
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importmalen skal være av typen .csv, .xlsx eller .xls"
apps/frappe/frappe/www/update-password.html,New Password,Nytt Passord
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} mangler
@@ -1538,7 +1556,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suk
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Ikke tillatt i tilstand
DocType: Async Task,Async Task,Async Task
DocType: Workflow State,picture,bilde
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Fullstendig
+DocType: Scheduled Job Log,Complete,Fullstendig
DocType: DocType,Image Field,Bilde Felt
DocType: Print Format,Custom HTML Help,Custom HTML-hjelp
DocType: LDAP Settings,Default Role on Creation,Standard rolle for oppretting
@@ -1564,6 +1582,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hjelp til søk
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrert men deaktivert
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adressen må kobles til et selskap. Legg til en rad for selskapet i koblingen-tabellen nedenfor.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Auto Repeat for dette dokumentet er deaktivert.
DocType: DocType,Hide Copy,Skjule Kopier
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Fjerne alle roller
@@ -1602,6 +1621,7 @@ DocType: Bulk Update,Field,feltet
DocType: Communication,Received,Mottatt
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger på gyldige metoder som "before_insert", "after_update", etc (vil avhenge av valgt DOCTYPE)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},endret verdi på {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},Oppsett av e-postkonto vennligst skriv inn passordet ditt for: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Legge System Manager til denne bruker som det må være minst én System Manager
DocType: Chat Message,URLs,webadresser
DocType: Data Migration Run,Total Pages,Totalt antall sider
@@ -1609,7 +1629,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Fest bilde
DocType: Workflow State,list-alt,list-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Passord Oppdatert
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Oppsett> Brukertillatelser
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Trinn for å bekrefte innlogging
apps/frappe/frappe/utils/password.py,Password not found,Passord ikke funnet
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1625,8 +1644,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Innstillinger for
DocType: Report,Query Report,Query Rapporter
DocType: User,Set New Password,Set New Password
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ikke tillatt for {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S er ikke en gyldig rapportformat. Rapporter format skal \ ett av følgende% s
DocType: Chat Message,Chat,Chat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Ingen dokumenter funnet tagget med {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-gruppekartlegging
@@ -1662,7 +1679,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Skriv inn
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Tilgang Secret
DocType: Tag Link,Document Title,Dokument tittel
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),"(Påbudt, bindende)"
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden
DocType: Social Login Key,Social Login Provider,Sosial innloggingsleverandør
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Legg til en kommentar
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Ingen data funnet i filen. Vennligst sett den nye filen på nytt med data.
@@ -1710,6 +1726,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Velg ta
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 år
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Slette {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Samme filen er allerede festet til posten
+DocType: Event Sync Log,Synced,synkronisert
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} er ikke en gyldig arbeidsflytstat. Oppdater arbeidsflyten din og prøv igjen.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,ga {0} poeng
DocType: Workflow State,wrench,skiftenøkkel
@@ -1812,6 +1829,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,S
DocType: Web Form Field,Max Length,Maks lengde
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,map-markør
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Kartleggingskonfigurasjonen mellom to dokktyper.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Send inn et problem
DocType: Event,Repeat this Event,Gjenta dette arrangementet
DocType: Address,Maintenance User,Vedlikehold Bruker
@@ -1871,6 +1889,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test e-postadresse
DocType: Auto Repeat,Reference Document Type,Reference Document Type
DocType: ToDo,Sender,Avsender
+DocType: Event Consumer,Incoming Change,Innkommende endring
DocType: Google Drive,Backup Folder Name,Navn på sikkerhetskopimappe
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Feil under vurdering av varsel {0}. Vennligst lagre malen din.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1933,9 +1952,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nytt uts
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klikk på lenken nedenfor for å godkjenne forespørselen
DocType: Workflow State,align-left,justere venstre
DocType: Onboarding Slide,Action Settings,Handlingsinnstillinger
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Oppsett> Bruker
DocType: User,Defaults,Mislighold
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning, bruk> 5, <10 eller = 324. For områder kan du bruke 5:10 (for verdier mellom 5 og 10)."
DocType: Energy Point Log,Revert Of,Revert Of
+DocType: Document Type Mapping,Field Mapping,Feltkartlegging
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Slå sammen med eksisterende
DocType: User,Birth Date,Bursdag
DocType: Communication Link,Link Title,Link Title
@@ -1963,6 +1983,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tagg Link
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Kjedeintegritet
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,I test
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Valuta = [?] Fraction For eksempel 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Delvis vellykket
@@ -1972,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP-gruppekartlegging
DocType: Chat Message Attachment,Chat Message Attachment,Chat Melding Vedlegg
DocType: LDAP Settings,Path to CA Certs File,Sti til CA Certs-fil
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Hvis dokumentet har forskjellige feltnavn på produsentens og forbrukerens slutt, sjekk dette og sett opp kartleggingen"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Tillat lesing på alle koblingsalternativer
DocType: DocType,Database Engine,database Engine
@@ -2106,6 +2128,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Notat
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Feilrapport
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Eksporter data i CSV / Excel-format.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Feltkartlegging av dokumenttype
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Sette opp Global Search-dokumenter.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Autentiseringsprogrammer du kan bruke er:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} eksisterer allerede. Velg et annet navn
@@ -2181,7 +2204,6 @@ DocType: Workflow State,Upload,Last opp
DocType: User Permission,Advanced Control,Avansert kontroll
DocType: System Settings,Date Format,Datoformat
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Ikke publisert
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressemaler funnet. Opprett en ny fra Oppsett> Utskrift og merkevarebygging> Adressemal.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",Initiativer for arbeidsflyt (f.eks godkjenne Avbryt).
DocType: Data Import,Skip rows with errors,Hopp over rader med feil
DocType: Workflow State,flag,flagg
@@ -2244,6 +2266,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Representerer statene tillatt i ett dokument og rolle tildelt endre staten.
DocType: Data Migration Connector,Database Name,Database navn
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Refresh Form
+DocType: Event Producer,Event Producer,Eventprodusent
DocType: DocField,Select,Velg
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Vis full logg
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Simple Python Expression, Eksempel: status == 'Open' og skriv == 'Bug'"
@@ -2345,6 +2368,7 @@ DocType: DocType,User Cannot Search,Bruker kan ikke søke
DocType: Communication Link,Communication Link,Kommunikasjonslink
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Ugyldig Output Format
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Kan ikke {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,En tilbakevendende {0} {1} er opprettet for deg via Auto Repeat {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Gjelder denne regelen dersom Bruker er eier
DocType: Global Search Settings,Global Search Settings,Globale søkeinnstillinger
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Vil være innloggings-IDen din
@@ -2362,12 +2386,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-kode for in
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Legg til å gjøre
DocType: Footer Item,Company,Selskap
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gjennomsnitt av {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Vellykkede transaksjoner
DocType: Scheduled Job Log,Scheduled,Planlagt
DocType: User,Logout from all devices while changing Password,Logg ut fra alle enheter mens du endrer passord
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Bekreft Passord
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Det var feil
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Skriv inn klient-id og klienthemmelighet i Google-innstillinger.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Lukk
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",E-post-ID må være unik. E-postkonto eksisterer allerede for {0}
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Kan ikke endre docstatus fra 0 til 2
DocType: File,Attached To Field,Vedlagt til felt
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Oppdater
@@ -2475,6 +2501,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Måned
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Legg Reference: {{ reference_doctype }} {{ reference_name }} å sende dokumentreferanse
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Bare brukere som er involvert i dokumentet, vises"
DocType: DocField,Fetch From,Hent fra
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Oppsett> Tilpass skjema
apps/frappe/frappe/modules/utils.py,App not found,App ikke funnet
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Kan ikke opprette en {0} mot et barn dokument: {1}
DocType: Social Login Key,Social Login Key,Sosiale innloggingsnøkkel
@@ -2486,7 +2513,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat me
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Sosialt hjem
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Sett Etter kan ikke settes som {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Del {0} med
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-postkonto oppsett må oppgi passord for:
DocType: Workflow State,hand-up,hand-up
DocType: Blog Settings,Writers Introduction,Writers Introduksjon
DocType: Address,Phone,Telefon
@@ -2545,7 +2571,7 @@ DocType: Web Page,Insert Style,Sett stil
DocType: Prepared Report,Error Message,Feilmelding
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ny rapport navn
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skjul helger
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genererer automatisk gjentagende dokumenter.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Genererer automatisk gjentagende dokumenter.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Er
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-skilt
@@ -2553,7 +2579,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Verdi f
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvordan skal denne valutaen være formatert? Dersom ikke satt, vil bruke systemstandarder"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Send {0} dokumenter?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Du må være logget inn og ha System Manager Rolle å kunne få tilgang til backup.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Feil ved tilkobling til QZ Tray Application ...
Du må ha QZ Tray-applikasjon installert og kjørt for å bruke Raw Print-funksjonen.
Klikk her for å laste ned og installere QZ Tray .
Klikk her for å lære mer om Raw Printing ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Skriverkartlegging
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Vennligst spare før du fester.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Vil du avbryte alle koblede dokumenter?
@@ -2583,6 +2608,7 @@ DocType: Role Permission for Page and Report,Set Role For,Sett rolle for
DocType: GCalendar Account,The name that will appear in Google Calendar,Navnet som vil vises i Google Kalender
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Direkte rom med {0} eksisterer allerede.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Forfriskende ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Sjekk filterverdiene som er angitt for Dashboard Chart: {}
DocType: Event,Starts on,Starter på
DocType: System Settings,System Settings,Systeminnstillinger
DocType: GCalendar Settings,Google API Credentials,Google API-legitimasjon
@@ -2608,6 +2634,7 @@ DocType: Workflow State,ok-sign,ok-tegn
apps/frappe/frappe/config/settings.py,Deleted Documents,Slettede dokumenter
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV-formatet er saksfølsomt
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon eksisterer allerede
+DocType: Event Consumer Document Type,Approval Status,Godkjenningsstatus
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Spesifiser i hvilke domener lysbildene skal vises. Hvis ingenting er spesifisert, vises lysbildet som standard i alle domener."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplisere
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Felt {1} i rad {2} kan ikke være skjult og obligatorisk uten standard
@@ -2627,6 +2654,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Hjelp artikler
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Type:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Din betaling har mislyktes.
+DocType: Event Producer,Producer URL,Produsentens URL
DocType: Comment,Unshared,udelte
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Module Not Found
@@ -2638,6 +2666,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Overdragelse Fullført
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Bulk Edit {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Last ned rapport
+apps/frappe/frappe/model/workflow.py,Workflow Status,Arbeidsflytstatus
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Ikke aktiv
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Det er bare administratorer som har lov til å opprette kartkildekilder
DocType: About Us Settings,Settings for the About Us Page,Innstillinger for oss siden
@@ -2647,6 +2676,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Skr
DocType: Notification Settings,Energy Points,Energipoeng
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tid {0} må være i format: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,f.eks pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Kunne ikke legge ved nytt gjentakende dokument. For å aktivere vedleggsdokument i e-postmeldingen om automatisk gjenta varsling, aktiverer du {1} i Utskriftsinnstillinger"
DocType: User,Generate Keys,Generere nøkler
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Dette vil fjerne dataene dine permanent.
DocType: DocType,View Settings,Vis innstillinger
@@ -2698,6 +2728,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Alt
DocType: Email Queue,Recipient,Mottaker
DocType: Webhook,Webhook Security,Webhook Security
+DocType: Event Sync Log,Producer Document Name,Produsentens dokumentnavn
DocType: Communication,Has Attachment,har Vedlegg
DocType: Address,Sales User,Salg User
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Dra og slipp verktøy for å bygge og tilpasse utskriftsformater.
@@ -2733,6 +2764,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Barnetabeller vises som et rutenett i andre DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Oppsett Auto E-post
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Ned
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Nettstedet du vil abonnere på for konsumerende hendelser.
DocType: Chat Profile,Message Preview,Forhåndsvisning av melding
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Dette er en topp-ti felles passord.
DocType: User,User Defaults,Bruker Defaults
@@ -2765,6 +2797,7 @@ DocType: Dashboard Chart,Last Synced On,Sist synkronisert på
DocType: Comment,Comment Type,Kommentar Type
DocType: OAuth Client,OAuth Client,OAuth-klient
DocType: Assignment Rule,Users,Brukere
+DocType: Document Type Mapping,Local Document Type,Lokal dokumenttype
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Rapporttype
DocType: DocField,Signature,Signatur
@@ -2807,6 +2840,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} selv tilordnet denne oppgaven: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Ditt land
DocType: Assignment Rule Day,Sunday,Søndag
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Opprettholder en logg over alle innlegg, oppdateringer og slettinger på Event Produsent nettsted for dokumenter som har forbrukere."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Feltnavn kan ikke være et av {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,plasseringer
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,I Grid View
@@ -2954,7 +2988,6 @@ DocType: Web Page,Sidebar and Comments,Sidepanel og kommentarer
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Når du Endre et dokument etter Avbryt og lagre det, vil det bli et nytt nummer som er en versjon av det gamle nummeret."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Ikke tillatt å legge ved {0} dokument, vennligst aktiver Tillat utskrift for {0} i utskriftsinnstillinger"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto er ikke konfigurert. Opprett en ny e-postkonto fra Oppsett> E-post> E-postkonto
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Se dokumentet på {0}
DocType: Stripe Settings,Publishable Key,Publiserbar nøkkel
DocType: Stripe Settings,Publishable Key,Publiserbar nøkkel
@@ -3032,7 +3065,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Tillatelse nivå
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sette Send, Avbryt: Bedre uten Write"
DocType: List View Setting,Disable Count,Deaktiver telling
-DocType: Google Maps Settings,Client Key,Klientnøkkel
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Er du sikker på at du vil slette vedlegget?
apps/frappe/frappe/__init__.py,Thank you,Takk
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Besparende
@@ -3159,6 +3191,7 @@ DocType: Workflow Document State,Only Allow Edit For,Bare Tillat Rediger For
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Sikkerhetskopiere til Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Obligatorisk felt: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Navnet ditt
+DocType: Event Producer Document Type,Event Producer Document Type,Eventprodusentens dokumenttype
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Tilkoblingssuksess
DocType: DocType,InnoDB,Uskyldig
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,En Onboarding-lysbilde av lysbildetype Fortsett eksisterer allerede.
@@ -3229,6 +3262,7 @@ DocType: Address,Postal Code,postnummer
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Koble på nytt Kommunikasjon
DocType: Translation,Contributed,bidratt
apps/frappe/frappe/config/customization.py,Form Customization,Formtilpasning
+DocType: Event Update Log,Event Update Log,Hendelsesoppdateringslogg
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ingen aktive økter
DocType: Web Form,Route to Success Link,Rute til suksesslink
DocType: Onboarding Slide Field,Right,Rett
@@ -3255,7 +3289,7 @@ DocType: Website Settings,Chat Operators,Chatoperatører
DocType: S3 Backup Settings,ca-central-1,ca-sentral-1
DocType: Contact Us Settings,Pincode,Pinkode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Vennligst sørg for at det ikke er tomme kolonner i filen.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Sporer milepæler i livssyklusen til et dokument hvis det gjennomgår flere stadier.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Sporer milepæler i livssyklusen til et dokument hvis det gjennomgår flere stadier.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Omdøpt filer og erstattet kode i kontrollere, vennligst sjekk!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Sørg for at profilen din har en e-postadresse
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Du har ulagrede endringer i dette skjemaet. Vennligst lagre før du fortsetter.
@@ -3282,7 +3316,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Lagre API-hemmelighet:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Kan ikke koble avbestilling dokumentet: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Kan ikke redigere en standardrapport. Vennligst kopiere og opprette en ny rapport
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Selskapet er obligatorisk, så det er et selskap adresse"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","For eksempel: Hvis du vil inkludere dokumentet ID, bruker {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Velg Tabell Kolonner for {0}
DocType: Custom Field,Options Help,Alternativer Hjelp
@@ -3290,7 +3323,6 @@ DocType: Footer Item,Group Label,Gruppe etikett
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google-kontakter er konfigurert.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 post blir eksportert
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ingen e-postkonto tilknyttet brukeren. Legg til en konto under Bruker> E-postinnboks.
DocType: DocField,Report Hide,Rapporter Skjul
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Trevisning ikke tilgjengelig for {0}
DocType: DocType,Restrict To Domain,Begrens til domene
@@ -3356,7 +3388,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Felt {1} av typen {2} kan ikke være obligatorisk
DocType: System Settings,In Days,I dager
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Gå glipp av
+DocType: Event Producer Document Type,Has Mapping,Har kartlegging
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Vennligst spesifiser
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Ugyldig filterverdi
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Hjelp Artikkel
DocType: Page,Page Name,Page Name
@@ -3464,7 +3498,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Print Format
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Veksle gridvisning
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Gå til neste post
-DocType: System Settings,Time Format,Tidsformat
+DocType: Country,Time Format,Tidsformat
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ugyldige betaling gateway legitimasjon
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Dette er malfilen som genereres med bare radene som har noen feil. Du bør bruke denne filen for korrigering og import.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Angi tillatelser på dokumenttyper og roller
@@ -3787,6 +3821,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Tillat innlogging med brukernavn
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Aktiver Rapporter
DocType: DocField,Display Depends On,Visningen avhenger
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden
DocType: Social Login Key,API Endpoint,API Endpoint
DocType: Web Page,Insert Code,Sett inn kode
DocType: Data Migration Run,Current Mapping Type,Aktuell kartleggingstype
@@ -3840,6 +3875,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Bek
apps/frappe/frappe/www/login.html,Or login with,Eller logg inn med
DocType: Error Snapshot,Locals,Lokalbefolkningen
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Kommunisert via {0} på {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Eventprodusentens dokumenttyper
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Angi standard e-postkonto fra Oppsett> E-post> E-postkonto
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Velg gruppe etter ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,eg (55 + 434) / 4 eller = tak i Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} er nødvendig
@@ -3872,9 +3909,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Rapporter starttidspunkt
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Eksporter data
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Opprettholder en logg over alle hendelser som konsumeres sammen med status for synkronisering og en Resync-knapp i tilfelle synkronisering mislykkes.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Velg kolonner
DocType: Translation,Source Text,kilde Tekst
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Dette er en bakgrunnsrapport. Angi riktig filter og generer deretter et nytt.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto er ikke konfigurert. Opprett en ny e-postkonto fra Oppsett> E-post> E-postkonto
apps/frappe/frappe/www/login.py,Missing parameters for login,Manglende parametere for pålogging
DocType: Workflow State,folder-open,mappe-open
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Når de er sendt inn, kan ikke sendbare dokumenter endres. De kan bare avbrytes og endres."
@@ -3954,6 +3993,7 @@ DocType: Blog Post,Published On,Publisert på
DocType: Contact,Gender,Kjønn
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Obligatorisk informasjon mangler:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} tilbakeførte poengene dine på {1}
+DocType: Event Consumer,Event Subscriber,Arrangementsabonnent
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Sjekk forespørselsadresse
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Bare 200 inserts tillatt i en forespørsel
DocType: Footer Item,URL,URL
@@ -3966,6 +4006,7 @@ DocType: Auto Email Report,Half Yearly,Halvårlig
DocType: Communication,Marked As Spam,Merket som spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Det er noe problem med filen url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Tre
+DocType: Event Producer Document Type,Use Same Name,Bruk samme navn
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Du har ikke lov til å skrive ut denne rapporten
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Brukertillatelser
DocType: Workflow State,warning-sign,varselskilt
@@ -3975,6 +4016,7 @@ DocType: Workflow State,User,Bruker
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Vis tittel i nettleservinduet som "Prefix - title"
DocType: Payment Gateway,Gateway Settings,Gateway Innstillinger
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,tekst i dokumenttype
+DocType: Event Sync Log,Event Sync Log,Hendelsessynkroniseringslogg
apps/frappe/frappe/handler.py,Logged Out,Logget ut
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mer...
DocType: System Settings,User can login using Email id or Mobile number,Brukeren kan logge inn med e-post-ID eller mobilnummer
@@ -4015,12 +4057,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ikke I
DocType: Workflow State,star,stjerne
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Hvis dette er merket, vil dokumentene ha samme navn som de har på Eventprodusentens nettsted"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,verdier atskilt med komma
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maks bredde for type Valuta er 100px i rad {0}
apps/frappe/frappe/config/website.py,Content web page.,Innholds nettside.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Legg til en ny rolle
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Besøk websiden
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Ny oppgave
+DocType: Event Consumer Document Type,Approved,Godkjent
DocType: Google Contacts,Last Sync On,Sist synk på
DocType: Deleted Document,Deleted Document,slettet Document
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Noe gikk galt
@@ -4073,7 +4117,6 @@ DocType: DocField,Unique,Unique
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} verdsatt {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Delvis suksess
DocType: Email Account,Service,Tjeneste
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Oppsett> Bruker
DocType: File,File Name,Filnavn
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Fant du ikke {0} for {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4085,11 +4128,10 @@ DocType: Calendar View,Calendar View,Kalendervisning
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Edit Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Komplett Registrering
DocType: GCalendar Settings,Enable,Aktiver
-DocType: Google Maps Settings,Home Address,Hjemmeadresse
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Du kan bare laste opp 5000 poster på en gang. (Kan være mindre i noen tilfeller)
DocType: Report,"output in the form of `data = [columns, result]`","output i form av `data = [kolonner, resultat]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Gjeldende dokumenttyper
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Sett opp regler for brukeroppdrag.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Sett opp regler for brukeroppdrag.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Utilstrekkelig Tillatelse for {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Utilstrekkelig Tillatelse for {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Rapporten ble ikke lagret (det var feil)
diff --git a/frappe/translations/pl.csv b/frappe/translations/pl.csv
index 891a69bcb8..31c39955c1 100644
--- a/frappe/translations/pl.csv
+++ b/frappe/translations/pl.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,"Ta rola uaktualni sekcję ""Uprawnienia Użytkownika"" dla użytkownika"
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Zmień nazwę {0}
DocType: Workflow State,zoom-out,pomniejsz
-DocType: Data Import Beta,Import Options,Opcje importu
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Nie można otworzyć {0} kiedy jest już otwarty
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabela {0} nie może być pusta
DocType: SMS Parameter,Parameter,Parametr
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Anul
DocType: DocType,Is Published Field,Pole jest publikowany
DocType: GCalendar Settings,GCalendar Settings,Ustawienia GCalendar
DocType: Email Group,Email Group,Grupa email
-apps/frappe/frappe/__init__.py,Only for {},Jedynie dla {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalendarz Google - nie można usunąć zdarzenia {0} z kalendarza Google, kod błędu {1}."
DocType: Event,Pulled from Google Calendar,Wyciągnął z Kalendarza Google
DocType: Note,Seen By,Widziany przez
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Dodaj wiele
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nieprawidłowy obraz użytkownika.
DocType: Energy Point Log,Reverted,Odwrócone
DocType: Success Action,First Success Message,Pierwszy komunikat o sukcesie
+DocType: Document Type Mapping,Document Type Mapping,Mapowanie typu dokumentu
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,nie jest podobne
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nieprawidłowa wartość: {0} musi być {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Zmień właściwość pola (ukryj, tylko-do-odczytu, pozwolenia etc.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,"Witryna, która pochłania twoje wydarzenia."
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Doceniać
DocType: Notification Settings,Document Share,Udostępnianie dokumentu
DocType: Workflow State,lock,Zablokowany
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Log
DocType: Workflow State,indent-right,
DocType: Has Role,Has Role,ma rolę
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resynchronizacja
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,"Czas w sekundach, aby zachować kod QR na serwerze. Min: 240"
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Nie można zaindeksować typu pola {1} dla {2}
DocType: Dashboard Chart,Timespan,Okres czasu
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Link Strony WWW
DocType: Deleted Document,Restored,przywrócone
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Błąd połączenia z aplikacją QZ Tray ...
Musisz mieć zainstalowaną i uruchomioną aplikację QZ Tray, aby móc korzystać z funkcji Raw Print.
Kliknij tutaj, aby pobrać i zainstalować tacę QZ .
Kliknij tutaj, aby dowiedzieć się więcej o drukowaniu surowym ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuta temu
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Oprócz System Manager, role z ustawić uprawnienia użytkownika w prawo można ustawić uprawnienia dla innych użytkowników dla tego typu dokumentu."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfiguruj motyw
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,NIEWIDZIALNY
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Menedżer plików
DocType: Website Settings,"HTML Header, Robots and Redirects","Nagłówek HTML, roboty i przekierowania"
DocType: GCalendar Account,Refresh Token,Odśwież Reklamowe
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Nie udało się połączyć z witryną producenta zdarzeń. Spróbuj ponownie po pewnym czasie.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Brak oczekujących lub bieżących zadań dla tej witryny
DocType: Webhook,Doc Event,Doc Event
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Menedżer skryptów
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Brak aktywności
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikacje osób trzecich
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Pierwszy użytkownik będzie Administratorem Systemu (można to później zmienić).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Możesz spróbować zmienić filtry swojego raportu.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Brak wydarzeń dzisiaj
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Nie możesz dać sobie punktów przeglądu
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType musi być nadpisany dla wybranego zdarzenia dokumentu
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Nie masz uprawnień aby wysłyłać maile powiązane z tym dokumentem
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Proszę wybrać conajmniej 1 kolumnę z {0} do sortowania / grupy
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Niedozwolone dla {0}: {1}. Ograniczone pole: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Firma nie jest powiązana
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Sprawdź to jeśli testujesz płatności przy użyciu API Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,"Nie masz uprawnień, aby usunąć standardowy motyw strony WWW"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Utwórz swój pierwszy {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Aktualiz
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Slajd dołączania {0} o tej samej kolejności slajdów już istnieje
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Wyłącz Raport
DocType: Translation,Contributed Translation Doctype Name,Nazwa udostępnionego tłumaczenia
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ustawienia> Dostosuj formularz
DocType: PayPal Settings,Redirect To,Aby przekierować
DocType: Data Migration Mapping,Pull,Ciągnąć
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Format JavaScript: raporty frappe.query [ 'ReportName'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Nie dozwolone
DocType: DocShare,Internal record of document shares,Rekord wewnętrzna akcji dokumentów
DocType: Energy Point Settings,Review Levels,Przejrzyj poziomy
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ustawienia> Uprawnienia użytkownika
DocType: Workflow State,Comment,Komentarz
DocType: Data Migration Plan,Postprocess Method,Metoda postprocesowa
DocType: DocType Action,Action Type,Rodzaj działania
@@ -323,13 +328,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Pok
DocType: Workflow State,remove-circle,usuń-koło
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mój profil
DocType: Help Article,Beginner,Początkujący
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Ta akcja jest dozwolona tylko dla {}
DocType: Contact,Is Primary Contact,
+DocType: Event Consumer,Event Consumer,Event konsument
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript by dołączyć do sekcji głównej strony.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Dodaj / zaktualizuj
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Drukowanie Wersji Roboczych dokumentów nie jest możliwe
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Przywróć domyślną
DocType: Workflow,Transition Rules,Zasady transakcji
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Pokazuje tylko pierwsze {0} wierszy w podglądzie
apps/frappe/frappe/core/doctype/report/report.js,Example:,Przykład:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Ograniczenia
DocType: Workflow,Defines workflow states and rules for a document.,Definiuje stany przepływu pracy i zasady dokumentu.
@@ -481,7 +487,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Powtarzaj do
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Nowy
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Najpierw musisz je utworzyć:
-DocType: Google Maps Settings,Google Maps Settings,Ustawienia Map Google
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Wczytuję...
DocType: DocField,Password,Hasło
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Twój system jest aktualizowany. Proszę odświeżyć ponownie po kilku minutach
@@ -574,6 +579,7 @@ DocType: Onboarding Slide,Onboarding Slide,Zjeżdżalnia
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nieprawidłowe hasło:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nieprawidłowe hasło:
DocType: Print Settings,Send document web view link in email,Wyślij Document Link zobaczyć web maila
+DocType: Event Consumer Document Type,Event Consumer Document Type,Typ dokumentu konsumenta zdarzenia
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Wstecz
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Wymagaj zaufanego certyfikatu
@@ -649,6 +655,7 @@ DocType: Workflow State,volume-down,obniż-głośność
DocType: Onboarding Slide,Help Links,Linki pomocnicze
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Dostęp niedozwolony z tego adresu IP
DocType: Notification Settings,Enable Email Notifications,Włącz powiadomienia e-mail
+DocType: Document Type Field Mapping,Event Streaming,Streaming zdarzeń
apps/frappe/frappe/desk/reportview.py,No Tags,Brak tagów
DocType: Email Account,Send Notification to,Wyślij Powiadomienie do
DocType: DocField,Collapsible,Składany
@@ -665,11 +672,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Brak warunków
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Pola Osi Y
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sortowanie pola {0} musi być poprawnym nazwa_pola
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nie znaleziono domyślnego szablonu adresu. Utwórz nowy w Ustawieniach> Drukowanie i znakowanie> Szablon adresu.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Więcej
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Utwórz nowy rekord
DocType: Contact,Sales Manager,Menadżer Sprzedaży
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Zmień nazwę
DocType: Print Format,Format Data,Formatuj dane
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} nie jest prawidłowym formatem raportu. Format raportu powinien być jednym z następujących {1}
DocType: List Filter,Filter Name,Nazwa filtra
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,jest podobne
DocType: Assignment Rule,Automation,Automatyzacja
@@ -688,6 +697,7 @@ DocType: User,Reset Password Key,Zresetuj Klucz Hasła
DocType: Dashboard Chart,All Time,Cały czas
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Niedozwolony status dokumentu dla {0}
DocType: Email Account,Enable Auto Reply,Włącz automatyczną odpowiedź
+apps/frappe/frappe/desk/query_report.py,No data to export,Brak danych do eksportu
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nie Widziany
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Nie można zmapować wielu drukarek do jednego formatu wydruku.
DocType: Workflow State,zoom-in,powiększ
@@ -840,6 +850,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Zmień uż
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Pierwszy
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Zaktualizuj tłumaczenia
DocType: Error Snapshot,Exception,Wyjątek
+DocType: Event Consumer,Event Consumer Document Types,Rodzaje dokumentów konsumpcyjnych zdarzeń
DocType: Email Account,Use IMAP,Wykorzystanie IMAP
DocType: Activity Log,Activity Log,Dziennik aktywności
DocType: View Log,Viewed By,Oglądane przez
@@ -879,6 +890,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Ust
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Skonfiguruj wykresy
DocType: User,Last IP,Ostatnio używany IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Dodaj temat do wiadomości e-mail
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Błędne transakcje
DocType: Data Migration Connector,Data Migration Connector,Złącze migracji danych
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} cofnięty {1}
DocType: Email Account,Track Email Status,Śledź status e-mail
@@ -910,6 +922,7 @@ DocType: Email Queue,Attachments,Załączniki
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,"Nie masz uprawnień, aby uzyskać dostęp do tego dokumentu"
DocType: Language,Language Name,Nazwa Język
DocType: Email Group Member,Email Group Member,Członek grupy poczty elektronicznej
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Brak konta e-mail powiązanego z użytkownikiem. Dodaj konto w opcji Użytkownik> Skrzynka e-mail.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Twoje konto zostało zablokowane i wznowione po {0} sekundach
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Uprawnienia użytkownika są używane do ograniczania użytkowników do określonych rekordów.
DocType: Notification,Value Changed,Wartość Zmieniona
@@ -1002,6 +1015,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Wspomnieć tran
DocType: Help Article,Expert,Ekspert
DocType: Workflow State,circle-arrow-right,
DocType: Role Profile,Role Profile,Profil roli
+DocType: Document Type Mapping,Remote Document Type,Typ zdalnego dokumentu
apps/frappe/frappe/permissions.py,Document Type is not importable,Typ dokumentu nie można importować
DocType: LDAP Settings,LDAP Server Url,LDAP URL serwera
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Nie można otworzyć kiedy {0} jest już otwarty
@@ -1087,7 +1101,7 @@ DocType: Web Form,Allow Print,Pozwól na Drukowanie
DocType: Communication,Clicked,Kliknął
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nie obserwuj
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nie ma zgodny na '{0} {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Proszę ustawić domyślne konto e-mail w Ustawienia> E-mail> Konto e-mail
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Pokazuje tylko pierwsze {0} wierszy z {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Zaplanowane do wysłania
DocType: DocType,Track Seen,Tor widziany
DocType: Dropbox Settings,File Backup,Kopia zapasowa plików
@@ -1158,6 +1172,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,wyb
DocType: Data Export,Filter List,Lista filtrów
DocType: Data Export,Excel,Przewyższać
DocType: System Settings,HH:mm,GG: mm
+DocType: Event Sync Log,Event Configurations,Konfiguracje zdarzeń
DocType: Email Account,Auto Reply Message,Wiadomość automatycznej odpowiedzi
DocType: Data Migration Mapping,Condition,Stan
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} godzin(y) temu
@@ -1217,9 +1232,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Zawsze używ
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,"Zaloguj się, aby skomentować"
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Rozpocznij wprowadzanie danych poniżej tej linii
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},zmienił(a) wartości w polu '{0}'
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Identyfikator e-maila musi być unikalny, konto e-mail już istnieje \ dla {0}"
DocType: Workflow State,retweet,
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Dla porównania użyj> 5, <10 lub = 324. Dla zakresów użyj 5:10 (dla wartości od 5 do 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Dostosuj ...
DocType: Print Format,Align Labels to the Right,Wyrównaj etykiety po prawej
DocType: Assignment Rule,Disabled,Nieaktywny
@@ -1268,8 +1282,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Skróty klawiszowe
DocType: Post,Comments,Komentarze
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Potwierdź
+DocType: Event Sync Log,Update Type,Typ aktualizacji
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Uwierzytelnianie ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Zwinąć wszystkie
+DocType: Event Producer,Last Update,Ostatnia aktualizacja
apps/frappe/frappe/www/login.html,Forgot Password?,Zapomniałeś hasła?
DocType: System Settings,yyyy-mm-dd,rrrr-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1310,6 +1326,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Pole Tabel
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolumny na podstawie
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importowanie {0} z {1}, {2}"
DocType: Workflow State,move,ruch
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Nie można utworzyć konsumenta zdarzenia lub konsumenta zdarzenia dla bieżącej witryny jest już zarejestrowany.
apps/frappe/frappe/model/document.py,Action Failed,Akcja nie powiodła się
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,dla użytkownika
DocType: View Log,View log,Wyświetl dziennik
@@ -1473,6 +1490,7 @@ DocType: DefaultValue,Key,Klucz
DocType: Address,Contacts,Kontakty
DocType: System Settings,Setup Complete,Konfiguracja zakończona
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Zgłoś wszystkich akcji dokumentów
+DocType: Event Consumer,Callback URL,Adres zwrotny
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Szablon importu powinien być typu .csv, .xlsx lub .xls"
apps/frappe/frappe/www/update-password.html,New Password,Nowe hasło
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtr {0} brakujący
@@ -1540,7 +1558,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Pow
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Niedozwolony w stanie
DocType: Async Task,Async Task,Asynchroniczny Zadanie
DocType: Workflow State,picture,zdjęcie
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Kompletny
+DocType: Scheduled Job Log,Complete,Kompletny
DocType: DocType,Image Field,Pole obrazu
DocType: Print Format,Custom HTML Help,Niestandardowe HTML Help
DocType: LDAP Settings,Default Role on Creation,Domyślna rola przy tworzeniu
@@ -1566,6 +1584,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pomoc w wyszukiwaniu
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Zarejestrowałem się, ale wyłączone"
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adres musi być powiązany z firmą. Dodaj wiersz dotyczący firmy w poniższej tabeli Łącza.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatyczne powtarzanie tego dokumentu zostało wyłączone.
DocType: DocType,Hide Copy,Ukryj Kopie
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Wyczyść wszystkie pola
@@ -1604,6 +1623,7 @@ DocType: Bulk Update,Field,Pole
DocType: Communication,Received,Otrzymano
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Wyzwalanie prawidłowych metod, takich jak "before_insert", "after_update", itd (zależy od wybranego DocType)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},zmieniona wartość {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},Konfiguracja konta e-mail wprowadź hasło dla: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Dodanie Managera Systemu do tego Użytkownika, gdy istnieje co najmniej jeden Manager Systemu"
DocType: Chat Message,URLs,Adresy URL
DocType: Data Migration Run,Total Pages,Razem stron
@@ -1611,7 +1631,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Dołącz obrazek
DocType: Workflow State,list-alt,
apps/frappe/frappe/www/update-password.html,Password Updated,Hasło zaktualizowane
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ustawienia> Uprawnienia użytkownika
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Kroki weryfikujące login
apps/frappe/frappe/utils/password.py,Password not found,Hasło nie zostało znalezione
DocType: Webhook,Webhook Secret,Secret Webhook
@@ -1627,8 +1646,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Ustawienia Google
DocType: Report,Query Report,Raport zapytania
DocType: User,Set New Password,Ustaw nowe hasło
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Niedozwolone dla {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S nie jest prawidłowy format raportu. Format raportu powinien \ jedną z następujących czynności:% s
DocType: Chat Message,Chat,Czat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Nie znaleziono dokumentów oznaczonych {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Mapowanie grup LDAP
@@ -1664,7 +1681,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Wpisz swo
DocType: Dropbox Settings,Dropbox Access Secret,Sekret do Dostępu do Dropboxa
DocType: Tag Link,Document Title,Tytuł dokumentu
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obowiązkowy)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} lat temu
DocType: Social Login Key,Social Login Provider,Dostawca logowania społecznościowego
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Dodaj kolejny komentarz
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Brak danych w pliku. Proszę ponownie dołączyć nowy plik do danych.
@@ -1712,6 +1728,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Wybier
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 rok
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Czy skasować (bezpowrotnie) {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Ten sam plik został załączony do rekordu
+DocType: Event Sync Log,Synced,Zsynchronizowany
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} nie jest prawidłowym stanem przepływu pracy. Zaktualizuj swój przepływ pracy i spróbuj ponownie.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,dał {0} punktów
DocType: Workflow State,wrench,klucz
@@ -1814,6 +1831,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,U
DocType: Web Form Field,Max Length,Maksymalna długość
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Konfiguracja mapowania między dwoma typami dokumentów.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Zgłoś problem
DocType: Event,Repeat this Event,Powtórz to Wydarzenie
DocType: Address,Maintenance User,Użytkownik Konserwacji
@@ -1873,6 +1891,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test adres email
DocType: Auto Repeat,Reference Document Type,Oznaczenie typu dokumentu
DocType: ToDo,Sender,Nadawca
+DocType: Event Consumer,Incoming Change,Przychodzące zmiany
DocType: Google Drive,Backup Folder Name,Nazwa folderu kopii zapasowej
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Błąd podczas oceny Powiadomienia {0}. Napraw swój szablon.
DocType: GSuite Settings,Google Apps Script,Skrypt Google Apps
@@ -1935,9 +1954,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nowa naz
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Kliknij poniższy link, aby zatwierdzić wniosek"
DocType: Workflow State,align-left,Wyrównaj do lewej
DocType: Onboarding Slide,Action Settings,Ustawienia akcji
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ustawienia> Użytkownik
DocType: User,Defaults,Wartości domyślne
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Dla porównania użyj> 5, <10 lub = 324. Dla zakresów użyj 5:10 (dla wartości od 5 do 10)."
DocType: Energy Point Log,Revert Of,Przywróć
+DocType: Document Type Mapping,Field Mapping,Mapowanie pola
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Połączy się z istniejącą
DocType: User,Birth Date,Data Urodzenia
DocType: Communication Link,Link Title,link Title
@@ -1965,6 +1985,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tag Link
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Łańcuchowa integralność
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,W teście
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 jednostka Walutowa = [?] części zdawkowych. Na przykład 1 zł = 100 groszy
DocType: Data Import,Partially Successful,Częściowo pomyślne
@@ -1974,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Mapowania grup LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Załącznik wiadomości na czacie
DocType: LDAP Settings,Path to CA Certs File,Ścieżka do pliku certyfikatów CA.
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Jeśli dokument ma różne nazwy pól po stronie producenta i konsumenta, sprawdź to i skonfiguruj odwzorowanie"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Zezwól na odczyt wszystkich opcji łącza
DocType: DocType,Database Engine,Database Engine
@@ -2108,6 +2130,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Notatka
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Błędny raport
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Eksportuj dane w formacie CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Mapowanie pola typu dokumentu
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Konfigurowanie dokumentów globalnego wyszukiwania.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Aplikacja uwierzytelniania, którą możesz użyć to:"
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} już istnieje. Wybierz inną nazwę
@@ -2183,7 +2206,6 @@ DocType: Workflow State,Upload,Prześlij
DocType: User Permission,Advanced Control,Zaawansowana kontrola
DocType: System Settings,Date Format,Format daty
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nie Opublikowany
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nie znaleziono domyślnego szablonu adresu. Utwórz nowy w Ustawieniach> Drukowanie i znakowanie> Szablon adresu.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Aktywności przepływu prac (np. Zatwierdzony, Anulowany)."
DocType: Data Import,Skip rows with errors,Pomiń wiersze z błędami
DocType: Workflow State,flag,flaga
@@ -2247,6 +2269,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Reprezentuje państwa dozwolony w jednym dokumencie i roli przypisanej do zmiany stanu.
DocType: Data Migration Connector,Database Name,Nazwa bazy danych
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Odśwież Formularz
+DocType: Event Producer,Event Producer,Producent wydarzeń
DocType: DocField,Select,Wybierz
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Wyświetl pełny dziennik
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Simple Python Expression, Przykład: status == 'Open' i wpisz == 'Bug'"
@@ -2348,6 +2371,7 @@ DocType: DocType,User Cannot Search,Użytkownik nie może szukać
DocType: Communication Link,Communication Link,Łącze komunikacyjne
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Nieprawidłowy format wyjściowy
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Nie można {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Cykliczne {0} {1} zostało dla Ciebie stworzone przez Auto Repeat {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Zastosuj tę regułę, jeśli Użytkownik nie jest właścicielem"
DocType: Global Search Settings,Global Search Settings,Globalne ustawienia wyszukiwania
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Będzie to identyfikator logowania
@@ -2365,12 +2389,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR Code for Lo
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Dodaj do listy Do Zrobienia
DocType: Footer Item,Company,Firma
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Średnia z {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Udane transakcje
DocType: Scheduled Job Log,Scheduled,Zaplanowane
DocType: User,Logout from all devices while changing Password,Wyloguj się ze wszystkich urządzeń podczas zmiany hasła
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Zweryfikuj Hasło
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Wystąpiły błędy
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Wprowadź identyfikator klienta i klucz tajny klienta w Ustawieniach Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zamknij
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","Identyfikator e-maila musi być unikalny, konto e-mail już istnieje dla {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Nie można zmieniać docstatus z 0 na 2
DocType: File,Attached To Field,Dołączony do pola
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Aktualizacja
@@ -2478,6 +2504,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Miesiąc
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,"Protip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} , aby wysłać dokument odniesienia"
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Wyświetlani są tylko użytkownicy zaangażowani w dokument
DocType: DocField,Fetch From,Pobierz z
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ustawienia> Dostosuj formularz
apps/frappe/frappe/modules/utils.py,App not found,Nie znaleziono App
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Nie można utworzyć {0} przeciwko dziecięcej dokumencie: {1}
DocType: Social Login Key,Social Login Key,Klucz logowania społecznościowego
@@ -2489,7 +2516,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Czat wi
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Dom społecznościowy
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Włóż Po nie może być ustawiony jako {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Podziel się z {0}
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-mail Konfiguracja konta wpisz hasło:
DocType: Workflow State,hand-up,
DocType: Blog Settings,Writers Introduction,gf
DocType: Address,Phone,Telefon
@@ -2548,7 +2574,7 @@ DocType: Web Page,Insert Style,Wstaw Styl
DocType: Prepared Report,Error Message,Komunikat o błędzie
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nowa nazwa Zgłoś
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ukryj weekendy
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automatycznie generuje dokumenty cykliczne.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Automatycznie generuje dokumenty cykliczne.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Czy
DocType: Onboarding Slide,ERPNext,ERPNastępny
DocType: Workflow State,info-sign,
@@ -2556,7 +2582,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Wart {0
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jaka powinna być waluta? Jeśli nie jest ustawiona, użyje domyślnych ustawień systemowych"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Prześlij dokumenty {0}?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Musisz być zalogowany jako Administrator Systemu aby mieć dostęp do backup'ów.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Błąd połączenia z aplikacją QZ Tray ...
Musisz mieć zainstalowaną i uruchomioną aplikację QZ Tray, aby móc korzystać z funkcji Raw Print.
Kliknij tutaj, aby pobrać i zainstalować tacę QZ .
Kliknij tutaj, aby dowiedzieć się więcej o drukowaniu surowym ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapowanie drukarki
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Proszę zapisać przed załączeniem.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Czy chcesz anulować wszystkie powiązane dokumenty?
@@ -2586,6 +2611,7 @@ DocType: Role Permission for Page and Report,Set Role For,Ustaw rola
DocType: GCalendar Account,The name that will appear in Google Calendar,"Nazwa, która pojawi się w Kalendarzu Google"
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Bezpośredni pokój z {0} już istnieje.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Odświeżanie...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Sprawdź wartości filtrów ustawione dla tablicy wskaźników: {}
DocType: Event,Starts on,Zaczyna się
DocType: System Settings,System Settings,Ustawienia systemowe
DocType: GCalendar Settings,Google API Credentials,Google Credentials
@@ -2611,6 +2637,7 @@ DocType: Workflow State,ok-sign,ok-sign
apps/frappe/frappe/config/settings.py,Deleted Documents,Usunięte dokumenty
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,W formacie CSV rozróżniana jest wielkość liter
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikona Pulpitu już istnieje
+DocType: Event Consumer Document Type,Approval Status,Status Zatwierdzenia
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Określ, w których wszystkich domenach powinny się wyświetlać slajdy. Jeśli nic nie określono, slajd jest domyślnie wyświetlany we wszystkich domenach."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikat
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Pole {1} w wierszu {2} nie może być ukryte i obowiązkowe bez domyślnych
@@ -2630,6 +2657,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Artykuły pomocy
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Typ:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Twoja płatność nie powiodła się.
+DocType: Event Producer,Producer URL,URL producenta
DocType: Comment,Unshared,niepodświetlonych
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Moduł nie został znaleziony
@@ -2641,6 +2669,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Przypisanie Zakończony
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Edycja Zbiorcza {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Pobierz raport
+apps/frappe/frappe/model/workflow.py,Workflow Status,Status przepływu pracy
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Nieaktywny
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Tylko administrator może tworzyć źródła wykresów pulpitu nawigacyjnego
DocType: About Us Settings,Settings for the About Us Page,Ustawienia dla O nas Page
@@ -2650,6 +2679,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Dru
DocType: Notification Settings,Energy Points,Punkty energetyczne
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Godzina {0} musi mieć format: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,np pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Nie udało się załączyć nowego dokumentu cyklicznego. Aby włączyć dołączanie dokumentu w wiadomości e-mail z automatycznym powtarzaniem, włącz {1} w Ustawieniach drukowania"
DocType: User,Generate Keys,Generuj klucze
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Spowoduje to trwałe usunięcie danych.
DocType: DocType,View Settings,Ustawienia widoku
@@ -2701,6 +2731,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Wszystko
DocType: Email Queue,Recipient,Adresat
DocType: Webhook,Webhook Security,Bezpieczeństwo Webhook
+DocType: Event Sync Log,Producer Document Name,Nazwa dokumentu producenta
DocType: Communication,Has Attachment,zawiera załącznik
DocType: Address,Sales User,Sprzedaż użytkownika
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Narzędzie w stylu przeciągnij i upuść do tworzenia i dostosowywania formatów wydruku.
@@ -2736,6 +2767,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Tabele podrzędne są wyświetlane jako Siatka w innych DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Automatyczna konfiguracja poczty
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + strzałka w dół
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Witryna, którą chcesz subskrybować, aby pobierać zdarzenia."
DocType: Chat Profile,Message Preview,Podgląd wiadomości
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,To jest top-10 wspólne hasło.
DocType: User,User Defaults,Standardowe ustawienia Użytkownika
@@ -2768,6 +2800,7 @@ DocType: Dashboard Chart,Last Synced On,Ostatnia synchronizacja włączona
DocType: Comment,Comment Type,Typ Komentarza
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Użytkownicy
+DocType: Document Type Mapping,Local Document Type,Typ dokumentu lokalnego
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Typ raportu
DocType: DocField,Signature,Podpis
@@ -2810,6 +2843,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} samodzielnie przydzieliło to zadanie: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Twój kraj
DocType: Assignment Rule Day,Sunday,Niedziela
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Prowadzi dziennik wszystkich wstawek, aktualizacji i usunięć w witrynie producenta zdarzeń dla dokumentów, które mają konsumentów."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Nazwa pola nie może być jedną z {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Tabele
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,W widoku siatki
@@ -2957,7 +2991,6 @@ DocType: Web Page,Sidebar and Comments,Pasek boczny i Komentarze
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Jeśli Zmieniasz dokument po Anuluj i zapisujesz go, będzie on miał nowy numer, który jest wersją starego numeru."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Niedozwolone jest dołączanie dokumentu {0}, włącz opcję Zezwalaj na drukowanie dla {0} w Ustawieniach drukowania"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Konto e-mail nie zostało skonfigurowane. Utwórz nowe konto e-mail w Ustawienia> E-mail> Konto e-mail
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Zobacz dokument pod adresem {0}
DocType: Stripe Settings,Publishable Key,Klucz publikowany
DocType: Stripe Settings,Publishable Key,Klucz publikowany
@@ -3036,7 +3069,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Informacje:
DocType: Custom Field,Permission Level,Poziom dostępu
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Nie można ustawić Zatwierdź , Anuluj , Zmienić bez wypełnienia pola"
DocType: List View Setting,Disable Count,Wyłącz liczbę
-DocType: Google Maps Settings,Client Key,Klucz klienta
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,"Czy jesteś pewien, że chcesz usunąć ten załącznik?"
apps/frappe/frappe/__init__.py,Thank you,Dziękuję
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Zapisywanie
@@ -3163,6 +3195,7 @@ DocType: Workflow Document State,Only Allow Edit For,Zezwól tylko na edycję dl
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Tworzenie kopii zapasowej na Dysku Google.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Pole obowiązkowe {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Twoje imię
+DocType: Event Producer Document Type,Event Producer Document Type,Typ dokumentu producenta zdarzenia
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Sukces połączenia
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Onboarding Slide of Slide Type Continue już istnieje.
@@ -3234,6 +3267,7 @@ DocType: Address,Postal Code,Kod pocztowy
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Łącz ponownie Komunikacja
DocType: Translation,Contributed,Przyczynił się
apps/frappe/frappe/config/customization.py,Form Customization,Dostosowywanie formularza
+DocType: Event Update Log,Event Update Log,Dziennik aktualizacji zdarzeń
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Brak sesji aktywnych
DocType: Web Form,Route to Success Link,Link do sukcesu
DocType: Onboarding Slide Field,Right,Prawo
@@ -3260,7 +3294,7 @@ DocType: Website Settings,Chat Operators,Operatorzy na czacie
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Kod PIN
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Upewnij się, że nie ma pustych kolumn w pliku"
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Śledzi kamienie milowe w cyklu życia dokumentu, jeśli przechodzi wiele etapów."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Śledzi kamienie milowe w cyklu życia dokumentu, jeśli przechodzi wiele etapów."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Zmieniono nazwy plików i zastąpiono kod w kontrolerach, sprawdź!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Proszę upewnić się, że Twój profil jest adres e-mail"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Masz niezapisane zmiany na tym formularzu. Zapisz zmiany aby kontynuować.
@@ -3287,7 +3321,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Zapisz tajny interfejs API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Nie można połączyć anulowany dokument: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Nie można edytować raportu standardowego. Proszę powielić i utworzyć nowy raport
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Spółka jest obowiązkowe, ponieważ jest Twój adres firmy"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Na przykład: Jeśli chcesz dołączyć identyfikator dokumentu, należy użyć {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Wybierz kolumny tabeli dla {0}
DocType: Custom Field,Options Help,Opcje Pomocy
@@ -3295,7 +3328,6 @@ DocType: Footer Item,Group Label,Grupa Label
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontakty Google zostały skonfigurowane.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekord zostanie wyeksportowany
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Brak konta e-mail powiązanego z użytkownikiem. Dodaj konto w opcji Użytkownik> Skrzynka e-mail.
DocType: DocField,Report Hide,Ukryj Raport
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Widok nie jest dostępny dla Drzewo {0}
DocType: DocType,Restrict To Domain,Ogranicz do domeny
@@ -3361,7 +3393,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Pole {1} typu {2} nie może być obowiązkowe
DocType: System Settings,In Days,W dniach
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Panna
+DocType: Event Producer Document Type,Has Mapping,Ma mapowanie
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Sprecyzuj
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Nieprawidłowa wartość filtru
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Artykuł pomocy
DocType: Page,Page Name,Nazwa strony
@@ -3469,7 +3503,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Format Druku
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Przełącz widok siatki
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Przejdź do następnego rekordu
-DocType: System Settings,Time Format,Format czasu
+DocType: Country,Time Format,Format czasu
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Nieprawidłowe poświadczenia bramka płatności
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Jest to plik szablonu generowany tylko z błędami w wierszach. Powinieneś użyć tego pliku do korekty i importu.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Ustaw dostępy dla typów dokumentów i ról
@@ -3806,6 +3840,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Zezwalaj na logowanie przy użyciu nazwy użytkownika
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Włącz raport
DocType: DocField,Display Depends On,Wyświetlania zależy
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} lat temu
DocType: Social Login Key,API Endpoint,Punkt końcowy API
DocType: Web Page,Insert Code,Wstaw Kod
DocType: Data Migration Run,Current Mapping Type,Aktualny typ odwzorowania
@@ -3859,6 +3894,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot
apps/frappe/frappe/www/login.html,Or login with,Lub zaloguj się
DocType: Error Snapshot,Locals,Miejscowi
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Przekazywane za pośrednictwem {0} w dniu {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Typy dokumentów producenta zdarzeń
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Proszę ustawić domyślne konto e-mail w Ustawienia> E-mail> Konto e-mail
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Wybierz Grupuj według ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,na przykład (55 + 434) / 4 lub = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} is wymagany
@@ -3891,9 +3928,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Zgłoś czas rozpoczęcia
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Eksportuj dane
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Prowadzi dziennik każdego zajętego zdarzenia wraz ze statusem synchronizacji i przyciskiem Resync w przypadku niepowodzenia synchronizacji.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Wybierz kolumny
DocType: Translation,Source Text,Tekst źródłowy
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"To jest raport w tle. Ustaw odpowiednie filtry, a następnie wygeneruj nowe."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Konto e-mail nie zostało skonfigurowane. Utwórz nowe konto e-mail w Ustawienia> E-mail> Konto e-mail
apps/frappe/frappe/www/login.py,Missing parameters for login,Brakujące parametry logowania
DocType: Workflow State,folder-open,Otwarty folder
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Po przesłaniu dokumentów podlegających przesłaniu nie można zmienić. Mogą zostać anulowane i zmienione.
@@ -3973,6 +4012,7 @@ DocType: Blog Post,Published On,Opublikowany
DocType: Contact,Gender,Płeć
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Obowiązkowe informacje brakuje:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} przywrócił punkty w {1}
+DocType: Event Consumer,Event Subscriber,Subskrybent wydarzenia
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Sprawdź adres URL zapytania
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Tylko 200 wkładki dozwolone w jednym żądaniu
DocType: Footer Item,URL,URL
@@ -3985,6 +4025,7 @@ DocType: Auto Email Report,Half Yearly,Pół Roku
DocType: Communication,Marked As Spam,Oznaczono jako spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Jest jakiś problem z adresem URL pliku: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Jako drzewo
+DocType: Event Producer Document Type,Use Same Name,Użyj tej samej nazwy
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,"Nie masz uprawnień, aby wydrukować ten raport"
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Uprawnienia użytkownika
DocType: Workflow State,warning-sign,znak-ostrzeżenie
@@ -3994,6 +4035,7 @@ DocType: Workflow State,User,Użytkownik
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Pokaż tytuł w oknie przeglądarki jako "Prefiks - tytuł"
DocType: Payment Gateway,Gateway Settings,Ustawienia bramy
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Tekst w rodzaju dokumentu
+DocType: Event Sync Log,Event Sync Log,Dziennik synchronizacji zdarzeń
apps/frappe/frappe/handler.py,Logged Out,Wylogowano
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Jeszcze...
DocType: System Settings,User can login using Email id or Mobile number,Użytkownik może zalogować się przy użyciu adresu e-mail lub numeru telefonu komórkowego
@@ -4034,12 +4076,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,nie jest w
DocType: Workflow State,star,
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Piasta
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Jeśli ta opcja jest zaznaczona, dokumenty będą miały takie same nazwy, jak na stronie producenta zdarzeń"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,Wartości oddzielone przecinkami
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maksymalna szerokość dla typu Waluta to 100px w rzędzie {0}
apps/frappe/frappe/config/website.py,Content web page.,Strona WWW zawartości
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Dodaj nową rolę
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Odwiedź stronę internetową
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nowy przydział
+DocType: Event Consumer Document Type,Approved,Zatwierdzono
DocType: Google Contacts,Last Sync On,Ostatnia synchronizacja
DocType: Deleted Document,Deleted Document,Dokument usunięty
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Coś poszło nie tak
@@ -4092,7 +4136,6 @@ DocType: DocField,Unique,Unikalny
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} doceniamy w {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Częściowy sukces
DocType: Email Account,Service,Usługa
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ustawienia> Użytkownik
DocType: File,File Name,Nazwa pliku
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nie znaleziono {0} dla {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4104,11 +4147,10 @@ DocType: Calendar View,Calendar View,Widok Kalendarza
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Edytuj Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Zakończ rejestrację
DocType: GCalendar Settings,Enable,
-DocType: Google Maps Settings,Home Address,Adres domowy
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Możesz przesłać do 5000 rekordów za jednym zamachem (w niektórych przypadkach jeszcze mniej).
DocType: Report,"output in the form of `data = [columns, result]`","dane wyjściowe w postaci `data = [kolumny, wynik]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Odpowiednie typy dokumentów
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Skonfiguruj reguły przypisywania użytkowników.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Skonfiguruj reguły przypisywania użytkowników.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Niewystarczająca zgoda na {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Niewystarczająca zgoda na {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Raport nie został zachowany (zawierał błędy)
diff --git a/frappe/translations/ps.csv b/frappe/translations/ps.csv
index dd1f1c1ed5..309b14aed3 100644
--- a/frappe/translations/ps.csv
+++ b/frappe/translations/ps.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,دغه رول د اوسمهال لپاره د يو کارن د کارن حلال
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},نوم بدلولی شی {0}
DocType: Workflow State,zoom-out,لوډېرول-out
-DocType: Data Import Beta,Import Options,غوراوي واردول
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,دابرخه دکتابتون خلاصه نه شي کولای {0} کله چې د بېلګې په توګه خلاص دی
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,جدول {0} کولای خالي نه وي
DocType: SMS Parameter,Parameter,د پاراميټر
@@ -84,16 +83,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,د {
DocType: DocType,Is Published Field,خپور ساحوي
DocType: GCalendar Settings,GCalendar Settings,د ګالالرنې ترتیبونه
DocType: Email Group,Email Group,دبرېښنا ګروپ
-apps/frappe/frappe/__init__.py,Only for {},یوازې د {for لپاره
DocType: Event,Pulled from Google Calendar,د ګوګل کیلنڈر څخه کښل شوی
DocType: Note,Seen By,لیدل By
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Add ګڼ
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,د کارن باور نشته.
DocType: Energy Point Log,Reverted,بېرته راوړل
DocType: Success Action,First Success Message,د بریالیتوب لومړی پیغام
+DocType: Document Type Mapping,Document Type Mapping,د لاسوند ډول نقشه
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ناخوښ
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ناسم ارزښت: {0} بايد د {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",د بدلون په برخه مال (پټيږي، readonly، اجازه او نور)
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,هغه سایټ چې ستاسو پیښې مصرفوي.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,مننه
DocType: Notification Settings,Document Share,لاسوند شریکول
DocType: Workflow State,lock,لاک
@@ -113,10 +113,12 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,يادښت
DocType: Workflow State,indent-right,indent-حق
DocType: Has Role,Has Role,لري رول
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,د
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,د ثانیو په وخت کې د QR code کوډ په سرور کې ساتل. Min: 240
DocType: Dashboard Chart,Timespan,د وخت موده
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,ويب لینک
DocType: Deleted Document,Restored,بېرته
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","د QZ ټری کاریال سره په پیوستولو کې تېروتنه ...
تاسو اړتیا لرئ د QZ ټری غوښتنلیک نصب او چلئ ، د خامو چاپ ب featureه کارولو لپاره.
د QZ ټری ډاونلوډ او نصبولو لپاره دلته کلیک وکړئ .
د را چاپولو په اړه د نورو معلوماتو لپاره دلته کلیک وکړئ ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 دقيقه وړاندې
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",له سیستم مدیر سربېره، له ټولګې کارن حلال رول حق لپاره چې د سند ډول نورو کارنانو لپاره پرېښلې ټاکل.
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,موضوع کنټرول کړئ
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,په غیبو
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,د دوتنې د مدير
DocType: Website Settings,"HTML Header, Robots and Redirects",د HTML سرلیک ، روبوټونه او سرته رسونې
DocType: GCalendar Account,Refresh Token,تاندول د نښې
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,د غونډې جوړونکي سایټ سره ونښلول شو. یو څه وخت وروسته هڅه وکړئ.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,دې سایټ لپاره هیڅ انتظار یا اوسني دندې نشته
DocType: Webhook,Doc Event,د کور پېښلیک
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,اسکرپټ سمبالګر
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,هیڅ فعالیت نشته
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,د دریمې ډلې کاریالونه
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,لومړی د کارونکي عکس به د سیستم د مدیر شي (تاسو کوالی شي وروسته بدلون).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,تاسو کولی شئ د خپل راپور فلټرونو بدلولو هڅه وکړئ.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,نن ورځ پیښې نه
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,تاسو نشئ کولی ځان ته د بیاکتنې ټکي ورکړئ
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,د ډاټا ټایپ د ټاکل شوي ډاکټر ایستنې لپاره باید د منلو وړ وي
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,تاسو اجازه نه لري چې د دې سند د اړوند بریښنالیکونو ته واستوي
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,لطفا له {0} ته ړک / ډله تيروخت 1 کالم انتخاب
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},د {0}: {1} لپاره اجازه نشته. محدوده ساحه: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,شرکت نه تړل شوی
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,وګورئ دا که تاسو ته ستاسو د sandbox API په کارولو سره د پیسو د آزمیښت
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,تاسو اجازه نه لري چې د يوې معياري وېب پاڼه موضوع ړنګول
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},خپل لومړی {0} جوړ کړئ
@@ -258,7 +263,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},نوي کول {0}
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ناتوانې راپور
DocType: Translation,Contributed Translation Doctype Name,مرسته شوی د ژباړې لاسوند ډول
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم کول> دودیز کړئ
DocType: PayPal Settings,Redirect To,د Redirect
DocType: Data Migration Mapping,Pull,کشول
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},د جاوا شکل: frappe.query_reports [ 'REPORTNAME'] = {}
@@ -271,6 +275,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,نه پرې نږدي
DocType: DocShare,Internal record of document shares,د سند د سهم د داخلي ریکارډ
DocType: Energy Point Settings,Review Levels,د بیاکتنې کچې
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> د کارونکي اجازه
DocType: Workflow State,Comment,تبصره
DocType: Data Migration Plan,Postprocess Method,د پوستې پروسس طریقه
DocType: DocType Action,Action Type,د عمل ډول
@@ -321,13 +326,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,د
DocType: Workflow State,remove-circle,لرې-کړۍ
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,زما پېژنيال
DocType: Help Article,Beginner,لومړنی
+apps/frappe/frappe/__init__.py,This action is only allowed for {},دا عمل یوازې د {for لپاره اجازه لري
DocType: Contact,Is Primary Contact,ده لومړنۍ تماس
+DocType: Event Consumer,Event Consumer,د پیښې مصرف کونکی
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,لوستلای شی تر څو د د پاڼې سر کړی پايملون.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,اضافه / اضافه کول
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,نه اسناد مسوده د چاپولو اجازه
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,ته افتراضیو Reset
DocType: Workflow,Transition Rules,د انتقال اصول
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,یوازې په لومړي مخ کې {0} قطارونه ښودل کیږي
apps/frappe/frappe/core/doctype/report/report.js,Example:,بیلګې په توګه:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,محدودیتونه
DocType: Workflow,Defines workflow states and rules for a document.,يو سند لپاره ننګولې دولتونو او اصولو تعریفوي.
@@ -475,7 +481,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,تر تکرار
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,د نوي
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,تاسو اړتیا لرئ دا لومړی رامینځته کړئ:
-DocType: Google Maps Settings,Google Maps Settings,د ګوګل نقشه ترتیبات
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ...
DocType: DocField,Password,رمز
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,ستاسو د سیستم کیږي تازه. لطفا د څو شيبو وروسته يو ځل بيا تازه
@@ -567,6 +572,7 @@ DocType: Onboarding Slide,Onboarding Slide,د تخته ایښودلو سلایډ
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,بې اعتباره پټنوم:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,بې اعتباره پټنوم:
DocType: Print Settings,Send document web view link in email,وليږئ بريښناليک په سند وېب محتویات مخونه
+DocType: Event Consumer Document Type,Event Consumer Document Type,د پیښې مصرف کونکي سند ډول
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,مخکینی
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,باوري سند غواړي
@@ -642,6 +648,7 @@ DocType: Workflow State,volume-down,حجم څخه ښکته
DocType: Onboarding Slide,Help Links,د مرستې لینکونه
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,د دې IP پتې څخه د لاسرسي اجازه نشته
DocType: Notification Settings,Enable Email Notifications,د بریښنالیک خبرتیاوې فعال کړئ
+DocType: Document Type Field Mapping,Event Streaming,د پیښې جریان
apps/frappe/frappe/desk/reportview.py,No Tags,نه نښانونه
DocType: Email Account,Send Notification to,ته خبردارې ورکول وليږئ
DocType: DocField,Collapsible,پرېوتونکې
@@ -658,6 +665,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,فل
apps/frappe/frappe/database/database.py,No conditions provided,شرایط نه دي ورکړل شوي
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,د ایکس اکس ډګرونه
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ننداره ډګر {0} باید یو قانوني fieldname وي
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,د پتې اصلي ټاپو ټاټوبی ونه موندل شو. مهرباني وکړئ له تنظیم او چاپ کولو او نښه کولو> پته ټیمپلیټ څخه نوی جوړ کړئ.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,نور
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,نوی ریکارډ جوړ کړئ
DocType: Contact,Sales Manager,خرڅلاو مدير
@@ -681,6 +689,7 @@ DocType: User,Reset Password Key,د بیرته شفر کلیدي
DocType: Dashboard Chart,All Time,هر وخت
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},د {0} لپاره د غلط سند حالت
DocType: Email Account,Enable Auto Reply,فعال د موټرونو ته ځواب ورکړئ
+apps/frappe/frappe/desk/query_report.py,No data to export,د صادرولو لپاره هیڅ معلومات نشته
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,نه دي ليدلي
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,نشئ کولی ډیری چاپګرونه په یوه چاپ ب formatه کې نقشه شوي.
DocType: Workflow State,zoom-in,زیږنده-په
@@ -832,6 +841,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,کارن
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,لومړی
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,اوسمهال لاسوندونه
DocType: Error Snapshot,Exception,استثنا
+DocType: Event Consumer,Event Consumer Document Types,د پیښې مصرف کونکي سند ډولونه
DocType: Email Account,Use IMAP,IMAP استعمال
DocType: Activity Log,Activity Log,فعالیت ننوتنه
DocType: View Log,Viewed By,لخوا ليدل کيږي
@@ -871,6 +881,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ټ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,چارټونه ترتیبول
DocType: User,Last IP,تېره IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,مهرباني وکړئ یو مضمون خپل بریښنالیک اضافه کړئ
+apps/frappe/frappe/model/workflow.py,Errored Transactions,غلطې معاملې
DocType: Data Migration Connector,Data Migration Connector,د ډاټا مهاجرت کنټرول
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} بیرته راستول شوی {1}
DocType: Email Account,Track Email Status,د بریښناليک وضعیت
@@ -902,6 +913,7 @@ DocType: Email Queue,Attachments,ضم
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,تاسو د پرېښلې د دې سند د لاسرسی نه لري
DocType: Language,Language Name,ژبه نوم
DocType: Email Group Member,Email Group Member,واستوئ د ګروپ د غړو
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,د کارونکي سره هیڅ کوم بریښنالیک نه دی تړلی. مهرباني وکړئ د کارن> بریښنالیک ان باکس کې لاندې حساب اضافه کړئ.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,ستاسو حساب بند شوی او د {0} ثانیو وروسته به بیا پیل شي
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,د کارن اجازې کارول د کاروونکو د محدودو ریکارډونو لپاره کارول کیږي.
DocType: Notification,Value Changed,ارزښت بدله
@@ -993,6 +1005,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,ذکر د را
DocType: Help Article,Expert,کارپوه
DocType: Workflow State,circle-arrow-right,دایره-غشی-حق
DocType: Role Profile,Role Profile,د رول پېژندڅېره
+DocType: Document Type Mapping,Remote Document Type,د لرې سند سند
apps/frappe/frappe/permissions.py,Document Type is not importable,د لاسوند ډول د واردولو وړ ندی
DocType: LDAP Settings,LDAP Server Url,LDAP سرور URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,مثال دابرخه دکتابتون خلاصه نه شي کولای چې خپل {0} پرانیستې ده
@@ -1078,7 +1091,7 @@ DocType: Web Form,Allow Print,چاپ اجازه
DocType: Communication,Clicked,چې ټک
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,بې لارې کول
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ته هيڅ اجازه '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,مهرباني وکړئ د ډیفالټ بریښنالیک حساب له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه تنظیم کړئ
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},له {1} څخه یوازې لومړۍ {0} صفونه ښودل کیږي
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,ټاکل شوې واستوي
DocType: DocType,Track Seen,Track کتل
DocType: Dropbox Settings,File Backup,د دوتنې شاتړ
@@ -1149,6 +1162,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ی
DocType: Data Export,Filter List,د فلټر لیست
DocType: Data Export,Excel,اېسلسل
DocType: System Settings,HH:mm,HH: ملي میتر
+DocType: Event Sync Log,Event Configurations,د پیښې تنظیمات
DocType: Email Account,Auto Reply Message,د موټرونو ته ځواب ورکړئ پيغام
DocType: Data Migration Mapping,Condition,حالت
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ساعته وړاندې
@@ -1208,9 +1222,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,حساب د
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,له څه ويلو څخه ورتګ
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,بیا دې کرښې لاندې د معلوماتو د ننوتلو
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},د بدلون د ارزښتونو {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}",د بریښنالیک شناخت باید ځانګړی وي، د برېښناليک حساب لا د مخه موجود دی \ {0}
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",د پرتله کولو لپاره ،> 5 ، <10 یا = 324 وکاروئ. د حدونو لپاره ، 5:10 وکاروئ (د 5 او 10 ترمنځ ارزښتونو لپاره).
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,دودیز ...
DocType: Print Format,Align Labels to the Right,ښیګڼونو ته لیبل وټاکئ
DocType: Assignment Rule,Disabled,معلولينو
@@ -1257,8 +1270,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,کيلي لنډلار
DocType: Post,Comments,تبصرې
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,دا تصدیق کړي
+DocType: Event Sync Log,Update Type,د اوسمهال ډول
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,تصدیق کول ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,دټولو چپه کیدل
+DocType: Event Producer,Last Update,وروستی تازه
apps/frappe/frappe/www/login.html,Forgot Password?,خپل پټ نوم درڅخه هیر دی؟
DocType: System Settings,yyyy-mm-dd,yyyy ملي متري-DD
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1299,6 +1314,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,جدول
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,یورتان پر بنسټ
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}",د {1} ، {2} د {0} واردول
DocType: Workflow State,move,حرکت
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,د اوسني سایټ لپاره د پیښې مصرف کونکي یا د پیښې مصرف کونکي رامینځته کولو کې پاتې راغلي.
apps/frappe/frappe/model/document.py,Action Failed,کړنه کې پاتې راغی
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,د کارن
DocType: View Log,View log,لوستل وګورئ
@@ -1457,6 +1473,7 @@ DocType: DefaultValue,Key,کلیدي
DocType: Address,Contacts,د اړيکې
DocType: System Settings,Setup Complete,Setup بشپړ
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,د ټولو سند د سهم راپور
+DocType: Event Consumer,Callback URL,د زنګ وهلو یو آر ایل
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",د واردولو نمونه باید د .csv ، .xlsx یا .xls ډول وي
apps/frappe/frappe/www/update-password.html,New Password,نوئ پټ نوم
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} د ورکو
@@ -1522,7 +1539,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ب
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,؛ په حالت اجازه نه
DocType: Async Task,Async Task,Async کاري
DocType: Workflow State,picture,انځور
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,بشپړ
+DocType: Scheduled Job Log,Complete,بشپړ
DocType: DocType,Image Field,د انځور د ساحوي
DocType: Print Format,Custom HTML Help,د ګمرکونو د HTML مرسته
DocType: LDAP Settings,Default Role on Creation,په تخلیق کې د ډیفالټ رول
@@ -1548,6 +1565,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,مرسته په پلټنه
DocType: Milestone,Milestone Tracker,د مایلسټون تعقیبونکی
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,نومليکنه خو معلولينو
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,پته اړتیا لري چې له یوه شرکت سره وصل شي. مهرباني وکړئ لاندې لینکونو جدول کې د شرکت لپاره قطار اضافه کړئ.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,د دې سند لپاره د آټو تکرار غیر فعال شوی دی.
DocType: DocType,Hide Copy,پټول کاپي
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ټول رولونه د پاکولو
@@ -1586,13 +1604,13 @@ DocType: Bulk Update,Field,ساحوي
DocType: Communication,Received,ترلاسه
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",ماشه پر اعتبار ميتودونو لکه "before_insert"، "after_update"، او نور (به د DocType ټاکل پورې اړه لري)
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},د {0} {1} ارزښت بدل شو
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},د بریښنالیک حساب تنظیم کول مهرباني وکړئ د دې لپاره خپل رمز دننه کړئ: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,د دې کارن د سیستم د مدير زياته کړه په توګه باید تيروخت یو سیستم د مدير وي
DocType: Chat Message,URLs,یو آر ایل
DocType: Data Migration Run,Total Pages,ټولې پاڼې
DocType: DocField,Attach Image,د انځور ضمیمه
DocType: Workflow State,list-alt,لست-alt
apps/frappe/frappe/www/update-password.html,Password Updated,شفر Updated
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> د کارونکي اجازه
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ستاسو د ننوتنې تصدیق کولو ګامونه
apps/frappe/frappe/utils/password.py,Password not found,شفر ونه موندل شو
DocType: Webhook,Webhook Secret,د ویب هوک راز
@@ -1607,8 +1625,6 @@ DocType: Website Settings,Brand,دتوليد
apps/frappe/frappe/config/integrations.py,Google API Settings.,د ګوګل API ترتیبات.
DocType: Report,Query Report,خوری راپور
DocType: User,Set New Password,د ټاکلو په موخه د نوي شفر
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",٪ s معتبر راپور بڼه کې نه دی. راپور شکل باید د لاندې٪ s يو \
DocType: Chat Message,Chat,Chat
DocType: LDAP Group Mapping,LDAP Group Mapping,د LDAP ګروپ نقشه کول
DocType: Dashboard Chart,Chart Options,د چارت اختیارونه
@@ -1642,7 +1658,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,خپل پ
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox لاسرسی پټې
DocType: Tag Link,Document Title,لاسوند
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(لازمي)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} کاله دمخه
DocType: Social Login Key,Social Login Provider,د ټولنی ننوتل چمتو کول
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Add يو بل پيغام
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,په فایل کې هیڅ معلومات نه موندل کیږي. مهرباني وکړئ نوی فایل د ډاټا سره بیاچاپ کړئ.
@@ -1688,6 +1703,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",انت
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 کال
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,د تل لپاره د ړنګولو {0}؟
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,همدغه دوتنه د مخه د ریکارډ سره ضميمه شوي دي
+DocType: Event Sync Log,Synced,سینګول شوی
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} یو باوري کارګر حالت نه دی. مهرباني وکړئ خپل کاري فالور تازه کړئ او بیا هڅه وکړئ.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} ټکي ورکړل
DocType: Workflow State,wrench,ورنشس
@@ -1787,6 +1803,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,Max اوږدوالی
DocType: Print Format,Jinja,جنجا
DocType: Workflow State,map-marker,نقشه-مارکر
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,د دوه لاسوندونو ترمنځ نقشه ایښودنه.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,یو Issue سپارل
DocType: Event,Repeat this Event,دغه پيښه تکرار
DocType: Address,Maintenance User,د ساتنې د کارن
@@ -1846,6 +1863,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,ټیسټ دبرېښنا ليک پته:
DocType: Auto Repeat,Reference Document Type,د حوالې سند ډول
DocType: ToDo,Sender,استوونکی
+DocType: Event Consumer,Incoming Change,راتلونکی بدلون
DocType: Google Drive,Backup Folder Name,د بیک اپ فولډر نوم
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,د اطلاعاتو {0} د ارزونې په وخت کې تېروتنه. مهرباني وکړئ خپل ټکي سم کړئ.
DocType: GSuite Settings,Google Apps Script,د ګوګل کاریالونو الخط
@@ -1906,9 +1924,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,د نو
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,د غوښتنې تصویب لپاره لاندې لینک باندې کلیک وکړئ
DocType: Workflow State,align-left,په همغاړیتوب-پاتې
DocType: Onboarding Slide,Action Settings,د کړنې امستنې
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,جوړول> کارن
DocType: User,Defaults,افتراضیو
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",د پرتله کولو لپاره ،> 5 ، <10 یا = 324 وکاروئ. د حدونو لپاره ، 5:10 وکاروئ (د 5 او 10 ترمنځ ارزښتونو لپاره).
DocType: Energy Point Log,Revert Of,بېرته راوګرځول
+DocType: Document Type Mapping,Field Mapping,د ساحې نقشه کول
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,سره د موجوده لېږدونه
DocType: User,Birth Date,د زېږېدو نېټه
DocType: Communication Link,Link Title,لینک عنوان
@@ -1936,6 +1955,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,ټاګ لینک
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,د چین بشپړتیا
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,په ټیسټ کې
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 د اسعارو له = [؟] کسر د ساري 1 ډالره = 100 په سلو کې
DocType: Data Import,Partially Successful,په بریالي توګه بریالی
@@ -1945,6 +1965,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,د LDAP ګروپ نقشه کول
DocType: Chat Message Attachment,Chat Message Attachment,د چالان پیغام لغوه کول
DocType: LDAP Settings,Path to CA Certs File,د CA سندونو فایل ته لاره
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,که سند د تولید کونکي او مصرف کونکي پای کې د ساحې مختلف نومونه ولري دا چیک کړئ او نقشه ترتیب کړئ
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,د ټولو لینکونو انتخابونو ته اجازه ورکړئ
DocType: DocType,Database Engine,ډیټابیس Engine
@@ -2078,6 +2099,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,یادښت
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,تېروتنه راپور
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,د CSV / Excel بڼه کې د صادراتو ډاټا.
+DocType: Document Type Field Mapping,Document Type Field Mapping,د لاسوند ډول ساحه نقشه
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,د نړیوال لټون اسنادو تنظیم کول.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,د تایید کولو کاریالونه چې تاسو یې کارولی شئ دا دي:
DocType: S3 Backup Settings,None,هیڅ نه
@@ -2152,7 +2174,6 @@ DocType: Workflow State,Upload,پورته کول
DocType: User Permission,Advanced Control,پرمختللي کنټرول
DocType: System Settings,Date Format,نېټه شکل
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,نه Published
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,د پتې اصلي ټاپو ټاټوبی ونه موندل شو. مهرباني وکړئ له تنظیم او چاپ کولو او نښه کولو> پته ټیمپلیټ څخه نوی جوړ کړئ.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",د ننګولې کړنې (د بيلګې په توګه تصویب کړي، لغوه کړه).
DocType: Data Import,Skip rows with errors,قطارونه د غلطۍ سره پریږدي
DocType: Workflow State,flag,بیرغ
@@ -2216,6 +2237,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ایالتونو کې د یو سند او رول ته دنده وسپارله څو د دولت د بدلون اجازه استازيتوب کوي.
DocType: Data Migration Connector,Database Name,د ډاټا ډاټا
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,تاندول فورمه
+DocType: Event Producer,Event Producer,د پیښې جوړونکی
DocType: DocField,Select,وټاکئ
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,بشپړ لاګ وګورئ
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",د ساده پیتون څرګندونې ، مثال: حالت == 'خلاص' او ټایپ == 'بګ'
@@ -2315,6 +2337,7 @@ DocType: DocType,User Cannot Search,کارن پلټنه نه شي
DocType: Communication Link,Communication Link,د اړیکې لینک
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,باطلې محصول شکل
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},{0} {1} نه شي
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,یو تکرار شوی {0} {1} ستاسو لپاره د آټو تکرار {2} له لارې رامینځته شوی.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,دغه قواعد د Apply که د کارن د خاوند ده
DocType: Global Search Settings,Global Search Settings,نړیوال لټون امستنې
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,به خپل د ننوت تذکرو وي
@@ -2332,6 +2355,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,د ننوتن
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ته اضافه کړی تر آیا
DocType: Footer Item,Company,شرکت
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},اوسط {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,بریالي لیږدونه
DocType: Scheduled Job Log,Scheduled,ټاکل شوې
DocType: User,Logout from all devices while changing Password,د پټنوم بدلولو په وخت کې د ټولو وسیلو څخه ننوتل
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,شفر تاييد
@@ -2444,6 +2468,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,میاشت
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} ته واستوي سند اشاره
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,یوازې په کارنامو کې شامل کارونکي لیست شوي دي
DocType: DocField,Fetch From,له ترلاسه کولو څخه
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> فارم دودیز کړئ
apps/frappe/frappe/modules/utils.py,App not found,ددفتروسایل ونه موندل شو
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},جوړ نه شي {0} يو ماشوم سند په وړاندې: {1}
DocType: Social Login Key,Social Login Key,د ټولنی ننوتل کیلي
@@ -2454,7 +2479,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,پيغ
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,ټولنیز کور
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},وروسته نه شي کولای ورننويستل {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Share {0} سره
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,برېښناليک حساب تشکیلاتو لطفا د خپل پټنوم داخل کړی:
DocType: Workflow State,hand-up,لاس-up
DocType: Blog Settings,Writers Introduction,ليکوال سريزه
DocType: Address,Phone,تيليفون
@@ -2513,7 +2537,7 @@ DocType: Web Page,Insert Style,درج Style
DocType: Prepared Report,Error Message,د خطا پیغام
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,نوي راپور نوم
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,د اونۍ پټول
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,په اتوماتيک ډول د تکراري اسنادو تولید
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,په اتوماتيک ډول د تکراري اسنادو تولید
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ده
DocType: Onboarding Slide,ERPNext,د ERPNext
DocType: Workflow State,info-sign,معلومات-نښه
@@ -2521,7 +2545,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,د {0}
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",څنګه بايد د دغه کار د اسعارو بڼول شي؟ که ټاکل شوی نه، به سيستم افتراضیو وکاروي
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,د {0} اسناد تسلیم کړئ؟
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,تاسو بايد غونډال کې شي او د سیستم د مدير رول ولري تر څو backups لاسرسی وي.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","د QZ ټری کاریال سره په پیوستولو کې تېروتنه ...
تاسو اړتیا لرئ د QZ ټری غوښتنلیک نصب او چلئ ، د خامو چاپ ب featureه کارولو لپاره.
د QZ ټری ډاونلوډ او نصبولو لپاره دلته کلیک وکړئ .
د را چاپولو په اړه د نورو معلوماتو لپاره دلته کلیک وکړئ ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,د چاپګر نقشه
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,لطفا د ژغورلو ضميمه مخکې.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,ایا تاسو غواړئ ټول تړلي سندونه لغوه کړئ؟
@@ -2549,6 +2572,7 @@ DocType: Role Permission for Page and Report,Set Role For,د ټاکلو په ر
DocType: GCalendar Account,The name that will appear in Google Calendar,هغه نوم چې په ګوګل کټل کې راځي
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,د {0} سره مستقیم خونه لا دمخه شتون لري.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,تازه ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},مهرباني وکړئ د ډشبورډ چارت لپاره ټاکل شوي فلټر ارزښتونه وګورئ: {}
DocType: Event,Starts on,پيل په
DocType: System Settings,System Settings,سيستم امستنې
DocType: GCalendar Settings,Google API Credentials,د ګوګل API کریډیټونه
@@ -2574,6 +2598,7 @@ DocType: Workflow State,ok-sign,سمه ده-نښه
apps/frappe/frappe/config/settings.py,Deleted Documents,ړنګ اسناد
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,د CSV بڼه د قضیې حساس دی
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,د ديسکټاپ Icon د مخکې نه شتون
+DocType: Event Consumer Document Type,Approval Status,تصویب حالت
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,په هغه څه مشخص کړئ چې ټول ډومینونه باید سلایډونه ښکاره شي. که هیڅ شی مشخص نه وي نو سلایډ په ټولو ډومینونو کې د ډیفالټ لخوا ښودل شوی.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,دوه
DocType: Newsletter,Create and Send Newsletters,جوړول او وليږئ ګڼې
@@ -2592,6 +2617,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,مرسته بیشتر
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ډول:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,ستاسو د ورکړې ناکام دی.
+DocType: Event Producer,Producer URL,د تولید کونکی URL
DocType: Comment,Unshared,شویوغیرمشترکو
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,ماډل و نه موندل شو
@@ -2603,6 +2629,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,دندې بشپړې شوي
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},د حجم سمول {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,راپور کښته کول
+apps/frappe/frappe/model/workflow.py,Workflow Status,د کاري جریان حالت
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,فعاله نه
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,یوازې د مدیر اجازه لري چې د ډشبورډ چارت سرچینې رامینځته کړي
DocType: About Us Settings,Settings for the About Us Page,لپاره زموږ په اړه Page امستنې
@@ -2662,6 +2689,7 @@ DocType: User Social Login,User Social Login,د کارن ټولنیز ننوتل
DocType: Contact,All,ټول
DocType: Email Queue,Recipient,دترلاسه کوونکي
DocType: Webhook,Webhook Security,د ویب هک امنیت
+DocType: Event Sync Log,Producer Document Name,د تولیدونکي سند نوم
DocType: Communication,Has Attachment,لري ضميمه
DocType: Address,Sales User,خرڅلاو کارن
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,راکښن او لاسرسئ وسیله د جوړولو او چاپ بڼی دتنظيمولو.
@@ -2695,6 +2723,7 @@ DocType: Address,Arunachal Pradesh,اروناچل پرادېش
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,د ماشومانو میزونه په نورو ډیک ټایپونو کې د بریښنا په څیر ښودل شوي
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setup د موټرونو دبرېښنا ليک
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,هغه سایټ چې تاسو غواړئ د پیښو مصرف لپاره یې ګډون وکړئ.
DocType: Chat Profile,Message Preview,د پېغام کتنه
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,دا یو سر-10 عام شفر.
DocType: User,User Defaults,کارن افتراضیو
@@ -2727,6 +2756,7 @@ DocType: Dashboard Chart,Last Synced On,وروستی ځل په هډل شوی
DocType: Comment,Comment Type,پيغام ډول
DocType: OAuth Client,OAuth Client,OAuth د مراجع
DocType: Assignment Rule,Users,کارنان
+DocType: Document Type Mapping,Local Document Type,ځایی لاسوند ډول
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,راپور ډول
DocType: DocField,Signature,د لاسلیک
@@ -2768,6 +2798,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} ځان د دې دنده وټاکه: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,ستاسو د هېواد
DocType: Assignment Rule Day,Sunday,یک شنبه
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",د اسنادو لپاره د پیښې پروډیوسر سایټ کې د ټولو داخلونو ، تازه معلوماتو او حذف کولو لاگ ساتي چې پیرودونکي لري.
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: ساحه د {1} څخه نشي کیدی
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,دریځونه
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,په بريښنا کتل
@@ -2913,7 +2944,6 @@ DocType: Web Page,Sidebar and Comments,د پټې او تبصره
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",کله چې تاسو پرچاپیریال سره يو سند وروسته لغوه کړه او د ژغورلو دا، به د يو نوي شمېر چې د زاړه شمېر کې نسخه تر لاسه کړي.
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings",د {0} سند لاسلیک کولو ته اجازه نلري، لطفا د چاپ ترتیبونو کې {0} ته د چاپ اجازه ورکړئ
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,د بریښنالیک حساب نه دی تنظیم شوی. مهرباني وکړئ له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه نوی بریښنالیک حساب جوړ کړئ
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},سند په {0} کې وګورئ
DocType: Stripe Settings,Publishable Key,خپرولو کلیدي
DocType: Stripe Settings,Publishable Key,خپرولو کلیدي
@@ -2992,7 +3022,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,پيژندنه:
DocType: Custom Field,Permission Level,د اجازې د ليول
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: جوړ نشي سپارل، لغوه، پرته نوشتن راولی
DocType: List View Setting,Disable Count,شمېرنه ناتوان کړئ
-DocType: Google Maps Settings,Client Key,د مراجع کیلي
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,آيا تاسو په ډاډمنه توګه غواړئ چې په ضمیمه کی ړنګ کړئ؟
apps/frappe/frappe/__init__.py,Thank you,مننه
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,ژغورل
@@ -3117,6 +3146,7 @@ DocType: Workflow Document State,Only Allow Edit For,يوازې اجازه سم
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,ګوګل ډرایو ته بیک اپ ورکول.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},اجباري ډګر: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ستاسو نوم
+DocType: Event Producer Document Type,Event Producer Document Type,د پیښې تولید کونکي سند ډول
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,د پیوستون بریالیتوب
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,د سالیډ ډول ادامه ورکولو یوه روانه تخته لا دمخه موجوده ده.
@@ -3186,6 +3216,7 @@ DocType: Address,Postal Code,د ډاګ کوډ
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Relink مخابراتو
DocType: Translation,Contributed,مرسته وشوه
apps/frappe/frappe/config/customization.py,Form Customization,ب Customه غوره کول
+DocType: Event Update Log,Event Update Log,د پیښې تازه معلومات
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,هیڅ فعاله ناسته
DocType: Web Form,Route to Success Link,بریالیتوب ته لار
DocType: Onboarding Slide Field,Right,حق
@@ -3212,7 +3243,7 @@ DocType: Website Settings,Chat Operators,چیٹ چلونکي
DocType: S3 Backup Settings,ca-central-1,ca-مرکزي -1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,لطفا باوري کړه چې په دوتنه تش ستنې نه دي.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,د سند په ژوندی سلهاو کې تعقیبوي که چیرې دا ډیری مرحلې تیریږي.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,د سند په ژوندی سلهاو کې تعقیبوي که چیرې دا ډیری مرحلې تیریږي.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",نومول شوي فایلونه او په کنټرولرونو کې ځای په ځای شوي کوډونه ، مهرباني وکړئ چیک کړئ!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,لطفا باوري کړي چې ستاسو د عکس وښاياست لري يو بريښناليک پته
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,تاسو په دې فورم unsaved بدلونونه لري. لطفا د ژغورلو مخکې تاسو ته دوام ورکړي.
@@ -3239,7 +3270,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,د API راز خوندي کړئ:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},لغوه سند سره تړنې لري نشي: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,يو معياري راپور د سمولو لپاره نه شي. لطفا د دوه او یو نوی راپور جوړ کړي
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address",د شرکت د اجباری دی، ځکه چې دا له خپل شرکت پته
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}",د مثال په توګه: که تاسو غواړی چې شامل سند تذکرو، د {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},د انتخاب جدول یورتان {0}
DocType: Custom Field,Options Help,غوراوي مرسته
@@ -3247,7 +3277,6 @@ DocType: Footer Item,Group Label,ګروپ نښه د
DocType: Kanban Board,Kanban Board,Kanban بورډ
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,د ګوګل اړیکې تنظیم شوي.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 ریکارډ به صادر شي
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,د کارونکي سره هیڅ کوم بریښنالیک نه دی تړلی. مهرباني وکړئ د کارن> بریښنالیک ان باکس کې لاندې حساب اضافه کړئ.
DocType: DocField,Report Hide,راپور پټول
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},د ونو محتویات لپاره نه {0}
DocType: DocType,Restrict To Domain,د ډومېن اړه اندیښمن دي
@@ -3311,7 +3340,9 @@ DocType: DocField,Fold,قات
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,معياري چاپ شکل نه تازه شي
DocType: System Settings,In Days,په ورځو کې
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,ملکه
+DocType: Event Producer Document Type,Has Mapping,نخشه لری
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,څرګند یي کړي
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,د فلټر ارزښت ناباوره دی
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,مرسته ماده
DocType: Page,Page Name,Page نوم
@@ -3417,7 +3448,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,چاپ شکل
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,د ټریګل لید لید
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,راتلونکي ریکارډ ته لاړشئ
-DocType: System Settings,Time Format,د وخت بmatه
+DocType: Country,Time Format,د وخت بmatه
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,باطلې پیسو ورننوتلو باورلیک ومانه
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,دا د ټایپ فايل دی چې یوازې د قطارونو سره پیدا کیږي ځینې تېروتنه لري. تاسو باید دا دوتنه د اصلاح او واردولو لپاره وکاروي.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,په سند ډولونه او رولونه د ټولګې حلال
@@ -3734,6 +3765,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,د کارن نوم په کارولو سره د ننوتلو اجازه ورکړه
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,راپور فعال کړه
DocType: DocField,Display Depends On,وښایئ پورې تړلی دی د
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} کاله دمخه
DocType: Social Login Key,API Endpoint,د API پایټه
DocType: Web Page,Insert Code,درج کوډ
DocType: Data Migration Run,Current Mapping Type,اوسنی نقشه ډول
@@ -3787,6 +3819,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ت
apps/frappe/frappe/www/login.html,Or login with,او یا د login
DocType: Error Snapshot,Locals,ځايي خلک
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},افهام له لارې د {0} د {1}: {2}
+DocType: Event Producer,Event Producer Document Types,د پیښې تولید کونکي سند ډولونه
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,مهرباني وکړئ د ډیفالټ بریښنالیک حساب له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه تنظیم کړئ
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ګروپ وټاکئ د ... لخوا
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,د بيلګې په توګه / 4 (+ 434 55) یا = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} ته اړتيا ده
@@ -3819,9 +3853,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,د ګیالیلر پیوستون ID
DocType: Prepared Report,Report Start Time,د پیل وخت
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,د صادراتو ډاټا
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,د هرې پیښې ننوتل ساتي د ترکیب وضعیت سره یوځای مصرف او د سیینس د ناکامیدو په صورت کې د ریسسنک ت buttonۍ.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,انتخاب یورتان
DocType: Translation,Source Text,سرچینه متن
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,دا د شالید راپور دی. مهرباني وکړئ مناسب فلټرونه تنظیم کړئ او بیا یو نوی تولید کړئ.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,د بریښنالیک حساب نه دی تنظیم شوی. مهرباني وکړئ له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه نوی بریښنالیک حساب جوړ کړئ
apps/frappe/frappe/www/login.py,Missing parameters for login,لپاره د ننوتو ورک پارامترونو
DocType: Workflow State,folder-open,دادوسیه خلاصه علني
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",یوځل چې سپارل شوي ، د سپارلو وړ اسناد نشي بدلیدلی. دوی یوازې منسوخ او ترمیم کیدی شي.
@@ -3900,6 +3936,7 @@ DocType: Event,Send an email reminder in the morning,د سهار په یو بر
DocType: Blog Post,Published On,بخش د
DocType: Contact,Gender,د جندر
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,اجباري معلومات ورک شوي وي:
+DocType: Event Consumer,Event Subscriber,د پیښې پیرودونکی
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,د غوښتنلیک یو ار ایل وګوره
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,يوازې 200 ارائش او په يوه غوښتنه اجازه
DocType: Footer Item,URL,URL
@@ -3912,6 +3949,7 @@ DocType: Auto Email Report,Half Yearly,نيمايي د اکتوبر
DocType: Communication,Marked As Spam,په نښه لکه سپام
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},شتون سره د دوتنې url ځينو ستونزه دا ده: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,د ونو د
+DocType: Event Producer Document Type,Use Same Name,ورته نوم وکاروئ
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,تاسو د دې راپور د چاپولو اجازه نه لري
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,کارن حلال
DocType: Workflow State,warning-sign,خبرداری-نښه
@@ -3921,6 +3959,7 @@ DocType: Workflow State,User,کارن
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",خپرونه د سرليک په لټونګر په توګه کړکۍ »مختاړی - لقب"
DocType: Payment Gateway,Gateway Settings,د ګيټ و سیسټمونه
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,د متن په لاسوند ډول
+DocType: Event Sync Log,Event Sync Log,د پیښې همکاري
apps/frappe/frappe/handler.py,Logged Out,غونډال کې له جملې څخه
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,نور ...
DocType: System Settings,User can login using Email id or Mobile number,کارن کولای بريښناليک ID یا د موبايل په شمېر په کارولو سئ
@@ -3961,12 +4000,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,نه په
DocType: Workflow State,star,ستوري
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,مرکز
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,که چیرې دا کتل شوي وي اسناد به ورته نوم ولري لکه څنګه چې دوی د پیښې پروډیوسر سایټ کې لري
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,ارزښتونو له خوا commas جلا
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},د ډول د اسعارو Max سور دی 100px په قطار {0}
apps/frappe/frappe/config/website.py,Content web page.,منځپانګه ګورت پاڼه د.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,یو نوی رول ورزیات کړئ
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ویب پا Visitه وګورئ
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,نوې دنده
+DocType: Event Consumer Document Type,Approved,تصویب شوې
DocType: Google Contacts,Last Sync On,وروستنۍ هممهال
DocType: Deleted Document,Deleted Document,ړنګ سند
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! کومه تیروتنه وشوه
@@ -4019,7 +4060,6 @@ DocType: DocField,Unique,بې سارې
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} په {1} تعریف شوی
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,جزایی بریالیتوب
DocType: Email Account,Service,خدمت
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,جوړول> کارن
DocType: File,File Name,د دوسیې نوم
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),نه پیدا {0} د {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ریس: {0}
@@ -4031,11 +4071,10 @@ DocType: Calendar View,Calendar View,د کتل کتل
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,سمول شکل
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,بشپړ نوم ليکنې
DocType: GCalendar Settings,Enable,په توانول
-DocType: Google Maps Settings,Home Address,کور پته
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),تاسو يوازې په يو ترمړوندونو 5000 اسنادو له سختولو. (ښايي په ځینو مواردو کې کمه وي)
DocType: Report,"output in the form of `data = [columns, result]`",محصول د `ډیټا = [کالمونو ، پایله] of په ب`ه
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,د پلي کیدو وړ سند ډولونه
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,د کارونکي مقرراتو لپاره مقررات تنظیم کړئ.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,د کارونکي مقرراتو لپاره مقررات تنظیم کړئ.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},لپاره ناکافي د اجازې د {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},لپاره ناکافي د اجازې د {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),راپور خوندي نه (تېروتنې وې)
diff --git a/frappe/translations/pt.csv b/frappe/translations/pt.csv
index db07bfab0c..721aa3d601 100644
--- a/frappe/translations/pt.csv
+++ b/frappe/translations/pt.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Este papel atualiza as permissões para um utilizador
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Alterar o Nome de {0}
DocType: Workflow State,zoom-out,zoom-out
-DocType: Data Import Beta,Import Options,Opções de importação
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Não é possível abrir {0} quando a sua instância está aberta
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabela {0} não pode estar vazia.
DocType: SMS Parameter,Parameter,Parâmetro
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Canc
DocType: DocType,Is Published Field,É Publicado campo
DocType: GCalendar Settings,GCalendar Settings,Configurações do GCalendar
DocType: Email Group,Email Group,Grupo de Email
-apps/frappe/frappe/__init__.py,Only for {},Apenas para {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Agenda - Não foi possível excluir o Evento {0} do Google Agenda, código de erro {1}."
DocType: Event,Pulled from Google Calendar,Extraído do Google Agenda
DocType: Note,Seen By,Visto por
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Adicionar Múltipl
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Não é uma imagem de usuário válida.
DocType: Energy Point Log,Reverted,Revertido
DocType: Success Action,First Success Message,Primeira mensagem de sucesso
+DocType: Document Type Mapping,Document Type Mapping,Mapeamento do tipo de documento
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Não Gostar
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valor incorreto: {0} deve ser {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Alterar as propriedades do campo (ocultar, só de leitur , permissão etc )"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,O site que está consumindo seus eventos.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apreciar
DocType: Notification Settings,Document Share,Partilha de Documentos
DocType: Workflow State,lock,bloquear
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Registo
DocType: Workflow State,indent-right,travessão-direito
DocType: Has Role,Has Role,tem Papel
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Ressincronizar
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Tempo em segundos para manter a imagem do código QR no servidor. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: o tipo de campo {1} para {2} não pode ser indexado
DocType: Dashboard Chart,Timespan,Intervalo de tempo
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Link da Web
DocType: Deleted Document,Restored,Restaurado
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Erro ao conectar ao aplicativo da bandeja QZ ...
Você precisa ter o aplicativo QZ Tray instalado e em execução, para usar o recurso Raw Print.
Clique aqui para baixar e instalar a bandeja QZ .
Clique aqui para saber mais sobre a impressão em bruto ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,há 1 minuto atrás
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Para além do Gestor do Sistema, as funções com os direitos de Definição de Permissões de Utilizadores podem definir permissões para outros utilizadores para esse Tipo de Documento."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Configurar tema
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,Por Ler
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Gestor de Ficheiros
DocType: Website Settings,"HTML Header, Robots and Redirects","Cabeçalho HTML, Robôs e Redirecionamentos"
DocType: GCalendar Account,Refresh Token,token de atualização
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Falha ao conectar ao site do Event Producer. Tente novamente após algum tempo.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Não há trabalhos pendentes ou atuais para este site
DocType: Webhook,Doc Event,Evento de Doc
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Gerenciador de scripts
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Nenhuma atividade
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplicativos de terceiros
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,O primeiro utilizador será o Gestor dos Systema (você pode mudar isso mais tarde).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Você pode tentar alterar os filtros do seu relatório.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Hoje não há eventos
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Você não pode dar pontos de avaliação para si mesmo
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType deve ser enviado para o Evento de Doc selecionado
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Você não tem permissão para enviar e-mails relacionados com este documento
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,"Por favor, selecione pelo menos coluna 1 a partir de {0} para classificar / grupo"
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Não permitido para {0}: {1}. Campo restrito: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Empresa não vinculada
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Marque esta opção se você estiver testando o seu pagamento usando o API Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Você não tem permissão para excluir um site Tema padrão
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Crie seu primeiro {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Atualiza
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Um slide integrado {0} com a mesma ordem de slide já existe
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Desativar Relatório
DocType: Translation,Contributed Translation Doctype Name,Nome do Documento de Tradução Contribuído
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuração> Personalizar formulário
DocType: PayPal Settings,Redirect To,redirecionar para
DocType: Data Migration Mapping,Pull,Puxar
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},"Formato JavaScript:
@@ -275,6 +279,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Não Desejados
DocType: DocShare,Internal record of document shares,Registo interno de ações de documentos
DocType: Energy Point Settings,Review Levels,Revisar Níveis
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuração> Permissões do Usuário
DocType: Workflow State,Comment,Comentário
DocType: Data Migration Plan,Postprocess Method,Método de pós-processamento
DocType: DocType Action,Action Type,Tipo de acão
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Mos
DocType: Workflow State,remove-circle,círculo-de-remoção
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Meu perfil
DocType: Help Article,Beginner,Principiante
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Esta ação é permitida apenas para {}
DocType: Contact,Is Primary Contact,É o Contato Principal
+DocType: Event Consumer,Event Consumer,Consumidor de Eventos
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript para acrescentar à seção principal da página.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Adicionar / Atualizar
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Não é permitido imprimir documentos de rascunho
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Redefinir para padrão
DocType: Workflow,Transition Rules,Regras de transição
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Mostrando apenas as primeiras {0} linhas na visualização
apps/frappe/frappe/core/doctype/report/report.js,Example:,Exemplo:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Restrições
DocType: Workflow,Defines workflow states and rules for a document.,Define o status do fluxo de trabalho e as regras para um documento.
@@ -481,7 +487,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Repetir Até Que
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Novo
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Você precisa criar estes primeiro:
-DocType: Google Maps Settings,Google Maps Settings,Configurações do Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,A Carregar...
DocType: DocField,Password,Senha
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Seu sistema está sendo atualizado. Atualize novamente depois de alguns momentos
@@ -573,6 +578,7 @@ DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa
DocType: Onboarding Slide,Onboarding Slide,Slide de integração
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Senha inválida:
DocType: Print Settings,Send document web view link in email,Enviar documento vista web link no e-mail
+DocType: Event Consumer Document Type,Event Consumer Document Type,Tipo de documento do consumidor do evento
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Anterior
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Exigir certificado confiável
@@ -648,6 +654,7 @@ DocType: Workflow State,volume-down,volume baixo
DocType: Onboarding Slide,Help Links,Links de Ajuda
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Acesso não permitido deste endereço IP
DocType: Notification Settings,Enable Email Notifications,Ativar notificações por email
+DocType: Document Type Field Mapping,Event Streaming,Fluxo de Eventos
apps/frappe/frappe/desk/reportview.py,No Tags,não há tags
DocType: Email Account,Send Notification to,Enviar Notificação de
DocType: DocField,Collapsible,Comprimíveis
@@ -664,11 +671,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Nenhuma condição fornecida
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Campos do eixo Y
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Ordenar campo {0} deve ser um nome do campo válido
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenhum modelo de endereço padrão encontrado. Crie um novo em Configuração> Impressão e identidade visual> Modelo de endereço.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Mais
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Crie um novo registro
DocType: Contact,Sales Manager,Gestor De Vendas
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Alterar Nome
DocType: Print Format,Format Data,Formatar Dados
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} não é um formato de relatório válido. O formato do relatório deve ser um dos seguintes {1}
DocType: List Filter,Filter Name,Nome do filtro
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Gosto
DocType: Assignment Rule,Automation,Automação
@@ -687,6 +696,7 @@ DocType: User,Reset Password Key,Redefinir Tecla de Senha
DocType: Dashboard Chart,All Time,Tempo todo
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Status ilegal do documento para {0}
DocType: Email Account,Enable Auto Reply,Ativar Resposta Automática
+apps/frappe/frappe/desk/query_report.py,No data to export,Nenhum dado para exportar
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Não Visto
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Não é possível ter várias impressoras mapeadas para um único formato de impressão.
DocType: Workflow State,zoom-in,zoom-in
@@ -837,6 +847,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Mudar usu
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Primeiro
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Atualizar Traduções
DocType: Error Snapshot,Exception,Exceção
+DocType: Event Consumer,Event Consumer Document Types,Tipos de documento do consumidor do evento
DocType: Email Account,Use IMAP,Use IMAP
DocType: Activity Log,Activity Log,Registo de Atividade
DocType: View Log,Viewed By,Visto por
@@ -875,6 +886,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Def
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configurar Gráficos
DocType: User,Last IP,Último IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Por favor, adicione um assunto ao seu email"
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Transações com erro
DocType: Data Migration Connector,Data Migration Connector,Conector de migração de dados
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} revertido {1}
DocType: Email Account,Track Email Status,Acompanhar status de e-mail
@@ -906,6 +918,7 @@ DocType: Email Queue,Attachments,Anexos
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Você não tem as permissões para acessar este documento
DocType: Language,Language Name,Nome do Idioma
DocType: Email Group Member,Email Group Member,Membro de Grupo de Email
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nenhuma conta de email associada ao usuário. Adicione uma conta em Usuário> Caixa de entrada de email.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Sua conta foi bloqueada e será retomada após {0} segundos
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Permissões de usuário são usadas para limitar usuários a registros específicos.
DocType: Notification,Value Changed,Valor alterado
@@ -998,6 +1011,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Mencione transa
DocType: Help Article,Expert,Especialista
DocType: Workflow State,circle-arrow-right,círculo com seta à direita
DocType: Role Profile,Role Profile,Perfil do papel
+DocType: Document Type Mapping,Remote Document Type,Tipo de documento remoto
apps/frappe/frappe/permissions.py,Document Type is not importable,Tipo de documento não é importável
DocType: LDAP Settings,LDAP Server Url,Servidor LDAP Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Não é possível abrir a instância , quando o seu {0} está aberto"
@@ -1082,7 +1096,7 @@ DocType: Web Form,Allow Print,permitir impressão
DocType: Communication,Clicked,Clicado
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Deixar de seguir
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Sem permissão para '{0} ' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure a Conta de email padrão em Configuração> Email> Conta de email
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Mostrando apenas {0} primeiras linhas de {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Programado para enviar
DocType: DocType,Track Seen,Registar Visualizações
DocType: Dropbox Settings,File Backup,Backup de arquivos
@@ -1153,6 +1167,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,esc
DocType: Data Export,Filter List,Lista de filtros
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Configurações de evento
DocType: Email Account,Auto Reply Message,Responder a Mensagem Automaticamente
DocType: Data Migration Mapping,Condition,Condição
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} horas atrás
@@ -1212,9 +1227,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Sempre use d
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Inície sessão para poder comentar
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Comece a introduzir dados abaixo desta linha
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},valores alterados para {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","O ID de e-mail deve ser exclusivo, a conta de e-mail já existe \ para {0}"
DocType: Workflow State,retweet,retuitar
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparação, use> 5, <10 ou = 324. Para intervalos, use 5:10 (para valores entre 5 e 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Customizar...
DocType: Print Format,Align Labels to the Right,Alinhar etiquetas à direita
DocType: Assignment Rule,Disabled,Desativado
@@ -1263,8 +1277,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Atalhos do teclado
DocType: Post,Comments,Comentários
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Confirmar
+DocType: Event Sync Log,Update Type,Tipo de atualização
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Autenticando ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Recolher todos
+DocType: Event Producer,Last Update,Última atualização
apps/frappe/frappe/www/login.html,Forgot Password?,Esqueceu a Senha?
DocType: System Settings,yyyy-mm-dd,aaaa-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1305,6 +1321,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,O campo Ta
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Colunas com base em
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importando {0} de {1}, {2}"
DocType: Workflow State,move,mover
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Falha ao criar um Consumidor de Eventos ou Consumidor de Eventos para o site atual já está registrado.
apps/frappe/frappe/model/document.py,Action Failed,Ação Falhada
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Para o Utilizador
DocType: View Log,View log,Visualizar log
@@ -1468,6 +1485,7 @@ DocType: DefaultValue,Key,Tecla
DocType: Address,Contacts,Contactos
DocType: System Settings,Setup Complete,Instalação concluída
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Relatório de todas as partilhas de documentos
+DocType: Event Consumer,Callback URL,URL de retorno de chamada
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","O modelo de importação deve ser do tipo .csv, .xlsx ou .xls"
apps/frappe/frappe/www/update-password.html,New Password,Nova Senha
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Falta o filtro {0}
@@ -1535,7 +1553,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Não está permitido na condição
DocType: Async Task,Async Task,Tarefa Assíncrona
DocType: Workflow State,picture,imagem
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Concluído
+DocType: Scheduled Job Log,Complete,Concluído
DocType: DocType,Image Field,Campo de Imagem
DocType: Print Format,Custom HTML Help,Ajuda de HTML Personalizada
DocType: LDAP Settings,Default Role on Creation,Função Padrão na Criação
@@ -1561,6 +1579,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Ajuda na Pesquisa
DocType: Milestone,Milestone Tracker,Tracker Milestone
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Registrado, mas desativado"
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,O endereço precisa estar vinculado a uma empresa. Adicione uma linha para a empresa na tabela Links abaixo.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,A repetição automática para este documento foi desativada.
DocType: DocType,Hide Copy,Ocultar Copiar
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Desselecionar todas as funções
@@ -1599,6 +1618,7 @@ DocType: Bulk Update,Field,Campo
DocType: Communication,Received,Recebido
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Gatilho em métodos válidos como "before_insert", "after_update", etc. (dependerá da TipoDoc seleccionado)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},valor alterado de {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Configuração da conta de e-mail, digite sua senha para: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Atribuir a função de Gestor de Sistema a este utilizador por ter que existir pelo menos um Gestor de Sistema
DocType: Chat Message,URLs,URLs
DocType: Data Migration Run,Total Pages,Páginas totais
@@ -1606,7 +1626,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Anexar Imagem
DocType: Workflow State,list-alt,alt-lista
apps/frappe/frappe/www/update-password.html,Password Updated,Senha Atualizada
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuração> Permissões do Usuário
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Etapas para verificar seu login
apps/frappe/frappe/utils/password.py,Password not found,Senha não encontrada
DocType: Webhook,Webhook Secret,Segredo do Webhook
@@ -1622,8 +1641,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Configurações d
DocType: Report,Query Report,Relatório de Consulta
DocType: User,Set New Password,Definir nova senha
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Não permitido para {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S não é um formato de relatório válido. formato do relatório deve \ um dos seguintes% s
DocType: Chat Message,Chat,Conversar
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Nenhum documento encontrado marcado com {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Mapeamento do Grupo LDAP
@@ -1659,7 +1676,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Insira a
DocType: Dropbox Settings,Dropbox Access Secret,Segredo de Acesso à Dropbox
DocType: Tag Link,Document Title,Título do documento
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obrigatório)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ano (s) atrás
DocType: Social Login Key,Social Login Provider,Provedor de acesso social
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Adicionar Outro Comentário
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nenhum dado encontrado no arquivo. Recoloque o novo arquivo com dados.
@@ -1707,6 +1723,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ano
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Eliminar permanentemente {0} ?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Mesmo arquivo já foi anexado ao registro
+DocType: Event Sync Log,Synced,Sincronizado
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} não é um estado válido do fluxo de trabalho. Atualize seu fluxo de trabalho e tente novamente.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,deu {0} pontos
DocType: Workflow State,wrench,chave inglesa
@@ -1809,6 +1826,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,I
DocType: Web Form Field,Max Length,Comprimento máximo
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,marcador-de-mapa
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,A configuração de mapeamento entre dois doctypes.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Enviar um Incidente
DocType: Event,Repeat this Event,Repetir este Evento
DocType: Address,Maintenance User,Utilizador da Manutenção
@@ -1868,6 +1886,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Teste de Endereço de Email
DocType: Auto Repeat,Reference Document Type,Referência Tipo de Documento
DocType: ToDo,Sender,Remetente
+DocType: Event Consumer,Incoming Change,Mudança de entrada
DocType: Google Drive,Backup Folder Name,Nome da pasta de backup
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Erro ao avaliar a notificação {0}. Por favor corrija seu modelo.
DocType: GSuite Settings,Google Apps Script,Script do Google Apps
@@ -1930,9 +1949,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Novo nom
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Clique no link abaixo para aprovar o pedido
DocType: Workflow State,align-left,alinhar-à-esquerda
DocType: Onboarding Slide,Action Settings,Configurações de ação
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuração> Usuário
DocType: User,Defaults,Padrões
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparação, use> 5, <10 ou = 324. Para intervalos, use 5:10 (para valores entre 5 e 10)."
DocType: Energy Point Log,Revert Of,Reverter
+DocType: Document Type Mapping,Field Mapping,Mapeamento de Campo
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Unir com existente
DocType: User,Birth Date,Data de Nascimento
DocType: Communication Link,Link Title,link Title
@@ -1960,6 +1980,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tag Link
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Integridade da Corrente
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Em teste
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 Moeda = [?] Fração
Por ex: 1 EUR = 100 Cêntimos"
@@ -1970,6 +1991,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Mapeamentos de grupo LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Anexo da mensagem de bate-papo
DocType: LDAP Settings,Path to CA Certs File,Caminho para o arquivo CA Certs
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Se o documento tiver nomes de campos diferentes no final do produtor e do consumidor, verifique isso e configure o mapeamento"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Permitir leitura em todas as opções de link
DocType: DocType,Database Engine,Database Engine
@@ -2104,6 +2126,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Nota
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Reportar Erro
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Exportar dados no formato CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Mapeamento de campos do tipo de documento
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Configurando documentos de Pesquisa Global.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Os aplicativos de autenticação que você pode usar são:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} já existe. Selecione outro nome
@@ -2179,7 +2202,6 @@ DocType: Workflow State,Upload,Enviar
DocType: User Permission,Advanced Control,Controle Avançado
DocType: System Settings,Date Format,Formato de Data
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Não Publicado
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenhum modelo de endereço padrão encontrado. Crie um novo em Configuração> Impressão e identidade visual> Modelo de endereço.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Ações para o fluxo de trabalho (ex: Aprovar, Cancelar) ."
DocType: Data Import,Skip rows with errors,Ignorar linhas com erros
DocType: Workflow State,flag,bandeira
@@ -2242,6 +2264,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Representa os status permitidos em um documento e a função atribuída que pode alterar o status.
DocType: Data Migration Connector,Database Name,Nome do banco de dados
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Recarregar Formulário
+DocType: Event Producer,Event Producer,Produtor de Eventos
DocType: DocField,Select,Seleção
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Visualizar log completo
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Expressão Python Simples, Exemplo: status == 'Open' e digite == 'Bug'"
@@ -2343,6 +2366,7 @@ DocType: DocType,User Cannot Search,O utilizador não pode pesquisar
DocType: Communication Link,Communication Link,Link de comunicação
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Formato de saída inválido
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Não é possível {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Um {0} {1} recorrente foi criado para você através da Repetição automática {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplicar esta regra se o Utilizador for o Proprietário
DocType: Global Search Settings,Global Search Settings,Configurações globais de pesquisa
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Será seu ID de login
@@ -2360,12 +2384,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Código QR par
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Adicionar à Lista de Tarefas
DocType: Footer Item,Company,Empresa
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Média de {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Transações bem-sucedidas
DocType: Scheduled Job Log,Scheduled,Programado
DocType: User,Logout from all devices while changing Password,Sair de todos os dispositivos ao mudar a senha
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifique A Senha
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Ocorreram erros
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Digite o ID do cliente e o segredo do cliente nas Configurações do Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Fechar
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",O ID do email deve ser exclusivo. A conta de email já existe para {0}
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Não é possível alterar o docstatus de 0 a 2
DocType: File,Attached To Field,Ligado ao campo
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Atualizar
@@ -2472,6 +2498,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Mês
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Adicionar Reference: {{ reference_doctype }} {{ reference_name }} para enviar referência do documento
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Somente usuários envolvidos no documento são listados
DocType: DocField,Fetch From,Buscar de
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuração> Personalizar formulário
apps/frappe/frappe/modules/utils.py,App not found,A app não foi encontrada
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Não é possível criar um {0} no documento secundário: {1}
DocType: Social Login Key,Social Login Key,Chave de login social
@@ -2483,7 +2510,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Mensage
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Social Home
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},O Inserir Depois não pode ser definido como {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Partilhar {0} com
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Email Configuração de conta, digite sua senha para:"
DocType: Workflow State,hand-up,mão-para-cima
DocType: Blog Settings,Writers Introduction,Escritores Introdução
DocType: Address,Phone,Telefone
@@ -2542,7 +2568,7 @@ DocType: Web Page,Insert Style,Inserir Estilo
DocType: Prepared Report,Error Message,Mensagem de erro
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Novo Nome de Relatório
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ocultar finais de semana
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automaticamente gera documentos recorrentes.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Automaticamente gera documentos recorrentes.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,É
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,sinal-de-informações
@@ -2550,7 +2576,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valor p
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Como é que a moeda deve ser formatada? Se isto não for definido, será utilizado o padrão do sistema"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Envie {0} documentos?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Você precisa estar conectado e ter permissões de ""System Manager Role"" para poder aceder a cópias de segurança."
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Erro ao conectar ao aplicativo da bandeja QZ ...
Você precisa ter o aplicativo QZ Tray instalado e em execução, para usar o recurso Raw Print.
Clique aqui para baixar e instalar a bandeja QZ .
Clique aqui para saber mais sobre a impressão em bruto ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapeamento de Impressora
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Por favor, guarde antes de anexar."
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Deseja cancelar todos os documentos vinculados?
@@ -2580,6 +2605,7 @@ DocType: Role Permission for Page and Report,Set Role For,Definir papel para
DocType: GCalendar Account,The name that will appear in Google Calendar,O nome que aparecerá no Google Agenda
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Sala direta com {0} já existe.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,A Recarregar...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Verifique os valores de filtro definidos para o gráfico do painel: {}
DocType: Event,Starts on,Inicia em
DocType: System Settings,System Settings,Configurações do sistema
DocType: GCalendar Settings,Google API Credentials,Credenciais da API do Google
@@ -2604,6 +2630,7 @@ DocType: Workflow State,ok-sign,sinal-ok
apps/frappe/frappe/config/settings.py,Deleted Documents,Documentos excluídos
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,O formato CSV diferencia maiúsculas de minúsculas
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ícone da área de trabalho já existe
+DocType: Event Consumer Document Type,Approval Status,Estado de Aprovação
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Especifique em que todos os domínios os slides devem aparecer. Se nada for especificado, o slide será mostrado em todos os domínios por padrão."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicar
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: o campo {1} na linha {2} não pode ser oculto e obrigatório sem padrão
@@ -2623,6 +2650,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,artigo de ajuda
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tipo:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,O seu pagamento falhou.
+DocType: Event Producer,Producer URL,URL do produtor
DocType: Comment,Unshared,não compartilhado
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Módulo Não Encontrado
@@ -2634,6 +2662,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Tarefa Concluída
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Edição em Massa {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Relatório de download
+apps/frappe/frappe/model/workflow.py,Workflow Status,Status do fluxo de trabalho
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Não está ativo
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Somente o administrador tem permissão para criar fontes de gráficos do painel
DocType: About Us Settings,Settings for the About Us Page,Definições para a página sobre nós
@@ -2643,6 +2672,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Imp
DocType: Notification Settings,Energy Points,Pontos de energia
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},A hora {0} deve estar no formato: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ex: pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: falha ao anexar novo documento recorrente. Para ativar o anexo de documento no e-mail de notificação de repetição automática, ative {1} em Configurações de impressão"
DocType: User,Generate Keys,Gerar Chaves
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Isso removerá permanentemente seus dados.
DocType: DocType,View Settings,Ver Definições
@@ -2694,6 +2724,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Tudo
DocType: Email Queue,Recipient,Destinatário
DocType: Webhook,Webhook Security,Segurança Webhook
+DocType: Event Sync Log,Producer Document Name,Nome do Documento do Produtor
DocType: Communication,Has Attachment,possui anexo
DocType: Address,Sales User,Utilizador de Vendas
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,A ferramenta Arrastar e Soltar para criar e personalizar Formatos de Impressão.
@@ -2729,6 +2760,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Tabelas secundárias são mostradas como uma grade em outros DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Configure email automático
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Para Baixo
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,O site que você deseja assinar para consumir eventos.
DocType: Chat Profile,Message Preview,Pré-visualização da mensagem
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Esta é uma senha comum top-10.
DocType: User,User Defaults,Padrões de Perfil
@@ -2761,6 +2793,7 @@ DocType: Dashboard Chart,Last Synced On,Última sincronização em
DocType: Comment,Comment Type,Tipo de Comentário
DocType: OAuth Client,OAuth Client,Cliente OAuth
DocType: Assignment Rule,Users,Utilizadores
+DocType: Document Type Mapping,Local Document Type,Tipo de Documento Local
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Tipo de Relatório
DocType: DocField,Signature,Assinatura
@@ -2803,6 +2836,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} self designou esta tarefa: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Seu país
DocType: Assignment Rule Day,Sunday,Domingo
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Mantém um log de todas as inserções, atualizações e exclusões no site do Event Producer para documentos que possuem consumidores."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: o nome do campo não pode ser um dos {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Classificações
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Em Grid View
@@ -2950,7 +2984,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar e Comentários
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Quando você Alterar um documento depois de Cancelar e salvá-lo , ele irá obter um novo número que é uma versão do antigo número ."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Não é permitido anexar o documento {0}, por favor, ative a opção Permitir impressão para {0} em Configurações de impressão"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Conta de e-mail não configurada. Crie uma nova conta de email em Configuração> Email> Conta de email
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Veja o documento em {0}
DocType: Stripe Settings,Publishable Key,Chave publicável
DocType: Stripe Settings,Publishable Key,Chave publicável
@@ -3029,7 +3062,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Informações:
DocType: Custom Field,Permission Level,Nível de Permissão
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Não é possível Enviar, Cancelar, Alterar sem Escrever"
DocType: List View Setting,Disable Count,Desativar Contagem
-DocType: Google Maps Settings,Client Key,Chave de cliente
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Tem a certeza de que deseja eliminar o anexo?
apps/frappe/frappe/__init__.py,Thank you,Obrigado
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,A guardar
@@ -3156,6 +3188,7 @@ DocType: Workflow Document State,Only Allow Edit For,Só Permitir Editação Par
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Fazendo backup no Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Campo obrigatório: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Seu nome
+DocType: Event Producer Document Type,Event Producer Document Type,Tipo de documento do produtor de eventos
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Sucesso de conexão
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Um slide integrado do tipo slide continua já existe.
@@ -3226,6 +3259,7 @@ DocType: Address,Postal Code,Código Postal
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Comunicação relink
DocType: Translation,Contributed,Contribuído
apps/frappe/frappe/config/customization.py,Form Customization,Personalização de formulário
+DocType: Event Update Log,Event Update Log,Log de Atualização de Eventos
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Sem sessões activas
DocType: Web Form,Route to Success Link,Rota para o Link de Sucesso
DocType: Onboarding Slide Field,Right,Direita
@@ -3252,7 +3286,7 @@ DocType: Website Settings,Chat Operators,Operadores de bate-papo
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Código PIN
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Por favor, certifique-se de que não existem colunas vazias no ficheiro."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Rastreia marcos no ciclo de vida de um documento se ele passar por vários estágios.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Rastreia marcos no ciclo de vida de um documento se ele passar por vários estágios.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Renomeado arquivos e substituído o código em controladores, por favor, verifique!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Por favor, verifique se o seu perfil tem um endereço de email"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Você tem alterações não salvas neste formulário.
@@ -3279,7 +3313,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Salvar Segredo da API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Não é possível ligar o documento cancelado: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,"Não é possível editar um relatório padrão. Por favor, duplique e crie um novo relatório"
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","É obrigatório colocar a Empresa , pois é o endereço de empresa"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Por exemplo: Se deseja incluir a ID do documento, utilize {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Selecionar colunas de tabela para {0}
DocType: Custom Field,Options Help,Ajuda de Opções
@@ -3287,7 +3320,6 @@ DocType: Footer Item,Group Label,Designação de Grupo
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,O Contatos do Google foi configurado.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 registro será exportado
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Nenhuma conta de email associada ao usuário. Adicione uma conta em Usuário> Caixa de entrada de email.
DocType: DocField,Report Hide,Ocultar Relatório
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},exibição de árvore não está disponível para {0}
DocType: DocType,Restrict To Domain,Restringir ao domínio
@@ -3353,7 +3385,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: o campo {1} do tipo {2} não pode ser obrigatório
DocType: System Settings,In Days,Em dias
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Senhorita
+DocType: Event Producer Document Type,Has Mapping,Possui mapeamento
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,"Por favor, especifique"
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Valor de filtro inválido
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Ajuda artigo
DocType: Page,Page Name,Nome da Página
@@ -3461,7 +3495,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Formato de Impressão
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle Grid View
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Vai para o próximo registro
-DocType: System Settings,Time Format,Formato da hora
+DocType: Country,Time Format,Formato da hora
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,credenciais de gateway de pagamento inválidos
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Este é o arquivo de modelo gerado com apenas as linhas com algum erro. Você deve usar esse arquivo para corrigir e importar.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Definir permissões em Tipos e Funções de documentos
@@ -3798,6 +3832,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Permitir Login usando o nome de usuário
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Ativar Relatório
DocType: DocField,Display Depends On,A Visualização Depende De
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ano (s) atrás
DocType: Social Login Key,API Endpoint,Ponto final da API
DocType: Web Page,Insert Code,Inserir Código
DocType: Data Migration Run,Current Mapping Type,Tipo de mapeamento atual
@@ -3851,6 +3886,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con
apps/frappe/frappe/www/login.html,Or login with,Ou inície sessão com
DocType: Error Snapshot,Locals,Locais
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Comunicado através de {0} em {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Tipos de documento do produtor de eventos
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure a Conta de email padrão em Configuração> Email> Conta de email
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Selecione Agrupar por ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ex: (55 + 434) / 4 ou = Math.sin(Math.PI/2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} é necessário
@@ -3883,9 +3920,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,ID de sincronização do GCalendar
DocType: Prepared Report,Report Start Time,Hora de início do relatório
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportar dados
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Mantém um log de todos os eventos consumidos, juntamente com o status da sincronização e um botão Resync, caso a sincronização falhe."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Selecionar Colunas
DocType: Translation,Source Text,fonte do texto
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"Este é um relatório de fundo. Por favor, defina os filtros apropriados e, em seguida, gere um novo."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Conta de e-mail não configurada. Crie uma nova conta de email em Configuração> Email> Conta de email
apps/frappe/frappe/www/login.py,Missing parameters for login,Parâmetros de início de sessão em falta
DocType: Workflow State,folder-open,abrir-pasta
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Depois de enviados, os documentos enviados não podem ser alterados. Eles só podem ser cancelados e alterados."
@@ -3965,6 +4004,7 @@ DocType: Blog Post,Published On,Publicado Em
DocType: Contact,Gender,Sexo
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Informações obrigatórias em falta:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} reverteu seus pontos em {1}
+DocType: Event Consumer,Event Subscriber,Assinante do Evento
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,URL de solicitação de verificação
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Só são permitidas 200 inserções por uma solicitação
DocType: Footer Item,URL,URL
@@ -3977,6 +4017,7 @@ DocType: Auto Email Report,Half Yearly,Semestrais
DocType: Communication,Marked As Spam,Marcado Como Spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Há algum problema com a url do arquivo: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Organograma
+DocType: Event Producer Document Type,Use Same Name,Usar o mesmo nome
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Você não tem permissão para imprimir este relatório
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Permissões de utilizador
DocType: Workflow State,warning-sign,sinal de alerta-
@@ -3986,6 +4027,7 @@ DocType: Workflow State,User,Utilizador
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Mostrar título na janela do navegador como "Prefixo - título"
DocType: Payment Gateway,Gateway Settings,Configurações do Gateway
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,texto em tipo de documento
+DocType: Event Sync Log,Event Sync Log,Log de Sincronização de Eventos
apps/frappe/frappe/handler.py,Logged Out,Desconectado
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mais...
DocType: System Settings,User can login using Email id or Mobile number,O usuário pode efetuar login usando a ID do e-mail ou o número do celular
@@ -4026,12 +4068,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Not Está Em
DocType: Workflow State,star,estrela
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Plataforma
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Se esta opção estiver marcada, os documentos terão o mesmo nome do site do Produtor de Eventos"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,valores separados por vírgulas
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Largura máx. para o tipo de Moeda é 100px na linha {0}
apps/frappe/frappe/config/website.py,Content web page.,Página web de conteúdo.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Adicionar uma Nova Função
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Visitar página da Web
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nova atribuição
+DocType: Event Consumer Document Type,Approved,Aprovado
DocType: Google Contacts,Last Sync On,Última sincronização em
DocType: Deleted Document,Deleted Document,Documento eliminado
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Uups! Aconteceu algo de errado
@@ -4083,7 +4127,6 @@ DocType: DocField,Unique,Único
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apreciado em {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Sucesso parcial
DocType: Email Account,Service,serviço
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuração> Usuário
DocType: File,File Name,Nome do Ficheiro
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Não encontrou {0} para {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4095,11 +4138,10 @@ DocType: Calendar View,Calendar View,Vista Calendário
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Editar Formato
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Registo Completo
DocType: GCalendar Settings,Enable,permitir
-DocType: Google Maps Settings,Home Address,Endereço Residencial
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Você só pode fazer upload de até 5.000 registros de uma só vez. (Pode ser inferior em alguns casos)
DocType: Report,"output in the form of `data = [columns, result]`","saída na forma de `data = [colunas, resultado]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tipos de documentos aplicáveis
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Configurar regras para atribuições de usuários.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Configurar regras para atribuições de usuários.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permissão insuficiente para {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permissão insuficiente para {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),O relatório não foi guardado (ocorreram erros)
diff --git a/frappe/translations/pt_br.csv b/frappe/translations/pt_br.csv
index c9fd9e4c4a..4b1aaff160 100644
--- a/frappe/translations/pt_br.csv
+++ b/frappe/translations/pt_br.csv
@@ -352,6 +352,7 @@ DocType: Workflow State,share-alt,partes-alt
apps/frappe/frappe/desk/reportview.py,{0} is saved,{0} foi salvo
apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Did not remove,Não removido
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Selecionar Campos Obrigatórios
+DocType: Event Consumer Document Type,Approval Status,Estado da Aprovação
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Suspend Sending,Suspender Envio
DocType: DocType,DocType is a Table / Form in the application.,DocType é uma Tabela / Form na aplicação.
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","""Status"" diferentes em que esse documento pode existir. Como ""Aberto"", ""Aprovação Pendente"", etc"
@@ -996,7 +997,6 @@ DocType: Bulk Update,Max 500 records at a time,Máximo de 500 registros por vez
DocType: About Us Settings,More content for the bottom of the page.,Mais conteúdo na parte de baixo da página.
apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be disabled,O usuário {0} não pode ser desativado
DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Personalizar Etiquetas, Cabeçalhos, Padrões, etc."
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Configuração de email, por favor informe sua senha para:"
DocType: Address,Billing,Faturamento
apps/frappe/frappe/utils/data.py,Cent,Centavo
apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,Usuários do sistema e do site
@@ -1012,8 +1012,6 @@ apps/frappe/frappe/desk/query_report.py,Must specify a Query to run,Deve especif
DocType: DocField,Text,Texto
DocType: Email Domain,Email Domain,Domínio de Email
DocType: Workflow Document State,Only Allow Edit For,Somente permite edição para
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s não é um formato válido de relatório. O formato do relatório deve ser um dos seguintes %s
DocType: Web Page,Text Align,Alinhar Texto
DocType: System Settings,Setup Complete,Instalação Concluída
apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Não é permitido alterar {0} após a apresentação
@@ -1137,7 +1135,6 @@ DocType: Notification,Optional: The alert will be sent if this expression is tru
DocType: Auto Repeat,Repeat on Day,Repetir no dia
DocType: Communication,Communication Type,Tipo de comunicação
DocType: ToDo,High,Alta
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Empresa é obrigatório, como é o seu endereço de empresa"
apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Se você estiver atualizando, por favor selecione ""Substituir"" linhas outra existentes não serão excluídos."
apps/frappe/frappe/config/users_and_permissions.py,Check which Documents are readable by a User,Confira quais os documentos são lidos por um Usuário
apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista(s)
diff --git a/frappe/translations/ro.csv b/frappe/translations/ro.csv
index 8ee9b30c39..1b1e8512e6 100644
--- a/frappe/translations/ro.csv
+++ b/frappe/translations/ro.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Acest rol Permisiunile actualizare pentru utilizator unui utilizator
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Redenumește {0}
DocType: Workflow State,zoom-out,mareste
-DocType: Data Import Beta,Import Options,Opțiuni de import
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Nu se poate deschide {0}, atunci când de exemplu sa este deschis"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabelul {0} nu poate fi gol
DocType: SMS Parameter,Parameter,Parametru
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Anul
DocType: DocType,Is Published Field,Este publicat Câmp
DocType: GCalendar Settings,GCalendar Settings,Setări GCalendar
DocType: Email Group,Email Group,E-mail grup
-apps/frappe/frappe/__init__.py,Only for {},Doar pentru {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar - Nu s-a putut șterge Evenimentul {0} din Google Calendar, codul de eroare {1}."
DocType: Event,Pulled from Google Calendar,Extras din Google Calendar
DocType: Note,Seen By,Văzut de
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Adăugați mai mul
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nu este o imagine validă a utilizatorului.
DocType: Energy Point Log,Reverted,Reluat
DocType: Success Action,First Success Message,Primul mesaj de succes
+DocType: Document Type Mapping,Document Type Mapping,Cartografiere tip document
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nu ca
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Valoare incorectă: {0} trebuie sa fie {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Proprietățile schimbare de câmp (ascunde, readonly, permisiunea etc)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Site-ul care vă consumă evenimentele.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,A aprecia
DocType: Notification Settings,Document Share,Partajarea documentelor
DocType: Workflow State,lock,blocare
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Buturuga
DocType: Workflow State,indent-right,liniuța-dreapta
DocType: Has Role,Has Role,are rol
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resincronizați
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Timp în secunde pentru a păstra imaginea codului QR pe server. Min .: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Tipul de câmp {1} pentru {2} nu poate fi indexat
DocType: Dashboard Chart,Timespan,Interval de timp
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web Link
DocType: Deleted Document,Restored,Restaurat
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Eroare la conectarea la aplicația de tavă QZ ...
Trebuie să aveți aplicația QZ Tray instalată și rulată, pentru a utiliza caracteristica Print Raw.
Faceți clic aici pentru a descărca și instala QZ Tray .
Faceți clic aici pentru a afla mai multe despre tipărirea brută ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,in urma cu 1 minut
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","În afară de System Manager, roluri cu un set permisiunile de user poate seta permisiuni pentru alți utilizatori pentru acest tip de document."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Configurați Tema
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,NEVĂZUT
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Manager de fișiere
DocType: Website Settings,"HTML Header, Robots and Redirects","Antet HTML, roboți și redirecții"
DocType: GCalendar Account,Refresh Token,Actualizează Indicativ
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Eroare la conectarea la site-ul Producător de evenimente. Încercați din nou după ceva timp.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Nu există locuri de muncă în curs sau în curs pentru acest site
DocType: Webhook,Doc Event,Eveniment Doc
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Script Manager
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Fără activitate
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplicații terță parte
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Primul Utilizatorul va deveni System Manager (puteți schimba asta mai târziu).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Puteți încerca să schimbați filtrele raportului.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Nu există evenimente astăzi
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Nu puteți da puncte de recenzie pentru dvs.
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType trebuie să fie transmisibil pentru Evenimentul Doc selectat
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Nu vi se permite trimitea e-mailuri relaționate cu acest document
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Vă rugăm să selectați atleast 1 coloana din {0} pentru a sorta / grup
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nu este permis pentru {0}: {1}. Câmp restricționat: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Companie care nu are legătură
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Verifica acest lucru dacă testați plata utilizând API-ul Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Nu vi se permite să ștergeți o temă Website standard de
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Creați primul dvs. {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Actualiz
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Există deja o diapozitivă de bord {0} cu aceeași ordine de diapozitive
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Dezactivați Raport
DocType: Translation,Contributed Translation Doctype Name,Traducere contribuită Nume Doctype
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurare> Formularizare personalizare
DocType: PayPal Settings,Redirect To,Redirectionare catre
DocType: Data Migration Mapping,Pull,Trage
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Nu permise
DocType: DocShare,Internal record of document shares,Rezultatele intern de acțiuni de documente
DocType: Energy Point Settings,Review Levels,Niveluri de revizuire
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configurare> Permisii utilizator
DocType: Workflow State,Comment,Comentariu
DocType: Data Migration Plan,Postprocess Method,Metoda postproces
DocType: DocType Action,Action Type,Tipul de acțiune
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Afi
DocType: Workflow State,remove-circle,elimina-cerc
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profilul meu
DocType: Help Article,Beginner,Începător
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Această acțiune este permisă doar pentru {}
DocType: Contact,Is Primary Contact,Este primar Contact
+DocType: Event Consumer,Event Consumer,Consumator eveniment
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript pentru a adăuga la secțiunea șef al paginii.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Adăugați / actualizați
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Nu este permis să imprime schiţe de documente
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Resetați la valorile implicite
DocType: Workflow,Transition Rules,Reguli de tranziție
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Se afișează doar primele {0} rânduri în previzualizare
apps/frappe/frappe/core/doctype/report/report.js,Example:,Exemplu:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,restricţii
DocType: Workflow,Defines workflow states and rules for a document.,Definește state flux de lucru și reguli de un document.
@@ -481,7 +487,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Repetați Până la
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Nou
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Mai întâi trebuie să le creați:
-DocType: Google Maps Settings,Google Maps Settings,Setările Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Se încarcă...
DocType: DocField,Password,Parolă
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Sistemul dvs. este în curs de actualizare. Vă rugăm să actualizați din nou după câteva momente
@@ -574,6 +579,7 @@ DocType: Onboarding Slide,Onboarding Slide,Diapozitiv de bord
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Parolă Invalidă:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Parolă Invalidă:
DocType: Print Settings,Send document web view link in email,Link-ul de documente a trimite web vizualizare în e-mail
+DocType: Event Consumer Document Type,Event Consumer Document Type,Tip de document pentru consumatorul evenimentului
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Precedenta
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Necesită certificat de încredere
@@ -649,6 +655,7 @@ DocType: Workflow State,volume-down,volum-jos
DocType: Onboarding Slide,Help Links,Link-uri de ajutor
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accesul nu este permis de la această adresă IP
DocType: Notification Settings,Enable Email Notifications,Activați notificările prin e-mail
+DocType: Document Type Field Mapping,Event Streaming,Transmiterea evenimentelor
apps/frappe/frappe/desk/reportview.py,No Tags,Fără Etichete
DocType: Email Account,Send Notification to,Trimite Notificarea
DocType: DocField,Collapsible,Rabatabil
@@ -665,11 +672,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Nu sunt furnizate condiții
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Terenurile axei Y
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sortare câmp {0} trebuie să fie un numele_campului valid
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nu a fost găsit un șablon de adresă implicit. Vă rugăm să creați unul nou din Setare> Tipărire și Branding> Șablon adresă
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Mai mult
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Creați o înregistrare nouă
DocType: Contact,Sales Manager,Director De Vânzări
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Redenumire
DocType: Print Format,Format Data,Format de date
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} nu este un format de raport valid. Formatul raportului ar trebui să fie unul dintre următoarele {1}
DocType: List Filter,Filter Name,Numele filtru
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Îmi place
DocType: Assignment Rule,Automation,Automatizare
@@ -688,6 +697,7 @@ DocType: User,Reset Password Key,Resetează Cheie Parolă
DocType: Dashboard Chart,All Time,Tot timpul
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Starea documentului ilegal pentru {0}
DocType: Email Account,Enable Auto Reply,Activați Auto Raspunde
+apps/frappe/frappe/desk/query_report.py,No data to export,Nu există date de exportat
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nu a vazut
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Nu poate fi imprimată mai multe imprimante într-un format de imprimare unic.
DocType: Workflow State,zoom-in,micsoreaza
@@ -840,6 +850,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Schimbă u
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Primul
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Actualizați traducerile
DocType: Error Snapshot,Exception,Excepţie
+DocType: Event Consumer,Event Consumer Document Types,Tipuri de documente pentru consumatorii de evenimente
DocType: Email Account,Use IMAP,Utilizarea IMAP
DocType: Activity Log,Activity Log,Jurnal Activitate
DocType: View Log,Viewed By,Vizualizat de
@@ -879,6 +890,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Configurează Diagrame
DocType: User,Last IP,Ultima adresă IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Adăugă un subiect la adresa e-mail-ul tău
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Tranzacții eronate
DocType: Data Migration Connector,Data Migration Connector,Conector Migrație Date
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} inversat {1}
DocType: Email Account,Track Email Status,Urmăriți starea e-mailului
@@ -910,6 +922,7 @@ DocType: Email Queue,Attachments,Ataşamente
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Nu aveți permisiunea de a accesa acest document
DocType: Language,Language Name,Nume limbă
DocType: Email Group Member,Email Group Member,E-mail Membru Grup
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Niciun cont de e-mail asociat cu Utilizatorul. Vă rugăm să adăugați un cont în User> Inbox.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Contul dvs. a fost blocat și va fi reluat după {0} secunde
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Permisiunile utilizatorilor sunt utilizate pentru a limita utilizatorii la înregistrări specifice.
DocType: Notification,Value Changed,Valoarea Schimbat
@@ -1001,6 +1014,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Menționezi tra
DocType: Help Article,Expert,Expert
DocType: Workflow State,circle-arrow-right,cerc-săgeată-dreapta
DocType: Role Profile,Role Profile,Profil Rol
+DocType: Document Type Mapping,Remote Document Type,Tip document de la distanță
apps/frappe/frappe/permissions.py,Document Type is not importable,Tipul de document nu este importabil
DocType: LDAP Settings,LDAP Server Url,Server LDAP Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Nu se poate deschide exemplu, atunci când sa {0} este deschis"
@@ -1086,7 +1100,7 @@ DocType: Web Form,Allow Print,Se permite Print
DocType: Communication,Clicked,Clic pe
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nu mai urmări
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Permisiunea de a '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vă rugăm să configurați contul de e-mail implicit din Configurare> Email> Cont de e-mail
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Se afișează doar primele {0} rânduri din {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Programată pentru a trimite
DocType: DocType,Track Seen,Văzut pe șenile
DocType: Dropbox Settings,File Backup,File Backup
@@ -1157,6 +1171,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ale
DocType: Data Export,Filter List,Filtrați lista
DocType: Data Export,Excel,excela
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Configurații eveniment
DocType: Email Account,Auto Reply Message,Mesaj Răspuns Automat
DocType: Data Migration Mapping,Condition,Condiție
apps/frappe/frappe/utils/data.py,{0} hours ago,Cu {0} ore in urma
@@ -1216,9 +1231,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Utilizați
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Autentifica-te pentru a comenta
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Începeți introducerea datelor de mai jos această linie
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},valori modificate pentru {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ID-ul de e-mail trebuie să fie unic, contul de e-mail există deja \ pentru {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pentru comparație, utilizați> 5, <10 sau = 324. Pentru intervale, utilizați 5:10 (pentru valori cuprinse între 5 și 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Personalizați ...
DocType: Print Format,Align Labels to the Right,Aliniați etichetele la dreapta
DocType: Assignment Rule,Disabled,Dezactivat
@@ -1267,8 +1281,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Comenzile rapide de la tastatură
DocType: Post,Comments,Comentarii
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Confirma
+DocType: Event Sync Log,Update Type,Tip de actualizare
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Autentifică ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Reduceți totul În această
+DocType: Event Producer,Last Update,Ultima actualizare
apps/frappe/frappe/www/login.html,Forgot Password?,Aţi uitat parola?
DocType: System Settings,yyyy-mm-dd,aaaa-ll-zz
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID-ul
@@ -1309,6 +1325,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabel Câm
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Coloane bazate pe
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importarea {0} din {1}, {2}"
DocType: Workflow State,move,Mutare
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Nu a reușit să creeze un consumator de eveniment sau un consumator de evenimente pentru site-ul curent este deja înregistrat.
apps/frappe/frappe/model/document.py,Action Failed,Acţiune Eșuată
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,pentru utilizator
DocType: View Log,View log,Vizualizare jurnal
@@ -1472,6 +1489,7 @@ DocType: DefaultValue,Key,Cheie
DocType: Address,Contacts,Persoane de Contact
DocType: System Settings,Setup Complete,Configurare completă
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Raportul de toate acțiunile de documente
+DocType: Event Consumer,Callback URL,Adresa URL de apel invers
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Modelul de import trebuie să fie de tipul .csv, .xlsx sau .xls"
apps/frappe/frappe/www/update-password.html,New Password,Parola nouă
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtru {0} lipsă
@@ -1539,7 +1557,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suc
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; nu este permis în stare
DocType: Async Task,Async Task,Asincron Sarcina
DocType: Workflow State,picture,poză
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Complet
+DocType: Scheduled Job Log,Complete,Complet
DocType: DocType,Image Field,Imagine Câmp
DocType: Print Format,Custom HTML Help,Personalizat HTML Help
DocType: LDAP Settings,Default Role on Creation,Rolul implicit la creație
@@ -1565,6 +1583,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Ajutor pe Cautare
DocType: Milestone,Milestone Tracker,Urmăritor de urmărire
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Înregistrat dar dezactivat
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adresa trebuie să fie legată de o companie. Vă rugăm să adăugați un rând pentru companie în tabelul Linkuri de mai jos.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Repetarea automată pentru acest document a fost dezactivată.
DocType: DocType,Hide Copy,Ascunde Copy
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Șterge toate rolurile
@@ -1603,6 +1622,7 @@ DocType: Bulk Update,Field,Camp
DocType: Communication,Received,Primit
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Declanșare la metode valide, cum ar fi "before_insert", "after_update", etc (depinde de DocType.Referinta selectate)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},valoarea modificată a {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},Configurarea contului de e-mail vă rugăm să introduceți parola pentru: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Adaug Manager de Sistem acestui utilizator pentru că trebuie să existe cel puțin un Manager de Sistem
DocType: Chat Message,URLs,URL-uri
DocType: Data Migration Run,Total Pages,Total Pagini
@@ -1610,7 +1630,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Atașați imagine
DocType: Workflow State,list-alt,Lista-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Parola Actualizat
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configurare> Permisii utilizator
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Pași pentru a vă verifica datele de conectare
apps/frappe/frappe/utils/password.py,Password not found,Parola nu a fost găsit
DocType: Webhook,Webhook Secret,Secret Webhook
@@ -1626,8 +1645,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Setări API Googl
DocType: Report,Query Report,Raport de interogare
DocType: User,Set New Password,Set New Password
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nu este permis pentru {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s formatul raportului nu este valid. Formatul raportului poate fi unul \unele dintre urmatoarele %s
DocType: Chat Message,Chat,Chat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Nu au fost găsite documente etichetate cu {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Cartografierea grupului LDAP
@@ -1663,7 +1680,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Introduce
DocType: Dropbox Settings,Dropbox Access Secret,Secret pentru Acces Dropbox
DocType: Tag Link,Document Title,Titlul documentului
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatoriu)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} an (i) în urmă
DocType: Social Login Key,Social Login Provider,Furnizor de conectare socială
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Adaugă alt Comentariu
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nu există date în fișier. Reatașați noul fișier cu date.
@@ -1711,6 +1727,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 an
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Șterge definitiv {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Același dosar a fost deja atașat la dosarul
+DocType: Event Sync Log,Synced,sincronizat
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} nu este un flux de lucru valid. Actualizați fluxul de lucru și încercați din nou.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,a dat {0} puncte
DocType: Workflow State,wrench,cheie
@@ -1813,6 +1830,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,I
DocType: Web Form Field,Max Length,Lungime maxima
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,marcator-hartă
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Configurația de mapare între două tipuri.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Prezenta eroare
DocType: Event,Repeat this Event,Repetați acest Eveniment
DocType: Address,Maintenance User,Întreținere utilizator
@@ -1872,6 +1890,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Adresa de e-mail de testare
DocType: Auto Repeat,Reference Document Type,Referință Document Type
DocType: ToDo,Sender,Expeditor
+DocType: Event Consumer,Incoming Change,Schimbare de intrare
DocType: Google Drive,Backup Folder Name,Numele folderului de rezervă
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Eroare la evaluarea Notificării {0}. Corectați-vă șablonul.
DocType: GSuite Settings,Google Apps Script,Scriptul Google Apps
@@ -1934,9 +1953,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nume for
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Faceți clic pe linkul de mai jos pentru a aproba solicitarea
DocType: Workflow State,align-left,aliniați-stânga
DocType: Onboarding Slide,Action Settings,Setări de acțiune
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configurare> Utilizator
DocType: User,Defaults,Implicite
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pentru comparație, utilizați> 5, <10 sau = 324. Pentru intervale, utilizați 5:10 (pentru valori cuprinse între 5 și 10)."
DocType: Energy Point Log,Revert Of,Revenire
+DocType: Document Type Mapping,Field Mapping,Mapare câmp
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Merge cu existente
DocType: User,Birth Date,Dată naștere
DocType: Communication Link,Link Title,Link Title
@@ -1964,6 +1984,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Link de etichete
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Integritatea lanțului
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,În test
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 monedă = [?] Fracțiunea pentru, de exemplu 1 USD = 100 Cenți"
DocType: Data Import,Partially Successful,Parțial reușit
@@ -1973,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Mapări de grupuri LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Chat atașament mesaj
DocType: LDAP Settings,Path to CA Certs File,Calea către fișierul certificatelor CA
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Dacă documentul are nume de câmpuri diferite la finalul producătorului și consumatorului, verificați acest lucru și configurați maparea"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Permiteți citirea tuturor opțiunilor de legătură
DocType: DocType,Database Engine,Motor Bază de Date
@@ -2106,6 +2128,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Notă
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Eroare Raport
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Exportați date în format CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Tip de documentare Mapping Field
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Configurarea documentelor de căutare globală.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplicațiile de autentificare pe care le puteți utiliza sunt:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} există deja. Selectați un alt nume
@@ -2181,7 +2204,6 @@ DocType: Workflow State,Upload,încărcați
DocType: User Permission,Advanced Control,Control avansat
DocType: System Settings,Date Format,Format Dată
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nu Publicat
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nu a fost găsit un șablon de adresă implicit. Vă rugăm să creați unul nou din Setare> Tipărire și Branding> Șablon adresă.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Acțiuni pentru flux de lucru (de exemplu, Aprobaţi, Anulaţi)."
DocType: Data Import,Skip rows with errors,Ștergeți rândurile cu erori
DocType: Workflow State,flag,Semnalizare
@@ -2244,6 +2266,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Reprezintă statele permise într-un document și rol atribuit pentru a schimba starea.
DocType: Data Migration Connector,Database Name,Nume Bază de Date
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Actualizează Forma
+DocType: Event Producer,Event Producer,Producător de evenimente
DocType: DocField,Select,Selectează
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Vizualizare jurnal complet
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Exprimare simplă Python, Exemplu: status == 'Deschis' și tastați == 'Bug'"
@@ -2345,6 +2368,7 @@ DocType: DocType,User Cannot Search,Utilizatorul nu poate căuta
DocType: Communication Link,Communication Link,Link de comunicare
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Format Ieșire nevalid
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Nu poate fi {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,O repetare {0} {1} a fost creată pentru dvs. prin repetare automată {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplicați această regulă în cazul în care utilizatorul este proprietarul
DocType: Global Search Settings,Global Search Settings,Setări globale de căutare
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Va fi ID-ul dvs. de conectare
@@ -2362,12 +2386,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Cod QR pentru
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Adăugați Sarcină de îndeplinit
DocType: Footer Item,Company,Compania
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Media de {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Tranzacții de succes
DocType: Scheduled Job Log,Scheduled,Programat
DocType: User,Logout from all devices while changing Password,Deconectați-vă de la toate dispozitivele în timp ce modificați parola
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifică Parola
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Au fost erori
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Introduceți ID-ul și secretul clientului în Setările Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Închideți
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","ID-ul de e-mail trebuie să fie unic, Contul de e-mail există deja pentru {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Nu se poate schimba docstatus 0-2
DocType: File,Attached To Field,Atașat la câmp
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Actualizare
@@ -2475,6 +2501,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Lună
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Adăugați Reference: {{ reference_doctype }} {{ reference_name }} pentru a trimite documentul de referință
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Sunt enumerați doar utilizatorii implicați în document
DocType: DocField,Fetch From,Fetch From
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurare> Formularizare personalizare
apps/frappe/frappe/modules/utils.py,App not found,Aplicaţia nu a fost găsită
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Nu se poate crea o {0} împotriva unui document de copil: {1}
DocType: Social Login Key,Social Login Key,Tasta de conectare socială
@@ -2486,7 +2513,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat me
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Cămin social
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Introduceți După ce nu poate fi setat ca {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Distribuiți {0} cu
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Configurarea contului de e-mail vă rugăm să introduceți parola pentru:
DocType: Workflow State,hand-up,mână-sus
DocType: Blog Settings,Writers Introduction,Scriitori Introducere
DocType: Address,Phone,Telefon
@@ -2545,7 +2571,7 @@ DocType: Web Page,Insert Style,Introduceți Style
DocType: Prepared Report,Error Message,Mesaj de eroare
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nume raport nou
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ascundeți sfârșitul săptămânii
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Generează automat documente recurente.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Generează automat documente recurente.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Este
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-semn
@@ -2553,7 +2579,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Valoare
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Cum ar trebui să fie formatata aceasta valuta? Dacă este setat, se vor folosi valorile implicite de sistem"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Trimiteți {0} documente?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Trebuie să fii autentificat și să ai System Manager Rolul a putea accesa backup-uri.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Eroare la conectarea la aplicația de tavă QZ ...
Trebuie să aveți aplicația QZ Tray instalată și rulată, pentru a utiliza caracteristica Print Raw.
Faceți clic aici pentru a descărca și instala QZ Tray .
Faceți clic aici pentru a afla mai multe despre tipărirea brută ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Maparea imprimantei
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Vă rugăm să salvați înainte de a atașa.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Doriți să anulați toate documentele legate?
@@ -2583,6 +2608,7 @@ DocType: Role Permission for Page and Report,Set Role For,Set Rol pentru
DocType: GCalendar Account,The name that will appear in Google Calendar,Numele care va apărea în Google Calendar
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Camera directă cu {0} există deja.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Împrospătare ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Vă rugăm să verificați valorile de filtru setate pentru graficul de bord: {}
DocType: Event,Starts on,Începe pe
DocType: System Settings,System Settings,Setări de sistem
DocType: GCalendar Settings,Google API Credentials,Acreditare API Google
@@ -2608,6 +2634,7 @@ DocType: Workflow State,ok-sign,ok-semn
apps/frappe/frappe/config/settings.py,Deleted Documents,Documente șterse
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Formatul CSV este sensibil la minuscule
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon există deja
+DocType: Event Consumer Document Type,Approval Status,Status aprobare
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Specificați în ce domenii ar trebui să apară diapozitivele. Dacă nu este specificat nimic, în mod implicit, diapozitivul este afișat în toate domeniile."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicat
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Câmpul {1} din rândul {2} nu poate fi ascuns și obligatoriu fără implicit
@@ -2627,6 +2654,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Articole de ajutor
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tip:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Plata dvs. a eșuat.
+DocType: Event Producer,Producer URL,Adresa URL a producătorului
DocType: Comment,Unshared,unshared
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modulul Nu a fost găsit
@@ -2638,6 +2666,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Atribuire Finalizata
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Editare în masă {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Descărcați raportul
+apps/frappe/frappe/model/workflow.py,Workflow Status,Starea fluxului de lucru
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Nu este activ
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Numai administrator este permis să creeze surse de diagramă de bord
DocType: About Us Settings,Settings for the About Us Page,Setări pentru Pagina Despre Noi.
@@ -2646,6 +2675,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Imp
DocType: Notification Settings,Energy Points,Puncte de energie
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Ora {0} trebuie să fie în format: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,"de exemplu, pop.gmail.com / imap.gmail.com"
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: nu a reușit să atașeze un nou document recurent. Pentru a activa atașarea documentului în e-mailul de notificare repetare automată, activați {1} în Setări de imprimare"
DocType: User,Generate Keys,Generați chei
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Acest lucru vă va elimina definitiv datele.
DocType: DocType,View Settings,Setări de vizualizare
@@ -2697,6 +2727,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Tot
DocType: Email Queue,Recipient,Destinatar
DocType: Webhook,Webhook Security,Securitate Webhook
+DocType: Event Sync Log,Producer Document Name,Numele documentului producătorului
DocType: Communication,Has Attachment,are Atașament
DocType: Address,Sales User,Vânzări de utilizare
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and drop instrument pentru a construi și personaliza formate de imprimare.
@@ -2732,6 +2763,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Tabelele pentru copii sunt afișate ca o grilă în alte documente DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setare automată E-mail
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Jos
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Site-ul pe care doriți să vă abonați pentru evenimente consumatoare.
DocType: Chat Profile,Message Preview,Previzualizare mesaj
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Aceasta este o parolă comună de top-10.
DocType: User,User Defaults,Prestabilite de utilizator
@@ -2764,6 +2796,7 @@ DocType: Dashboard Chart,Last Synced On,Ultima sincronizare activată
DocType: Comment,Comment Type,Comentariu Tip
DocType: OAuth Client,OAuth Client,Client OAuth
DocType: Assignment Rule,Users,Utilizatori
+DocType: Document Type Mapping,Local Document Type,Tip document local
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Tip Raport
DocType: DocField,Signature,Semnătura
@@ -2806,6 +2839,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} auto-desemnat această sarcină: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Tara ta
DocType: Assignment Rule Day,Sunday,Duminică
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Menține un jurnal al tuturor inserțiilor, actualizărilor și ștergerilor pe site-ul Producător de evenimente pentru documentele care au consumatori."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Numele de câmp nu poate fi unul dintre {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Clasamente
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,În Grid View
@@ -2953,7 +2987,6 @@ DocType: Web Page,Sidebar and Comments,Bara laterală și Comentarii
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Atunci când modifică un document după anula și salvați-l, acesta va primi un număr nou, care este o versiune a numărului vechi."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Nu este permisă atașarea documentului {0}, vă rugăm să activați Permiteți tipărirea pentru {0} în Setări de imprimare"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Contul de e-mail nu este configurat. Vă rugăm să creați un nou cont de e-mail din Configurare> Email> Cont de e-mail
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Vedeți documentul la {0}
DocType: Stripe Settings,Publishable Key,Cheia publicabilă
DocType: Stripe Settings,Publishable Key,Cheia publicabilă
@@ -3032,7 +3065,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Nivelul de permisiune
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nu se poate configura Transmiteți, Anulați, Modificați fără sa Scrieți"
DocType: List View Setting,Disable Count,Dezactivați numărul
-DocType: Google Maps Settings,Client Key,Cheia clientului
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Sunteţi sigur că doriți ștergerea atașamentului ?
apps/frappe/frappe/__init__.py,Thank you,Mulțumesc
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Se salveaza...
@@ -3159,6 +3191,7 @@ DocType: Workflow Document State,Only Allow Edit For,Permiteți numai Editare pe
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Copie de rezervă la Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Câmp obligatoriu: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Numele dumneavoastră
+DocType: Event Producer Document Type,Event Producer Document Type,Tip de document producător de evenimente
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Succesul conexiunii
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Există deja o prezentare la bord de tip diapozitiv.
@@ -3230,6 +3263,7 @@ DocType: Address,Postal Code,Cod poștal
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Comunicare Reconectare
DocType: Translation,Contributed,Contribuit
apps/frappe/frappe/config/customization.py,Form Customization,Personalizare formular
+DocType: Event Update Log,Event Update Log,Jurnalul de actualizare a evenimentelor
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nu există sesiuni active
DocType: Web Form,Route to Success Link,Traseul spre succes
DocType: Onboarding Slide Field,Right,Dreapta
@@ -3256,7 +3290,7 @@ DocType: Website Settings,Chat Operators,Operatori de chat
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Parola așa
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Vă rugăm să asigurați-vă că nu există coloane goale în fișierul.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Urmărește repere pe ciclul de viață al unui document dacă acesta trece prin mai multe etape.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Urmărește repere pe ciclul de viață al unui document dacă acesta trece prin mai multe etape.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Redenumirea fișierelor și codul înlocuit în controlere, vă rugăm să verificați!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Asigurați-vă că profilul dvs. are o adresa de email
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Aveți modificări nesalvate din acest formular. Vă rugăm să salvați înainte de a continua.
@@ -3283,7 +3317,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Salvați secretul API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Nu se poate lega Document anulat: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Nu puteți edita un raport standard. Vă rugăm să duplicați și să creeați un nou raport
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Firma este obligatorie, deoarece este adresa companiei"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","De exemplu: Dacă doriți să includă ID-ul documentului, utilizați {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Selectați Coloane de masă pentru {0}
DocType: Custom Field,Options Help,Opțiuni Ajutor
@@ -3291,7 +3324,6 @@ DocType: Footer Item,Group Label,Etichetă de grup
DocType: Kanban Board,Kanban Board,Consiliul de Kanban
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacts a fost configurat.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 înregistrare va fi exportată
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Niciun cont de e-mail asociat cu Utilizatorul. Vă rugăm să adăugați un cont în User> Inbox.
DocType: DocField,Report Hide,Ascunde raportul
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},arborescentă nu este disponibilă pentru {0}
DocType: DocType,Restrict To Domain,Limitează la Domeniu
@@ -3357,7 +3389,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Câmpul {1} de tip {2} nu poate fi obligatoriu
DocType: System Settings,In Days,În Zile
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,domnișoară
+DocType: Event Producer Document Type,Has Mapping,Are mapare
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Vă rugăm să specificați
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Valoare filtru nevalidă
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,articol de ajutor
DocType: Page,Page Name,Nume Pagină
@@ -3465,7 +3499,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Print Format
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Comutați afișarea în grila
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Accesați înregistrarea următoare
-DocType: System Settings,Time Format,Format de timp
+DocType: Country,Time Format,Format de timp
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,acreditările gateway de plată nevalide
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Acesta este fișierul șablon generat numai cu rânduri care au o eroare. Ar trebui să utilizați acest fișier pentru corecție și import.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Setează Permisiuni pe Tipuri de Documente și Roluri
@@ -3802,6 +3836,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Permiteți conectarea utilizând numele de utilizator
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Activați Raport
DocType: DocField,Display Depends On,Depinde de afișare
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} an (i) în urmă
DocType: Social Login Key,API Endpoint,API Endpoint
DocType: Web Page,Insert Code,Introduceți codul
DocType: Data Migration Run,Current Mapping Type,Tipul actual de cartografiere
@@ -3855,6 +3890,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Con
apps/frappe/frappe/www/login.html,Or login with,Sau Login cu
DocType: Error Snapshot,Locals,Localnicii
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Comunicate prin intermediul {0} pe {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Tipuri de documente pentru producătorul de evenimente
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vă rugăm să configurați contul de e-mail implicit din Configurare> Email> Cont de e-mail
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Selectați grupul după ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ex (55 + 434) / 4 sau = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} este necesar
@@ -3887,9 +3924,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Raportați Oră de Începere
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Export de date
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Menține un jurnal al fiecărui eveniment consumat împreună cu starea sincronizării și un buton Resync în cazul în care sincronizarea eșuează.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Selectați coloane
DocType: Translation,Source Text,Text sursă
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Acesta este un raport de fond. Vă rugăm să setați filtrele corespunzătoare și apoi să generați unul nou.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Contul de e-mail nu este configurat. Vă rugăm să creați un nou cont de e-mail din Configurare> Email> Cont de e-mail
apps/frappe/frappe/www/login.py,Missing parameters for login,Parametrii lipsă de autentificare
DocType: Workflow State,folder-open,-folder deschis
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Odată depuse, documentele expediate nu pot fi modificate. Acestea pot fi anulate și modificate."
@@ -3969,6 +4008,7 @@ DocType: Blog Post,Published On,Publicat în data de
DocType: Contact,Gender,Sex
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Informații obligatorii lipsesc:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} a revenit punctele tale în {1}
+DocType: Event Consumer,Event Subscriber,Abonat eveniment
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Verificați adresa URL de solicitare
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Doar 200 inserții permise într-o singură cerere
DocType: Footer Item,URL,URL-ul
@@ -3981,6 +4021,7 @@ DocType: Auto Email Report,Half Yearly,Semestrial
DocType: Communication,Marked As Spam,Marcate ca spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Există unele probleme cu URL-ul fișierului: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Copac
+DocType: Event Producer Document Type,Use Same Name,Utilizați același nume
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Nu aveți permisiunea de a imprima acest raport
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Permisiunile utilizatorului
DocType: Workflow State,warning-sign,semn de avertizare
@@ -3990,6 +4031,7 @@ DocType: Workflow State,User,Utilizator
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Arată titlu în fereastra browser-ului ca "Prefix - titlu"
DocType: Payment Gateway,Gateway Settings,Setările gateway-ului
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text de tip de document
+DocType: Event Sync Log,Event Sync Log,Jurnalul de sincronizare a evenimentelor
apps/frappe/frappe/handler.py,Logged Out,Delogat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mai Mult...
DocType: System Settings,User can login using Email id or Mobile number,Utilizatorul se poate conecta utilizând ID-ul de e-mail sau numărul de telefon mobil
@@ -4030,12 +4072,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nu în
DocType: Workflow State,star,stea
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Butuc
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Dacă se verifică acest lucru, documentele vor avea același nume ca și pe site-ul producătorului de evenimente"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,valori separate prin virgule
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Lățimea maximă pentru tipul de valuta este de 100px la rând {0}
apps/frappe/frappe/config/website.py,Content web page.,Pagina web de conținut.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Adăugaţi un nou rol
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Accesați pagina web
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nou atribuire
+DocType: Event Consumer Document Type,Approved,Aprobat
DocType: Google Contacts,Last Sync On,Ultima sincronizare activată
DocType: Deleted Document,Deleted Document,Documentul a fost șters
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hopa! Ceva a mers prost
@@ -4088,7 +4132,6 @@ DocType: DocField,Unique,Unic
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} apreciat la {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Succesul parțial
DocType: Email Account,Service,Servicii
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configurare> Utilizator
DocType: File,File Name,Nume fişier
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nu am gasit {0} pentru {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Rez .: {0}
@@ -4100,11 +4143,10 @@ DocType: Calendar View,Calendar View,Vezi Calendar
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Editare format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Finalizează Înregistrare
DocType: GCalendar Settings,Enable,Activare
-DocType: Google Maps Settings,Home Address,Adresa de acasa
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Puteți încărca doar pana la 5000 de înregistrări într-o singură. (Poate fi mai puțin în unele cazuri)
DocType: Report,"output in the form of `data = [columns, result]`","ieșire sub forma „date = [coloane, rezultat]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tipuri de documente aplicabile
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Setați reguli pentru atribuirile utilizatorilor.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Setați reguli pentru atribuirile utilizatorilor.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permisă insuficientă pentru {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permisă insuficientă pentru {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Raport nu a fost salvat (au existat erori)
diff --git a/frappe/translations/ru.csv b/frappe/translations/ru.csv
index 7f6c2ac6dc..735407a159 100644
--- a/frappe/translations/ru.csv
+++ b/frappe/translations/ru.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Эта роль Разрешения обновление пользователя пользователь
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Переименовать {0}
DocType: Workflow State,zoom-out,отдалить
-DocType: Data Import Beta,Import Options,Параметры импорта
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Не могу открыть {0}, когда его экземпляр открыт"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Таблица {0} не может быть пустым
DocType: SMS Parameter,Parameter,Параметр
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,От
DocType: DocType,Is Published Field,Есть Опубликовано поле
DocType: GCalendar Settings,GCalendar Settings,Настройки GCalendar
DocType: Email Group,Email Group,Группа электронной почты
-apps/frappe/frappe/__init__.py,Only for {},Только для {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Календарь Google - не удалось удалить событие {0} из календаря Google, код ошибки {1}."
DocType: Event,Pulled from Google Calendar,Вытащил из Календаря Google
DocType: Note,Seen By,Виденный
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Добавить
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Недействительный образ пользователя.
DocType: Energy Point Log,Reverted,Отменено
DocType: Success Action,First Success Message,Первое сообщение о успехе
+DocType: Document Type Mapping,Document Type Mapping,Отображение типа документа
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Не как
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Неверное значение: {0} должно быть {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Изменение свойств поля (скрыть, только для чтения, доступ и т.д.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,"Сайт, который потребляет ваши события."
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,понимать
DocType: Notification Settings,Document Share,Поделиться документом
DocType: Workflow State,lock,запирать
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Запись в журнале
DocType: Workflow State,indent-right,отступ правом
DocType: Has Role,Has Role,Имеет роль
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Синхронизировать
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,"Время в секундах, чтобы сохранить изображение QR-кода на сервере. Мин.: 240"
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: тип поля {1} для {2} не может быть проиндексирован
DocType: Dashboard Chart,Timespan,Промежуток времени
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Ссылка
DocType: Deleted Document,Restored,Восстановлена
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Ошибка подключения к приложению QZ Tray ...
Вам необходимо установить и запустить приложение QZ Tray, чтобы использовать функцию Raw Print.
Нажмите здесь, чтобы загрузить и установить QZ Tray .
Нажмите здесь, чтобы узнать больше о Raw Printing ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 минуту назад
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Помимо менеджера системы, роли с правами Установки прав пользователя, могут установить разрешения для других пользователей для этого типа документов."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Настроить тему
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,UNSEEN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Файловый менеджер
DocType: Website Settings,"HTML Header, Robots and Redirects","Заголовок HTML, роботы и перенаправления"
DocType: GCalendar Account,Refresh Token,токен обновления
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Не удалось подключиться к сайту источника событий. Повторите попытку через некоторое время.
DocType: Address,Goa,Гоа
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Нет ожидающих или текущих работ для этого сайта
DocType: Webhook,Doc Event,Событие Doc
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Диспетчер скриптов
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Нет активности
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Приложения сторонних разработчиков
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Первый пользователь станет менеджером системы (можно изменить это позже).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Вы можете попробовать изменить фильтры вашего отчета.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Сегодня нет событий
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Вы не можете давать оценки себе
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType должен быть подчинен для выбранного события Doc
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,"Вы не можете отправлять письма, связанные с этим документом"
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,"Пожалуйста, выберите по крайней мере 1 столбец {0} для сортировки / групп"
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Не допускается для {0}: {1}. Запрещенное поле: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Компания не связана
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Включите, если Вы проверяете платёж с помощью API-песочницы"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Вы не можете удалить стандартную тему сайта
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Создайте свой первый {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Обно
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Входящий слайд {0} с таким же порядком слайдов уже существует
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Отключить отчет
DocType: Translation,Contributed Translation Doctype Name,Предоставленный перевод Doctype Name
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Настройка формы
DocType: PayPal Settings,Redirect To,Перенаправить
DocType: Data Migration Mapping,Pull,Тянуть
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Формат JavaScript: frappe.query_reports ['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Не разрешено
DocType: DocShare,Internal record of document shares,Внутренняя запись акций документов
DocType: Energy Point Settings,Review Levels,Уровни обзора
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Полномочия пользователя
DocType: Workflow State,Comment,Комментарий
DocType: Data Migration Plan,Postprocess Method,Метод постпроцесса
DocType: DocType Action,Action Type,Тип действия
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,П
DocType: Workflow State,remove-circle,удалить круга
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Мой профайл
DocType: Help Article,Beginner,начинающий
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Это действие разрешено только для {}
DocType: Contact,Is Primary Contact,Является Основной контакт
+DocType: Event Consumer,Event Consumer,Потребитель событий
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript для добавления к головной части страницы.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Добавить / обновить
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Не разрешено печатать черновые документы
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Восстановить значения по умолчанию
DocType: Workflow,Transition Rules,Переходные правила
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Отображение только первых {0} строк в предварительном просмотре
apps/frappe/frappe/core/doctype/report/report.js,Example:,Пример:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ограничения
DocType: Workflow,Defines workflow states and rules for a document.,Определяет статусы бизнес-процесса и правила их перехода для документа.
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Повторите До
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Новый
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Вам нужно сначала создать это:
-DocType: Google Maps Settings,Google Maps Settings,Настройки Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Загрузка...
DocType: DocField,Password,Пароль
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,"Ваша система обновляется. Пожалуйста, обновите ещё раз через некоторое время"
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,Бортовой слайд
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Неверный пароль:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Неверный пароль:
DocType: Print Settings,Send document web view link in email,Отправить ссылку на веб-просмотр документа по электронной почте
+DocType: Event Consumer Document Type,Event Consumer Document Type,Тип документа потребителя события
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Предыдущая
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,На:
DocType: LDAP Settings,Require Trusted Certificate,Требуется доверенный сертификат
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,Объем вниз
DocType: Onboarding Slide,Help Links,Справочные ссылки
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Доступ с этого IP-адреса запрещен
DocType: Notification Settings,Enable Email Notifications,Включить уведомления по электронной почте
+DocType: Document Type Field Mapping,Event Streaming,Потоковое событие
apps/frappe/frappe/desk/reportview.py,No Tags,Нет меток
DocType: Email Account,Send Notification to,Отправить уведомление
DocType: DocField,Collapsible,Складной
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Со
apps/frappe/frappe/database/database.py,No conditions provided,Условия не предоставлены
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Поля оси Y
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Сортировка поля {0} должен быть действительным имя_поля
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Шаблон адреса по умолчанию не найден. Создайте новый, выбрав «Настройка»> «Печать и брендинг»> «Шаблон адреса»."
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Далее
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Создать новую запись
DocType: Contact,Sales Manager,Менеджер продаж
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Переименовать
DocType: Print Format,Format Data,Формат данных
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} не является допустимым форматом отчета. Формат отчета должен быть одним из следующих {1}
DocType: List Filter,Filter Name,Имя фильтра
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Мне нравится
DocType: Assignment Rule,Automation,автоматизация
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,Сброс пароля ключ
DocType: Dashboard Chart,All Time,Все время
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Недопустимый статус документа для {0}
DocType: Email Account,Enable Auto Reply,Включить автоматический ответ
+apps/frappe/frappe/desk/query_report.py,No data to export,Нет данных для экспорта
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Не Видел
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,"Невозможно иметь несколько принтеров, сопоставленных с одним форматом печати."
DocType: Workflow State,zoom-in,приблизить
@@ -840,6 +850,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Смени
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Первый
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Обновление переводов
DocType: Error Snapshot,Exception,Исключение
+DocType: Event Consumer,Event Consumer Document Types,Типы документов потребителя событий
DocType: Email Account,Use IMAP,Использование IMAP
DocType: Activity Log,Activity Log,Журнал активности
DocType: View Log,Viewed By,просмотрены
@@ -879,6 +890,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,У
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Настроить графики
DocType: User,Last IP,Последний IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Пожалуйста, укажите тему вашего письма"
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Ошибочные транзакции
DocType: Data Migration Connector,Data Migration Connector,Разделитель данных
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} вернул {1}
DocType: Email Account,Track Email Status,Статус отслеживания электронной почты
@@ -910,6 +922,7 @@ DocType: Email Queue,Attachments,Приложения
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,У Вас нет разрешения на доступ к этому документу
DocType: Language,Language Name,Название языка
DocType: Email Group Member,Email Group Member,Электронная почта участника группы
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Нет учетной записи электронной почты, связанной с пользователем. Пожалуйста, добавьте учетную запись под User> Email Inbox."
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Ваша учетная запись заблокирована и возобновится после {0} секунд
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Пользовательские разрешения используются для ограничения пользователей конкретными записями.
DocType: Notification,Value Changed,Значение Изменен
@@ -1002,6 +1015,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,URL-ссылк
DocType: Help Article,Expert,эксперт
DocType: Workflow State,circle-arrow-right,Круг со стрелкой направо
DocType: Role Profile,Role Profile,Профиль ролей
+DocType: Document Type Mapping,Remote Document Type,Тип удаленного документа
apps/frappe/frappe/permissions.py,Document Type is not importable,Тип документа не импортируется
DocType: LDAP Settings,LDAP Server Url,URL cервера LDAP
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Не могу открыть экземпляр, когда его {0} открыто"
@@ -1086,7 +1100,7 @@ DocType: Web Form,Allow Print,Разрешить печать
DocType: Communication,Clicked,Нажал
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Отписаться
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Нет доступа для '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Пожалуйста, настройте учетную запись электронной почты по умолчанию из меню «Настройка»> «Электронная почта»>"
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Показаны только первые {0} строк из {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Планируется отправить
DocType: DocType,Track Seen,Трек посещение
DocType: Dropbox Settings,File Backup,Архивирование файлов
@@ -1157,6 +1171,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,в
DocType: Data Export,Filter List,Список фильтров
DocType: Data Export,Excel,превосходить
DocType: System Settings,HH:mm,HH: мм
+DocType: Event Sync Log,Event Configurations,Конфигурации событий
DocType: Email Account,Auto Reply Message,Автоматический ответ
DocType: Data Migration Mapping,Condition,Условия
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} часов назад
@@ -1216,9 +1231,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Всегда
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Вход на комментарий
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Начните вводить данные ниже этой линии
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},измененные значения для {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Идентификатор электронной почты должен быть уникальным, учетная запись электронной почты уже существует для {0}"
DocType: Workflow State,retweet,ретвит
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для сравнения используйте> 5, <10 или = 324. Для диапазонов используйте 5:10 (для значений от 5 до 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Настройка ...
DocType: Print Format,Align Labels to the Right,Выровнять метки справа
DocType: Assignment Rule,Disabled,Отключено
@@ -1267,8 +1281,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Горячие клавиши
DocType: Post,Comments,Комментарии
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Подтвердить
+DocType: Event Sync Log,Update Type,Тип обновления
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Проверка подлинности ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Свернуть все
+DocType: Event Producer,Last Update,Последнее обновление
apps/frappe/frappe/www/login.html,Forgot Password?,Забыли пароль?
DocType: System Settings,yyyy-mm-dd,гггг-мм-дд
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1309,6 +1325,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Табли
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Колонки на основе…
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Импорт {0} из {1}, {2}"
DocType: Workflow State,move,перемещение
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,"Не удалось создать получателя событий или получателя событий для текущего сайта, который уже зарегистрирован."
apps/frappe/frappe/model/document.py,Action Failed,Ошибка действия
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Для пользователей
DocType: View Log,View log,Посмотреть журнал
@@ -1472,6 +1489,7 @@ DocType: DefaultValue,Key,Ключ
DocType: Address,Contacts,Контакты
DocType: System Settings,Setup Complete,Завершение установки
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Сообщить всех акций документов
+DocType: Event Consumer,Callback URL,URL обратного вызова
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Шаблон импорта должен иметь тип .csv, .xlsx или .xls"
apps/frappe/frappe/www/update-password.html,New Password,Новый пароль
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Фильтр {0} отсутствует
@@ -1538,7 +1556,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,У
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Не допускается в состоянии
DocType: Async Task,Async Task,Не связанная задача
DocType: Workflow State,picture,картинка
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Полный
+DocType: Scheduled Job Log,Complete,Полный
DocType: DocType,Image Field,Поле изображения
DocType: Print Format,Custom HTML Help,Особый HTML Помощь
DocType: LDAP Settings,Default Role on Creation,Роль по умолчанию при создании
@@ -1564,6 +1582,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Помощь в Поиске
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Зарегистрированный но отключен
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,"Адрес должен быть связан с компанией. Пожалуйста, добавьте строку для компании в таблице ссылок ниже."
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Автоповтор для этого документа был отключен.
DocType: DocType,Hide Copy,Скрыть копирование
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Очистите все роли
@@ -1602,6 +1621,7 @@ DocType: Bulk Update,Field,поле
DocType: Communication,Received,Получено
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Запуск по уважительным методы, такие как "before_insert", "after_update", и т.д. (будет зависеть от выбранного DocType)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},измененное значение {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Настройка учетной записи электронной почты, введите ваш пароль для: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Добавление этого пользователя в менеджеры системы, так как должен быть хотя бы один системный менеджер"
DocType: Chat Message,URLs,URL-адрес
DocType: Data Migration Run,Total Pages,Всего страниц
@@ -1609,7 +1629,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Прикрепить изображение
DocType: Workflow State,list-alt,Список-альт
apps/frappe/frappe/www/update-password.html,Password Updated,Пароль обновлён
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Полномочия пользователя
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Шаги по проверке вашего логина
apps/frappe/frappe/utils/password.py,Password not found,Пароль не найден
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1625,8 +1644,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Настройк
DocType: Report,Query Report,Отчёт-выборка
DocType: User,Set New Password,Установить новый пароль
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Не разрешено для {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s не является допустимым форматом отчета. Формат отчета должен быть одним из следующих %s
DocType: Chat Message,Chat,Чат
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Документы с тегом {0} не найдены
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP Group Mapping
@@ -1662,7 +1679,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Введ
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Секретный ключ
DocType: Tag Link,Document Title,Заголовок документа
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Обязательное)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} год (лет) назад
DocType: Social Login Key,Social Login Provider,Социальный провайдер
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Добавить еще один комментарий
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,В файле нет данных. Перезагрузите новый файл данными.
@@ -1710,6 +1726,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Выб
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 год
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Навсегда удалить {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,То же файл уже прилагаются к протоколу
+DocType: Event Sync Log,Synced,синхронизированные
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} не является допустимым состоянием рабочего процесса. Обновите свой рабочий процесс и повторите попытку.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,дал {0} баллов
DocType: Workflow State,wrench,гаечный ключ
@@ -1812,6 +1829,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,Максимальная длина
DocType: Print Format,Jinja,дзиндзя
DocType: Workflow State,map-marker,Карта-маркер
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Конфигурация отображения между двумя типами документов.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Отправить вопрос
DocType: Event,Repeat this Event,Повторите этот событие
DocType: Address,Maintenance User,Сотрудник обслуживания
@@ -1871,6 +1889,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Проверить адрес электронной почты
DocType: Auto Repeat,Reference Document Type,Ссылка Тип документа
DocType: ToDo,Sender,Отправитель
+DocType: Event Consumer,Incoming Change,Входящие изменения
DocType: Google Drive,Backup Folder Name,Имя папки резервного копирования
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Ошибка при оценке уведомления {0}. Исправьте шаблон.
DocType: GSuite Settings,Google Apps Script,Скрипт Google Apps
@@ -1933,9 +1952,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Назв
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Нажмите на ссылку ниже, чтобы подтвердить запрос"
DocType: Workflow State,align-left,выровнять левый
DocType: Onboarding Slide,Action Settings,Настройки действий
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Пользователь
DocType: User,Defaults,Значения по Умолчанию
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для сравнения используйте> 5, <10 или = 324. Для диапазонов используйте 5:10 (для значений от 5 до 10)."
DocType: Energy Point Log,Revert Of,Возврат Из
+DocType: Document Type Mapping,Field Mapping,Полевое картографирование
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Слияние с существующими
DocType: User,Birth Date,Дата рождения
DocType: Communication Link,Link Title,Линк Титл
@@ -1963,6 +1983,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Ссылка на тег
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Целостность цепей
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,В тесте
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 Валюта = [?] Фракция
, например, 1 USD = 100 центов"
@@ -1973,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Отображения группы LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Сообщество
DocType: LDAP Settings,Path to CA Certs File,Путь к CA Certs File
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Если документ имеет разные имена полей на стороне источника и получателя, проверьте это и настройте отображение"
DocType: Address,Manipur,Манипур
DocType: Web Form Field,Allow Read On All Link Options,Разрешить чтение всех ссылок
DocType: DocType,Database Engine,Движок базы данных
@@ -2107,6 +2129,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Заметки
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Сообщение об ошибке
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Экспорт данных в формате CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Отображение поля типа документа
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Настройка документов глобального поиска.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Приложения аутентификации, которые вы можете использовать:"
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} уже существует. Выберите другое имя
@@ -2182,7 +2205,6 @@ DocType: Workflow State,Upload,загружать
DocType: User Permission,Advanced Control,Расширенный контроль
DocType: System Settings,Date Format,Формат даты
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Не опубликовано
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Шаблон адреса по умолчанию не найден. Создайте новый, выбрав «Настройка»> «Печать и брендинг»> «Шаблон адреса»"
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Действия для потока (например: утвердить, отменить)."
DocType: Data Import,Skip rows with errors,Пропустить строки с ошибками
DocType: Workflow State,flag,помечать
@@ -2245,6 +2267,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Показывает статусы документа, и роли с правами для их изменения."
DocType: Data Migration Connector,Database Name,Имя базы данных
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Обновить Форма
+DocType: Event Producer,Event Producer,Продюсер событий
DocType: DocField,Select,Выбрать
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Посмотреть полный журнал
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Простое выражение Python, пример: status == 'Open' и тип == 'Bug'"
@@ -2346,6 +2369,7 @@ DocType: DocType,User Cannot Search,Пользователь не может и
DocType: Communication Link,Communication Link,Связь Связь
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Неверный формат выходного
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Невозможно {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Повторяющиеся {0} {1} были созданы для вас с помощью автоматического повторения {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Применить это правило, если Пользователь Владелец"
DocType: Global Search Settings,Global Search Settings,Настройки глобального поиска
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Будет ли ваш идентификатор входа в систему
@@ -2363,12 +2387,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-код дл
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Добавить в список дел
DocType: Footer Item,Company,Организация
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Среднее из {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Успешные транзакции
DocType: Scheduled Job Log,Scheduled,Запланированно
DocType: User,Logout from all devices while changing Password,Выход из всех устройств при смене пароля
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Подтвердите Пароль
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Были ошибки
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Введите идентификатор клиента и секрет клиента в настройках Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Закрыть
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","Идентификатор электронной почты должен быть уникальным, учетная запись электронной почты уже существует для {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Нельзя изменить статус документа с 0 на 2
DocType: File,Attached To Field,Прикрепленный к полю
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Обновить
@@ -2476,6 +2502,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Mесяц
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Добавить Reference: {{ reference_doctype }} {{ reference_name }} отправить справочный документ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Только пользователи, вовлеченные в документ, перечислены"
DocType: DocField,Fetch From,Извлечь из
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Настройка формы
apps/frappe/frappe/modules/utils.py,App not found,Приложение не найдено
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Невозможно создать {0} против дочернего документа: {1}
DocType: Social Login Key,Social Login Key,Ключ социального входа
@@ -2487,7 +2514,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Чат
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Социальный Дом
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Вставка После не может быть установлен как {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Поделиться {0}
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Настройка учетной записи электронной почты, введите ваш пароль для:"
DocType: Workflow State,hand-up,грабитель
DocType: Blog Settings,Writers Introduction,Писатели Введение
DocType: Address,Phone,Телефон
@@ -2546,7 +2572,7 @@ DocType: Web Page,Insert Style,Вставьте стиль
DocType: Prepared Report,Error Message,Сообщение об ошибке
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Новое название отчёта
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Скрыть выходные
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Автоматически генерирует повторяющиеся документы.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Автоматически генерирует повторяющиеся документы.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Является
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,Информация-знак
@@ -2554,7 +2580,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Зна
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Как следует отображать числа в этой валюте? Если не указано, то будут использоваться системные значения"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Отправить {0} документы?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Вы должны войти в систему (и иметь роль менеджера системы), чтобы иметь доступ к резервным копиям."
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Ошибка подключения к приложению QZ Tray ...
Вам необходимо установить и запустить приложение QZ Tray, чтобы использовать функцию Raw Print.
Нажмите здесь, чтобы загрузить и установить QZ Tray .
Нажмите здесь, чтобы узнать больше о Raw Printing ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Отображение принтера
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Пожалуйста, сохраните перед установкой."
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Вы хотите отменить все связанные документы?
@@ -2584,6 +2609,7 @@ DocType: Role Permission for Page and Report,Set Role For,Установить
DocType: GCalendar Account,The name that will appear in Google Calendar,"Имя, которое появится в Календаре Google"
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Прямая комната с {0} уже существует.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Обновление...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},"Проверьте значения фильтра, установленные для Диаграммы панели инструментов: {}"
DocType: Event,Starts on,Начало
DocType: System Settings,System Settings,Настройки системы
DocType: GCalendar Settings,Google API Credentials,Учетные данные API Google
@@ -2609,6 +2635,7 @@ DocType: Workflow State,ok-sign,в порядке-знак
apps/frappe/frappe/config/settings.py,Deleted Documents,Удаленные документы
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Формат CSV чувствителен к регистру
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Значок рабочего стола уже существует
+DocType: Event Consumer Document Type,Approval Status,Статус утверждения
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Укажите, в каких доменах должны отображаться слайды. Если ничего не указано, по умолчанию показывается слайд во всех доменах."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Дублировать
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: поле {1} в строке {2} не может быть скрыто и является обязательным без значения по умолчанию
@@ -2628,6 +2655,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Статьи помощи
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Тип:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Ваш платёж не удался.
+DocType: Event Producer,Producer URL,URL производителя
DocType: Comment,Unshared,неразделенный
DocType: Address,Karnataka,Карнатака
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Модуль не найден
@@ -2639,6 +2667,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Задание выполнено
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Массовая Правка {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Скачать отчет
+apps/frappe/frappe/model/workflow.py,Workflow Status,Состояние рабочего процесса
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Не действует
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Только администратор может создавать источники диаграмм панели мониторинга.
DocType: About Us Settings,Settings for the About Us Page,Установки для О нас Страница
@@ -2648,6 +2677,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,П
DocType: Notification Settings,Energy Points,Энергетические точки
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Время {0} должно быть в формате: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,например pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: не удалось прикрепить новый повторяющийся документ. Чтобы включить вложение документа в электронное письмо с уведомлением о повторном включении, включите {1} в настройках печати."
DocType: User,Generate Keys,Создать ключи
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Это навсегда удалит ваши данные.
DocType: DocType,View Settings,Просмотр параметров
@@ -2699,6 +2729,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Все
DocType: Email Queue,Recipient,Сторона-реципиент
DocType: Webhook,Webhook Security,Безопасность Webhook
+DocType: Event Sync Log,Producer Document Name,Название документа производителя
DocType: Communication,Has Attachment,Имеет Вложения
DocType: Address,Sales User,Продавец
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Перетащите и инструмент Интерактивная построить и настроить форматы печати.
@@ -2734,6 +2765,7 @@ DocType: Address,Arunachal Pradesh,Аруначал-Прадеш
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Дочерние таблицы отображаются в виде таблицы в других типах документов
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Настройка автоматической электронной почты
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Вниз
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Сайт, на который вы хотите подписаться на события потребления."
DocType: Chat Profile,Message Preview,Предварительный просмотр сообщений
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Это топ-10 общий пароль.
DocType: User,User Defaults,По умолчанию пользователя
@@ -2766,6 +2798,7 @@ DocType: Dashboard Chart,Last Synced On,Последняя синхрониза
DocType: Comment,Comment Type,Комментарий Тип
DocType: OAuth Client,OAuth Client,Клиент OAuth
DocType: Assignment Rule,Users,Пользователи
+DocType: Document Type Mapping,Local Document Type,Локальный тип документа
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Тип отчета
DocType: DocField,Signature,Подпись
@@ -2808,6 +2841,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} самостоятельно назначил эту задачу: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Ваша страна
DocType: Assignment Rule Day,Sunday,Воскресенье
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Ведение журнала всех вставок, обновлений и удалений на сайте Event Producer для документов, имеющих потребителей."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: имя поля не может быть одним из {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Турнирная таблица
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,В табличном виде
@@ -2955,7 +2989,6 @@ DocType: Web Page,Sidebar and Comments,Боковая панель и комме
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Когда вы Измените (Amend) документ после Отмены (Cancel) и сохраните его, он получит новый номер, который является версией старого номера."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Не разрешено прикреплять документ {0}, включите параметр Разрешить печать для {0} в настройках печати"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Учетная запись электронной почты не настроена. Пожалуйста, создайте новую учетную запись электронной почты в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты»."
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},См. Документ в {0}
DocType: Stripe Settings,Publishable Key,Ключ для публикации
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Начать импорт
@@ -3032,7 +3065,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Информаци
DocType: Custom Field,Permission Level,Уровень доступа
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Не удается выполнить Провести, Отменить, Изменить без Записать"
DocType: List View Setting,Disable Count,Отключить счет
-DocType: Google Maps Settings,Client Key,Ключ клиента
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,"Вы уверены, что хотите удалить вложение?"
apps/frappe/frappe/__init__.py,Thank you,Спасибо
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Сохранение
@@ -3159,6 +3191,7 @@ DocType: Workflow Document State,Only Allow Edit For,Разрешено реда
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Резервное копирование на Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Обязательное поле: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Ваше имя
+DocType: Event Producer Document Type,Event Producer Document Type,Тип документа источника событий
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Успех подключения
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Входящий слайд с типом слайда Продолжить уже существует.
@@ -3230,6 +3263,7 @@ DocType: Address,Postal Code,Почтовый индекс
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Relink связи
DocType: Translation,Contributed,Внесенный
apps/frappe/frappe/config/customization.py,Form Customization,Настройка формы
+DocType: Event Update Log,Event Update Log,Журнал обновлений событий
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Нет активных сеансов
DocType: Web Form,Route to Success Link,Ссылка маршрута к успеху
DocType: Onboarding Slide Field,Right,Справа
@@ -3256,7 +3290,7 @@ DocType: Website Settings,Chat Operators,Операторы чата
DocType: S3 Backup Settings,ca-central-1,ча-центрально-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Пожалуйста, убедитесь, что нет никаких пустые столбцы в файле."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Отслеживает этапы жизненного цикла документа, если он проходит несколько этапов."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Отслеживает этапы жизненного цикла документа, если он проходит несколько этапов."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Переименуйте файлы и замените код в контроллерах, пожалуйста, проверьте!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Пожалуйста, убедитесь, что ваш профиль имеет адрес электронной почты"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Есть несохранённые изменения в этой форме. Пожалуйста, сохраните прежде чем продолжить."
@@ -3283,7 +3317,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Сохранить API-интерфейс:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Не можете связать отменен документ: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,"Изменять стандартный отчёт нельзя. Пожалуйста, создайте новый отчёт из копии"
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Компания является обязательным, так как это ваша компания адрес"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Например: Если вы хотите добавить идентификатор документа, используйте {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Выберите столбцы таблицы для {0}
DocType: Custom Field,Options Help,Опции Помощь
@@ -3291,7 +3324,6 @@ DocType: Footer Item,Group Label,Группа Этикетка
DocType: Kanban Board,Kanban Board,Канбан-доска
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Контакты Google настроены.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 запись будет экспортирована
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Нет учетной записи электронной почты, связанной с пользователем. Пожалуйста, добавьте учетную запись под User> Email Inbox."
DocType: DocField,Report Hide,Сообщить Свернуть
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Представление в виде дерева не доступен для {0}
DocType: DocType,Restrict To Domain,Ограничить доступ к домену
@@ -3357,7 +3389,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: поле {1} типа {2} не может быть обязательным
DocType: System Settings,In Days,В днях
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Мисс
+DocType: Event Producer Document Type,Has Mapping,Имеет отображение
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,"Пожалуйста, сформулируйте"
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Неверное значение фильтра
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Статья помощи
DocType: Page,Page Name,Имя страницы
@@ -3465,7 +3499,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Формат печати
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Просмотр сетки
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Перейти к следующей записи
-DocType: System Settings,Time Format,Формат времени
+DocType: Country,Time Format,Формат времени
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Неверные учетные данные платежный шлюз
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Это файл шаблона, сгенерированный только строками с некоторой ошибкой. Вы должны использовать этот файл для исправления и импорта."
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Установить разрешения на типов документов и роли
@@ -3802,6 +3836,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Разрешить использование имени пользователя
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Включить отчет
DocType: DocField,Display Depends On,Показание зависит от
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} год (лет) назад
DocType: Social Login Key,API Endpoint,Конечная точка API
DocType: Web Page,Insert Code,Вставить код
DocType: Data Migration Run,Current Mapping Type,Текущий тип отображения
@@ -3855,6 +3890,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,П
apps/frappe/frappe/www/login.html,Or login with,Или войти в систему с
DocType: Error Snapshot,Locals,Локальные переменные
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Сообщается через {0} {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Типы документов источника событий
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Настройте учетную запись электронной почты по умолчанию в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты».
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Выбрать группу по ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"например, (55 + 434) / 4 = или Math.sin (Math.PI / 2) ..."
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} требуется
@@ -3887,9 +3924,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,Идентификатор синхронизации GCalendar
DocType: Prepared Report,Report Start Time,Время начала отчета
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Экспорт данных
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Ведение журнала всех использованных событий, а также состояния синхронизации и кнопки Resync в случае сбоя синхронизации."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Выбрать столбцы
DocType: Translation,Source Text,Исходный текст
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"Это фоновый отчет. Пожалуйста, установите соответствующие фильтры, а затем сгенерируйте новый."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Учетная запись электронной почты не настроена. Пожалуйста, создайте новую учетную запись электронной почты в меню «Настройка»> «Email»> «Учетная запись электронной почты»."
apps/frappe/frappe/www/login.py,Missing parameters for login,Недостающие параметры для входа
DocType: Workflow State,folder-open,папка-открыть
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",После отправки поданные документы не могут быть изменены. Они могут быть только отменены и исправлены.
@@ -3969,6 +4008,7 @@ DocType: Blog Post,Published On,Опубликовано на
DocType: Contact,Gender,Пол
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Обязательная информация отсутствует:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} вернул ваши очки на {1}
+DocType: Event Consumer,Event Subscriber,Подписчик на событие
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Проверить URL-адрес заявки
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Только 200 вставок допускается в одной заявке
DocType: Footer Item,URL,URL
@@ -3981,6 +4021,7 @@ DocType: Auto Email Report,Half Yearly,Половина года
DocType: Communication,Marked As Spam,Помеченные как спам
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Существует некоторая проблема с файловой URL: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,дерево
+DocType: Event Producer Document Type,Use Same Name,Используйте то же имя
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,У вас нет прав для печати этого отчета
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Разрешения пользователей
DocType: Workflow State,warning-sign,знак-предупреждения
@@ -3990,6 +4031,7 @@ DocType: Workflow State,User,Пользователь
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Показать название в окне браузера как "префикс - название"
DocType: Payment Gateway,Gateway Settings,Настройки шлюза
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Текст в документе типа
+DocType: Event Sync Log,Event Sync Log,Журнал синхронизации событий
apps/frappe/frappe/handler.py,Logged Out,Вышли из
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Больше...
DocType: System Settings,User can login using Email id or Mobile number,"Пользователь может войти в систему, используя идентификатор электронной почты или номер мобильного телефона"
@@ -4030,12 +4072,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Не в
DocType: Workflow State,star,звезда
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Хаб
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Если этот флажок установлен, документы будут иметь то же имя, что и на сайте производителя событий."
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,"значения, разделенные запятыми"
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Максимальная ширина для типа валюта 100px в строке {0}
apps/frappe/frappe/config/website.py,Content web page.,Содержимое веб-страницы.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Добавить новую роль
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Посетить веб-страницу
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Новое назначение
+DocType: Event Consumer Document Type,Approved,Утверждено
DocType: Google Contacts,Last Sync On,Последняя синхронизация
DocType: Deleted Document,Deleted Document,Удаляется документ
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Упс! Что-то пошло не так.
@@ -4088,7 +4132,6 @@ DocType: DocField,Unique,Уникальный
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} оценили {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Частичный успех
DocType: Email Account,Service,Услуги
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Пользователь
DocType: File,File Name,Имя файла
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Не нашли {0} {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4100,11 +4143,10 @@ DocType: Calendar View,Calendar View,Просмотр календаря
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Изменить формат
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Полная регистрация
DocType: GCalendar Settings,Enable,Автоматическое обновление
-DocType: Google Maps Settings,Home Address,Домашний адрес
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),"Вы можете загружать одновременно до 5000 записей. (Возможно меньше, в некоторых случаях)"
DocType: Report,"output in the form of `data = [columns, result]`","вывод в виде `data = [колонки, результат]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Применимые типы документов
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Установите правила для пользовательских назначений.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Установите правила для пользовательских назначений.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недостаточное разрешение для {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недостаточное разрешение для {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Сообщить не был сохранен (были ошибки)
diff --git a/frappe/translations/si.csv b/frappe/translations/si.csv
index 64061c1cd5..7732ad31ae 100644
--- a/frappe/translations/si.csv
+++ b/frappe/translations/si.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,මෙම භූමිකාව යාවත්කාලීන පරිශීලක සඳහා පරිශීලක අවසර
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},නැවත නම් කරන්න {0}
DocType: Workflow State,zoom-out,සූම් අවුට්
-DocType: Data Import Beta,Import Options,ආයාත විකල්ප
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,{0} විවෘත කළ නොහැක එහි උදාහරණයක් විවෘත වන විට
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,වගුව {0} හිස් විය නොහැක
DocType: SMS Parameter,Parameter,පරාමිතිය
@@ -84,16 +83,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,ක්ෂේත්ර Published ඇත
DocType: GCalendar Settings,GCalendar Settings,GCalendar සැකසීම්
DocType: Email Group,Email Group,විද්යුත් සමූහ
-apps/frappe/frappe/__init__.py,Only for {},{For සඳහා පමණි
DocType: Event,Pulled from Google Calendar,ගූගල් දින දර්ශනයෙන් අදින ලදි
DocType: Note,Seen By,වන විට දැක
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,බහු එකතු
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,වලංගු පරිශීලක අනුරුවක් නොවේ.
DocType: Energy Point Log,Reverted,ආපසු හරවන ලදි
DocType: Success Action,First Success Message,පළමු සාර්ථක පණිවුඩය
+DocType: Document Type Mapping,Document Type Mapping,ලේඛන වර්ගය සිතියම්ගත කිරීම
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,වගේ නොවේ
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},වැරදි අගය: {0} {1} {2} විය යුතුය
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","වෙනස් ක්ෂේත්ර ගුණ (සැඟවීමට, කියවීම පමණයි, අවසර ආදිය)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,ඔබගේ සිදුවීම් පරිභෝජනය කරන වෙබ් අඩවිය.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,අගය කරන්න
DocType: Notification Settings,Document Share,ලේඛන බෙදාගැනීම
DocType: Workflow State,lock,අගුලු
@@ -113,10 +113,12 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,ලඝු
DocType: Workflow State,indent-right,ඉන්ඩෙන්ට් දක්ෂිනාංශික
DocType: Has Role,Has Role,කාර්යභාරය ඇත
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,නැවත සමමුහුර්ත කරන්න
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,සේවාදායකයේ QR කේත ප්රතිරූපය රඳවා තබා ගැනීම සඳහා තත්පර තුළ වේ. අවම වශයෙන් 240
DocType: Dashboard Chart,Timespan,ටයිපේpan
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,වෙබ් සබැදි
DocType: Deleted Document,Restored,නැවත
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ තැටි යෙදුමට සම්බන්ධ වීමේ දෝෂයකි ...
අමු මුද්රණ විශේෂාංගය භාවිතා කිරීම සඳහා ඔබට QZ තැටි යෙදුම ස්ථාපනය කර ක්රියාත්මක කළ යුතුය.
QZ තැටි බාගත කර ස්ථාපනය කිරීමට මෙතැන ක්ලික් කරන්න .
අමු මුද්රණය පිළිබඳ වැඩිදුර දැන ගැනීමට මෙහි ක්ලික් කරන්න ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,මිනිත්තු 1 කට පෙර
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","මීට අමතරව පද්ධතිය කළමනාකරු සිට, Set පරිශීලක අවසර සමඟ චරිත අයිතිය බව ලේඛන වර්ගය සඳහා අනෙකුත් පරිශීලකයන් සඳහා අවසර සැකසිය හැක."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,තේමාව වින්යාස කරන්න
@@ -186,6 +188,7 @@ DocType: Email Account,UNSEEN,ගුප්ත ඥාණය
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ගොනුව කළමනාකරු
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML ශීර්ෂකය, රොබෝවරු සහ යළි-යොමුවීම්"
DocType: GCalendar Account,Refresh Token,නැවුම් කරන්න ටෝකනය
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,සිදුවීම් නිෂ්පාදක අඩවියට සම්බන්ධ වීමට අපොහොසත් විය. ටික වේලාවකට පසු නැවත උත්සාහ කරන්න.
DocType: Address,Goa,ගෝවේ
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,මෙම වෙබ් අඩවිය සඳහා අපේක්ෂිත හෝ වර්තමාන රැකියා නොමැත
DocType: Webhook,Doc Event,Doc සිද්ධිය
@@ -208,6 +211,7 @@ DocType: Server Script,Script Manager,පිටපත් කළමනාකර
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,ක්රියාකාරකමක් නැත
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,තුන්වන පාර්ශවීය යෙදුම්
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,පළමු පරිශීලක පද්ධතිය කළමනාකරු (පසුව ඔබට මෙය වෙනස් කල හැක) බවට පත් වනු ඇත.
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,ඔබේ වාර්තාවේ පෙරහන් වෙනස් කිරීමට ඔබට උත්සාහ කළ හැකිය.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,අද සිදුවීම් නැත
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,ඔබට සමාලෝචන ලකුණු ඔබටම ලබා දිය නොහැක
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,තෝරාගත් ලේඛන සිද්ධි සඳහා DocType ඉදිරිපත් කල යුතුය
@@ -238,6 +242,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,ඔබ මෙම ලියවිල්ල සම්බන්ධ ඊ-තැපැල් යැවීමට අවසර නැත
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,"කරුණාකර / පිරිසක් නිරාකරණය කර ගැනීම සඳහා, {0} සිට කටවත් 1 තීරුව තෝරා"
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} සඳහා අවසර නැත: {1}. සීමිත ක්ෂේත්රය: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,සමාගම සම්බන්ධ නොවේ
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,මෙම පරීක්ෂා කරන්න ඔබ සෑන්ඩ්බොක්ස් API භාවිතයෙන් ඔබේ ගෙවීම් පරික්ෂා කරන්නේ නම්
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,ඔබ සම්මත වෙබ් අඩවිය තේමාව ඉවත් කිරීමට අවසර නැත
DocType: Data Import,Log Details,ලොග් විස්තර
@@ -256,7 +261,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},යාවත්කාලීන කිරීම {0}
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ආබාධිත වාර්තාව
DocType: Translation,Contributed Translation Doctype Name,දායක වූ පරිවර්තන ඩොක්ටයිප් නම
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,සැකසුම> පෝරමය අභිරුචිකරණය කරන්න
DocType: PayPal Settings,Redirect To,වෙත යළි යොමු
DocType: Data Migration Mapping,Pull,අදින්න
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ජාවාස්ක්රිප්ට් ආකෘතිය: frappe.query_reports [ 'REPORTNAME'] = {}
@@ -268,6 +272,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,අවසර නැත
DocType: DocShare,Internal record of document shares,ලියවිල්ල කොටස් අභ්යන්තර වාර්තාව
DocType: Energy Point Settings,Review Levels,මට්ටම් සමාලෝචනය කරන්න
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,සැකසුම> පරිශීලක අවසර
DocType: Workflow State,Comment,පරිකථනය
DocType: Data Migration Plan,Postprocess Method,පසුකාලීන ක්රමය
DocType: DocType Action,Action Type,ක්රියා වර්ගය
@@ -318,13 +323,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,ස
DocType: Workflow State,remove-circle,ඉවත්-රවුම
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,මගේ පැතිකඩ
DocType: Help Article,Beginner,ආධුනිකයා
+apps/frappe/frappe/__init__.py,This action is only allowed for {},මෙම ක්රියාව අවසර දෙනුයේ {for සඳහා පමණි
DocType: Contact,Is Primary Contact,ප්රාථමික ස්පර්ශය යනු
+DocType: Event Consumer,Event Consumer,සිදුවීම් පාරිභෝගිකයා
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,පිටුවේ හිස කොටස වෙත එකතු කිරීමට කරුණාකර Javascript.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,එකතු කරන්න / යාවත්කාලීන කරන්න
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,ලේඛන සකසමින් මුද්රණය කිරීමට අවසර නැත
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,පෙරනිමි යළි පිහිටුවන්න
DocType: Workflow,Transition Rules,සංක්රමණය රීති
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,පෙරදසුනේ පළමු {0} පේළි පමණක් පෙන්වයි
apps/frappe/frappe/core/doctype/report/report.js,Example:,උදාහරණයක්:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,සීමා
DocType: Workflow,Defines workflow states and rules for a document.,ලියවිල්ලක් සඳහා කාර්ය ප්රවාහ රාජ්යයන් හා නීති සහ කොන්දේසි සකසයි.
@@ -469,7 +475,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,නැවත නැවත තුරු
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,අලුත්
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,ඔබ මුලින්ම මේවා සෑදිය යුතුය:
-DocType: Google Maps Settings,Google Maps Settings,Google සිතියම් සැකසීම්
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ...
DocType: DocField,Password,මුරපදය
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,ඔබේ පද්ධතිය නවීකරණය කොට ඇත. මොහොතක් පසු කරුණාකර නැවත ප්රාණවත්
@@ -561,6 +566,7 @@ DocType: Onboarding Slide,Onboarding Slide,යතුරු පුවරුව
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,වලංගු නොවන මුරපදය:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,වලංගු නොවන මුරපදය:
DocType: Print Settings,Send document web view link in email,ඊ-තැපැල් ලියවිල්ල වෙබ් දැක්ම සබැඳිය යවන්න
+DocType: Event Consumer Document Type,Event Consumer Document Type,සිදුවීම් පාරිභෝගික ලේඛන වර්ගය
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,කලින්
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,විශ්වාසදායක සහතිකයක් අවශ්යයි
@@ -633,6 +639,7 @@ DocType: Workflow State,volume-down,පරිමාව පහළ
DocType: Onboarding Slide,Help Links,උදව් සබැඳි
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,මෙම IP ලිපිනයෙන් ප්රවේශ වීමට අවසර නැත
DocType: Notification Settings,Enable Email Notifications,විද්යුත් තැපැල් දැනුම්දීම් සක්රීය කරන්න
+DocType: Document Type Field Mapping,Event Streaming,සිදුවීම් ප්රවාහය
apps/frappe/frappe/desk/reportview.py,No Tags,කිසිදු ඇමිණුම්
DocType: Email Account,Send Notification to,කිරීමට නිවේදනය යවන්න
DocType: DocField,Collapsible,කොටසේ
@@ -649,6 +656,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,ප
apps/frappe/frappe/database/database.py,No conditions provided,කොන්දේසි සපයා නැත
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y Axis Fields
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,වර්ග ක්ෂේත්රය {0} වලංගු fieldname විය යුතුය
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,පෙරනිමි ලිපින සැකිල්ලක් හමු නොවීය. සැකසුම> මුද්රණය සහ වෙළඳ නාම> ලිපින සැකිල්ලෙන් කරුණාකර නව එකක් සාදන්න.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,තව
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,නව වාර්තාවක් සාදන්න
DocType: Contact,Sales Manager,අලෙවි කළමනාකරු
@@ -672,6 +680,7 @@ DocType: User,Reset Password Key,මුරපදය කී යළි පිහ
DocType: Dashboard Chart,All Time,සර්වකාලීන
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} සඳහා නීත්යානුකූල ලේඛන තත්ත්වය
DocType: Email Account,Enable Auto Reply,වාහන ඊ-මේල් මගින් පිලිතුරු දෙන්න සක්රිය කරන්න
+apps/frappe/frappe/desk/query_report.py,No data to export,අපනයනය කිරීමට දත්ත නොමැත
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,දැක නැත
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,තනි මුද්රණ ආකෘතියකට බහු මුද්රණ සිතියම් ගත කළ නොහැක.
DocType: Workflow State,zoom-in,සූම්-තුළ
@@ -823,6 +832,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,පරි
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,පළමු
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,පරිවර්තන යාවත්කාලීන කරන්න
DocType: Error Snapshot,Exception,ව්යතිරේක
+DocType: Event Consumer,Event Consumer Document Types,සිදුවීම් පාරිභෝගික ලේඛන වර්ග
DocType: Email Account,Use IMAP,IMAP භාවිතා කරන්න
DocType: Activity Log,Activity Log,ක්රියාකාරකම් ලොග්
DocType: View Log,Viewed By,නරඹන ලද්දේ
@@ -861,6 +871,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ග
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ප්රස්ථාර සටහන්
DocType: User,Last IP,පසුගිය IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,කරුණාකර ඔබගේ ඊමේල් විෂයයට එක් කරන්න
+apps/frappe/frappe/model/workflow.py,Errored Transactions,වැරදි ගනුදෙනු
DocType: Data Migration Connector,Data Migration Connector,දත්ත සංක්රමණ සම්බන්ධකය
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ආපසු හරවන ලදි {1}
DocType: Email Account,Track Email Status,ඊ-මේල් තත්වය බලන්න
@@ -891,6 +902,7 @@ DocType: Email Queue,Attachments,ඇමුණුම්
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,ඔබ මෙම ලියවිල්ල පිවිසීමට අවසර නොමැත
DocType: Language,Language Name,භාෂා නම
DocType: Email Group Member,Email Group Member,විද්යුත් සමූහ සාමාජික
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,පරිශීලකයා හා සම්බන්ධ ඊමේල් ගිණුමක් නොමැත. කරුණාකර පරිශීලක> විද්යුත් තැපැල් එන ලිපි යටතේ ගිණුමක් එක් කරන්න.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,ඔබගේ ගිණුම අවුරා ඇති අතර තත්පර {0} පසුව නැවත ආරම්භ වේ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,පරිශීලකයින්ගේ නිශ්චිත වාර්තා වලට පරිශීලකයින් සීමා කිරීම සඳහා පරිශීලක අවසර භාවිතා කරනු ලැබේ.
DocType: Notification,Value Changed,අගය වෙනස්
@@ -980,6 +992,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,ගනුදෙ
DocType: Help Article,Expert,විශේෂඥ
DocType: Workflow State,circle-arrow-right,රවුම-ඊතලය දක්ෂිනාංශික
DocType: Role Profile,Role Profile,කාර්යභාරය
+DocType: Document Type Mapping,Remote Document Type,දුරස්ථ ලේඛන වර්ගය
apps/frappe/frappe/permissions.py,Document Type is not importable,ලේඛන වර්ගය ආනයනය කළ නොහැක
DocType: LDAP Settings,LDAP Server Url,LDAP සේවාදායකය අඩවිය
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,එහි {0} විවෘත වන විට විවෘත උදාහරණයක් නොහැක
@@ -1064,7 +1077,6 @@ DocType: Web Form,Allow Print,මුද්රණය ඉඩ දෙන්න
DocType: Communication,Clicked,මත ක්ලික්
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,අනුගමනය නොකරන්න
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},අවසර නැත කිරීමට '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර පෙරනිමි ඊමේල් ගිණුම සැකසුම> ඊමේල්> විද්යුත් තැපැල් ගිණුමෙන් සකසන්න
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,යැවීමට නියමිත
DocType: DocType,Track Seen,ධාවන දැක
DocType: Dropbox Settings,File Backup,ගොනු බැකප්
@@ -1134,6 +1146,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,එ
DocType: Data Export,Filter List,පෙරහන් ලැයිස්තුව
DocType: Data Export,Excel,එක්සෙල්
DocType: System Settings,HH:mm,HH: මි.මී.
+DocType: Event Sync Log,Event Configurations,සිදුවීම් වින්යාසය
DocType: Email Account,Auto Reply Message,වාහන ඊ-මේල් මගින් පිලිතුරු දෙන්න පණිවුඩය
DocType: Data Migration Mapping,Condition,තත්වය
apps/frappe/frappe/utils/data.py,{0} hours ago,පැය {0} කට පෙර
@@ -1192,9 +1205,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,ගිණු
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,අදහස් ප්රකාශ කිරීම ලොගින් වන්න
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,මෙම රේඛාව පහත දත්ත ඇතුල් ආරම්භ
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},{0} සඳහා අගයන් වෙනස්
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ඊමේල් හැඳුනුම අද්විතීය විය යුතුය, ඊ-තැපැල් ගිණුම දැනටමත් පවතී \ for {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","සංසන්දනය සඳහා,> 5, <10 හෝ = 324 භාවිතා කරන්න. පරාසයන් සඳහා, 5:10 භාවිතා කරන්න (5 සහ 10 අතර අගයන් සඳහා)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,අභිමතකරණය කරන්න ...
DocType: Print Format,Align Labels to the Right,ලේබලයේ දකුණු පස ඇලවීම
DocType: Assignment Rule,Disabled,ආබාධිත
@@ -1240,8 +1252,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,යතුරුපුවරු කෙටිමං
DocType: Post,Comments,අදහස්
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,තහවුරු කරන්න
+DocType: Event Sync Log,Update Type,යාවත්කාලීන වර්ගය
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,සත්යාපනය ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,සියල්ල හකුලන්න
+DocType: Event Producer,Last Update,අවසන් යාවත්කාලීන කිරීම
apps/frappe/frappe/www/login.html,Forgot Password?,මුරපදය අමතක වුණා ද?
DocType: System Settings,yyyy-mm-dd,දැ ෙ-MM-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,හැඳුනුම්පත
@@ -1281,6 +1295,7 @@ DocType: LDAP Settings,Password for Base DN,මූලික ඩී.එන් ස
apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,මේසය ක්ෂේත්ර
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,මත පදනම් වූ තීරු
DocType: Workflow State,move,පියවර
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,වත්මන් වෙබ් අඩවිය සඳහා සිදුවීම් පාරිභෝගිකයෙකු හෝ සිදුවීම් පාරිභෝගිකයෙකු නිර්මාණය කිරීමට අපොහොසත් වී ඇත.
apps/frappe/frappe/model/document.py,Action Failed,ක්රියාකාරී අසාර්ථක විය
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,පරිශීලක සඳහා
DocType: View Log,View log,ලඝු සටහන බලන්න
@@ -1439,6 +1454,7 @@ DocType: DefaultValue,Key,යතුර
DocType: Address,Contacts,අප අමතන්න
DocType: System Settings,Setup Complete,setup සම්පූර්ණ
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,සියලු ලේඛන කොටස් වාර්තාව
+DocType: Event Consumer,Callback URL,ඇමතුම් ආපසු URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","ආනයන අච්චුව .csv, .xlsx හෝ .xls වර්ගයේ විය යුතුය"
apps/frappe/frappe/www/update-password.html,New Password,නව මුරපදය
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,පෙරහන් {0} අතුරුදහන්
@@ -1505,7 +1521,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ස
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; තත්ත්වය ඉඩ නොදෙන
DocType: Async Task,Async Task,අසමකාලීක කාර්ය සාධක
DocType: Workflow State,picture,පින්තූරය
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,සම්පූර්ණ
+DocType: Scheduled Job Log,Complete,සම්පූර්ණ
DocType: DocType,Image Field,රූප ක්ෂේත්ර
DocType: Print Format,Custom HTML Help,රේගු HTML උදවු
DocType: LDAP Settings,Default Role on Creation,නිර්මාණයේ පෙරනිමි භූමිකාව
@@ -1530,6 +1546,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,සොයන්න උදවු
DocType: Milestone,Milestone Tracker,සන්ධිස්ථාන ට්රැකර්
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ලියාපදිංචි නමුත් ආබාධිත
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,ලිපිනය සමාගමකට සම්බන්ධ කළ යුතුය. කරුණාකර පහත සබැඳි වගුවේ සමාගම සඳහා පේළියක් එක් කරන්න.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,මෙම ලේඛනය සඳහා ස්වයංක්රීය පුනරාවර්තනය අක්රීය කර ඇත.
DocType: DocType,Hide Copy,පිටපත් සඟවන්න
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,සියලුම භූමිකා ඉවත්
@@ -1567,13 +1584,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print
DocType: Bulk Update,Field,ක්ෂේත්ර
DocType: Communication,Received,ලැබී
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update" වැනි වලංගු ක්රම පිළිබඳ කොකා, ආදිය (තෝරාගත් DocType මත රඳා පවතී)"
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},විද්යුත් තැපැල් ගිණුම් සැකසුම කරුණාකර ඔබගේ මුරපදය ඇතුළත් කරන්න: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,මෙම පරිශීලක පද්ධතිය කළමනාකරු එකතු බෙ එක් පද්ධතිය කළමනාකරු තිබිය යුතු ලෙස
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,සම්පූර්ණ පිටු
DocType: DocField,Attach Image,රූප අමුණන්න
DocType: Workflow State,list-alt,ලැයිස්තුව-alt
apps/frappe/frappe/www/update-password.html,Password Updated,මුරපදය යාවත්කාලීන කිරීම
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,සැකසුම> පරිශීලක අවසර
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ඔබගේ පිවිසුම සත්යාපනය කිරීමට පියවර
apps/frappe/frappe/utils/password.py,Password not found,මුරපදය සොයා ගැනීමට නොහැකි
DocType: Webhook,Webhook Secret,වෙබ්හුක් රහස
@@ -1589,8 +1606,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API සැ
DocType: Report,Query Report,විමසුම් වාර්තාව
DocType: User,Set New Password,අලුත් රහස් වචනයක්
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} සඳහා අවසර නැත: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S වලංගු වාර්තාවක් ආකෘතිය නොවේ. වාර්තාව ආකෘතිය පහත සඳහන්% s එක් \ යුතු
DocType: Chat Message,Chat,චැට්
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP කණ්ඩායම් සිතියම්කරණය
DocType: Dashboard Chart,Chart Options,ප්රස්ථාර විකල්ප
@@ -1625,7 +1640,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ඔබග
DocType: Dropbox Settings,Dropbox Access Secret,නාමාවලි එකක් ප්රවේශ රහස්
DocType: Tag Link,Document Title,ලේඛන මාතෘකාව
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(අනිවාර්ය)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} වසර (න්) පෙර
DocType: Social Login Key,Social Login Provider,සමාජ ආරක්ෂණ සැපයුම්කරු
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,එකතු කරන්න තවත් පරිකථනය
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ගොනුව තුල දත්ත නොමැත. කරුණාකර නව ගොනුවක් දත්ත සමඟ ප්රතිස්ථාපනය කරන්න.
@@ -1671,6 +1685,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ඉල
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,අවුරුදු 1 යි
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,ස්ථිරවම {0} මකා?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,එම ගොනුවක් දැනටමත් වාර්තාගත අනුයුක්ත කර ඇත
+DocType: Event Sync Log,Synced,සමමුහුර්ත කර ඇත
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} වලංගු කාර්ය ප්රකෘතියක් නොවේ. කරුණාකර ඔබගේ කාර්ය ප්රවාහය යාවත්කාලීන කර නැවත උත්සාහ කරන්න.
DocType: Workflow State,wrench,අඩුවක්
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,සකසා නැත
@@ -1767,6 +1782,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,මැක්ස් දිග
DocType: Print Format,Jinja,ජින්ජා
DocType: Workflow State,map-marker,සිතියම-මාකර්
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,ඩොක්ටයිප දෙකක් අතර සිතියම්කරණ වින්යාසය.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ක නිකුත් ඉදිරිපත්
DocType: Event,Repeat this Event,මෙම අවස්ථාවට නැවත නැවත
DocType: Address,Maintenance User,නඩත්තු පරිශීලක
@@ -1824,6 +1840,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,ටෙස්ට් විද්යුත් තැපැල් ලිපිනය
DocType: Auto Repeat,Reference Document Type,ආශ්රිත ලේඛන වර්ගය
DocType: ToDo,Sender,යවන්නාගේ
+DocType: Event Consumer,Incoming Change,එන වෙනස
DocType: Google Drive,Backup Folder Name,උපස්ථ ෆෝල්ඩරයේ නම
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,නිවේදනය ඇගයීමේදී දෝශයක් {0}. කරුණාකර ඔබේ ආකෘතිය නිවැරදි කරන්න.
DocType: GSuite Settings,Google Apps Script,Google Apps ස්ක්රිප්ට්
@@ -1884,9 +1901,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,නව
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,ඉල්ලීම අනුමත කිරීම සඳහා පහත සබැඳිය ක්ලික් කරන්න
DocType: Workflow State,align-left,සන්ධානගත වාම
DocType: Onboarding Slide,Action Settings,ක්රියා සැකසුම්
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,සැකසුම> පරිශීලකයා
DocType: User,Defaults,පෙරනිමි
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","සංසන්දනය සඳහා,> 5, <10 හෝ = 324 භාවිතා කරන්න. පරාසයන් සඳහා, 5:10 භාවිතා කරන්න (5 සහ 10 අතර අගයන් සඳහා)."
DocType: Energy Point Log,Revert Of,ආපසු හරවන්න
+DocType: Document Type Mapping,Field Mapping,ක්ෂේත්ර සිතියම්කරණය
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,දැනට පවතින සමඟ ඒකාබද්ධ වීමේ
DocType: User,Birth Date,උපන්දිනය
DocType: Communication Link,Link Title,Link හිමිකම්
@@ -1914,6 +1932,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,ටැග් සබැඳිය
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,ලන්දේසි අඛණ්ඩතාව
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,ටෙස්ට් තරගයේදී
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 ව්යවහාර මුදල් = [?] උදා: 1 ඇමරිකානු ඩොලර් මිලියන = 100 Cent සඳහා භාගය
DocType: Data Import,Partially Successful,අර්ධ වශයෙන් සාර්ථක විය
@@ -1923,6 +1942,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP කණ්ඩායම් සිතියම්කරණය
DocType: Chat Message Attachment,Chat Message Attachment,ආවරණ පණිවිඩය ඇමුණුම්
DocType: LDAP Settings,Path to CA Certs File,CA සහතික ගොනුවට මාර්ගය
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,නිෂ්පාදකයාගේ සහ පාරිභෝගිකයාගේ කෙළවරේ ලේඛනයේ විවිධ ක්ෂේත්ර නම් තිබේ නම් මෙය පරීක්ෂා කර සිතියම්කරණය සකසන්න
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,සියලු සබැඳි විකල්ප කියවීමට ඉඩ දෙන්න
DocType: DocType,Database Engine,දත්ත ගබඩා එන්ජිම
@@ -2055,6 +2075,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,සටහන
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,දෝෂ වාර්තාව
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / Excel ආකෘතියේ අපනයන දත්ත.
+DocType: Document Type Field Mapping,Document Type Field Mapping,ලේඛන වර්ගය ක්ෂේත්ර සිතියම්කරණය
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,ගෝලීය සෙවුම් ලේඛන සැකසීම.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,ඔබට භාවිතා කළ හැකි සත්යාපන යෙදුම්:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} දැනටමත් පවතී. වෙනත් නමක් තෝරන්න
@@ -2130,7 +2151,6 @@ DocType: Workflow State,Upload,උඩුගත
DocType: User Permission,Advanced Control,උසස් පාලනය
DocType: System Settings,Date Format,දිනය ආකෘතිය
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Published නෑ
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,පෙරනිමි ලිපින සැකිල්ලක් හමු නොවීය. සැකසුම> මුද්රණය සහ වෙළඳ නාම> ලිපින සැකිල්ලෙන් කරුණාකර නව එකක් සාදන්න.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","කාර්ය ප්රවාහ ක්රියාවන් (උදා: අනුමත, අවලංගු කරන්න)."
DocType: Data Import,Skip rows with errors,දෝෂ සහිත පේළි සංවාද කරන්න
DocType: Workflow State,flag,ධජ
@@ -2194,6 +2214,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,තත්වය වෙනස් කිරීමට පවරා එක් ලේඛනයකට හා භූමිකාව ඉඩ ප්රාන්ත නියෝජනය කරයි.
DocType: Data Migration Connector,Database Name,දත්ත සමුදාය නම
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ආකෘතිය refresh කරන්න
+DocType: Event Producer,Event Producer,සිදුවීම් නිෂ්පාදකයා
DocType: DocField,Select,තෝරන්න
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,සම්පූර්ණ ලොගය බලන්න
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","සරල පයිතන් ප්රකාශනය, උදාහරණය: තත්වය == 'විවෘත' සහ == 'දෝෂය' ටයිප් කරන්න"
@@ -2309,6 +2330,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,ලොගි
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,එක්කෙනාගේ එකතු කරන්න
DocType: Footer Item,Company,සමාගම
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},සාමාන්ය {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,සාර්ථක ගනුදෙනු
DocType: Scheduled Job Log,Scheduled,නියමිත
DocType: User,Logout from all devices while changing Password,මුරපදය වෙනස් කිරීමේදී සියලු උපාංග වලින් ඉවත්ව යාම
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,මුරපදය තහවුරු කරන්න
@@ -2419,6 +2441,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,මාසි
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: එක් කරන්න Reference: {{ reference_doctype }} {{ reference_name }} ලියවිල්ල යොමු යැවීමට
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,ලේඛනයට සම්බන්ධ පරිශීලකයින් පමණක් ලැයිස්තුගත කර ඇත
DocType: DocField,Fetch From,ගවේශණය
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,සැකසුම> පෝරමය අභිරුචිකරණය කරන්න
apps/frappe/frappe/modules/utils.py,App not found,යෙදුම සොයාගත නොහැකි
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},ළමා ලියවිල්ල එරෙහිව {0} නිර්මාණය කළ නොහැක: {1}
DocType: Social Login Key,Social Login Key,සමාජ ලොගිනය
@@ -2429,7 +2452,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,පණ
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,සමාජ නිවස
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},{0} ලෙස සකසා ගත නොහැකි පසු ඇතුල් කරන්න
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,මෙම දැන්වීම {0} සමග
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ඊ-තැපැල් ගිණුම පිහිටුවීම් සඳහා ඔබගේ මුර පදය ඇතුලත් කරන්න:
DocType: Workflow State,hand-up,අත උස්සන්න
DocType: Blog Settings,Writers Introduction,ලේඛකයන් හැඳින්වීම
DocType: Address,Phone,දුරකථන
@@ -2487,7 +2509,7 @@ DocType: Web Page,Insert Style,ඇතුළු කරන්න ස්ටයි
DocType: Prepared Report,Error Message,දෝෂ පණිවිඩය
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,නව වාර්තාව නම
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,සති අන්ත සඟවන්න
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,පුනරාවර්තන ලේඛන ස්වයංක්රීයව ජනනය කරයි.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,පුනරාවර්තන ලේඛන ස්වයංක්රීයව ජනනය කරයි.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ය
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,තොරතුරු-ලකුණක්
@@ -2495,7 +2517,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} ස
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","කොහොමද මේ මුදල් සංයුති කල යුත්තේ කුමක්ද? පිහිටුවා නැත නම්, පද්ධතිය පෙරනිමි භාවිතා කරනු ඇත"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ලේඛන {0} ඉදිරිපත් කරන්නද?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ඔබ ලොගින් වී කළ යුතු සහ System කළමනාකරු කාර්යභාරය රක්ෂිත ඇති ප්රවේශ වීමට හැකි විය යුතුයි.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ තැටි යෙදුමට සම්බන්ධ වීමේ දෝෂයකි ...
අමු මුද්රණ විශේෂාංගය භාවිතා කිරීම සඳහා ඔබට QZ තැටි යෙදුම ස්ථාපනය කර ක්රියාත්මක කළ යුතුය.
QZ තැටි බාගත කර ස්ථාපනය කිරීමට මෙතන ක්ලික් කරන්න .
අමු මුද්රණය පිළිබඳ වැඩිදුර දැන ගැනීමට මෙහි ක්ලික් කරන්න ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,මුද්රණ සිතියම්කරණය
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,අනුයුක්ත පෙර සුරකින්න.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,සම්බන්ධිත සියලුම ලේඛන අවලංගු කිරීමට ඔබට අවශ්යද?
@@ -2524,6 +2545,7 @@ DocType: Role Permission for Page and Report,Set Role For,සඳහා Set ක
DocType: GCalendar Account,The name that will appear in Google Calendar,ගූගල් දින දර්ශනයේ දිස්වන නම
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} සමඟ සෘජු කාමරයක් දැනටමත් පවතී.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,ගිමන් නිවා ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},කරුණාකර උපකරණ පුවරුව සඳහා සකසා ඇති පෙරහන් අගයන් පරීක්ෂා කරන්න: {}
DocType: Event,Starts on,මත ආරම්භ
DocType: System Settings,System Settings,පද්ධති සැකසීම්
DocType: GCalendar Settings,Google API Credentials,Google API අක්තපත්ර
@@ -2548,6 +2570,7 @@ DocType: Workflow State,ok-sign,හරි-ලකුණක්
apps/frappe/frappe/config/settings.py,Deleted Documents,මකා දමන ලදී ලේඛන
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ආකෘතිය සංවේදී වේ
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ඩෙස්ක්ටොප් අයිකන දැනටමත් පවතී
+DocType: Event Consumer Document Type,Approval Status,පතේ තත්වය
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"විනිවිදක පෙන්විය යුතු සියලුම වසම්වල සඳහන් කරන්න. කිසිවක් නිශ්චිතව දක්වා නොමැති නම්, විනිවිදකය පෙරනිමියෙන් සියලු වසම්වල පෙන්වනු ලැබේ."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,අනුපිටපත්
DocType: Newsletter,Create and Send Newsletters,පුවත් පත්රිකා නිර්මාණය හා යවන්න
@@ -2566,6 +2589,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,උදවු ලිපි
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,වර්ගය:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,ඔබගේ ගෙවීම් අසමත් වී ඇත.
+DocType: Event Producer,Producer URL,නිෂ්පාදක URL
DocType: Comment,Unshared,ලබා ගත් එක්ම
DocType: Address,Karnataka,කර්නාටක
apps/frappe/frappe/desk/moduleview.py,Module Not Found,මොඩියුලය සොයාගැනීමට නොහැකි
@@ -2577,6 +2601,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,පැවරුම සම්පූර්ණ
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},තොග සංස්කරණය කරන්න {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,බාගත වාර්තාව
+apps/frappe/frappe/model/workflow.py,Workflow Status,කාර්ය ප්රවාහ තත්වය
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,ක්රියාකාරී නැහැ
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,උපකරණ පුවරු ප්රස්ථාර ප්රභවයන් නිර්මාණය කිරීමට අවසර දී ඇත්තේ පරිපාලකවරයාට පමණි
DocType: About Us Settings,Settings for the About Us Page,මෙම අප ගැන පිටුව සඳහා සැකසුම්
@@ -2635,6 +2660,7 @@ DocType: User Social Login,User Social Login,පරිශීලක සමාජ
DocType: Contact,All,සියලු
DocType: Email Queue,Recipient,පලමු වරට පිරිනැමු
DocType: Webhook,Webhook Security,වෙබ්හුක් ආරක්ෂාව
+DocType: Event Sync Log,Producer Document Name,නිෂ්පාදක ලේඛනයේ නම
DocType: Communication,Has Attachment,ඇමුණුම් ඇත
DocType: Address,Sales User,විකුණුම් පරිශීලක
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ඇද බිම දානවා මුද්රණය ආකෘති ගොඩනැගීම හා රිසිකරණය මෙවලමකි.
@@ -2670,6 +2696,7 @@ DocType: Address,Arunachal Pradesh,Arunachal ප්රදේශ්
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,ළමා වගු වෙනත් ඩොක් ටයිප් වල ජාලයක් ලෙස දක්වා ඇත
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setup වාහන විද්යුත්
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,සිදුවීම් පරිභෝජනය සඳහා ඔබට දායක වීමට අවශ්ය වෙබ් අඩවිය.
DocType: Chat Profile,Message Preview,පණිවිඩ පෙරදැක්මක්
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,මෙම ඉහළ-10 පොදු මුරපදයකි.
DocType: User,User Defaults,පරිශීලක Defaults
@@ -2702,6 +2729,7 @@ DocType: Dashboard Chart,Last Synced On,අවසන් වරට සමමු
DocType: Comment,Comment Type,පරිකථනය වර්ගය
DocType: OAuth Client,OAuth Client,OAuth සේවාලාභියා
DocType: Assignment Rule,Users,පරිශීලකයන්
+DocType: Document Type Mapping,Local Document Type,දේශීය ලේඛන වර්ගය
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,වර්ගය වාර්තාව
DocType: DocField,Signature,අත්සන
@@ -2743,6 +2771,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} මෙම කර්තව්යය ස්වයංක්රීයව පවරා ඇත: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,ඔබගේ රට
DocType: Assignment Rule Day,Sunday,ඉරිදා
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","පාරිභෝගිකයින් සිටින ලේඛන සඳහා සිදුවීම් නිෂ්පාදක අඩවියේ සියලුම ඇතුළත් කිරීම්, යාවත්කාලීන කිරීම් සහ මකාදැමීම් වල ලොගයක් පවත්වා ගනී."
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,ස්ථාවරයන්
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,විදුලි බල පද්ධතියට දැක්වීම
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,තවත් ක්රියාකාරකමක් නැත
@@ -2886,7 +2915,6 @@ DocType: Web Page,Sidebar and Comments,පැති තීරුවේ සහ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","ඔබට පසු එය අවලංගු කරන්න සහ ඉතිරි ලියවිල්ලක් සංශෝධනය කරමි විට, එය පරණ අංකය වෙළුමක් වන බව නව අංකයක් ලැබෙනු ඇත."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} ලේඛනයක් ඇමිණීමට ඉඩ නොදේ, කරුණාකර මුද්රණ සැකසුම් තුළ {0} මුද්රණය කරන්න අවසර දෙන්න"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,විද්යුත් තැපැල් ගිණුම සැකසෙන්නේ නැත. සැකසුම> විද්යුත් තැපෑල> විද්යුත් තැපැල් ගිණුමෙන් කරුණාකර නව විද්යුත් තැපැල් ගිණුමක් සාදන්න
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} බලන්න.
DocType: Stripe Settings,Publishable Key,Publishable කී
DocType: Stripe Settings,Publishable Key,Publishable කී
@@ -2963,7 +2991,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,තොරතුර
DocType: Custom Field,Permission Level,අවසර පෙළ
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: ඉදිරිපත් සිටුවම් කල නොහැක, අවලංගු කරන්න, ලියන්න තොරව සංශෝධනය කරමි"
DocType: List View Setting,Disable Count,ගණන් අක්රීය කරන්න
-DocType: Google Maps Settings,Client Key,සේවාලාභියා යතුර
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,ඔබ ඇමුණුමක් මැකීමට අවශ්ය බව ඔබට විශ්වාසද?
apps/frappe/frappe/__init__.py,Thank you,ඔබට ස්තුතියි
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,සුරකිමින්
@@ -3087,6 +3114,7 @@ DocType: Workflow Document State,Only Allow Edit For,පමණක් ඉඩ ද
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,ගූගල් ඩ්රයිව් වෙත උපස්ථ වීම.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},අනිවාර්ය ක්ෂේත්ර: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ඔබගේ නම
+DocType: Event Producer Document Type,Event Producer Document Type,සිදුවීම් නිෂ්පාදක ලේඛන වර්ගය
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,සම්බන්ධතා සාර්ථකත්වය
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,විනිවිදක වර්ගයේ ඔන්බෝර්ඩිං විනිවිදකයක් අඛණ්ඩව පවතී.
@@ -3155,6 +3183,7 @@ DocType: Address,Postal Code,තැපැල් කේතය
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,සන්නිවේදන Relink
DocType: Translation,Contributed,දායක විය
apps/frappe/frappe/config/customization.py,Form Customization,ආකෘති අභිරුචිකරණය
+DocType: Event Update Log,Event Update Log,සිදුවීම් යාවත්කාලීන ලොගය
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,සක්රීය සැසි නැත
DocType: Web Form,Route to Success Link,සාර්ථකත්වයට මඟ
DocType: Onboarding Slide Field,Right,අයිතිය
@@ -3181,7 +3210,7 @@ DocType: Website Settings,Chat Operators,චැට් ක්රියාකර
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,ගොනුව තුල කිසිදු හිස් තීරු පවතින බව තහවුරු කරගන්න.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ලේඛනයක අදියර කිහිපයකට භාජනය වුවහොත් එහි ජීවන චක්රයේ සන්ධිස්ථාන සොයා ගනී.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ලේඛනයක අදියර කිහිපයකට භාජනය වුවහොත් එහි ජීවන චක්රයේ සන්ධිස්ථාන සොයා ගනී.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","පාලකවල ගොනු නැවත නම් කර කේතය ප්රතිස්ථාපනය කර ඇත, කරුණාකර පරීක්ෂා කරන්න!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,ඔබේ පැතිකඩ ඊ-තැපැල් ලිපිනයක් ඇති බව සහතික කරන්න
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,මෙම ආකෘති පත්රය තුළ වෙනස්කිරීම් සුරැකීම ඇත. ඔබ ඉදිරියට යාමට පෙර සුරකින්න.
@@ -3208,7 +3237,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API රහස් සුරකින්න:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},{0}: අවලංගු ලියවිල්ලක් සබැඳෙයි නොහැකි
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,සම්මත වාර්තාව සංස්කරණය කළ නොහැක. නව වාර්තාව අනුපිටපත් හා නිර්මාණය කරන්න
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","ඔබේ සමාගම ලිපිනය ලෙස සමාගම, අනිවාර්ය වේ"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","උදාහරණයක් ලෙස: ඔබට බලන්න හැඳුනුම්පත ඇතුළත් කිරීමට අවශ්ය නම්, භාවිතා {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},{0} සඳහා වගුව තීර තෝරන්න
DocType: Custom Field,Options Help,විකල්ප උදවු
@@ -3216,7 +3244,6 @@ DocType: Footer Item,Group Label,සමූහ ලේබල්
DocType: Kanban Board,Kanban Board,Kanban මණ්ඩලය
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ගූගල් සම්බන්ධතා වින්යාස කර ඇත.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 වාර්තාවක් අපනයනය කෙරේ
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,පරිශීලකයා හා සම්බන්ධ ඊමේල් ගිණුමක් නොමැත. කරුණාකර පරිශීලක> විද්යුත් තැපැල් එන ලිපි යටතේ ගිණුමක් එක් කරන්න.
DocType: DocField,Report Hide,වාර්තාව සඟවන්න
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},{0} සඳහා රුක් දැක්ම ලබා ගත නොහැකි
DocType: DocType,Restrict To Domain,වසම් සීමා
@@ -3280,7 +3307,9 @@ DocType: DocField,Fold,නමන්න
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,සම්මත මුද්රණය ආකෘතිය යාවත්කාලීන කල නොහැක
DocType: System Settings,In Days,දවස් වල
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,මිස්
+DocType: Event Producer Document Type,Has Mapping,සිතියම් ගත කර ඇත
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,සඳහන් කරන්න
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,පෙරහන් අගය අවලංගුයි
DocType: Comment,Bot,ව්යාපෘති සඳහා රොබෝ
DocType: Help Article,Help Article,උදවු ව්යවස්ථාවේ
DocType: Page,Page Name,පිටුව නම
@@ -3384,7 +3413,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,මුද්රණය ආකෘතිය
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ජාලක දර්ශනය ටොගල කරන්න
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ඊළඟ වාර්තාවට යන්න
-DocType: System Settings,Time Format,කාල ආකෘතිය
+DocType: Country,Time Format,කාල ආකෘතිය
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,වලංගු නොවන ගෙවීම් ක්රම අක්තපත්ර
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,මෙය යම් දෝෂයක් ඇති පේළි පමණි. ඔබ විසින් මෙම ගොනුව නිවැරදි කිරීම සහ ආයාත කිරීම සඳහා භාවිතා කළ යුතුය.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ලේඛන වර්ග හා භූමිකා මත Set අවසර
@@ -3699,6 +3728,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,පරිශීලක නම භාවිතා කිරීමෙන් ලොග් වීමට ඉඩ දෙන්න
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,වාර්තාව සබල කරන්න
DocType: DocField,Display Depends On,ප්රදර්ශනය මත රඳා පවතී
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} වසර (න්) පෙර
DocType: Social Login Key,API Endpoint,API අවසානය
DocType: Web Page,Insert Code,ඇතුළු කරන්න සංග්රහයේ
DocType: Data Migration Run,Current Mapping Type,වර්තමාන සිතියම් වර්ගය
@@ -3751,6 +3781,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ඔ
apps/frappe/frappe/www/login.html,Or login with,"නැත්නම්,"
DocType: Error Snapshot,Locals,වාසීන්
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},{1} මත {0} හරහා සන්නිවේදනය: {2}
+DocType: Event Producer,Event Producer Document Types,සිදුවීම් නිෂ්පාදක ලේඛන වර්ග
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර පෙරනිමි ඊමේල් ගිණුම සැකසුම> විද්යුත් තැපෑල> විද්යුත් තැපැල් ගිණුමෙන් සකසන්න
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,සමූහය තෝරන්න ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,උදා: (55 + 434) / 4 හෝ = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} අවශ්ය වේ
@@ -3781,9 +3813,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar සමමුහුර්ත හැඳුනුම
DocType: Prepared Report,Report Start Time,ආරම්භක කාලය වාර්තා කරන්න
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,අපනයන දත්ත
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,සමමුහුර්ත කිරීමේ තත්වය සමඟ පරිභෝජනය කරන සෑම සිදුවීමකම ලොගයක් සහ සමමුහුර්තකරණය අසමත් වුවහොත් නැවත සමමුහුර්ත බොත්තමක් පවත්වා ගනී.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,තීරු තෝරන්න
DocType: Translation,Source Text,මූලාශ්ර පෙළ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,මෙය පසුබිම් වාර්තාවකි. කරුණාකර සුදුසු පෙරහන් සකසා පසුව නව එකක් ජනනය කරන්න.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,විද්යුත් තැපැල් ගිණුම සැකසෙන්නේ නැත. සැකසුම> විද්යුත් තැපෑල> විද්යුත් තැපැල් ගිණුමෙන් කරුණාකර නව විද්යුත් තැපැල් ගිණුමක් සාදන්න
apps/frappe/frappe/www/login.py,Missing parameters for login,පිවිසුම සඳහා අතුරුදහන් පරාමිතීන්
DocType: Workflow State,folder-open,ෆෝල්ඩරය විවෘත
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","ඉදිරිපත් කළ පසු, ඉදිරිපත් කළ හැකි ලේඛන වෙනස් කළ නොහැක. ඒවා අවලංගු කර සංශෝධනය කළ හැකිය."
@@ -3859,6 +3893,7 @@ DocType: Event,Send an email reminder in the morning,උදෑසන ඊ-තැ
DocType: Blog Post,Published On,දා ප්රකාශයට පත්
DocType: Contact,Gender,ස්ත්රී පුරුෂ භාවය
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,අනිවාර්ය තොරතුරු අතුරුදහන්:
+DocType: Event Consumer,Event Subscriber,සිදුවීම් ග්රාහක
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,ඉල්ලීම් URL ලිපිනය පරීක්ෂා කරන්න
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,එක ඉල්ලීමක් කිරීමට ඉඩ රැසක් 200 ක් පමණක්
DocType: Footer Item,URL,URL එක
@@ -3871,6 +3906,7 @@ DocType: Auto Email Report,Half Yearly,අර්ධ වාර්ෂිකව
DocType: Communication,Marked As Spam,අයාචිත තැපැල් ලෙස සලකුණු
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ගොනුව url එක සමග යම් ගැටළුවක් වේ: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,ගස්
+DocType: Event Producer Document Type,Use Same Name,එකම නම භාවිතා කරන්න
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,ඔබ මෙම වාර්තාව මුද්රණය කිරීම සඳහා අවසර නැත
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,පරිශීලක අවසර
DocType: Workflow State,warning-sign,අනතුරු ඇඟවීමක්-ලකුණක්
@@ -3880,6 +3916,7 @@ DocType: Workflow State,User,පරිශීලක
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",බ්රව්සර් කවුළුවක මාතෘකාව ලෙස පෙන්වන්න "උපසර්ගය - මාතෘකාව"
DocType: Payment Gateway,Gateway Settings,ගේට්වේ සැකසුම්
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ලිපි වර්ගය පෙළ
+DocType: Event Sync Log,Event Sync Log,සිදුවීම් සමමුහුර්ත ලොගය
apps/frappe/frappe/handler.py,Logged Out,න් ලොගින් වී
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,තව...
DocType: System Settings,User can login using Email id or Mobile number,පරිශීලක විද්යුත් id හෝ ජංගම දුරකතන අංකය භාවිතා එහෙමවත්
@@ -3920,12 +3957,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,වී නැත
DocType: Workflow State,star,තරු
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,මධ්යස්ථානයක්
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,මෙය පරික්ෂා කළ හොත් ලේඛනවල සිදුවීම් නිෂ්පාදකයාගේ වෙබ් අඩවියේ ඇති නමට සමාන නමක් ඇත
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,කොමාවකින් වෙන් වටිනාකම්
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},වර්ගය ව්යවහාර මුදල් සඳහා උපරිම පළල පේළියේ 100px {0} වේ
apps/frappe/frappe/config/website.py,Content web page.,අන්තර්ගත වෙබ් පිටුව.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,නව කාර්යභාරය එකතු කරන්න
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,වෙබ් පිටුවට පිවිසෙන්න
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,නව පැවරුම
+DocType: Event Consumer Document Type,Approved,අනුමත
DocType: Google Contacts,Last Sync On,අවසාන සමමුහුර්ත කිරීම
DocType: Deleted Document,Deleted Document,මකා දමන ලදී ලේඛන
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,අපොයි! මොකක්හරි වැරද්දක් වෙලා
@@ -3977,7 +4016,6 @@ DocType: Communication,Communication Type,සන්නිවේදන වර්
DocType: DocField,Unique,අද්විතීය
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,අර්ධ වශයෙන් සාර්ථක වීම
DocType: Email Account,Service,සේවය
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,සැකසුම> පරිශීලකයා
DocType: File,File Name,ගොනුවේ නම
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),{0} {0} සඳහා සොයා ගත්තේ නැහැ ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -3989,11 +4027,10 @@ DocType: Calendar View,Calendar View,දින දසුන
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,සංස්කරණය කරන්න ආකෘතිය
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,සම්පූර්ණ ලියාපදිංචි
DocType: GCalendar Settings,Enable,සක්රිය කරන්න
-DocType: Google Maps Settings,Home Address,නිවසේ ලිපිනය
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),ඔබ සතුව ඇත්තේ එක් අතක වාර්තා 5000 දක්වා උඩුගත කළ හැකිය. (සමහර අවස්ථාවල දී අඩු විය හැක)
DocType: Report,"output in the form of `data = [columns, result]`","ප්රතිදානය `දත්ත = [තීරු, ප්රති result ලය]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,අදාළ ලේඛන වර්ග
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,පරිශීලක පැවරුම් සඳහා නීති සකසන්න.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,පරිශීලක පැවරුම් සඳහා නීති සකසන්න.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} සඳහා ප්රමාණවත් අවසර
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} සඳහා ප්රමාණවත් අවසර
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),වාර්තාව ගැලවීම නැත (දෝෂ සිටි)
diff --git a/frappe/translations/sk.csv b/frappe/translations/sk.csv
index 0703ba31ad..13d4eaacb3 100644
--- a/frappe/translations/sk.csv
+++ b/frappe/translations/sk.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Tato role aktualizuje uživatelská oprávnění pro uživatele
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Pemenovať: {0}
DocType: Workflow State,zoom-out,Zmenšiť
-DocType: Data Import Beta,Import Options,Možnosti importu
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Nemôžete otvoriť {0}, keď je otvorená inštancia"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabuľka: {0} nemôže byť prázdna
DocType: SMS Parameter,Parameter,Parametr
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Zru
DocType: DocType,Is Published Field,Je publikovaný Field
DocType: GCalendar Settings,GCalendar Settings,Nastavenia služby GCalendar
DocType: Email Group,Email Group,email Group
-apps/frappe/frappe/__init__.py,Only for {},Len pre {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalendár Google - Nepodarilo sa odstrániť udalosť {0} z Kalendára Google, kód chyby {1}."
DocType: Event,Pulled from Google Calendar,Spúšťané z Kalendára Google
DocType: Note,Seen By,Videné kým
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Pridať viacero
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nie je platný obrázok používateľa.
DocType: Energy Point Log,Reverted,vrátené
DocType: Success Action,First Success Message,Prvá správa o úspechu
+DocType: Document Type Mapping,Document Type Mapping,Mapovanie typu dokumentu
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Nie ako
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nesprávná hodnota: {0} musí být {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Změnit vlastnosti pole (skrýt, jen pro čtení, práva atd.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,"Stránka, ktorá konzumuje vaše udalosti."
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,oceniť
DocType: Notification Settings,Document Share,Zdieľanie dokumentov
DocType: Workflow State,lock,zámek
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,log
DocType: Workflow State,indent-right,indent-right
DocType: Has Role,Has Role,má role
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Čas v sekundách na zachovanie obrazu kódu QR na serveri. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Typ poľa {1} pre {2} nie je možné indexovať
DocType: Dashboard Chart,Timespan,Časové rozpätie
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web odkaz
DocType: Deleted Document,Restored,obnovená
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Chyba pri pripájaní k aplikácii QZ Tray ...
Aby ste mohli používať funkciu Raw Print, musíte mať nainštalovanú a spustenú aplikáciu QZ Tray.
Kliknutím sem prevezmete a nainštalujete zásobník QZ .
Kliknutím sem sa dozviete viac o surovej tlači ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,pred 1 minútou
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Na rozdíl od správce systému, role se sadou Oprávnění uživatele právo lze nastavit oprávnění pro ostatní uživatele pro daný typ dokumentu."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigurovať tému
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,nevidený
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Správca súborov
DocType: Website Settings,"HTML Header, Robots and Redirects","Hlavička HTML, roboty a presmerovania"
DocType: GCalendar Account,Refresh Token,obnoviť Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Nepodarilo sa pripojiť k stránke Producent udalostí. Po určitom čase skúste znova.
DocType: Address,Goa,goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Žiadne čakajúce alebo aktuálne úlohy pre tento web
DocType: Webhook,Doc Event,Event Doc
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Správca skriptov
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Žiadna aktivita
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikácie tretích strán
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Prvý používateľ bude System Manager (toto sa dá neskôr zmeniť).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Môžete skúsiť zmeniť filtre svojho prehľadu.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Dnes nie sú žiadne udalosti
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Nemôžete si dať body na preskúmanie
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType musí byť predložiteľný pre vybranú udalosť Doc
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Nemáte povoleno odesílat emaily související s tímto dokumentem
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Prosím vyberte aspon 1 stĺpec z {0} triediť / skupina
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Nie je povolené pre {0}: {1}. Obmedzené pole: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Spoločnosť nie je prepojená
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Zaškrtnite, ak sa testuje platby pomocou API Sandbox"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Nemáte povolenie vymazať štandardnú Tému webstránky
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Vytvorte si prvý {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Aktualiz
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Palubná snímka {0} s rovnakým poradím snímok už existuje
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Vypnout Report
DocType: Translation,Contributed Translation Doctype Name,Názov dodaného prekladu doctype
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavenie> Prispôsobiť formulár
DocType: PayPal Settings,Redirect To,Ak chcete presmerovať
DocType: Data Migration Mapping,Pull,SEM
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formát: frappe.query_reports['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Není povoleno
DocType: DocShare,Internal record of document shares,Interní záznam akcií dokumentů
DocType: Energy Point Settings,Review Levels,Skontrolujte úrovne
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavenie> Používateľské oprávnenia
DocType: Workflow State,Comment,Komentár
DocType: Data Migration Plan,Postprocess Method,Postprocess Metóda
DocType: DocType Action,Action Type,Typ akcie
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Zob
DocType: Workflow State,remove-circle,remove-circle
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Môj profil
DocType: Help Article,Beginner,začiatočník
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Táto akcia je povolená iba pre {}
DocType: Contact,Is Primary Contact,Je primárně Kontakt
+DocType: Event Consumer,Event Consumer,Udalosť spotrebiteľ
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript pro přidání do hlavičky stránky.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Pridať / aktualizovať
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Nie je dovolené tlačiť návrhy dokumentov
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Obnoviť na predvolené
DocType: Workflow,Transition Rules,Pravidla transakce
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,V ukážke sa zobrazuje iba prvých {0} riadkov
apps/frappe/frappe/core/doctype/report/report.js,Example:,Příklad:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,obmedzenia
DocType: Workflow,Defines workflow states and rules for a document.,Vymezuje jednotlivé stavy toků.
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Opakovat dokud
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Nový
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Najprv musíte vytvoriť tieto:
-DocType: Google Maps Settings,Google Maps Settings,Nastavenia služby Mapy Google
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Nahrávám...
DocType: DocField,Password,Heslo
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Systém je aktualizovaný. Prosím aktualizujte znovu po niekoľkých okamihoch
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,Palubný posúvač
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nesprávne heslo:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Nesprávne heslo:
DocType: Print Settings,Send document web view link in email,Odoslať dokument odkaz web zobraziť v e-mailu
+DocType: Event Consumer Document Type,Event Consumer Document Type,Typ spotrebiteľského dokladu udalosti
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Predchádzajúci
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Vyžadovať dôveryhodný certifikát
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,volume-down
DocType: Onboarding Slide,Help Links,Odkazy pomoci
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Prístup z tejto adresy IP nie je povolený
DocType: Notification Settings,Enable Email Notifications,Povoliť e-mailové upozornenia
+DocType: Document Type Field Mapping,Event Streaming,Streamovanie udalostí
apps/frappe/frappe/desk/reportview.py,No Tags,žiadne tagy
DocType: Email Account,Send Notification to,Odoslať oznámenia na
DocType: DocField,Collapsible,Skladacie
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Trie
apps/frappe/frappe/database/database.py,No conditions provided,Nie sú stanovené žiadne podmienky
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Polia osi Y
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Usporiadať pole {0} musí byť platné fieldname
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenašla sa žiadna predvolená šablóna adresy. Vytvorte nový z ponuky Nastavenia> Tlač a branding> Šablóna adresy.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Viac
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Vytvorte nový záznam
DocType: Contact,Sales Manager,Manažér predaja
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Premenovať
DocType: Print Format,Format Data,Formát dat
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} nie je platný formát správy. Formát správy by mal mať jeden z nasledujúcich {1}
DocType: List Filter,Filter Name,Názov filtra
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Jako
DocType: Assignment Rule,Automation,automatizácia
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,Obnovit heslo klíče
DocType: Dashboard Chart,All Time,Vždy
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Neplatný stav dokumentu pre {0}
DocType: Email Account,Enable Auto Reply,Povolit automatické odpovědi
+apps/frappe/frappe/desk/query_report.py,No data to export,Žiadne údaje na export
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nie Seen
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Nie je možné mapovať viac tlačiarní do jedného tlačového formátu.
DocType: Workflow State,zoom-in,Zväčšiť
@@ -841,6 +851,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Zmeniť po
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,najprv
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Aktualizácia prekladov
DocType: Error Snapshot,Exception,Výnimka
+DocType: Event Consumer,Event Consumer Document Types,Typy spotrebiteľských dokladov udalostí
DocType: Email Account,Use IMAP,Použiť IMAP
DocType: Activity Log,Activity Log,Aktivita Log
DocType: View Log,Viewed By,Zobrazený od
@@ -880,6 +891,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Nas
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Nakonfigurujte grafy
DocType: User,Last IP,Posledná IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Pridajte do e-mailu predmet
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Transakcie s chybou
DocType: Data Migration Connector,Data Migration Connector,Konektor pre migráciu údajov
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vrátený {1}
DocType: Email Account,Track Email Status,Sledovať stav e-mailu
@@ -911,6 +923,7 @@ DocType: Email Queue,Attachments,Přílohy
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Nemáte oprávnenie pre prístup k tejto dokumentu
DocType: Language,Language Name,Názov jazyka
DocType: Email Group Member,Email Group Member,E-mail člena skupiny
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,S používateľom nie je spojený žiadny e-mailový účet. Pridajte účet do sekcie Používateľ> Doručená pošta.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Váš účet bol uzamknutý a bude pokračovať po {0} sekundách
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Používateľské oprávnenia sa používajú na obmedzenie používateľov na konkrétne záznamy.
DocType: Notification,Value Changed,Hodnota změněna
@@ -1003,6 +1016,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Spomenúť tran
DocType: Help Article,Expert,odborník
DocType: Workflow State,circle-arrow-right,circle-arrow-right
DocType: Role Profile,Role Profile,Profil úloh
+DocType: Document Type Mapping,Remote Document Type,Typ vzdialeného dokumentu
apps/frappe/frappe/permissions.py,Document Type is not importable,Typ dokumentu nie je možné importovať
DocType: LDAP Settings,LDAP Server Url,LDAP server URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Nelze otevřít instanci když je otevřeno: {0}
@@ -1088,7 +1102,7 @@ DocType: Web Form,Allow Print,umožňujú tlač
DocType: Communication,Clicked,Kliknuté
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,nesledovať
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte predvolený e-mailový účet z časti Nastavenie> E-mail> E-mailový účet
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Zobrazujú sa iba prvé {0} riadky z {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,naplánované odosielať
DocType: DocType,Track Seen,track Videné
DocType: Dropbox Settings,File Backup,Zálohovanie súborov
@@ -1159,6 +1173,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vyb
DocType: Data Export,Filter List,Zoznam filtrov
DocType: Data Export,Excel,vynikať
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Konfigurácie udalostí
DocType: Email Account,Auto Reply Message,Správa automatickej odpovede
DocType: Data Migration Mapping,Condition,Podmienka
apps/frappe/frappe/utils/data.py,{0} hours ago,Pred {0} hodín
@@ -1218,9 +1233,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Vždy použi
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,"Prihláste sa, aby ste mohli pridať komentár"
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,začnite vkladať údaje pod týmto riadkom
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},zmenené hodnoty {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ID e-mailu musí byť jedinečné, e-mailový účet už existuje \ pre {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Na porovnanie použite> 5, <10 alebo = 324. Pre rozsahy použite 5:10 (pre hodnoty medzi 5 a 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Prispôsobiť ...
DocType: Print Format,Align Labels to the Right,Zarovnajte štítky vpravo
DocType: Assignment Rule,Disabled,Vypnuté
@@ -1269,8 +1283,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klávesové skratky
DocType: Post,Comments,Komentáre
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Potvrdiť
+DocType: Event Sync Log,Update Type,Typ aktualizácie
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Overovanie ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,zbaliť všetko
+DocType: Event Producer,Last Update,Posledná aktualizácia
apps/frappe/frappe/www/login.html,Forgot Password?,Zabudli ste heslo?
DocType: System Settings,yyyy-mm-dd,rrrr-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1311,6 +1327,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabuľka F
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Stĺpce založené na
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importuje sa {0} z {1}, {2}"
DocType: Workflow State,move,Stěhovat
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,"Nepodarilo sa vytvoriť spotrebiteľa udalosti alebo spotrebiteľa udalosti pre aktuálnu stránku, už je zaregistrovaný."
apps/frappe/frappe/model/document.py,Action Failed,akcie zlyhalo
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,pre Užívateľa
DocType: View Log,View log,Prezrieť záznam
@@ -1474,6 +1491,7 @@ DocType: DefaultValue,Key,Kľúč
DocType: Address,Contacts,Kontakty
DocType: System Settings,Setup Complete,Nastavenie dokončené
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Zpráva ze všech akcií dokumentů
+DocType: Event Consumer,Callback URL,URL spätného volania
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importovaná šablóna by mala byť typu .csv, .xlsx alebo .xls"
apps/frappe/frappe/www/update-password.html,New Password,Nové heslo
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} chýba
@@ -1540,7 +1558,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ús
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Nie je povolený v stave
DocType: Async Task,Async Task,Asynchrónne Task
DocType: Workflow State,picture,obrázok
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Hotovo
+DocType: Scheduled Job Log,Complete,Hotovo
DocType: DocType,Image Field,image Field
DocType: Print Format,Custom HTML Help,Vlastné HTML nápovedy
DocType: LDAP Settings,Default Role on Creation,Predvolená úloha pri vytvorení
@@ -1566,6 +1584,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pomoc s vyhľadávaním
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Registrovaný užívateľ, ale zakázaný"
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adresa musí byť prepojená so spoločnosťou. Pridajte riadok pre spoločnosť do tabuľky Odkazy nižšie.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Automatické opakovanie pre tento dokument bolo zakázané.
DocType: DocType,Hide Copy,Skrýt kopii
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Odebrat všechny role
@@ -1604,6 +1623,7 @@ DocType: Bulk Update,Field,Pole
DocType: Communication,Received,Prijaté
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger na overené metódy, ako je "before_insert", "after_update", etc (bude závisieť na zvolenom DOCTYPE)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},zmenená hodnota {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Nastavenie e-mailového účtu, zadajte heslo pre: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Pridávam rolu systémového správcu tomuto používateľovi keďže musí existovať minimálne jeden systémový správca
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,Celkové stránky
@@ -1611,7 +1631,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Pripojiť obrázok
DocType: Workflow State,list-alt,list-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Heslo bolo aktualizované
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavenie> Používateľské oprávnenia
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Kroky na overenie vašich prihlasovacích údajov
apps/frappe/frappe/utils/password.py,Password not found,Heslo nebol nájdený
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1627,8 +1646,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Nastavenia rozhra
DocType: Report,Query Report,Report dotazu
DocType: User,Set New Password,Nastaviť nové heslo
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nie je povolené pre {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S nie je platný formát správy. Správa formát by mal \ jedným z nasledujúcich spôsobov% s
DocType: Chat Message,Chat,Čet
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Nenašli sa žiadne dokumenty označené štítkom {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Mapovanie skupín LDAP
@@ -1664,7 +1681,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Zadajte h
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret
DocType: Tag Link,Document Title,Názov dokumentu
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Povinné)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pred {0} rokmi
DocType: Social Login Key,Social Login Provider,Poskytovateľ sociálneho prihlásenia
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Pridať ďalší komentár
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,V súbore sa nenašli žiadne údaje. Znova pripojte nový súbor s údajmi.
@@ -1712,6 +1728,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Zadajt
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 rok
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Smazat na trvalo: {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Stejný soubor již byl k záznamu přiložen
+DocType: Event Sync Log,Synced,synchronizované
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} nie je platný stav postupu. Aktualizujte svoj pracovný postup a skúste to znova.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,dal {0} bodov
DocType: Workflow State,wrench,wrench
@@ -1814,6 +1831,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,S
DocType: Web Form Field,Max Length,Maximálna dĺžka
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,map-marker
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Konfigurácia mapovania medzi dvoma doctypmi.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Vložit případ podpory
DocType: Event,Repeat this Event,Opakovat tuto událost
DocType: Address,Maintenance User,Údržba uživatele
@@ -1873,6 +1891,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Testovacia E-mailová adresa
DocType: Auto Repeat,Reference Document Type,Referenčná Typ dokumentu
DocType: ToDo,Sender,Odosielateľ
+DocType: Event Consumer,Incoming Change,Prichádzajúca zmena
DocType: Google Drive,Backup Folder Name,Názov záložnej zložky
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Chyba pri hodnotení hlásenia {0}. Opravte svoju šablónu.
DocType: GSuite Settings,Google Apps Script,Skript Google Apps
@@ -1935,9 +1954,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Názov n
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Kliknutím na odkaz nižšie žiadosť schválite
DocType: Workflow State,align-left,zarovnat-vlevo
DocType: Onboarding Slide,Action Settings,Nastavenia akcie
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavenie> Používateľ
DocType: User,Defaults,Predvolené
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Na porovnanie použite> 5, <10 alebo = 324. Pre rozsahy použite 5:10 (pre hodnoty medzi 5 a 10)."
DocType: Energy Point Log,Revert Of,Vrátiť späť
+DocType: Document Type Mapping,Field Mapping,Polné mapovanie
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Zlúčiť s existujúcim
DocType: User,Birth Date,Dátum narodenia
DocType: Communication Link,Link Title,Názov odkazu
@@ -1965,6 +1985,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Odkaz na značku
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Integrita reťazca
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,V teste
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Mena = [?] Zlomok napríklad pre 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Čiastočne úspešný
@@ -1974,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Mapovania skupín LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Príloha správy četu
DocType: LDAP Settings,Path to CA Certs File,Cesta do súboru CA Certs
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Ak má dokument na konci výrobcu a spotrebiteľa rôzne názvy polí, začiarknite toto a nastavte mapovanie"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Povoliť prečítať všetky možnosti odkazu
DocType: DocType,Database Engine,database Engine
@@ -2108,6 +2130,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Poznámka
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Error Report
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Exportovať údaje vo formáte CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Mapovanie polí typu dokumentu
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Nastavenie dokumentov globálneho vyhľadávania.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Aplikácie na autentifikáciu, ktoré môžete použiť, sú:"
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} už existuje. Vyberte iné meno
@@ -2183,7 +2206,6 @@ DocType: Workflow State,Upload,Nahrať
DocType: User Permission,Advanced Control,Rozšírené ovládanie
DocType: System Settings,Date Format,Formát dátumu
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Není publikováno
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenašla sa žiadna predvolená šablóna adresy. Vytvorte nový z ponuky Nastavenia> Tlač a branding> Šablóna adresy.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Akce toků jako např.: schválit, zrušit."
DocType: Data Import,Skip rows with errors,Preskočte riadky s chybami
DocType: Workflow State,flag,flag
@@ -2246,6 +2268,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Reprezentuje stavy povolené v jednom dokumentu a přiřazené role pro změnu stavu.
DocType: Data Migration Connector,Database Name,Názov databázy
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Obnoviť formulár
+DocType: Event Producer,Event Producer,Producent udalosti
DocType: DocField,Select,Vybrať
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Zobraziť celý denník
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Jednoduchý výraz Python, príklad: status == 'Open' a napíšte == 'Bug'"
@@ -2347,6 +2370,7 @@ DocType: DocType,User Cannot Search,Uživatel nemůže vyhledávat
DocType: Communication Link,Communication Link,Komunikačné spojenie
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Neplatný Výstupný formát
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Nemôže {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Prostredníctvom automatického opakovania {2} sa pre vás vytvoril opakujúci sa {0} {1}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Použiť toto pravidlo v prípade, že používateľ je vlastníkom"
DocType: Global Search Settings,Global Search Settings,Globálne nastavenia vyhľadávania
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Bude to vaše prihlasovacie ID
@@ -2364,12 +2388,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR kód na ove
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Pridať medzi úlohy
DocType: Footer Item,Company,Spoločnosť
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Priemer {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Úspešné transakcie
DocType: Scheduled Job Log,Scheduled,Plánované
DocType: User,Logout from all devices while changing Password,Odhlásenie zo všetkých zariadení pri zmene hesla
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Potvrďte Heslo
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Vyskytly se chyby
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,V nastaveniach Google zadajte ID klienta a tajomstvo klienta.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zavrieť
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",E-mailové ID musí byť jedinečné. E-mailový účet už existuje pre {0}
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Nie je možné zmeniť status dokumentu z 0 na 2
DocType: File,Attached To Field,Priložené k poľu
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Aktualizovat
@@ -2477,6 +2503,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Měsíc
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protipo: Pridať Reference: {{ reference_doctype }} {{ reference_name }} poslať referenčný dokument
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Uvádzajú sa iba používatelia zapojení do dokumentu
DocType: DocField,Fetch From,Vybrať z
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavenie> Prispôsobiť formulár
apps/frappe/frappe/modules/utils.py,App not found,Aplikace nenalezena
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Nie je možné vytvoriť {0} proti potomkovi dokumentu: {1}
DocType: Social Login Key,Social Login Key,Kľúč na sociálne prihlásenie
@@ -2488,7 +2515,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat sp
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Sociálny dom
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},"Vložiť Potom, čo nie je možné nastaviť ako {0}"
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Podiel {0} s
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Nastavenie e-mailové konto, zadajte svoje heslo pre:"
DocType: Workflow State,hand-up,hand-up
DocType: Blog Settings,Writers Introduction,Představení přispěvovatelů
DocType: Address,Phone,Telefón
@@ -2547,7 +2573,7 @@ DocType: Web Page,Insert Style,Vložit styl
DocType: Prepared Report,Error Message,Chybná správa
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nový názov Správa
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skryť víkendy
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Automaticky generuje opakujúce sa dokumenty.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Automaticky generuje opakujúce sa dokumenty.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-sign
@@ -2555,7 +2581,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Pomer {
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jak by se to měna naformátovat? Pokud není nastavena, použije výchozí nastavení systému"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Odoslať {0} dokumenty?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Musíte být přihlášen a mít roli systémového správce, pro přístup k zálohám."
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Chyba pri pripájaní k aplikácii QZ Tray ...
Aby ste mohli používať funkciu Raw Print, musíte mať nainštalovanú a spustenú aplikáciu QZ Tray.
Kliknutím sem prevezmete a nainštalujete zásobník QZ .
Kliknutím sem sa dozviete viac o surovej tlači ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Mapovanie tlačiarne
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Prosím před přiložením je třeba nejprve uložit.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Chcete zrušiť všetky súvisiace dokumenty?
@@ -2585,6 +2610,7 @@ DocType: Role Permission for Page and Report,Set Role For,Nastaviť role
DocType: GCalendar Account,The name that will appear in Google Calendar,"Názov, ktorý sa zobrazí v Kalendári Google"
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Priama miestnosť s {0} už existuje.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Obnovujem...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Skontrolujte hodnoty filtra nastavené pre graf Dashboard Chart: {}
DocType: Event,Starts on,Začína
DocType: System Settings,System Settings,Nastavenie systému
DocType: GCalendar Settings,Google API Credentials,Poverenia API Google
@@ -2610,6 +2636,7 @@ DocType: Workflow State,ok-sign,ok-sign
apps/frappe/frappe/config/settings.py,Deleted Documents,Odstránené dokumenty
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Formát CSV rozlišuje veľké a malé písmená
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Ikona plochy už existuje
+DocType: Event Consumer Document Type,Approval Status,Stav schválení
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Určite, v ktorých doménach sa majú snímky zobraziť. Ak nie je zadané nič, snímka sa predvolene zobrazuje vo všetkých doménach."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikát
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Pole {1} v riadku {2} nemôže byť v predvolenom nastavení skryté a povinné
@@ -2629,6 +2656,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,články pomocníka
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Typu:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Vaša platba zlyhala.
+DocType: Event Producer,Producer URL,Adresa URL výrobcu
DocType: Comment,Unshared,nerozdelený
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modul nenalezen
@@ -2640,6 +2668,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,priradenie Dokončené
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Hromadná Upraviť {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Stiahnite si správu
+apps/frappe/frappe/model/workflow.py,Workflow Status,Stav pracovného toku
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Neaktívny
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Zdroje grafu informačných panelov môže vytvárať iba správca
DocType: About Us Settings,Settings for the About Us Page,Nastavenie stránky O nás
@@ -2649,6 +2678,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Pri
DocType: Notification Settings,Energy Points,Energetické body
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Čas {0} musí byť vo formáte: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,napr pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Nepodarilo sa pripojiť nový opakujúci sa dokument. Ak chcete povoliť priloženie dokumentu v e-maile s automatickým opakovaním oznámenia, povoľte {1} v Nastaveniach tlače"
DocType: User,Generate Keys,Generovanie kľúčov
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Vaše údaje sa tým natrvalo odstránia.
DocType: DocType,View Settings,nastavenie zobrazenia
@@ -2700,6 +2730,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Vše
DocType: Email Queue,Recipient,Príjemca
DocType: Webhook,Webhook Security,Webhook Security
+DocType: Event Sync Log,Producer Document Name,Názov dokladu výrobcu
DocType: Communication,Has Attachment,má prílohu
DocType: Address,Sales User,Používateľ predaja
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and Drop nástroj k vytvoření a přizpůsobit tiskové formáty.
@@ -2735,6 +2766,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Dieťa tabuľky sú zobrazené ako mriežka v iných typoch DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Nastavenie Auto Emailu
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Stránka, na ktorú sa chcete prihlásiť na odber náročných udalostí."
DocType: Chat Profile,Message Preview,Ukážka správy
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Jedná sa o spoločný heslo top-10.
DocType: User,User Defaults,Výchozí nastavení uživatele
@@ -2767,6 +2799,7 @@ DocType: Dashboard Chart,Last Synced On,Posledná synchronizácia dňa
DocType: Comment,Comment Type,Typ komentára
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Uživatelé
+DocType: Document Type Mapping,Local Document Type,Typ miestneho dokumentu
DocType: Address,Odisha,Urísa
DocType: Report,Report Type,Typ výpisu
DocType: DocField,Signature,Podpis
@@ -2808,6 +2841,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} vlastné priradenie tejto úlohy: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Tvoja krajina
DocType: Assignment Rule Day,Sunday,Nedeľa
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Vedie Denník všetkých príloh, aktualizácií a vymazaní na webe Producent udalostí pre dokumenty, ktoré majú spotrebiteľov."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Názov poľa nemôže byť jedným z {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,poradie
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,V zobrazení mriežky
@@ -2955,7 +2989,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar a Komentáre
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Pokud změníte dokument po jeho zrušení a uložíte ho, dostane přiřazeno nové číslo. Toto je verze starého čísla."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Nie je povolené pripevňovať dokument {0}, povolte povolenie Tlačiť pre {0} v nastaveniach tlače"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet nie je nastavený. Vytvorte nový e-mailový účet z časti Nastavenia> E-mail> E-mailový účet
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Pozrite si dokument na {0}
DocType: Stripe Settings,Publishable Key,Kľúč na zverejnenie
DocType: Stripe Settings,Publishable Key,Kľúč na zverejnenie
@@ -3033,7 +3066,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Informace:
DocType: Custom Field,Permission Level,úroveň oprávnění
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nie je možné nastaviť Odoslanie, Zrušenie, Zmenu bez zápisu"
DocType: List View Setting,Disable Count,Zakázať počet
-DocType: Google Maps Settings,Client Key,Kľúč klienta
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,"Jste si jisti, že chcete smazat přílohu?"
apps/frappe/frappe/__init__.py,Thank you,Děkujeme Vám
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Sporenie
@@ -3159,6 +3191,7 @@ DocType: Workflow Document State,Only Allow Edit For,Je povolenou pouze upravova
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Zálohovanie na Disk Google.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Povinné polia: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tvoje meno
+DocType: Event Producer Document Type,Event Producer Document Type,Typ dokladu producent udalosti
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Úspešné pripojenie
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Palubná snímka typu snímky Pokračovať už existuje.
@@ -3230,6 +3263,7 @@ DocType: Address,Postal Code,poštové smerovacie číslo
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Relink Komunikácia
DocType: Translation,Contributed,Prispel
apps/frappe/frappe/config/customization.py,Form Customization,Prispôsobenie formulára
+DocType: Event Update Log,Event Update Log,Denník aktualizácie udalostí
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Žiadne aktívne relácie
DocType: Web Form,Route to Success Link,Cesta k úspešnému odkazu
DocType: Onboarding Slide Field,Right,V pravo
@@ -3256,7 +3290,7 @@ DocType: Website Settings,Chat Operators,Chat Operators
DocType: S3 Backup Settings,ca-central-1,ca-stredná-1
DocType: Contact Us Settings,Pincode,Pinkód
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Prosím ujistěte se, zda v souboru nejsou prázdné sloupce."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Sleduje míľniky v životnom cykle dokumentu, ak prechádza viacerými etapami."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Sleduje míľniky v životnom cykle dokumentu, ak prechádza viacerými etapami."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",Skontrolujte premenované súbory a nahradený kód v radičoch!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Uistite sa, že váš profil má e-mailovú adresu"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"V tomto formuláři máte neuložené změny. Prosím, uložte změny než budete pokračovat."
@@ -3283,7 +3317,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Uložiť tajné rozhranie API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Nie je možné odkazovať na zrušený dokument: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,"Nemožno upraviť štandardnú správu. Prosím, duplicitné a vytvoriť novú zostavu"
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Spoločnosť je povinná, pretože to je adresa vašej spoločnosti"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Napríklad: Ak chcete zahrnúť ID dokumentu, použite {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Vyberte sloupců tabulky pro {0}
DocType: Custom Field,Options Help,Možnosti nápovědy
@@ -3291,7 +3324,6 @@ DocType: Footer Item,Group Label,skupina Label
DocType: Kanban Board,Kanban Board,Kanban Stena
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontakty Google boli nakonfigurované.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Bude exportovaný 1 záznam
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,S používateľom nie je spojený žiadny e-mailový účet. Pridajte účet do sekcie Používateľ> Doručená pošta.
DocType: DocField,Report Hide,Skrýt výpis
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Stromové zobrazenie nie je k dispozícii pre {0}
DocType: DocType,Restrict To Domain,Obmedziť na doménu
@@ -3357,7 +3389,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Pole {1} typu {2} nemôže byť povinné
DocType: System Settings,In Days,V dňoch
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Chýbať
+DocType: Event Producer Document Type,Has Mapping,Má mapovanie
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Prosím upresnite
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Neplatná hodnota filtra
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,pomoc článok
DocType: Page,Page Name,Názov stránky
@@ -3465,7 +3499,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Formát tlače
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Prepnúť zobrazenie mriežky
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Prejdite na ďalší záznam
-DocType: System Settings,Time Format,Formát času
+DocType: Country,Time Format,Formát času
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Neplatná poverenia platobná brána
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Toto je súbor šablóny vygenerovaný iba s riadkami s nejakou chybou. Tento súbor by ste mali použiť na opravu a import.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Nastavit oprávnenia na typy dokumentov a role
@@ -3802,6 +3836,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Povoliť prihlásenie pomocou používateľského mena
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Zapnout report
DocType: DocField,Display Depends On,Zobrazenie závisí od
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pred {0} rokmi
DocType: Social Login Key,API Endpoint,Koncový bod rozhrania API
DocType: Web Page,Insert Code,Vložit kód
DocType: Data Migration Run,Current Mapping Type,Aktuálny typ mapovania
@@ -3855,6 +3890,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot
apps/frappe/frappe/www/login.html,Or login with,Alebo sa prihláste
DocType: Error Snapshot,Locals,Miestne
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Odovzdávané prostredníctvom {0} z {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Typy dokumentov producentov udalostí
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte predvolený e-mailový účet z časti Nastavenie> E-mail> E-mailový účet
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Vyberte skupinu podľa ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,napríklad (55 + 434) / 4 alebo = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} je potrebné
@@ -3887,9 +3924,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,ID synchronizácie GCalendar
DocType: Prepared Report,Report Start Time,Nahlásiť čas spustenia
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportovať údaje
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Udržuje záznam o každej spotrebovanej udalosti spolu so stavom synchronizácie a tlačidlom Resync v prípade zlyhania synchronizácie.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Vyberte stĺpce
DocType: Translation,Source Text,zdroj Text
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Toto je správa o pozadí. Nastavte príslušné filtre a potom vygenerujte nový.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet nie je nastavený. Vytvorte nový e-mailový účet z časti Nastavenia> E-mail> E-mailový účet
apps/frappe/frappe/www/login.py,Missing parameters for login,Chýbajúce parametre pre prihlásenie
DocType: Workflow State,folder-open,folder-open
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Po odoslaní nie je možné dokumenty, ktoré sa majú predložiť, zmeniť. Môžu byť zrušené a zmenené."
@@ -3969,6 +4008,7 @@ DocType: Blog Post,Published On,Zverejnené (kedy)
DocType: Contact,Gender,Pohlavie
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Povinné alebo chýbajúce údaje:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} vrátil vaše body k {1}
+DocType: Event Consumer,Event Subscriber,Odberateľ udalostí
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Skontrolovať URL požiadavky
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Iba 200 vložky povolené v jednej žiadosti
DocType: Footer Item,URL,URL
@@ -3981,6 +4021,7 @@ DocType: Auto Email Report,Half Yearly,Polročne
DocType: Communication,Marked As Spam,Označená ako spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Tam je nejaký problém s URL súboru: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,strom
+DocType: Event Producer Document Type,Use Same Name,Použite rovnaké meno
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Tie sú nie je dovolené tlačiť túto správu
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Uživatelská oprávnění
DocType: Workflow State,warning-sign,warning-sign
@@ -3990,6 +4031,7 @@ DocType: Workflow State,User,Uživatel
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Zobraziť titul v okne prehliadača ako "Predčíslie - nadpis"
DocType: Payment Gateway,Gateway Settings,Nastavenia brány
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text v type dokumentu
+DocType: Event Sync Log,Event Sync Log,Protokol synchronizácie udalostí
apps/frappe/frappe/handler.py,Logged Out,Odhlasený
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Viac ...
DocType: System Settings,User can login using Email id or Mobile number,Používateľ sa môže prihlásiť pomocou čísla e-mailu alebo mobilného čísla
@@ -4030,12 +4072,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nie V
DocType: Workflow State,star,hviezda
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Ak je toto začiarknuté, dokumenty budú mať rovnaký názov, aký majú na webe Event Event Producer"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,hodnoty oddělené čárkami
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0}
apps/frappe/frappe/config/website.py,Content web page.,Obsah www stránky.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Pridať novú rolu
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Navštívte webovú stránku
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nové priradenie
+DocType: Event Consumer Document Type,Approved,Schválený
DocType: Google Contacts,Last Sync On,Posledná synchronizácia zapnutá
DocType: Deleted Document,Deleted Document,Vymazaný dokument
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Jejda! Něco nevyšlo dobře :(
@@ -4088,7 +4132,6 @@ DocType: DocField,Unique,Jedinečný
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} ocenené dňa {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Čiastočný úspech
DocType: Email Account,Service,Služba
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavenie> Používateľ
DocType: File,File Name,Názov súboru
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Nenájdené {0} pre {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4100,11 +4143,10 @@ DocType: Calendar View,Calendar View,Zobrazenie kalendára
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Edit Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Dokončiť registráciu
DocType: GCalendar Settings,Enable,Zapnout
-DocType: Google Maps Settings,Home Address,Adresa bydliska
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Môžete nahrať najviac 5000 záznamov naraz. (niekedy i menej)
DocType: Report,"output in the form of `data = [columns, result]`","výstup vo forme `data = [stĺpce, výsledok ]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Uplatniteľné typy dokladov
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Nastavte pravidlá pre priradenia používateľov.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Nastavte pravidlá pre priradenia používateľov.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nedostatočné povolenie pre {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nedostatočné povolenie pre {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Výpis nebyl uložen (byly tam chyby)
diff --git a/frappe/translations/sl.csv b/frappe/translations/sl.csv
index 5043a1aeb2..d73ba9fbe8 100644
--- a/frappe/translations/sl.csv
+++ b/frappe/translations/sl.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Ta posodobitev vloga Uporabniške Dovoljenja za uporabnika
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Preimenovanje {0}
DocType: Workflow State,zoom-out,Pomanjšaj
-DocType: Data Import Beta,Import Options,Možnosti uvoza
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Ne morem odpreti {0}, ko je njen primer odprta"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabela {0} ne more biti prazen
DocType: SMS Parameter,Parameter,Parameter
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Prek
DocType: DocType,Is Published Field,Je Objavljeno Polje
DocType: GCalendar Settings,GCalendar Settings,Nastavitve GCalendar
DocType: Email Group,Email Group,Email Group
-apps/frappe/frappe/__init__.py,Only for {},Samo za {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Koledar - dogodka {0} iz Google Koledarja ni bilo mogoče izbrisati, koda napake {1}."
DocType: Event,Pulled from Google Calendar,Potegnjeno iz Google Koledarja
DocType: Note,Seen By,Videno od
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Dodaj več
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Ni veljavna uporabniška slika.
DocType: Energy Point Log,Reverted,Odpravljeno
DocType: Success Action,First Success Message,Prvo sporočilo o uspehu
+DocType: Document Type Mapping,Document Type Mapping,Kartiranje vrste dokumenta
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,"Ni všeč,"
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Nepravilno vrednost: {0} mora biti {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Lastnosti sprememba polj (hide, samo za branje, dovoljenje itd)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,"Spletno mesto, ki porablja vaše dogodke."
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Cenite
DocType: Notification Settings,Document Share,Skupna raba dokumentov
DocType: Workflow State,lock,zaklepanje
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,dnevnik
DocType: Workflow State,indent-right,alinea-desno
DocType: Has Role,Has Role,Ima vlogo
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,"Čas v sekundah, da obdržite QR kodo na strežniku. Min: 240"
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Vrsta polja {1} za {2} ni mogoče indeksirati
DocType: Dashboard Chart,Timespan,Časovni razpon
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Spletna povezava
DocType: Deleted Document,Restored,obnovljeni
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Napaka pri povezovanju z aplikacijo QZ Tray ...
Za uporabo funkcije Raw Print morate imeti nameščeno in zagnano aplikacijo QZ Tray.
Kliknite tukaj, če želite prenesti in namestiti QZ Tray .
Kliknite tukaj, če želite izvedeti več o surovem tisku ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Pred 1 minuto
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Poleg System Manager, vloge s Set User Permissions pravica lahko nastavite dovoljenja za druge uporabnike za to Document Type."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigurirajte temo
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,Unseen
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Upravitelj datotek
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML Header, roboti in preusmeritve"
DocType: GCalendar Account,Refresh Token,Osveži Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Povezava s spletnim mestom povzročitelja dogodkov ni uspela. Ponovno poskusite.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Za to spletno mesto ni čakajočih ali trenutnih opravil
DocType: Webhook,Doc Event,Doc dogodek
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Script Manager
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Brez aktivnosti
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikacije tretjih oseb
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Prvi uporabnik bo postala System Manager (lahko spremenite kasneje).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Poskusite lahko spremeniti filtre svojega poročila.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Danes ni dogodkov
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Ne morete sami dati ocene
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType mora biti predložen za izbrani dokument o dogodkih
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Niste dovoljeno pošiljati e-pošto v zvezi s tem dokumentom
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Izberite atleast 1 stolpec {0} razvrstiti / skupini
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Ni dovoljeno za {0}: {1}. Polje z omejitvami: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Podjetje ni povezano
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Izberite to, če se testiranje plačilo z API-jem Sandbox"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Niste dovoljeno izbrisati standardnem spletišču Theme
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Ustvari svoj prvi {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Posodabl
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Drsnik na krovu {0} z istim vrstnim redom diapozitivov že obstaja
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Onemogoči Poročilo
DocType: Translation,Contributed Translation Doctype Name,Ime prispevanega prevodnega dotipa
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavitev> Prilagodite obrazec
DocType: PayPal Settings,Redirect To,Preusmeritev Da
DocType: Data Migration Mapping,Pull,Potegni
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript obliko: frappe.query_reports ['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Ni dovoljeno
DocType: DocShare,Internal record of document shares,Notranji zapis delnic dokumentov
DocType: Energy Point Settings,Review Levels,Pregled ravni
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavitev> Uporabniška dovoljenja
DocType: Workflow State,Comment,Komentar
DocType: Data Migration Plan,Postprocess Method,Postprocesna metoda
DocType: DocType Action,Action Type,Vrsta akcije
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Pri
DocType: Workflow State,remove-circle,odstranite-krog
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Moj profil
DocType: Help Article,Beginner,začetnik
+apps/frappe/frappe/__init__.py,This action is only allowed for {},To dejanje je dovoljeno le za {}
DocType: Contact,Is Primary Contact,Je Primarni Kontakt
+DocType: Event Consumer,Event Consumer,Potrošnik dogodkov
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript priložiti k vzglavje strani.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Dodaj / posodobi
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Ni dovoljeno za tiskanje osnutkov dokumentov
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Ponastavi na privzete vrednosti
DocType: Workflow,Transition Rules,Prehodna pravila
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Prikažejo se samo prve {0} vrstice v predogledu
apps/frappe/frappe/core/doctype/report/report.js,Example:,Primer:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Omejitve
DocType: Workflow,Defines workflow states and rules for a document.,Definira države potek dela in pravila za dokument.
@@ -481,7 +487,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Ponovite Till
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Nov
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Najprej jih morate ustvariti:
-DocType: Google Maps Settings,Google Maps Settings,Nastavitve za Google Zemljevide
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Nalaganje ...
DocType: DocField,Password,Geslo
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Sistem se posodablja. Osvežite znova čez nekaj trenutkov
@@ -574,6 +579,7 @@ DocType: Onboarding Slide,Onboarding Slide,Drsnik na krovu
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Neveljavno geslo:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Neveljavno geslo:
DocType: Print Settings,Send document web view link in email,Pošlji dokument web pogled povezavo v e-pošti
+DocType: Event Consumer Document Type,Event Consumer Document Type,Vrsta dokumenta potrošnika dogodka
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Prejšnja
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Zahtevajte zaupanja vredno potrdilo
@@ -649,6 +655,7 @@ DocType: Workflow State,volume-down,Obseg navzdol
DocType: Onboarding Slide,Help Links,Povezave pomoči
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Dostop ni dovoljen s tega naslova IP
DocType: Notification Settings,Enable Email Notifications,Omogoči obvestila po e-pošti
+DocType: Document Type Field Mapping,Event Streaming,Pretakanje dogodkov
apps/frappe/frappe/desk/reportview.py,No Tags,Ni oznak
DocType: Email Account,Send Notification to,Pošlji obvestilo na
DocType: DocField,Collapsible,Zložljiva
@@ -665,11 +672,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Ni pogojev
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Polja Y osi
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Polje razvrstitve {0} mora biti veljaven fieldname
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Predloga ni bila privzeta. Ustvarite novo iz Nastavitve> Tiskanje in trženje blagovne znamke> Predloga naslova.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Več
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Ustvari nov zapis
DocType: Contact,Sales Manager,Vodja prodaje
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Preimenovanje
DocType: Print Format,Format Data,Oblika podatkov
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} ni veljavna oblika poročila. Oblika poročila mora imeti eno od naslednjih {1}
DocType: List Filter,Filter Name,Ime filtra
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Like
DocType: Assignment Rule,Automation,Avtomatizacija
@@ -688,6 +697,7 @@ DocType: User,Reset Password Key,Ponastavi geslo Key
DocType: Dashboard Chart,All Time,Ves čas
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Status nezakonite dokumentacije za {0}
DocType: Email Account,Enable Auto Reply,Omogoči Auto Odgovori
+apps/frappe/frappe/desk/query_report.py,No data to export,Ni podatkov za izvoz
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ni videl
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Več tiskalnikov ni mogoče preslikati v eno obliko tiskanja.
DocType: Workflow State,zoom-in,Povečaj
@@ -839,6 +849,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Spremeni u
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Najprej
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Posodobi prevode
DocType: Error Snapshot,Exception,Izjema
+DocType: Event Consumer,Event Consumer Document Types,Vrste potrošniških dokumentov dogodkov
DocType: Email Account,Use IMAP,Uporaba IMAP
DocType: Activity Log,Activity Log,Dnevnik aktivnosti
DocType: View Log,Viewed By,Gledano z
@@ -878,6 +889,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Nas
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurirajte grafikone
DocType: User,Last IP,Zadnji IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Prosimo, dodajte predmet vašega e-poštnega naslova"
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Napačne transakcije
DocType: Data Migration Connector,Data Migration Connector,Konektor za prenos podatkov
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vrnjeno {1}
DocType: Email Account,Track Email Status,Sledi stanju e-pošte
@@ -909,6 +921,7 @@ DocType: Email Queue,Attachments,Priponke
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Nimate dovoljenja za dostop do tega dokumenta
DocType: Language,Language Name,Jezik Ime
DocType: Email Group Member,Email Group Member,E-pošta član skupine
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Z uporabnikom ni nobenega e-poštnega računa. Dodajte račun pod Uporabnik> Prejeta pošta.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Vaš račun je bil zaklenjen in se bo nadaljeval po {0} sekundah
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Uporabniška dovoljenja se uporabljajo za omejitev uporabnikov na določene zapise.
DocType: Notification,Value Changed,Vrednost Spremenjeno
@@ -1000,6 +1013,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Omemba transakc
DocType: Help Article,Expert,Strokovnjak
DocType: Workflow State,circle-arrow-right,Krog-arrow-desno
DocType: Role Profile,Role Profile,Profil vloge
+DocType: Document Type Mapping,Remote Document Type,Oddaljena vrsta dokumenta
apps/frappe/frappe/permissions.py,Document Type is not importable,Vrsta dokumenta ni mogoče uvoziti
DocType: LDAP Settings,LDAP Server Url,LDAP Server URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Ne morem odpreti primerek ko {0} je njegova odprta
@@ -1085,7 +1099,7 @@ DocType: Web Form,Allow Print,Dovoli Natisni
DocType: Communication,Clicked,Kliknil
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Brez spremljanja
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},"Ne dovolite, da '{0}' {1}"
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavite privzeti e-poštni račun iz programa Setup> Email> Email account
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Prikazane so samo prve {0} vrstice od {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Načrtovano za pošiljanje
DocType: DocType,Track Seen,Track Seen
DocType: Dropbox Settings,File Backup,Varnostno kopiranje datotek
@@ -1155,6 +1169,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izb
DocType: Data Export,Filter List,Seznam filtrov
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Konfiguracije dogodkov
DocType: Email Account,Auto Reply Message,Auto Odgovori Sporočilo
DocType: Data Migration Mapping,Condition,Pogoj
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} urami
@@ -1214,9 +1229,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Vedno uporab
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Prijava za komentar
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Začnite vnašati podatke pod to črto
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},Spremenjene vrednosti {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","E-poštni ID mora biti edinstven, e-poštni račun že obstaja \ for {0}"
DocType: Workflow State,retweet,Retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za primerjavo uporabite> 5, <10 ali = 324. Za obsege uporabite 5:10 (za vrednosti med 5 in 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Prilagoditi...
DocType: Print Format,Align Labels to the Right,Poravnajte oznake na desno
DocType: Assignment Rule,Disabled,Onemogočeno
@@ -1265,8 +1279,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Bližnjice na tipkovnici
DocType: Post,Comments,Komentarji
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Potrdi
+DocType: Event Sync Log,Update Type,Vrsta posodobitve
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Preverjanje pristnosti ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Strniti vse
+DocType: Event Producer,Last Update,Zadnja posodobitev
apps/frappe/frappe/www/login.html,Forgot Password?,Ste pozabili geslo?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1307,6 +1323,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabela Pol
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,"Stolpci, ki temelji na"
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Uvoz {0} od {1}, {2}"
DocType: Workflow State,move,poteza
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Potrošnika dogodkov ali potrošnika dogodkov za trenutno spletno mesto ni že registrirano.
apps/frappe/frappe/model/document.py,Action Failed,Dejanje ni uspelo
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,za člane
DocType: View Log,View log,Ogled dnevnika
@@ -1470,6 +1487,7 @@ DocType: DefaultValue,Key,Ključ
DocType: Address,Contacts,Kontakti
DocType: System Settings,Setup Complete,Setup Complete
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Poročilo o vseh delnic dokumentov
+DocType: Event Consumer,Callback URL,URL za povratni klic
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Uvozna predloga mora biti v obliki .csv, .xlsx ali .xls"
apps/frappe/frappe/www/update-password.html,New Password,Novo geslo
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} manjka
@@ -1537,7 +1555,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,"Us
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; ni dovoljeno v stanju
DocType: Async Task,Async Task,Async Task
DocType: Workflow State,picture,slika
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Končaj
+DocType: Scheduled Job Log,Complete,Končaj
DocType: DocType,Image Field,Slika Field
DocType: Print Format,Custom HTML Help,Custom HTML Help
DocType: LDAP Settings,Default Role on Creation,Privzeta vloga pri ustvarjanju
@@ -1563,6 +1581,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Pomoč pri iskanju
DocType: Milestone,Milestone Tracker,Sledilnik mejnikov
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Registrirana, vendar je onemogočeno"
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Naslov mora biti povezan s podjetjem. V spodnjo tabelo povezav dodajte vrstico za podjetje.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Samodejna ponovitev tega dokumenta je onemogočena.
DocType: DocType,Hide Copy,Skrij kopijo
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Počistite vse vloge
@@ -1601,6 +1620,7 @@ DocType: Bulk Update,Field,field
DocType: Communication,Received,Prejetih
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger o veljavnih metod, kot so "before_insert", "after_update", itd (bo odvisna od DOCTYPE izbrano)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},spremenjena vrednost {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Nastavitev e-poštnega računa, vnesite geslo za: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Dodajanje sistemskega upravitelja, da tega uporabnika, saj mora biti atleast eno System Manager"
DocType: Chat Message,URLs,URL-ji
DocType: Data Migration Run,Total Pages,Skupaj strani
@@ -1608,7 +1628,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Priložite sliko
DocType: Workflow State,list-alt,seznam-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Geslo Posodobljeno
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavitev> Uporabniška dovoljenja
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Koraki za preverjanje prijave
apps/frappe/frappe/utils/password.py,Password not found,Geslo ni bilo mogoče najti
DocType: Webhook,Webhook Secret,Spletna skrivnost
@@ -1624,8 +1643,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Nastavitve Google
DocType: Report,Query Report,Poizvedba Poročilo
DocType: User,Set New Password,Nastavi novo geslo
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ni dovoljeno za {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s ni veljaven format izpisa. Format izpisa mora \ eno od naslednjih %s
DocType: Chat Message,Chat,Klepet
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},"Ni dokumentov, označenih z {0}"
DocType: LDAP Group Mapping,LDAP Group Mapping,Kartiranje skupine LDAP
@@ -1661,7 +1678,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Vnesite g
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Dostop Secret
DocType: Tag Link,Document Title,Naslov dokumenta
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obvezno)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} leto nazaj
DocType: Social Login Key,Social Login Provider,Ponudnik socialnih prijav
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Dodaj še en komentar
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,"V datoteki ni podatkov. Prosimo, ponovno vstavite novo datoteko s podatki."
@@ -1709,6 +1725,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Izberi
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 leto
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Trajno izbrisati {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Ista datoteka je že pritrjena na zapis
+DocType: Event Sync Log,Synced,Sinhronizirano
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ni veljaven delovni tok. Posodobite svoj potek dela in poskusite znova.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,dal {0} točk
DocType: Workflow State,wrench,Ključ
@@ -1811,6 +1828,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,Z
DocType: Web Form Field,Max Length,Max dolžina
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,Oznaka na zemljevidu
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Konfiguracija preslikave med dvema dotičnima vrstama.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Predloži vprašanje
DocType: Event,Repeat this Event,Ponovite ta dogodek
DocType: Address,Maintenance User,Vzdrževanje Uporabnik
@@ -1870,6 +1888,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Testna e-poštni naslov
DocType: Auto Repeat,Reference Document Type,Referenčni dokument Type
DocType: ToDo,Sender,Sender
+DocType: Event Consumer,Incoming Change,Dohodne spremembe
DocType: Google Drive,Backup Folder Name,Naziv mape za varnostno kopijo
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Napaka med ocenjevanjem obvestila {0}. Popravite svojo predlogo.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1932,9 +1951,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Novo ime
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Za potrditev zahteve kliknite spodnjo povezavo
DocType: Workflow State,align-left,poravnajte levo
DocType: Onboarding Slide,Action Settings,Nastavitve dejanj
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavitev> Uporabnik
DocType: User,Defaults,Privzete
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za primerjavo uporabite> 5, <10 ali = 324. Za obsege uporabite 5:10 (za vrednosti med 5 in 10)."
DocType: Energy Point Log,Revert Of,Vrnitev
+DocType: Document Type Mapping,Field Mapping,Kartiranje polja
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Združi z obstoječo
DocType: User,Birth Date,Datum rojstva
DocType: Communication Link,Link Title,Link Naslov
@@ -1962,6 +1982,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Povezava z oznakami
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Celovitost verige
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,V testu
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Valuta = [?] delov na primer 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Delno uspešen
@@ -1971,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Preslikave skupin LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Priloga za klepet sporočila
DocType: LDAP Settings,Path to CA Certs File,Pot do datoteke Certs CA
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Če ima dokument različna imena polj na koncu proizvajalca in potrošnika, preverite to in nastavite preslikavo"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Dovoli branje vseh možnosti povezave
DocType: DocType,Database Engine,Database Engine
@@ -2105,6 +2127,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Zapisek
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Prijavi napako
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Izvoz podatkov v obliki CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Kartiranje polja dokumenta
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Priprava dokumentov globalnega iskanja.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Aplikacije za preverjanje pristnosti, ki jih lahko uporabite, so:"
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} že obstaja. Izberite drugo ime
@@ -2180,7 +2203,6 @@ DocType: Workflow State,Upload,Pošiljanje
DocType: User Permission,Advanced Control,Napredni nadzor
DocType: System Settings,Date Format,Oblika datuma
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Ne Objavljeno
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Predloga ni bila privzeta. Ustvarite novo iz Nastavitve> Tiskanje in trženje blagovne znamke> Predloga naslova.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",Ukrepi za potek dela (npr odobri Cancel).
DocType: Data Import,Skip rows with errors,Preskoči vrstice z napakami
DocType: Workflow State,flag,zastava
@@ -2244,6 +2266,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Zastopa države dovoljene v enem dokumentu in vlogo, ki spremeni stanje."
DocType: Data Migration Connector,Database Name,Ime baze podatkov
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Osveži Form
+DocType: Event Producer,Event Producer,Producent dogodkov
DocType: DocField,Select,Izberite
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Ogled celotnega dnevnika
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Preprosta Python Expression, Primer: status == 'Open' in vnesite == 'Bug'"
@@ -2345,6 +2368,7 @@ DocType: DocType,User Cannot Search,Uporabnik ne more iskati
DocType: Communication Link,Communication Link,Komunikacijska povezava
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Neveljavna Output Format
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Ne morem {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Za vas je bil ustvarjen ponavljajoči se {0} {1} prek samodejnega ponovitve {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Uporabi to pravilo, če je uporabnik lastnik"
DocType: Global Search Settings,Global Search Settings,Nastavitve globalnega iskanja
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Bo vaša prijava ID
@@ -2362,12 +2386,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR koda za pre
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Dodaj Opravilo
DocType: Footer Item,Company,Podjetje
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Povprečje {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Uspešne transakcije
DocType: Scheduled Job Log,Scheduled,Načrtovano
DocType: User,Logout from all devices while changing Password,Odjava iz vseh naprav med spreminjanjem gesla
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,potrdi geslo
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Tam so bile napake
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Vnesite Google ID in Client Secret v Googlove nastavitve.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zapri
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","ID e-pošte mora biti edinstven, e-poštni račun že obstaja za {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Ne more spremeniti docstatus od 0 do 2
DocType: File,Attached To Field,Priloženo v polje
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Update
@@ -2475,6 +2501,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Mesec
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} poslati referenčni dokument
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Na seznamu so samo uporabniki, ki so vključeni v dokument"
DocType: DocField,Fetch From,Izberi
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavitev> Prilagodite obrazec
apps/frappe/frappe/modules/utils.py,App not found,App ni bilo mogoče najti
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Ne morem ustvariti {0} proti dokumenta otroka: {1}
DocType: Social Login Key,Social Login Key,Ključ za socialno prijavo
@@ -2486,7 +2513,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Klepeta
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Socialni dom
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Vstavite Potem ni mogoče nastaviti kot {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Share {0} z
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Nastavitev e-pošte računa vnesite geslo za:
DocType: Workflow State,hand-up,ročno navzgor
DocType: Blog Settings,Writers Introduction,Pisatelji Predstavitev
DocType: Address,Phone,Telefon
@@ -2545,7 +2571,7 @@ DocType: Web Page,Insert Style,Vstavite slog
DocType: Prepared Report,Error Message,Obvestilo o napaki
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ime novega poročila
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Skrij vikende
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Samodejno ustvari ponavljajoče se dokumente.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Samodejno ustvari ponavljajoče se dokumente.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Je
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-znak
@@ -2553,7 +2579,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vrednos
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako se oblikuje valuto? Če ni nastavljeno, bo uporabljena privzete sistemska nastavitev"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Pošljite {0} dokumente?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Morate biti prijavljeni in imajo System Manager vlogo, da bi lahko za dostop do varnostnih kopij."
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Napaka pri povezovanju z aplikacijo QZ Tray ...
Za uporabo funkcije Raw Print morate imeti nameščeno in zagnano aplikacijo QZ Tray.
Kliknite tukaj, če želite prenesti in namestiti QZ Tray .
Kliknite tukaj, če želite izvedeti več o surovem tisku ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Preslikava tiskalnika
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Prosimo, shranite pred namestitvijo."
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Ali želite preklicati vse povezane dokumente?
@@ -2583,6 +2608,7 @@ DocType: Role Permission for Page and Report,Set Role For,Nastavite Vloga Za
DocType: GCalendar Account,The name that will appear in Google Calendar,"Ime, ki se bo prikazalo v Google Koledarju"
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Neposredna soba s {0} že obstaja.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Osvežilni ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Preverite nastavljene vrednosti filtrov za grafikon nadzorne plošče: {}
DocType: Event,Starts on,Začne na
DocType: System Settings,System Settings,Sistemske nastavitve
DocType: GCalendar Settings,Google API Credentials,Google Credentials za API
@@ -2607,6 +2633,7 @@ DocType: Workflow State,ok-sign,ok-znak
apps/frappe/frappe/config/settings.py,Deleted Documents,Izbrisani Dokumenti
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Oblika CSV je občutljiva na velike in male črke
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon že obstaja
+DocType: Event Consumer Document Type,Approval Status,Stanje odobritve
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Določite, v katerih vseh domenah naj se prikazujejo diapozitivi. Če nič ni določeno, je diapozitiv privzeto prikazan v vseh domenah."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Podvajati
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Polja {1} v vrstici {2} brez privzetega ni mogoče skriti in obvezno
@@ -2626,6 +2653,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Članki za pomoč
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tip:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Vaše plačilo ni uspelo.
+DocType: Event Producer,Producer URL,URL proizvajalca
DocType: Comment,Unshared,več razveljaviti
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modul Not Found
@@ -2637,6 +2665,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Naloga Dokončana
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Bulk Uredi {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Prenos poročila
+apps/frappe/frappe/model/workflow.py,Workflow Status,Stanje delovnega toka
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Ni aktiven
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Samo skrbnik lahko ustvarja vire grafikonov nadzorne plošče
DocType: About Us Settings,Settings for the About Us Page,Nastavitve za O podjetju Page
@@ -2646,6 +2675,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Tis
DocType: Notification Settings,Energy Points,Energetske točke
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Čas {0} mora biti v obliki: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,npr pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Novega ponavljajočega se dokumenta ni bilo mogoče priložiti. Če želite omogočiti pritrditev dokumenta v e-poštno sporočilo za samodejno ponavljanje, v nastavitvah tiskanja omogočite {1}"
DocType: User,Generate Keys,Ustvari ključe
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,To bo trajno odstranilo vaše podatke.
DocType: DocType,View Settings,Ogled nastavitev
@@ -2697,6 +2727,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Vsi
DocType: Email Queue,Recipient,Prejemnik
DocType: Webhook,Webhook Security,Varnost spletnega kuka
+DocType: Event Sync Log,Producer Document Name,Ime dokumenta proizvajalca
DocType: Communication,Has Attachment,Ima prilogo
DocType: Address,Sales User,Prodaja Uporabnik
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Povleci in spusti orodje za gradnjo in prilagodite Print formatih.
@@ -2732,6 +2763,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Otroške tabele so prikazane kot mreža v drugih DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Nastavitev Auto Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Dol
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Spletno mesto, na katerega se želite naročiti za uživanje dogodkov."
DocType: Chat Profile,Message Preview,Predogled sporočila
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,To je top-10 skupna geslo.
DocType: User,User Defaults,Uporabniške Privzeto
@@ -2764,6 +2796,7 @@ DocType: Dashboard Chart,Last Synced On,Nazadnje sinhronizirano
DocType: Comment,Comment Type,Tip komentarja
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Uporabniki
+DocType: Document Type Mapping,Local Document Type,Vrsta lokalnega dokumenta
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Poročilo Type
DocType: DocField,Signature,Podpis
@@ -2806,6 +2839,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},To nalogo je samo dodelila {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Tvoja država
DocType: Assignment Rule Day,Sunday,Nedelja
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Vodi dnevnik vseh vstavkov, posodobitev in izbrisov na spletnem mestu Event Producer za dokumente, ki imajo potrošnike."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Ime polja ne sme biti eno od {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Lestvica
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,V pogledu mreže
@@ -2953,7 +2987,6 @@ DocType: Web Page,Sidebar and Comments,Stranska vrstica in Komentarji
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Ko se spremeni dokument po Cancel in shranite ga bo dobil novo številko, ki je različica staro številko."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Ni dovoljeno pritrditi {0} dokumenta, prosimo, omogočite Dovoli tiskanje za {0} v nastavitvah tiskanja"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-poštnega računa ni nastavljeno. Ustvarite nov e-poštni račun iz programa Setup> Email> Email account
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Oglejte si dokument na {0}
DocType: Stripe Settings,Publishable Key,za objavo Key
DocType: Stripe Settings,Publishable Key,za objavo Key
@@ -3031,7 +3064,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Dovoljenje Raven
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: Ne morem nastaviti brez možnosti zapisa
DocType: List View Setting,Disable Count,Onemogoči štetje
-DocType: Google Maps Settings,Client Key,KljuÄŤni kljuÄŤ
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,"Ali ste prepričani, da želite izbrisati prilogo?"
apps/frappe/frappe/__init__.py,Thank you,Hvala
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Shranjevanje
@@ -3158,6 +3190,7 @@ DocType: Workflow Document State,Only Allow Edit For,"Dovoli samo uredi,"
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Varnostno kopiranje v Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Zahtevano polje: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tvoje ime
+DocType: Event Producer Document Type,Event Producer Document Type,Vrsta dokumenta proizvajalca dogodka
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Uspeh povezave
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Drsni trak tipa Drsnik Nadaljuj že obstaja.
@@ -3228,6 +3261,7 @@ DocType: Address,Postal Code,Poštna številka
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,povezali Sporočilo
DocType: Translation,Contributed,Prispeval
apps/frappe/frappe/config/customization.py,Form Customization,Prilagoditev obrazca
+DocType: Event Update Log,Event Update Log,Dnevnik posodobitev dogodkov
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ni aktivnih sej
DocType: Web Form,Route to Success Link,Povezava poti do uspeha
DocType: Onboarding Slide Field,Right,Prav
@@ -3254,7 +3288,7 @@ DocType: Website Settings,Chat Operators,Klepetalnice
DocType: S3 Backup Settings,ca-central-1,ca-centralna-1
DocType: Contact Us Settings,Pincode,Kodi PIN
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Prosimo, poskrbite, da ne obstajajo prazne stolpce v datoteki."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Spremlja mejnike v življenjskem ciklu dokumenta, če je v več fazah."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Spremlja mejnike v življenjskem ciklu dokumenta, če je v več fazah."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Preimenovane datoteke in zamenjana koda v regulatorjih, prosim preverite!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Poskrbite, da ima vaš profil e-poštni naslov"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Imate neshranjene spremembe v tem dokumentu. Prosimo, shranite, preden nadaljujete."
@@ -3281,7 +3315,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Shrani API Secret:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Ne more povezati preklicano dokument: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,ne more urejati standardno poročilo. Prosimo podvajati in ustvariti novo poročilo
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Podjetje je obvezna, saj je vaše podjetje naslov"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Na primer: Če želite vključiti ID dokumenta, uporabite {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Izberite stolpcev za {0}
DocType: Custom Field,Options Help,Možnosti Pomoč
@@ -3289,7 +3322,6 @@ DocType: Footer Item,Group Label,Oznaka skupine
DocType: Kanban Board,Kanban Board,Kanban svet
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Stiki so konfigurirani.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Izvozi se 1 zapis
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Z uporabnikom ni nobenega e-poštnega računa. Dodajte račun pod Uporabnik> Prejeta pošta.
DocType: DocField,Report Hide,Poročilo Skrij
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Drevesni pogled ni na voljo za {0}
DocType: DocType,Restrict To Domain,Omeji Za domeno
@@ -3355,7 +3387,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Polje {1} vrste {2} ne more biti obvezno
DocType: System Settings,In Days,V dneh
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Zgrešiti
+DocType: Event Producer Document Type,Has Mapping,Ima preslikavo
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,"Prosimo, navedite"
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Neveljavna vrednost filtra
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Članek za pomoč
DocType: Page,Page Name,Page Name
@@ -3463,7 +3497,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Print Format
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Toggle Mrežni pogled
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Pojdi na naslednji zapis
-DocType: System Settings,Time Format,Časovna oblika
+DocType: Country,Time Format,Časovna oblika
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Neveljavni podatki za plačilo gateway
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"To je datoteka predloge, ustvarjena samo z vrsticami, ki imajo nekaj napake. To datoteko uporabite za popravek in uvoz."
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Nastavljanje dovoljenj o vrstah dokumentov in vloge
@@ -3788,6 +3822,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Dovoli prijavo z uporabniškim imenom
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Omogoči poročilo
DocType: DocField,Display Depends On,Prikaz je odvisen od
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} leto nazaj
DocType: Social Login Key,API Endpoint,Končna točka API
DocType: Web Page,Insert Code,Vstavite Code
DocType: Data Migration Run,Current Mapping Type,Trenutna vrsta kartiranja
@@ -3841,6 +3876,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Pot
apps/frappe/frappe/www/login.html,Or login with,Ali pa se prijavite z
DocType: Error Snapshot,Locals,Domačini
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Posredujejo preko {0} od {1} {2}
+DocType: Event Producer,Event Producer Document Types,Vrste dokumentov proizvajalca dogodkov
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavite privzeti račun e-pošte iz programa Setup> Email> Email account
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Izberi skupino po ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ali = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} je zahtevano
@@ -3873,9 +3910,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,ID za GCalendar Sync
DocType: Prepared Report,Report Start Time,Čas začetka poročila
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Izvoz podatkov
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Vodi dnevnik vsakega porabljenega dogodka skupaj s statusom sinhronizacije in gumbom Resync, če sinhronizacija ne uspe."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Izberite stolpce
DocType: Translation,Source Text,vir Besedilo
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"To je poročilo o ozadju. Prosimo, nastavite ustrezne filtre in ustvarite novega."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-poštnega računa ni nastavljeno. Ustvarite nov e-poštni račun iz programa Setup> Email> Email account
apps/frappe/frappe/www/login.py,Missing parameters for login,Manjkajoče parametri za prijavo
DocType: Workflow State,folder-open,Mapa-odpri
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Po predložitvi dokumentov, ki jih je mogoče predložiti, ni mogoče spremeniti. Preklicati in spremeniti jih je mogoče le."
@@ -3955,6 +3994,7 @@ DocType: Blog Post,Published On,Objavljeno On
DocType: Contact,Gender,Spol
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Obvezno Informacije manjka:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} je vaše točke vrnil na {1}
+DocType: Event Consumer,Event Subscriber,Naročnik na dogodek
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,URL za zahtevo za preverjanje
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Le 200 vložki dovoljeno v eno zahtevo
DocType: Footer Item,URL,URL
@@ -3967,6 +4007,7 @@ DocType: Auto Email Report,Half Yearly,Polletni
DocType: Communication,Marked As Spam,Označena kot neželena
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Obstaja nekaj problem z datoteko url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,drevo
+DocType: Event Producer Document Type,Use Same Name,Uporabi isto ime
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,"Nimate dovoljenja, da se poročilo natisne"
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Uporabniške Dovoljenja
DocType: Workflow State,warning-sign,opozorilni znak
@@ -3976,6 +4017,7 @@ DocType: Workflow State,User,Uporabnik
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Prikaži naslov v oknu brskalnika kot "predpone - naslov"
DocType: Payment Gateway,Gateway Settings,Nastavitve vrat
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Besedilo v vrsti dokumenta
+DocType: Event Sync Log,Event Sync Log,Dnevnik sinhronizacije dogodkov
apps/frappe/frappe/handler.py,Logged Out,odjavljeni
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Več ...
DocType: System Settings,User can login using Email id or Mobile number,Uporabnik lahko prijavite preko e-id ali mobilne številke
@@ -4016,12 +4058,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ne v
DocType: Workflow State,star,zvezda
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Vozlišče
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Če je to potrjeno, bodo imeli dokumenti isto ime, kot jih imajo na spletnem mestu prireditelja dogodkov"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,vrednosti ločene z vejicami
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max širina za tip valuta je 100px v vrstici {0}
apps/frappe/frappe/config/website.py,Content web page.,Vsebina spletne strani.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Dodaj novo vlogo
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Obiščite spletno stran
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nova dodelitev
+DocType: Event Consumer Document Type,Approved,Odobreno
DocType: Google Contacts,Last Sync On,Zadnja sinhronizacija je vključena
DocType: Deleted Document,Deleted Document,izbrisan dokument
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Nekaj je šlo narobe
@@ -4074,7 +4118,6 @@ DocType: DocField,Unique,Unique
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} cenjen {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Delni uspeh
DocType: Email Account,Service,Storitev
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavitev> Uporabnik
DocType: File,File Name,Ime datoteke
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Ni našel {0} za {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4086,11 +4129,10 @@ DocType: Calendar View,Calendar View,Pogled koledarja
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Uredi Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Končaj prijavo
DocType: GCalendar Settings,Enable,Omogoči
-DocType: Google Maps Settings,Home Address,Domači naslov
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Naložiš lahko stanuje 5000 zapisov v eni potezi. (sme biti manjša v nekaterih primerih)
DocType: Report,"output in the form of `data = [columns, result]`","izhod v obliki `podatki = [stolpci, rezultat]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Veljavne vrste dokumentov
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Nastavite pravila za uporabniške naloge.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Nastavite pravila za uporabniške naloge.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nezadostno dovoljenje za {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Nezadostno dovoljenje za {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Poročilo ni bil shranjen (tam so bile napake)
diff --git a/frappe/translations/sq.csv b/frappe/translations/sq.csv
index d494a8b14b..b8c9f39ff6 100644
--- a/frappe/translations/sq.csv
+++ b/frappe/translations/sq.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Ky rol përditësimin Drejtat e përdoruesit për një përdorues
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Rename {0}
DocType: Workflow State,zoom-out,zoom-out
-DocType: Data Import Beta,Import Options,Opsionet e importit
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Nuk mund të hapni {0}, kur shembull i saj është i hapur"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabela {0} nuk mund të jetë bosh
DocType: SMS Parameter,Parameter,Parametër
@@ -83,16 +82,18 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Anul
DocType: DocType,Is Published Field,Publikohet Fusha
DocType: GCalendar Settings,GCalendar Settings,Cilësimet e GCalendar
DocType: Email Group,Email Group,Email Group
-apps/frappe/frappe/__init__.py,Only for {},Vetëm për {}
+apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalendari Google - Nuk mund të fshihet Ngjarja {0} nga Kalendari Google, kodi i gabimit {1}."
DocType: Event,Pulled from Google Calendar,U tërhoq nga Kalendari Google
DocType: Note,Seen By,E pare nga
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Shto Multiple
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Nuk është një përdorues i vlefshëm.
DocType: Energy Point Log,Reverted,rikthyer
DocType: Success Action,First Success Message,Mesazhi i parë i suksesit
+DocType: Document Type Mapping,Document Type Mapping,Hartimi i llojit të dokumentit
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Jo si
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Vlera e pasaktë: {0} duhet të jetë {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Pronat ndryshim në terren (të fshehur, Readonly, leje, etj)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Faqja që po konsumon ngjarjet tuaja.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,vlerësoj
DocType: Notification Settings,Document Share,Ndarja e dokumenteve
DocType: Workflow State,lock,bllokohet
@@ -112,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Identifikohu
DocType: Workflow State,indent-right,indent djathtë
DocType: Has Role,Has Role,ka rolin
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Sinkronizo sërish
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Koha në sekonda për të ruajtur imazhin e kodit QR në server. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} për {2} nuk mund të indeksohet
DocType: Dashboard Chart,Timespan,Intervalin kohor
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web Lidhje
DocType: Deleted Document,Restored,Restored
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Gabim në lidhjen me aplikacionin e tabaka QZ ...
Ju duhet të keni të instaluar dhe ekzekutuar aplikacionin QZ Tray, për të përdorur veçorinë Raw Print.
Klikoni këtu për të Shkarkuar dhe instaluar QZ Tray .
Klikoni këtu për të mësuar më shumë rreth Printimit të Lartë ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minutë më parë
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Përveç Sistemit Menaxher, rolet me grup Drejtat User drejtë mund të rregulloni lejet për përdoruesit e tjerë për këtë Document Type."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfiguro Temën
@@ -186,6 +189,7 @@ DocType: Email Account,UNSEEN,i padukshëm
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,File Manager
DocType: Website Settings,"HTML Header, Robots and Redirects","Header HTML, Robots dhe Redirects"
DocType: GCalendar Account,Refresh Token,Refresh Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Nuk arriti të lidhej në faqen e Prodhuesit të Ngjarjes. Provoni përsëri pas ca kohësh.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Asnjë vend pune në pritje ose aktual për këtë sit
DocType: Webhook,Doc Event,Ngjarja e Doc
@@ -207,6 +211,7 @@ DocType: Server Script,Script Manager,Menaxher i Skenarit
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Asnjë veprimtari
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Aplikacionet e palës së tretë
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Përdorues i parë do të bëhet i Sistemit Menaxher (ju mund ta ndryshoni këtë më vonë).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Mund të provoni të ndryshoni filtrat e raportit tuaj.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Asnjë Ngjarje Sot
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Ju nuk mund t'i jepni vetes pikat e rishikimit
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType duhet të jetë Submittable për Eventin e zgjedhur të Doc
@@ -236,6 +241,7 @@ apps/frappe/frappe/config/desk.py,Files,Files
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permissions get applied on Users based on what Roles they are assigned.,Drejtat merrni aplikuar për përdoruesit bazuar në atë që Rolet ata janë të caktuar.
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Ju nuk jeni i lejuar për të dërguar email në lidhje me këtë dokument
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Ju lutemi të zgjedhur atleast 1 kolonë nga {0} të lloj / grup
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Ndërmarrja nuk është e lidhur
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Kontrolloni këtë në qoftë se ju jeni të testimit pagesën tuaj duke përdorur API Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Ju nuk jeni i lejuar për të fshirë një standard Website Theme
DocType: Data Import,Log Details,Detaje të Regjistrit
@@ -254,7 +260,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Përditësimi i {0}
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disable Raport
DocType: Translation,Contributed Translation Doctype Name,Kontribuar Emri Doctype i Përkthimit
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Rregulloje formularin
DocType: PayPal Settings,Redirect To,Redirect To
DocType: Data Migration Mapping,Pull,Tërhiqe
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formati: frappe.query_reports ['REPORTNAME'] = {}
@@ -266,6 +271,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Nuk lejohet
DocType: DocShare,Internal record of document shares,Rekord i brendshëm i aksioneve dokument
DocType: Energy Point Settings,Review Levels,Nivelet e Rishikimit
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Lejet e Përdoruesit
DocType: Workflow State,Comment,Koment
DocType: Data Migration Plan,Postprocess Method,Metoda e Postprocesit
DocType: DocType Action,Action Type,Lloji i veprimit
@@ -315,7 +321,9 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Tre
DocType: Workflow State,remove-circle,hiqni-rrethi
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profili im
DocType: Help Article,Beginner,fillestar
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Ky veprim lejohet vetëm për {}
DocType: Contact,Is Primary Contact,Është Kontaktoni Primar
+DocType: Event Consumer,Event Consumer,Konsumatori i Ngjarjes
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript për të append në seksionin kokë të faqes.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Shto / Përditëso
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Nuk lejohet për të shtypur draft dokumentet
@@ -465,7 +473,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Përsëriteni Deri
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,I ri
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Ju duhet të krijoni këto të parat:
-DocType: Google Maps Settings,Google Maps Settings,Cilësimet e Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Duke u ngarkuar ...
DocType: DocField,Password,Fjalëkalim
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Sistemi juaj është duke u përditësuar. Ju lutemi të rifreskoni përsëri pas disa çaste
@@ -557,6 +564,7 @@ DocType: Onboarding Slide,Onboarding Slide,Rrëshqitje në bord
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Fjalëkalim i pavlefshëm:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Fjalëkalim i pavlefshëm:
DocType: Print Settings,Send document web view link in email,Dërgo dokument view web lidhjen në email
+DocType: Event Consumer Document Type,Event Consumer Document Type,Lloji i Dokumentit të Konsumatorit të Ngjarjes
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,I mëparshëm
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Kërkoni një Certifikatë të Besuar
@@ -630,6 +638,7 @@ DocType: Workflow State,volume-down,vëllimit-down
DocType: Onboarding Slide,Help Links,Ndihmë Lidhje
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Qasja nuk lejohet nga kjo Adresë IP
DocType: Notification Settings,Enable Email Notifications,Aktivizo njoftimet me postë elektronike
+DocType: Document Type Field Mapping,Event Streaming,Transmetimi i ngjarjeve
apps/frappe/frappe/desk/reportview.py,No Tags,Asnjë Tags
DocType: Email Account,Send Notification to,Dërgo Njoftimi për
DocType: DocField,Collapsible,Që paloset
@@ -646,6 +655,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Nuk ka kushte të parashikuara
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y Fushat e Boshtit
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Renditur fushë {0} duhet të jetë një fieldname vlefshme
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nuk u gjet asnjë shabllon i adresës së paracaktuar. Ju lutemi krijoni një të re nga Setup> Printimi dhe Markimi> Modeli i Adresave.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Më shumë
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Krijoni një rekord të ri
DocType: Contact,Sales Manager,Sales Manager
@@ -669,6 +679,7 @@ DocType: User,Reset Password Key,Fjalëkalimi Key Reset
DocType: Dashboard Chart,All Time,Gjithe kohes
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Statusi i dokumentit ilegal për {0}
DocType: Email Account,Enable Auto Reply,Aktivizo Auto Përgjigje
+apps/frappe/frappe/desk/query_report.py,No data to export,Nuk ka të dhëna për eksport
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Nuk shihet
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Nuk mund të ketë shumë printerë të skeduar në një format të vetëm printimi.
DocType: Workflow State,zoom-in,zoom-në
@@ -818,6 +829,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Ndrysho p
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,i parë
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Përditësimi i përkthimeve
DocType: Error Snapshot,Exception,Përjashtim
+DocType: Event Consumer,Event Consumer Document Types,Llojet e Dokumentit të Konsumatorit të Ngjarjeve
DocType: Email Account,Use IMAP,Përdorimi IMAP
DocType: Activity Log,Activity Log,Aktiviteti Identifikohu
DocType: View Log,Viewed By,Shikuar nga
@@ -856,6 +868,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Set
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfiguro tabelat
DocType: User,Last IP,IP e fundit
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Ju lutemi shtoni një subjekt në email-in tuaj
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Transaksionet e gabuara
DocType: Data Migration Connector,Data Migration Connector,Lidhësi i Migracionit të të Dhënave
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} u kthye {1}
DocType: Email Account,Track Email Status,Gjurmoni statusin e emailit
@@ -885,6 +898,7 @@ DocType: Email Queue,Attachments,Attachments
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Ju nuk keni leje për të hyrë në këtë dokument
DocType: Language,Language Name,Gjuha Emri
DocType: Email Group Member,Email Group Member,Dërgojani Group Anëtar
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Asnjë llogari emaili e lidhur me Përdoruesin. Ju lutemi shtoni një llogari nën Përdoruesin> Kutia e postës elektronike.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Llogaria juaj është bllokuar dhe do të rifillojë pas {0} sekondave
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Lejet e Përdoruesit përdoren për të kufizuar përdoruesit në regjistra të caktuar.
DocType: Notification,Value Changed,Vlera Ndryshuar
@@ -977,6 +991,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Përmend transa
DocType: Help Article,Expert,ekspert
DocType: Workflow State,circle-arrow-right,rrethi-shigjetë djathtë
DocType: Role Profile,Role Profile,Profili i roleve
+DocType: Document Type Mapping,Remote Document Type,Lloji i dokumentit në distancë
apps/frappe/frappe/permissions.py,Document Type is not importable,Lloji i dokumentit nuk është i importueshëm
DocType: LDAP Settings,LDAP Server Url,LDAP Server Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Nuk mund të hapni shembull kur e saj {0} është e hapur
@@ -1061,7 +1076,6 @@ DocType: Web Form,Allow Print,Lejo Printo
DocType: Communication,Clicked,Klikuar
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nuk ka leje për të '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ju lutemi konfiguroni llogarinë e paracaktuar të postës elektronike nga Konfigurimi> Email> Llogari Email
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planifikuar për të dërguar
DocType: DocType,Track Seen,Track Parë
DocType: Dropbox Settings,File Backup,Rikthim i dokumentit
@@ -1131,6 +1145,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,zgj
DocType: Data Export,Filter List,Lista e filtrave
DocType: Data Export,Excel,shquhem
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Konfigurimet e ngjarjeve
DocType: Email Account,Auto Reply Message,Auto Përgjigju Mesazh
DocType: Data Migration Mapping,Condition,Kusht
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} orëve
@@ -1189,9 +1204,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Gjithmonë p
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Identifikohuni për të komentuar
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Filloni hedhjen e të dhënave nën këtë linjë
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},vlerat e ndryshuar {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Email ID duhet të jetë unik, Llogaria e Email tashmë ekziston \ for {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Për krahasim, përdorni> 5, <10 ose = 324. Për vargjet, përdorni 5:10 (për vlerat midis 5 dhe 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Customize ...
DocType: Print Format,Align Labels to the Right,Align Etiketa në të Drejtën
DocType: Assignment Rule,Disabled,I paaftë
@@ -1235,8 +1249,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Shkurtoret e tastierës
DocType: Post,Comments,Komente
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Konfirmoj
+DocType: Event Sync Log,Update Type,Lloji i azhurnimit
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Saktëson ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Collapse All
+DocType: Event Producer,Last Update,Përditësimi i fundit
apps/frappe/frappe/www/login.html,Forgot Password?,Keni harruar fjalëkalimin?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1277,6 +1293,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabela Fie
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Columns bazuar në
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importimi {0} nga {1}, {2}"
DocType: Workflow State,move,veprim
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Nuk arriti të krijojë një Konsumator të Ngjarjes ose një Konsumator të Ngjarjeve për sitin aktual është regjistruar tashmë.
apps/frappe/frappe/model/document.py,Action Failed,Veprimi dështoi
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,për anëtarët e
DocType: View Log,View log,Shikoni log
@@ -1437,6 +1454,7 @@ DocType: DefaultValue,Key,Kyç
DocType: Address,Contacts,Kontaktet
DocType: System Settings,Setup Complete,Setup Complete
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Raporti i të gjitha aksioneve dokument
+DocType: Event Consumer,Callback URL,URL e kthimit të thirrjeve
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Modeli i importit duhet të jetë i llojit .csv, .xlsx ose .xls"
apps/frappe/frappe/www/update-password.html,New Password,New Fjalëkalimi
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} zhdukur
@@ -1503,7 +1521,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Suk
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; nuk lejohet në gjendje
DocType: Async Task,Async Task,Asinkron Task
DocType: Workflow State,picture,foto
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,I plotë
+DocType: Scheduled Job Log,Complete,I plotë
DocType: DocType,Image Field,Image Field
DocType: Print Format,Custom HTML Help,Custom HTML Ndihmë
DocType: LDAP Settings,Default Role on Creation,Roli i paracaktuar në krijim
@@ -1528,6 +1546,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Të ndihmojë në Kërko
DocType: Milestone,Milestone Tracker,Gjurmues i Milestoneve
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Regjistruar por me aftësi të kufizuara
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adresa duhet të lidhet me një kompani. Ju lutemi shtoni një rresht për kompaninë në tabelën e Lidhjeve më poshtë.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Përsëritja automatike për këtë dokument është çaktivizuar.
DocType: DocType,Hide Copy,Fshih Copy
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Qartë të gjitha rolet
@@ -1570,7 +1589,6 @@ DocType: Data Migration Run,Total Pages,Totali i faqeve
DocType: DocField,Attach Image,Bashkangjit Image
DocType: Workflow State,list-alt,list-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Fjalëkalimi Përditësuar
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Lejet e Përdoruesit
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Hapat për të verifikuar hyrjen tënde
apps/frappe/frappe/utils/password.py,Password not found,Password nuk u gjet
DocType: Webhook,Webhook Secret,Sekreti i faqes në internet
@@ -1585,8 +1603,6 @@ DocType: Website Settings,Brand,Markë
apps/frappe/frappe/config/integrations.py,Google API Settings.,Cilësimet e Google API.
DocType: Report,Query Report,Query Raport
DocType: User,Set New Password,Set fjalëkalim të ri
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S nuk është një format i vlefshëm raport. Raporti format duhet të \ një nga këto% s
DocType: Chat Message,Chat,Bisedë
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Nuk u gjet asnjë dokument i etiketuar me {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Hartimi i grupit LDAP
@@ -1620,7 +1636,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Fusni fja
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Qasja Sekret
DocType: Tag Link,Document Title,Titulli i dokumentit
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Detyrueshëm)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vit më parë
DocType: Social Login Key,Social Login Provider,Ofruesi i Identifikimit Social
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Shto Një tjetër koment
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Nuk gjenden të dhëna në skedar. Ju lutemi ri-vendosni skedarin e ri me të dhëna.
@@ -1666,6 +1681,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Zgjidh
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 vit
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Përgjithmonë fshini {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Same skeda është tashmë i lidhur me rekord
+DocType: Event Sync Log,Synced,synced
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} nuk është një shtet i vlefshëm i fluksit të punës. Ju lutemi update Workflow tuaj dhe provoni përsëri.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,dha {0} pikë
DocType: Workflow State,wrench,pikëllim
@@ -1764,6 +1780,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,D
DocType: Web Form Field,Max Length,Max Length
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,harta-shënues
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Konfigurimi i hartës midis dy doktrinave.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Submit një çështje
DocType: Event,Repeat this Event,Përsëriteni këtë ngjarje
DocType: Address,Maintenance User,Mirëmbajtja User
@@ -1821,6 +1838,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test Adresa Email
DocType: Auto Repeat,Reference Document Type,Referenca Document Type
DocType: ToDo,Sender,Dërgues
+DocType: Event Consumer,Incoming Change,Ndryshimi i ardhshëm
DocType: Google Drive,Backup Folder Name,Emri i dosjes rezervë
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Gabim gjatë vlerësimit të Njoftimit {0}. Ju lutemi rregulloni shabllonin tuaj.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1881,9 +1899,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Emri i f
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klikoni në lidhjen më poshtë për të aprovuar kërkesën
DocType: Workflow State,align-left,lidhur-la
DocType: Onboarding Slide,Action Settings,Cilësimet e veprimit
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Konfigurimi> Përdoruesi
DocType: User,Defaults,Defaults
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Për krahasim, përdorni> 5, <10 ose = 324. Për vargjet, përdorni 5:10 (për vlerat midis 5 dhe 10)."
DocType: Energy Point Log,Revert Of,Kthehu
+DocType: Document Type Mapping,Field Mapping,Hartimi në terren
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Përziej me ekzistuese
DocType: User,Birth Date,Data e lindjes
DocType: Communication Link,Link Title,Link Titulli
@@ -1911,6 +1930,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Lidhje Tag
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Integriteti i Zinxhirit
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Në Test
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Valute = [?] Nenfish per p.sh. 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Pjesërisht i suksesshëm
@@ -1920,6 +1940,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Pamjet e Grupit LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Mesazhi i mesazhit të bisedës
DocType: LDAP Settings,Path to CA Certs File,Shtegu te Dosja e Certifikatave të CA
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Nëse dokumenti ka emra të ndryshëm të fushës në fund të Prodhuesit dhe Konsumatorit, kontrolloni këtë dhe vendosni Harta"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Lejo leximin e të gjitha opsioneve të lidhjes
DocType: DocType,Database Engine,Baza e të dhënave Engine
@@ -2053,6 +2074,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Shënim
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Gabim Raport
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Të dhënat e eksportit në formatin CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Hartimi në terren i llojit të dokumentit
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Vendosja e dokumenteve të Kërkimit Global.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplikacionet e autentifikimit që mund të përdorni janë:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} tashmë ekziston. Zgjidh një emër tjetër
@@ -2127,7 +2149,6 @@ DocType: Workflow State,Upload,Ngarko
DocType: User Permission,Advanced Control,Kontroll i avancuar
DocType: System Settings,Date Format,Data Format
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Jo Publikuar
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nuk u gjet asnjë shabllon i adresës së paracaktuar. Ju lutemi krijoni një të re nga Setup> Printimi dhe Markimi> Modeli i Adresave.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Veprimet për workflow (p.sh. miratojë, Cancel)."
DocType: Data Import,Skip rows with errors,Kalo rreshta me gabime
DocType: Workflow State,flag,flamur
@@ -2189,6 +2210,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Përfaqëson shtetet të lejuara në një dokument dhe rolin e caktuar për të ndryshuar gjendjen.
DocType: Data Migration Connector,Database Name,Emri i bazës së të dhënave
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Refresh Form
+DocType: Event Producer,Event Producer,Prodhuesi i ngjarjeve
DocType: DocField,Select,Përzgjedh
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Shikoni Regjistrin e plotë
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Shprehje e thjeshtë e Pythonit, Shembull: statusi == 'Hapni' dhe shkruani == 'Bug'"
@@ -2302,6 +2324,7 @@ DocType: GSuite Settings,Google Credentials,Kredenciale të Google
apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR Kodi për Verifikimin e Identifikimit
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Add to duhet të bëni
DocType: Footer Item,Company,Kompani
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Transaksione të suksesshme
DocType: Scheduled Job Log,Scheduled,Planifikuar
DocType: User,Logout from all devices while changing Password,Dilni nga të gjitha pajisjet duke ndryshuar Fjalëkalimin
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifikoni fjalëkalimin
@@ -2412,6 +2435,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Muaj
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Shto Reference: {{ reference_doctype }} {{ reference_name }} për të dërguar referencë dokument
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Vetëm përdoruesit e përfshirë në dokument janë të listuara
DocType: DocField,Fetch From,Fetch From
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Rregulloje formularin
apps/frappe/frappe/modules/utils.py,App not found,App nuk u gjet
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},nuk mund të krijojë një {0} kundër një dokument të fëmijëve: {1}
DocType: Social Login Key,Social Login Key,Çelësi i identifikimit shoqëror
@@ -2423,7 +2447,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat me
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Shtëpi sociale
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Fut Pas nuk mund të vendosen si {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Share {0} me
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Email Setup Llogaria ju lutemi shkruani fjalëkalimin tuaj për:
DocType: Workflow State,hand-up,dorë-up
DocType: Blog Settings,Writers Introduction,Shkrimtarëve Hyrje
DocType: Address,Phone,Telefon
@@ -2482,7 +2505,7 @@ DocType: Web Page,Insert Style,Fut Style
DocType: Prepared Report,Error Message,Mesazh gabimi
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Raporti emri i ri
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Fshih fundjavat
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Prodhon automatikisht dokumente të përsëritura.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Prodhon automatikisht dokumente të përsëritura.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Është
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-shenjë
@@ -2490,7 +2513,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Vlera p
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Si duhet të jetë i formatuar këtë monedhë? Nëse nuk është caktuar, do të përdorë standarte të sistemit"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Dërgoni {0} dokumente?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Ju duhet të keni hyrë brenda dhe kanë Sistemit Menaxher rol për të të jetë në gjendje për të hyrë në backups.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Gabim në lidhjen me aplikacionin e tabaka QZ ...
Ju duhet të keni të instaluar dhe ekzekutuar aplikacionin QZ Tray, për të përdorur veçorinë Raw Print.
Klikoni këtu për të Shkarkuar dhe instaluar QZ Tray .
Klikoni këtu për të mësuar më shumë rreth Printimit të Lartë ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Hartimi i Printerit
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Ju lutem kurseni para bashkëngjitur.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,A doni të anuloni të gjitha dokumentet e lidhura?
@@ -2520,6 +2542,7 @@ DocType: Role Permission for Page and Report,Set Role For,Set rol për
DocType: GCalendar Account,The name that will appear in Google Calendar,Emri që do të shfaqet në Google Calendar
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Dhoma e drejtpërdrejtë me {0} tashmë ekziston.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Freskuese ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Ju lutemi kontrolloni vlerat e filtrit të përcaktuara për Tabelën e Panelit: {}
DocType: Event,Starts on,Fillon më
DocType: System Settings,System Settings,Parametrat e Sistemit
DocType: GCalendar Settings,Google API Credentials,Kredencialet API të Google
@@ -2544,6 +2567,7 @@ DocType: Workflow State,ok-sign,ok-shenjë
apps/frappe/frappe/config/settings.py,Deleted Documents,Dokumentet Deleted
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Formati CSV është i ndjeshëm nga rasti
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon tashmë ekziston
+DocType: Event Consumer Document Type,Approval Status,Miratimi Statusi
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Specifikoni se në çfarë duhet të shfaqen të gjitha sferat. Nëse asgjë nuk specifikohet, rrëshqitja shfaqet në të gjitha fushat si parazgjedhje."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,I kopjuar
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Fusha {1} në rresht {2} nuk mund të fshihet dhe e detyrueshme pa paracaktuar
@@ -2563,6 +2587,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Ndihmë Artikuj
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Lloji:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,pagesa juaj ka dështuar.
+DocType: Event Producer,Producer URL,URL e prodhuesit
DocType: Comment,Unshared,i pandarë
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Moduli Not Found
@@ -2574,6 +2599,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Caktimi Kompletuar
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Bulk Ndrysho {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Shkarko Raportin
+apps/frappe/frappe/model/workflow.py,Workflow Status,Statusi i rrjedhës së punës
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Jo aktiv
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Vetëm Administratori lejohet të krijojë Burimet e Grafikut të Panelit
DocType: About Us Settings,Settings for the About Us Page,Cilësimet për ne në lidhje me Page
@@ -2582,6 +2608,7 @@ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Shirit
apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Printoni Dërguar në printer!
DocType: Notification Settings,Energy Points,Pikat e energjisë
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,p.sh. pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Nuk arriti të bashkëngjitni një dokument të ri përsëritës. Për të mundësuar bashkëngjitjen e dokumentit në emailin e njoftimit për përsëritje automatike, aktivizoni {1} në Cilësimet Print"
DocType: User,Generate Keys,Krijo çelësat
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Kjo do të heqë përgjithmonë të dhënat tuaja.
DocType: DocType,View Settings,Shiko Cilësimet
@@ -2632,6 +2659,7 @@ DocType: User Social Login,User Social Login,Identifikimi i përdoruesit
DocType: Contact,All,Të gjithë
DocType: Email Queue,Recipient,Marrës
DocType: Webhook,Webhook Security,Siguria e faqes në internet
+DocType: Event Sync Log,Producer Document Name,Emri i Dokumentit të Prodhuesit
DocType: Communication,Has Attachment,ka Attachment
DocType: Address,Sales User,Sales i përdoruesit
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and Drop mjet për ndërtimin dhe përshtatjen e formate të shtypura.
@@ -2665,6 +2693,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Tabelat e fëmijëve tregohen si Rrjet në Dokumentet e tjera
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Setup Auto Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Poshte
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Faqja në të cilën dëshironi të abonoheni për konsumimin e ngjarjeve.
DocType: Chat Profile,Message Preview,Pamja e mesazhit
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Kjo është një fjalëkalim top-10 të përbashkët.
DocType: User,User Defaults,Defaults User
@@ -2697,6 +2726,7 @@ DocType: Dashboard Chart,Last Synced On,E fundit e Sinkronizuar
DocType: Comment,Comment Type,Koment Type
DocType: OAuth Client,OAuth Client,OAuth Client
DocType: Assignment Rule,Users,Përdoruesit
+DocType: Document Type Mapping,Local Document Type,Lloji i dokumentit lokal
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Raporti Type
DocType: DocField,Signature,Nënshkrim
@@ -2737,6 +2767,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} vetë e caktoi këtë detyrë: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Vendi juaj
DocType: Assignment Rule Day,Sunday,E diel
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Mban një regjistër të të gjitha futjeve, azhurnimeve dhe fshirjeve në faqen e Prodhuesit të Ngjarjeve për dokumentet që kanë konsumatorët."
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Renditja
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,In Grid View
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,Nuk ka më aktivitet
@@ -2879,7 +2910,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar dhe Komente
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kur ju të ndryshojë një dokument pasi Cancel dhe për të shpëtuar atë, ajo do të merrni një numër të ri që është një version i numrit të vjetër."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Nuk lejohet të bashkëngjitni dokumentin {0}, ju lutemi, aktivizoni Lejo Printimin Për {0} në Cilësimet e Printimit"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Llogaria e postës elektronike nuk është konfiguruar. Ju lutemi krijoni një llogari të re Email nga Konfigurimi> Email> Llogaria e postës elektronike
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Shikoni dokumentin në {0}
DocType: Stripe Settings,Publishable Key,Key publikueshme
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Filloni Importin
@@ -2954,7 +2984,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Niveli leje
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nuk mund të vënë Submit, Cancel Ndreqni pa Shkruani"
DocType: List View Setting,Disable Count,Disaktivizo numërimin
-DocType: Google Maps Settings,Client Key,Klienti Çelësi
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,A jeni i sigurt se doni të fshini shtojcën?
apps/frappe/frappe/__init__.py,Thank you,Faleminderit
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Kursim
@@ -3078,6 +3107,7 @@ DocType: Workflow Document State,Only Allow Edit For,Vetëm Lejo Edit për
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Rikthim në Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},fushë detyrueshme: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Emri juaj
+DocType: Event Producer Document Type,Event Producer Document Type,Lloji i dokumentit të prodhuesit të ngjarjeve
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Suksesi i Lidhjes
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Një rrëshqitje në bord e llojit të rrëshqitjes Vazhdoni tashmë ekziston.
@@ -3147,6 +3177,7 @@ DocType: Address,Postal Code,Kodi Postar
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Komunikimi relink
DocType: Translation,Contributed,kontribuar
apps/frappe/frappe/config/customization.py,Form Customization,Përshtatja e formës
+DocType: Event Update Log,Event Update Log,Log-azhurnimi i ngjarjeve
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nuk ka Sesione Aktive
DocType: Web Form,Route to Success Link,Rruga drejt suksesit Link
DocType: Onboarding Slide Field,Right,E drejtë
@@ -3172,7 +3203,7 @@ DocType: Website Settings,Chat Operators,Operatorët Chat
DocType: S3 Backup Settings,ca-central-1,Ca-qendror-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Ju lutem sigurohuni që nuk ka kolona bosh në dosjen.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Gjurmon piketa në ciklin e jetës së një dokumenti nëse ai kalon në faza të shumta.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Gjurmon piketa në ciklin e jetës së një dokumenti nëse ai kalon në faza të shumta.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Skedarët e riemërtuar dhe kodin e zëvendësuar në kontrollorët, ju lutemi kontrolloni!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Ju lutemi të siguruar që profili juaj ka një adresë e-mail
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Ju keni ndryshime të paruajtura në këtë formë. Ju lutem kurseni para se të vazhdoni.
@@ -3197,7 +3228,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Save Secret API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Nuk mund të lidhni dokumentin anuluar: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Nuk mund të modifikoni një raport standarde. Ju lutemi të kopjuar dhe për të krijuar një raport të ri
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Kompania është e detyrueshme, pasi ajo është adresa kompania juaj"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Për shembull: Nëse ju doni të përfshijë ID dokument, përdorni {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Zgjidhni Tabela Kolumne për {0}
DocType: Custom Field,Options Help,Options Ndihmë
@@ -3205,7 +3235,6 @@ DocType: Footer Item,Group Label,Grupi Label
DocType: Kanban Board,Kanban Board,kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontaktet e Google janë konfiguruar.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekord do të eksportohet
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Asnjë llogari emaili e lidhur me Përdoruesin. Ju lutemi shtoni një llogari nën Përdoruesin> Kutia e postës elektronike.
DocType: DocField,Report Hide,Raporti Hide
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},view Tree nuk është në dispozicion për {0}
DocType: DocType,Restrict To Domain,Kufizo në domenin
@@ -3268,7 +3297,9 @@ DocType: DocField,Fold,Dele
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,Standard Format Print nuk mund të rifreskohet
DocType: System Settings,In Days,Në ditë
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,humbas
+DocType: Event Producer Document Type,Has Mapping,Ka hartografinë
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Ju lutem specifikoni
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Vlera e pavlefshme e filtrit
DocType: Comment,Bot,bot
DocType: Help Article,Help Article,Ndihmë Neni
DocType: Page,Page Name,Faqe
@@ -3374,7 +3405,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Format Print
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Ndrysho Pamjen e Rrjetit
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Shko te rekordi tjetër
-DocType: System Settings,Time Format,Formati i kohës
+DocType: Country,Time Format,Formati i kohës
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Pavlefshme kredencialet e pagesës portë
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ky është skedari i skedarit i gjeneruar vetëm me rreshta që kanë ndonjë gabim. Ju duhet ta përdorni këtë skedar për korrigjim dhe importim.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Drejtat vendosur në llojet e dokumenteve dhe Rolet
@@ -3684,6 +3715,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Lejo hyrjen duke përdorur emrin e përdoruesit
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Aktivizo Raportin
DocType: DocField,Display Depends On,Display varet
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vit më parë
DocType: Social Login Key,API Endpoint,API Endpoint
DocType: Web Page,Insert Code,Fut Kodi
DocType: Data Migration Run,Current Mapping Type,Lloji aktual i hartës
@@ -3736,6 +3768,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Kon
apps/frappe/frappe/www/login.html,Or login with,Ose kyçuni me
DocType: Error Snapshot,Locals,Vendorët
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Komunikohet nëpërmjet {0} në {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Llojet e dokumenteve të prodhuesit të ngjarjeve
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ju lutemi konfiguroni llogarinë e paracaktuar të postës elektronike nga Konfigurimi> Email> Llogaria e postës elektronike
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Zgjidh Grupin Nga ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,p.sh. (55 + 434) / 4 ose = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} është e nevojshme
@@ -3767,9 +3801,11 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Raporti i fillimit të kohës
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Të dhënat e eksportit
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Mban një regjistër të çdo ngjarje të konsumuar së bashku me statusin e sinkronizimit dhe një buton Resync në rast se sinkronizimi dështon.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Zgjidhni Kolumne
DocType: Translation,Source Text,burimi Text
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Ky është një raport sfond. Ju lutemi vendosni filtrat e duhur dhe më pas gjeneroni një të ri.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Llogaria e postës elektronike nuk është konfiguruar. Ju lutemi krijoni një llogari të re Email nga Konfigurimi> Email> Llogaria e postës elektronike
apps/frappe/frappe/www/login.py,Missing parameters for login,Parametrat mungon për hyrje me emrin përkatës
DocType: Workflow State,folder-open,folder-hapur
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Pasi të paraqiten, dokumentet e paraqitura nuk mund të ndryshohen. Ato mund të anulohen dhe ndryshohen."
@@ -3848,6 +3884,7 @@ DocType: Blog Post,Published On,Publikuar On
DocType: Contact,Gender,Gjini
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Detyrueshme Informacione të humbur:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} riktheu pikët tuaja në {1}
+DocType: Event Consumer,Event Subscriber,Pajtimtar i ngjarjes
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Kontrolloni URL-në e Kërkesës
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Vetëm 200 fut lejohet në një kërkesë
DocType: Footer Item,URL,URL
@@ -3860,6 +3897,7 @@ DocType: Auto Email Report,Half Yearly,Gjysma vjetore
DocType: Communication,Marked As Spam,Shënuar si spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Ka disa probleme me file url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,pemë
+DocType: Event Producer Document Type,Use Same Name,Përdorni të njëjtin emër
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Ju nuk jeni i lejuar për të shtypur këtë raport
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Drejtat e përdoruesit
DocType: Workflow State,warning-sign,paralajmërim-shenjë
@@ -3869,6 +3907,7 @@ DocType: Workflow State,User,Përdorues
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Shfaq Titulli në dritare të shfletuesit si "Parashtesa - Titulli"
DocType: Payment Gateway,Gateway Settings,Cilësimet e portës
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Teksti në llojin e dokumentit
+DocType: Event Sync Log,Event Sync Log,Regjistri i sinkronizimit të ngjarjeve
apps/frappe/frappe/handler.py,Logged Out,Identifikuar Out
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Më shumë ...
DocType: System Settings,User can login using Email id or Mobile number,Përdoruesi mund të identifikoheni duke përdorur Email ID ose numrin e celularit
@@ -3908,12 +3947,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Jo Në
DocType: Workflow State,star,yll
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Qendër
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Nëse kontrollohet kjo, dokumentet do të kenë të njëjtin emër si ato në faqen e Prodhuesit të Ngjarjes"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,Vlerat ndara me presje
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max width për tip monedhe është 100px në rresht {0}
apps/frappe/frappe/config/website.py,Content web page.,Përmbajtja web faqe.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Shto një rol të ri
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Vizitoni faqen në internet
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Caktimi i ri
+DocType: Event Consumer Document Type,Approved,I miratuar
DocType: Google Contacts,Last Sync On,Sinjali i fundit në
DocType: Deleted Document,Deleted Document,Dokumenti fshihen
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! Diçka shkoi keq
@@ -3965,7 +4006,6 @@ DocType: DocField,Unique,Unik
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} vlerësuar në {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Suksesi i pjesshëm
DocType: Email Account,Service,Shërbim
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Konfigurimi> Përdoruesi
DocType: File,File Name,File Name
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),A nuk gjeni {0} për {0} ({1})
apps/frappe/frappe/utils/bot.py,"Oops, you are not allowed to know that","Oops, nuk ju lejohet të dinë se"
@@ -3976,11 +4016,10 @@ DocType: Calendar View,Calendar View,Shikoni kalendarin
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Ndrysho Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Complete Regjistrimi
DocType: GCalendar Settings,Enable,mundësoj
-DocType: Google Maps Settings,Home Address,Adresa e shtepise
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Ju vetëm mund të ngarkoni upto 5000 të dhënat në një të shkojnë. (Mund të jetë më pak në disa raste)
DocType: Report,"output in the form of `data = [columns, result]`","prodhimi në formën e 'të dhënave = [kolonave, rezultatit] `"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Llojet e zbatueshme të dokumentit
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Vendosni rregulla për detyrat e përdoruesit.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Vendosni rregulla për detyrat e përdoruesit.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permission pamjaftueshme {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Permission pamjaftueshme {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Raporti nuk u shpëtoi (kishte gabime)
diff --git a/frappe/translations/sr.csv b/frappe/translations/sr.csv
index 6c43c3522f..be90178e8a 100644
--- a/frappe/translations/sr.csv
+++ b/frappe/translations/sr.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Ова улога исправка корисника Дозволе за корисника
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Преименовати {0}
DocType: Workflow State,zoom-out,одзумирај
-DocType: Data Import Beta,Import Options,Опције увоза
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Не могу открыть {0} , когда его экземпляр открыт"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Таблица {0} не может быть пустым
DocType: SMS Parameter,Parameter,Параметар
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,От
DocType: DocType,Is Published Field,Је објављен Фиелд
DocType: GCalendar Settings,GCalendar Settings,ГЦалендар Сеттингс
DocType: Email Group,Email Group,емаил Група
-apps/frappe/frappe/__init__.py,Only for {},Само за {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Гоогле календар - Не могу се избрисати догађај {0} из Гоогле календара, код грешке {1}."
DocType: Event,Pulled from Google Calendar,Извлачено из Гоогле календара
DocType: Note,Seen By,Виђено од
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Додавање
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Није важећа слика корисника.
DocType: Energy Point Log,Reverted,Ревертед
DocType: Success Action,First Success Message,Прва порука о успеху
+DocType: Document Type Mapping,Document Type Mapping,Мапирање типа документа
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Не волим
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Неисправна вредност: {0} мора бити {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Изменение свойств поля (скрыть , только для чтения , разрешение и т.д.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Веб локација која троши ваше догађаје.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Ценити
DocType: Notification Settings,Document Share,Доцумент Схаре
DocType: Workflow State,lock,закључати
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Пријава
DocType: Workflow State,indent-right,индент-десно
DocType: Has Role,Has Role,има улогу
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Ресинц
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Време у секунди да задржите КР кодну слику на серверу. Мин: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Тип поља {1} за {2} се не може индексирати
DocType: Dashboard Chart,Timespan,Временски распон
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Веб линк
DocType: Deleted Document,Restored,Обновљена
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Грешка приликом повезивања са апликацијом КЗ Траи ...
За употребу функције Рав Принт морате да имате инсталирану и покренуту апликацију КЗ Траи.
Кликните овде да бисте преузели и инсталирали КЗ Траи .
Кликните овде да бисте сазнали више о сировом штампању ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 минут пре
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Осим Систем Манагер, улоге са подешавање дозвола корисничка права да поставите дозволе за другим корисницима у тој врсте документа."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Конфигуришите тему
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,НЕВИЂЕНО
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Филе Манагер
DocType: Website Settings,"HTML Header, Robots and Redirects","ХТМЛ заглавље, роботи и преусмеравања"
DocType: GCalendar Account,Refresh Token,рефресх токен
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Није успело повезивање са веб страницом Евент Продуцер. Покушајте поново након неког времена.
DocType: Address,Goa,гоа
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Нема чекања или текућих послова за ову страницу
DocType: Webhook,Doc Event,Доц Евент
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Сцрипт Манагер
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Нема активности
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Апликације треће стране
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Први корисник ће постати систем менаџер (можете променити ово касније).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Можете покушати променити филтере свог извештаја.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Нема догађаја данас
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Не можете себи давати поене за преглед
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,ДоцТипе мора бити подношљив за изабрани Доц догађај
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Није вам дозвољено слање имејлова везаних за овај документ
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Молимо одаберите покрвитеља 1 колону од {0} сортирање / групи
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Није дозвољено за {0}: {1}. Ограничено поље: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Компанија није повезана
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Проверите ово ако се тестирају уплате помоћу Сандбок АПИ
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Није вам дозвољено брисање стандардне Вебсајт теме
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Креирајте свој први {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Ажур
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Већ постоји бродски слајд {0} са истим редоследом слајдова
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Дисабле Извештај
DocType: Translation,Contributed Translation Doctype Name,Наведено име превода за превод
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Подешавање> Прилагоди образац
DocType: PayPal Settings,Redirect To,преусмери на
DocType: Data Migration Mapping,Pull,Повуците
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Јава формат : вн.куери_репортс [ ' РЕПОРТНАМЕ ' ] = { }
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Нот Алловед
DocType: DocShare,Internal record of document shares,Интерна запис акција докумената
DocType: Energy Point Settings,Review Levels,Нивои прегледа
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Подешавање> Дозволе корисника
DocType: Workflow State,Comment,Коментар
DocType: Data Migration Plan,Postprocess Method,Метод постпроцеса
DocType: DocType Action,Action Type,Тип радње
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,П
DocType: Workflow State,remove-circle,ремове-круг
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Мој профил
DocType: Help Article,Beginner,почетник
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Ова радња је дозвољена само за {}
DocType: Contact,Is Primary Contact,Да ли Примарни контакт
+DocType: Event Consumer,Event Consumer,Потрошач догађаја
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Јавасцрипт да додате на главе делу странице.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Додај / ажурирај
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Није дозвољено штампање нацрта докумената
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Врати подразумевано
DocType: Workflow,Transition Rules,Транзициони Правила
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Приказују се први {0} редови у прегледу
apps/frappe/frappe/core/doctype/report/report.js,Example:,Пример:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Ограничења
DocType: Workflow,Defines workflow states and rules for a document.,Дефинише тока посла државе и правила за документ.
@@ -480,7 +486,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Поновите До
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Нови
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Прво морате да креирате следеће:
-DocType: Google Maps Settings,Google Maps Settings,Поставке Гоогле мапа
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Учитавање ...
DocType: DocField,Password,Шифра
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Ваш систем се ажурира. Освежите након неколико тренутака
@@ -573,6 +578,7 @@ DocType: Onboarding Slide,Onboarding Slide,Онбоардинг Слиде
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Инвалид пассворд:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Инвалид пассворд:
DocType: Print Settings,Send document web view link in email,Пошаљи документ Веб Виев везу у е-маил
+DocType: Event Consumer Document Type,Event Consumer Document Type,Врста документа потрошачког догађаја
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,предыдущий
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Ре:
DocType: LDAP Settings,Require Trusted Certificate,Захтевајте поуздану потврду
@@ -648,6 +654,7 @@ DocType: Workflow State,volume-down,звука доле
DocType: Onboarding Slide,Help Links,Линкови помоћи
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Приступ са ове ИП адресе није дозвољен
DocType: Notification Settings,Enable Email Notifications,Омогући обавештења путем е-поште
+DocType: Document Type Field Mapping,Event Streaming,Стреаминг догађаја
apps/frappe/frappe/desk/reportview.py,No Tags,Но Тагс
DocType: Email Account,Send Notification to,Слање обавештења
DocType: DocField,Collapsible,Цоллапсибле
@@ -664,11 +671,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Фи
apps/frappe/frappe/database/database.py,No conditions provided,Нису обезбеђени услови
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Поља И оси
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Сорт поље {0} мора бити валидан фиелднаме
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Није пронађена задана шаблона адресе. Креирајте нову из Подешавање> Штампање и брендирање> Предложак адреса.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Више
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Креирајте нови запис
DocType: Contact,Sales Manager,Менаџер продаје
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Преименовање
DocType: Print Format,Format Data,Формат података
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} није валидан формат извештаја. Формат извештаја треба да буде једно од следећег {1}
DocType: List Filter,Filter Name,Име филма
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,као
DocType: Assignment Rule,Automation,Аутоматизација
@@ -687,6 +696,7 @@ DocType: User,Reset Password Key,Ресет Пассворд Кеи
DocType: Dashboard Chart,All Time,Све време
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Статус илегалног документа за {0}
DocType: Email Account,Enable Auto Reply,Енабле Ауто Одговори
+apps/frappe/frappe/desk/query_report.py,No data to export,Нема података за извоз
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Не види
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Не може се више штампача пресликати у један формат штампања.
DocType: Workflow State,zoom-in,зум-у
@@ -839,6 +849,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Проме
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Први
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Ажурирај преводе
DocType: Error Snapshot,Exception,Изузетак
+DocType: Event Consumer,Event Consumer Document Types,Врсте потрошачких докумената догађаја
DocType: Email Account,Use IMAP,Користите ИМАП
DocType: Activity Log,Activity Log,Активност Пријава
DocType: View Log,Viewed By,Гледано од стране
@@ -878,6 +889,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,У
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Конфигурирајте графиконе
DocType: User,Last IP,Последњи ИП
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Молимо додајте тему вашој е-пошти
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Погрешне трансакције
DocType: Data Migration Connector,Data Migration Connector,Конектор за миграцију података
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} вратио се {1}
DocType: Email Account,Track Email Status,Статус е-поште
@@ -909,6 +921,7 @@ DocType: Email Queue,Attachments,Прилози
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Немате дозволе за приступ овом документу
DocType: Language,Language Name,Језик Име
DocType: Email Group Member,Email Group Member,Емаил Гроуп Мембер
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ниједан налог е-поште није повезан са корисником. Додајте налог у оквиру Корисник> Инбок поште.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Ваш рачун је закључан и наставиће се након {0} секунди
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Корисничке дозволе се користе да ограниче кориснике на одређене записе.
DocType: Notification,Value Changed,Вредност Промењена
@@ -1001,6 +1014,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Спомену
DocType: Help Article,Expert,експерт
DocType: Workflow State,circle-arrow-right,круг-стрелица надесно
DocType: Role Profile,Role Profile,Улога профила
+DocType: Document Type Mapping,Remote Document Type,Тип удаљеног документа
apps/frappe/frappe/permissions.py,Document Type is not importable,Тип документа није за увоз
DocType: LDAP Settings,LDAP Server Url,ЛДАП УРЛ сервер
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Не могу открыть экземпляр , когда его {0} открыто"
@@ -1086,7 +1100,7 @@ DocType: Web Form,Allow Print,dozvoli Принт
DocType: Communication,Clicked,Кликнуто
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Прекини везу
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Немате дозволу за ' {0} ' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Поставите подразумевани рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Приказују се први {0} редови од {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Заказана за слање
DocType: DocType,Track Seen,трацк Сеен
DocType: Dropbox Settings,File Backup,Филе Бацкуп
@@ -1157,6 +1171,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,и
DocType: Data Export,Filter List,Листа филтера
DocType: Data Export,Excel,Екцел
DocType: System Settings,HH:mm,ВХ: мм
+DocType: Event Sync Log,Event Configurations,Конфигурације догађаја
DocType: Email Account,Auto Reply Message,Ауто порука одговора
DocType: Data Migration Mapping,Condition,Услов
apps/frappe/frappe/utils/data.py,{0} hours ago,Пре {0} сати
@@ -1216,9 +1231,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Увек к
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Логин то цоммент
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Старт унос података испод ове линије
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},промењених вредности за {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Е-маил ИД мора бити јединствен, Емаил налог већ постоји \ фор {0}"
DocType: Workflow State,retweet,ретвеет
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За поређење користите> 5, <10 или = 324. За опсеге користите 5:10 (за вредности између 5 и 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Прилагоди...
DocType: Print Format,Align Labels to the Right,Поравнајте ознаке на десно
DocType: Assignment Rule,Disabled,Онеспособљен
@@ -1267,8 +1281,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Пречице на тастатури
DocType: Post,Comments,Коментари
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Потврдити
+DocType: Event Sync Log,Update Type,Тип ажурирања
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Аутентификација ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Скупи све
+DocType: Event Producer,Last Update,Последња исправка
apps/frappe/frappe/www/login.html,Forgot Password?,Zaboravili ste lozinku?
DocType: System Settings,yyyy-mm-dd,гггг-мм-дд
apps/frappe/frappe/desk/report/todo/todo.py,ID,ИД
@@ -1309,6 +1325,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Табел
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Колоне на основу
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Увоз {0} од {1}, {2}"
DocType: Workflow State,move,Потез
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Није успео креирање потрошача догађаја или потрошача догађаја за тренутну веб локацију већ је регистрован.
apps/frappe/frappe/model/document.py,Action Failed,Акција није успела
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,за кориснике
DocType: View Log,View log,Погледај Дневник догађаја
@@ -1472,6 +1489,7 @@ DocType: DefaultValue,Key,Кључ
DocType: Address,Contacts,связи
DocType: System Settings,Setup Complete,Завершение установки
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Извештај свих акција докумената
+DocType: Event Consumer,Callback URL,УРЛ за повратни позив
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Шаблон за увоз треба да буде типа .цсв, .клск или .клс"
apps/frappe/frappe/www/update-password.html,New Password,Нова лозинка
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Филтер {0} недостаје
@@ -1539,7 +1557,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,У
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; није дозвољено у стању
DocType: Async Task,Async Task,Асинц Задатак
DocType: Workflow State,picture,слика
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Комплетан
+DocType: Scheduled Job Log,Complete,Комплетан
DocType: DocType,Image Field,Слика polje
DocType: Print Format,Custom HTML Help,Прилагођени ХТМЛ Помоћ
DocType: LDAP Settings,Default Role on Creation,Подразумевана улога на креацији
@@ -1565,6 +1583,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Помоћ на Сеарцх
DocType: Milestone,Milestone Tracker,Милестоне Трацкер
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Регистрован, али је онемогућен"
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Адреса мора бити повезана са компанијом. Молимо додајте ред за компанију у табелу веза доле.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Аутоматско понављање овог документа је онемогућено.
DocType: DocType,Hide Copy,Сакриј Цопи
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Очистите все роли
@@ -1603,6 +1622,7 @@ DocType: Bulk Update,Field,поље
DocType: Communication,Received,примљен
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Окидач са важећим методама као што су "бефоре_инсерт", "афтер_упдате", итд (зависи од ДОЦТИПЕ изабраног)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},измењена вредност {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Подешавање налога е-поште, унесите лозинку за: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Добавление System Manager для этого пользователя , как должно быть по крайней мере один System Manager"
DocType: Chat Message,URLs,УРЛ-ови
DocType: Data Migration Run,Total Pages,Укупно страница
@@ -1610,7 +1630,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Прикрепите изображение
DocType: Workflow State,list-alt,лист-алт
apps/frappe/frappe/www/update-password.html,Password Updated,Лозинка ажурирано
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Подешавање> Дозволе корисника
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Кораци за потврђивање вашег пријаве
apps/frappe/frappe/utils/password.py,Password not found,Лозинка није пронађена
DocType: Webhook,Webhook Secret,Вебхоок Сецрет
@@ -1626,8 +1645,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Подешава
DocType: Report,Query Report,Извештај упита
DocType: User,Set New Password,Сет нову лозинку
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Није дозвољено за {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% С није валидан формат извештаја. Извештај формат треба \ једну од следећих% с
DocType: Chat Message,Chat,Ћаскање
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Није пронађен ниједан документ означен са {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,ЛДАП Гроуп Маппинг
@@ -1663,7 +1680,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Унес
DocType: Dropbox Settings,Dropbox Access Secret,Дропбок Приступ тајна
DocType: Tag Link,Document Title,Назив документа
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Обавезно)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} пре годину дана
DocType: Social Login Key,Social Login Provider,Социал Логин Провидер
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Додати још један коментар
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Нема података у датотеци. Молимо да поново унесете нову датотеку са подацима.
@@ -1711,6 +1727,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Ода
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 година
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Навсегда удалить {0} ?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Исти фајл је већ у прилогу записника
+DocType: Event Sync Log,Synced,Синхронизовано
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} није исправно стање тока посла. Ажурирајте свој ток посла и покушајте поново.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,дао {0} поена
DocType: Workflow State,wrench,кључ
@@ -1813,6 +1830,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,Максимална дужина
DocType: Print Format,Jinja,Јиња
DocType: Workflow State,map-marker,мапа-маркера
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Конфигурација пресликавања између два дотипа.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Представьте о проблеме
DocType: Event,Repeat this Event,Поновите овај догађај
DocType: Address,Maintenance User,Одржавање Корисник
@@ -1872,6 +1890,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Тест-маил адреса
DocType: Auto Repeat,Reference Document Type,Референтна Тип документа
DocType: ToDo,Sender,Пошиљалац
+DocType: Event Consumer,Incoming Change,Долазне промене
DocType: Google Drive,Backup Folder Name,Назив резервне мапе
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Грешка при процењивању обавештења {0}. Поправите свој шаблон.
DocType: GSuite Settings,Google Apps Script,Гоогле Аппс скрипта
@@ -1934,9 +1953,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Ново
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Кликните на доњу везу да бисте одобрили захтев
DocType: Workflow State,align-left,алигн левом
DocType: Onboarding Slide,Action Settings,Подешавања акције
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Подешавање> Корисник
DocType: User,Defaults,Примарни
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За поређење користите> 5, <10 или = 324. За опсеге користите 5:10 (за вредности између 5 и 10)."
DocType: Energy Point Log,Revert Of,Реверт Оф
+DocType: Document Type Mapping,Field Mapping,Мапирање поља
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Споји са постојећим
DocType: User,Birth Date,Датум рођења
DocType: Communication Link,Link Title,линк Наслов
@@ -1964,6 +1984,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Таг Линк
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Интегритет ланца
DocType: Data Export,CSV,ЦСВ
+DocType: Event Consumer,In Test,У тесту
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 Валута = [?] Фракција
За пример 1 УСД = 100 Цент"
@@ -1974,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Мапе ЛДАП групе
DocType: Chat Message Attachment,Chat Message Attachment,Прилог за ћаскање
DocType: LDAP Settings,Path to CA Certs File,Пут до датотеке са сертификатима ЦА
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Ако документ има различита имена поља на крају произвођача и потрошача, то провјерите и подесите мапирање"
DocType: Address,Manipur,Манипур
DocType: Web Form Field,Allow Read On All Link Options,Дозволи читање свих опција везе
DocType: DocType,Database Engine,baza мотора
@@ -2107,6 +2129,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Приметити
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Грешка Извештај
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Извоз података у ЦСВ / Екцел формату.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Мапирање поља поља документа
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Постављање докумената Глобалне претраге.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Апликације за аутентикацију које можете користити су:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} већ постоји. Изаберите друго име
@@ -2181,7 +2204,6 @@ DocType: Workflow State,Upload,отпремање
DocType: User Permission,Advanced Control,Напредна контрола
DocType: System Settings,Date Format,Формат датума
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Није Објављено
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Није пронађена задана шаблона адресе. Креирајте нову из Подешавање> Штампање и брендирање> Предложак адреса.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Действия для рабочего процесса (например Утвердить , Отменить ) ."
DocType: Data Import,Skip rows with errors,Прескочите редове са грешкама
DocType: Workflow State,flag,застава
@@ -2245,6 +2267,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Заступа државе дозвољене у једном документу и улога додељена промијенити стање.
DocType: Data Migration Connector,Database Name,Име базе података
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Рефресх Образац
+DocType: Event Producer,Event Producer,Евент Продуцер
DocType: DocField,Select,Одабрати
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Погледајте цео дневник
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Симпле Питхон Екпрессион, Екампле: статус == 'Опен' и откуцајте == 'Буг'"
@@ -2346,6 +2369,7 @@ DocType: DocType,User Cannot Search,Корисник не можете прет
DocType: Communication Link,Communication Link,Комуникациона веза
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Неважећи Излазни формат
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Не могу {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Поновљено {0} {1} је створено за вас путем аутоматског понављања {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Примени ово правило ако Усер ис Власник
DocType: Global Search Settings,Global Search Settings,Подешавања глобалне претраге
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Ће бити ваш Логин ИД
@@ -2363,12 +2387,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,КР код з
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Адд то То До
DocType: Footer Item,Company,Компанија
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Просек {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Успешне трансакције
DocType: Scheduled Job Log,Scheduled,Планиран
DocType: User,Logout from all devices while changing Password,Одјавите се са свих уређаја док мењате лозинку
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Провера Лозинке
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Были ошибки
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Унесите ИД клијента и клијентску тајну у Гоогле подешавањима.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Затворити
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","ИД е-поште мора бити јединствен, рачун е-поште већ постоји за {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Не могу да променим доцстатус од 0 до 2
DocType: File,Attached To Field,Прикачено на терену
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Ажурирање
@@ -2476,6 +2502,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Месец
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ПроТип: Додај Reference: {{ reference_doctype }} {{ reference_name }} за слање референтни документ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,На списку су само корисници који су укључени у документ
DocType: DocField,Fetch From,Фетцх Фром
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Подешавање> Прилагоди образац
apps/frappe/frappe/modules/utils.py,App not found,Приложение не найдено
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Не може да креира {0} против документа детета: {1}
DocType: Social Login Key,Social Login Key,Кључ друштвене пријаве
@@ -2487,7 +2514,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Цха
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Социјални дом
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Убаците После се не може поставити као {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Подели {0} с
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Емаил подешавање налога унесите лозинку за:
DocType: Workflow State,hand-up,рука-уп
DocType: Blog Settings,Writers Introduction,Писци Увод
DocType: Address,Phone,Телефон
@@ -2546,7 +2572,7 @@ DocType: Web Page,Insert Style,Убаците Стиле
DocType: Prepared Report,Error Message,Порука о грешци
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Нови извештај име
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Сакриј викенде
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Аутоматски генерише понављајуће документе.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Аутоматски генерише понављајуће документе.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Ис
DocType: Onboarding Slide,ERPNext,ЕРПНект
DocType: Workflow State,info-sign,инфо-знак
@@ -2554,7 +2580,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Вре
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Како би ова валута се форматира? Ако нису подешене, неће користити подразумеване системске"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Пошаљи {0} документе?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Вы должны войти в систему, и есть роль System Manager , чтобы иметь возможность доступа к резервные копии."
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Грешка приликом повезивања са апликацијом КЗ Траи ...
За употребу функције Рав Принт морате да имате инсталирану и покренуту апликацију КЗ Траи.
Кликните овде да бисте преузели и инсталирали КЗ Траи .
Кликните овде да бисте сазнали више о сировом штампању ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Мапирање штампача
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Молимо вас да спаси пре постављања.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Да ли желите да откажете све повезане документе?
@@ -2584,6 +2609,7 @@ DocType: Role Permission for Page and Report,Set Role For,Сет улога
DocType: GCalendar Account,The name that will appear in Google Calendar,Име које ће се појавити у Гоогле календару
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Директна соба са {0} већ постоји.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Обновление ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Молимо проверите вредности филтера за графикон Дасхбоард-а: {}
DocType: Event,Starts on,Почиње на
DocType: System Settings,System Settings,Систем Сеттингс
DocType: GCalendar Settings,Google API Credentials,Гоогле АПИ акредитиви
@@ -2609,6 +2635,7 @@ DocType: Workflow State,ok-sign,ок-знак
apps/frappe/frappe/config/settings.py,Deleted Documents,Делетед Документи
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,ЦСВ формат је осетљив на велика и мала слова
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Икона на радној површини већ постоји
+DocType: Event Consumer Document Type,Approval Status,Статус одобравања
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Наведите у којим све доменама треба да се приказују слајдови. Ако ништа није наведено, слајд је подразумевано приказан у свим доменима."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Дупликат
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Поље {1} у реду {2} не може се сакрити и обавезно без заданих поставки
@@ -2628,6 +2655,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Чланци помоћи
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Тип:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Ваша уплата није успела.
+DocType: Event Producer,Producer URL,УРЛ произвођача
DocType: Comment,Unshared,недељив
DocType: Address,Karnataka,карнатака
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Модуль не найден
@@ -2639,6 +2667,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,задатак Завршен
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Групно измена {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Преузми извештај
+apps/frappe/frappe/model/workflow.py,Workflow Status,Статус процеса рада
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Није активна
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Само администратор може да креира изворе графикона надзорне табле
DocType: About Us Settings,Settings for the About Us Page,Подешавања за О нама Паге
@@ -2648,6 +2677,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Ш
DocType: Notification Settings,Energy Points,Енергетски поени
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Време {0} мора бити у формату: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,нпр поп.гмаил.цом / имап.гмаил.цом
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Није могуће приложити нови понављајући документ. Да бисте омогућили додавање документа у е-поруци са аутоматским понављањем обавештења, омогућите {1} у подешавањима штампања"
DocType: User,Generate Keys,Генериши кључеве
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Ово ће трајно уклонити ваше податке.
DocType: DocType,View Settings,Погледај Подешавања
@@ -2699,6 +2729,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Све
DocType: Email Queue,Recipient,Прималац
DocType: Webhook,Webhook Security,Сигурност за Вебхоок
+DocType: Event Sync Log,Producer Document Name,Назив документа произвођача
DocType: Communication,Has Attachment,ima Аттацхмент
DocType: Address,Sales User,Продаја Корисник
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Драг анд дроп алат за изградњу и прилагодите словима.
@@ -2734,6 +2765,7 @@ DocType: Address,Arunachal Pradesh,Асам
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Подређене табеле су приказане као Грид у другим ДоцТипес
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Подешавање ауто-маил
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Цтрл + Довн
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Веб локација на коју се желите претплатити за конзумирање догађаја.
DocType: Chat Profile,Message Preview,Преглед поруке
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Ово је топ-10 Заједничка лозинка.
DocType: User,User Defaults,Профил Дефаултс
@@ -2766,6 +2798,7 @@ DocType: Dashboard Chart,Last Synced On,Последњи синхронизов
DocType: Comment,Comment Type,Коментар Тип
DocType: OAuth Client,OAuth Client,ОАутх клијента
DocType: Assignment Rule,Users,Усерс
+DocType: Document Type Mapping,Local Document Type,Тип локалног документа
DocType: Address,Odisha,Ориса
DocType: Report,Report Type,Врста извештаја
DocType: DocField,Signature,Потпис
@@ -2808,6 +2841,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} само додељује овај задатак: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Твоја земља
DocType: Assignment Rule Day,Sunday,Недеља
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Води Дневник свих уметака, ажурирања и брисања на веб локацији Евент Продуцер за документе који имају потрошачи."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Име поља не може бити једно од {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Табела
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Ин Грид Виев
@@ -2954,7 +2988,6 @@ DocType: Web Page,Sidebar and Comments,Сидебар и Коментари
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","При Изменить документ после Отменить и сохранить его , он будет получать новый номер, который является версией старой числа ."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Није дозвољено да приложите {0} документ, молимо омогућите Дозволи штампање За {0} у подешавањима штампања"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Рачун е-поште није подешавање. Креирајте нови рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Погледајте документ на {0}
DocType: Stripe Settings,Publishable Key,који се може објавити ključ
DocType: Stripe Settings,Publishable Key,који се може објавити ključ
@@ -3032,7 +3065,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Инфо:
DocType: Custom Field,Permission Level,Дозвола Ниво
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Не удается установить Представьте , Отменить , Изменить без Write"
DocType: List View Setting,Disable Count,Онемогући бројање
-DocType: Google Maps Settings,Client Key,Клијентски кључ
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Да ли сте сигурни да желите да избришете прилог?
apps/frappe/frappe/__init__.py,Thank you,Хвала
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Спашавање
@@ -3158,6 +3190,7 @@ DocType: Workflow Document State,Only Allow Edit For,Само Дозволи Е
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Израда резервне копије на Гоогле диску.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Мандатори фиелд: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Твоје име
+DocType: Event Producer Document Type,Event Producer Document Type,Врста документа произвоцерача догађаја
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Суццесс Цоннецтион
DocType: DocType,InnoDB,ИнноДБ
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Уграђени клизач наставка типа дијапозитива већ постоји.
@@ -3229,6 +3262,7 @@ DocType: Address,Postal Code,поштански код
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,РЕЛИНК Комуникација
DocType: Translation,Contributed,Допринели
apps/frappe/frappe/config/customization.py,Form Customization,Прилагодба облика
+DocType: Event Update Log,Event Update Log,Дневник ажурирања догађаја
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Нема активних сесија
DocType: Web Form,Route to Success Link,Пут до успеха Линк
DocType: Onboarding Slide Field,Right,Право
@@ -3255,7 +3289,7 @@ DocType: Website Settings,Chat Operators,Цхат Оператори
DocType: S3 Backup Settings,ca-central-1,ца-централ-1
DocType: Contact Us Settings,Pincode,Пинцоде
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Молимо Вас проверите да нема празних колона у датотеци.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Прати прекретнице у животном циклусу документа ако пролази кроз више фаза.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Прати прекретнице у животном циклусу документа ако пролази кроз више фаза.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Преименоване датотеке и замењени код у контролерима, молимо вас проверите!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Уверите се да ваш профил има емаил адресу
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Имате сачували све промене у овом облику .
@@ -3282,7 +3316,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Сачувај АПИ тајну:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Не могу да повежем отказани документ: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Не можете мењати стандардни извештај. Молим вас дупликат и направите нови извештај
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Компанија је обавезна, као што је ваша адреса компаније"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","На пример: Ако желите да укључите у идентификационог документа, користимо {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Изаберите Табела Колоне за {0}
DocType: Custom Field,Options Help,Опције Помоћ
@@ -3290,7 +3323,6 @@ DocType: Footer Item,Group Label,Група Ознака
DocType: Kanban Board,Kanban Board,канбан одбор
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Гоогле контакти су конфигурисани.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Извешће се 1 запис
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Ниједан налог е-поште није повезан са корисником. Додајте налог у оквиру Корисник> Инбок поште.
DocType: DocField,Report Hide,Извештај Сакриј
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Дрво поглед није доступан за {0}
DocType: DocType,Restrict To Domain,Забранити Да домена
@@ -3356,7 +3388,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Поље {1} типа {2} не може бити обавезно
DocType: System Settings,In Days,Ин Даис
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Госпођица
+DocType: Event Producer Document Type,Has Mapping,Има мапирање
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Наведите
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Неважећа вредност филтра
DocType: Comment,Bot,бот
DocType: Help Article,Help Article,хелп Члан
DocType: Page,Page Name,Страница Име
@@ -3463,7 +3497,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Принт Формат
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Пребаците приказ мреже
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Пређите на следећи снимак
-DocType: System Settings,Time Format,Формат времена
+DocType: Country,Time Format,Формат времена
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Неважећи Паимент Гатеваи акредитиве
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Ово је датотека шаблона генерисана само са редовима који имају неку грешку. Требали бисте користити ову датотеку за корекцију и увоз.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Установить разрешения на типов документов и роли
@@ -3799,6 +3833,7 @@ DocType: Webhook,on_update_after_submit,он_упдате_афтер_субми
DocType: System Settings,Allow Login using User Name,Дозволи Логин помоћу корисничког имена
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Омогући Репорт
DocType: DocField,Display Depends On,Екрану зависе од
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} пре годину дана
DocType: Social Login Key,API Endpoint,Ендпоинт АПИ
DocType: Web Page,Insert Code,Инсерт Цоде
DocType: Data Migration Run,Current Mapping Type,Тренутни тип мапирања
@@ -3852,6 +3887,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,П
apps/frappe/frappe/www/login.html,Or login with,Или се пријавите са
DocType: Error Snapshot,Locals,Мештани
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Комуницирао преко {0} на {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Врсте докумената за произвођаче догађаја
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Поставите подразумевани рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Изаберите групу по ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,например (55 + 434) / 4 или = Матх.син (Матх.ПИ / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} требуется
@@ -3884,9 +3921,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,ГЦалендар Синц ИД
DocType: Prepared Report,Report Start Time,Време почетка извештаја
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Извоз података
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Одржава евиденцију сваког потрошеног догађаја заједно са статусом синхронизације и дугме Ресинц у случају да синхронизација не успе.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Изаберите Колоне
DocType: Translation,Source Text,Извор Текст
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Ово је позадински извештај. Поставите одговарајуће филтере и затим генерирајте нови.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Рачун е-поште није подешавање. Креирајте нови рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил
apps/frappe/frappe/www/login.py,Missing parameters for login,Миссинг параметри за пријаву
DocType: Workflow State,folder-open,фолдер отвори
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Једном поднесени документи који се могу поднети не могу се мењати. Они се могу само отказати и допунити.
@@ -3966,6 +4005,7 @@ DocType: Blog Post,Published On,Објављено Дана
DocType: Contact,Gender,Пол
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Обавезна Информације недостаје:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} вратио је бодове на {1}
+DocType: Event Consumer,Event Subscriber,Евент Субсцрибер
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Проверите УРЛ адресу за потраживање
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Само 200 умеће дозвољено у једном захтеву
DocType: Footer Item,URL,УРЛ адреса
@@ -3978,6 +4018,7 @@ DocType: Auto Email Report,Half Yearly,Пола Годишњи
DocType: Communication,Marked As Spam,Означена као непожељна
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Постоји неки проблем са Филе УРЛ: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Дрво
+DocType: Event Producer Document Type,Use Same Name,Користите исто име
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Није вам дозвољено да одштампате овај извештај
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Дозволе корисника
DocType: Workflow State,warning-sign,Упозорење-знак
@@ -3987,6 +4028,7 @@ DocType: Workflow State,User,Корисник
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Покажи наслов у прозору прегледача као "префикс - наслов"
DocType: Payment Gateway,Gateway Settings,Поставке Гатеваи-а
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,текст у врсти документа
+DocType: Event Sync Log,Event Sync Log,Дневник синхронизације догађаја
apps/frappe/frappe/handler.py,Logged Out,Одјављени
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Више...
DocType: System Settings,User can login using Email id or Mobile number,Корисник може пријавити преко Е-маил ИД или број мобилног
@@ -4027,12 +4069,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Није У
DocType: Workflow State,star,звезда
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Средиште
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Ако се ово потврди, документи ће имати исто име као и они на сајту продуцената догађаја"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,Вредности раздвојене зарезима
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Максимальная ширина для типа валюта 100px в строке {0}
apps/frappe/frappe/config/website.py,Content web page.,Садржај веб страница.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Добавить новую роль
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Посетите веб страницу
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Нова додјела
+DocType: Event Consumer Document Type,Approved,Одобрено
DocType: Google Contacts,Last Sync On,Ласт Синц Он
DocType: Deleted Document,Deleted Document,deleted документ
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Упс! Нешто је пошло наопако
@@ -4085,7 +4129,6 @@ DocType: DocField,Unique,Јединствен
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} цијењен је {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Делимични успех
DocType: Email Account,Service,служба
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Подешавање> Корисник
DocType: File,File Name,Филе Наме
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Не нашли {0} {0} ( {1} )
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Рес: {0}
@@ -4097,11 +4140,10 @@ DocType: Calendar View,Calendar View,Преглед календара
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Едит Формат
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Комплетна Регистрација
DocType: GCalendar Settings,Enable,омогућити
-DocType: Google Maps Settings,Home Address,Кућна адреса
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Можете само уплоад упто 5000 записа у једном потезу. (Могу бити мање у неким случајевима)
DocType: Report,"output in the form of `data = [columns, result]`","излаз у облику `дата = [ступци, резултат]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Применљиве врсте докумената
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Поставите правила за задатке корисника.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Поставите правила за задатке корисника.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недовољна Дозвола за {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недовољна Дозвола за {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Извештај није сачуван (било грешака)
diff --git a/frappe/translations/sr_sp.csv b/frappe/translations/sr_sp.csv
index a5f172e3c0..edec3f8a0a 100644
--- a/frappe/translations/sr_sp.csv
+++ b/frappe/translations/sr_sp.csv
@@ -262,7 +262,6 @@ DocType: Custom DocPerm,Import,Uvoz
DocType: User,Security Settings,Bezbjedonosna podešavanja
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Search term,Pretraga
apps/frappe/frappe/www/login.py,Email Address,Email adresa
-DocType: Google Maps Settings,Home Address,Kućna adresa
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + up
DocType: Comment,Assigned,Dodijeljeno
DocType: Desktop Icon,_report,_izvještaj
diff --git a/frappe/translations/sv.csv b/frappe/translations/sv.csv
index 69cb3dc30b..9f8700b4c5 100644
--- a/frappe/translations/sv.csv
+++ b/frappe/translations/sv.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Denna roll uppdatera användarbehörigheter för en användare
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Ändra namn {0}
DocType: Workflow State,zoom-out,zooma ut
-DocType: Data Import Beta,Import Options,Importera alternativ
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Det går inte att öppna {0} när dess exempel är öppen
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabell {0} kan inte vara tomt
DocType: SMS Parameter,Parameter,Parameter
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Avbr
DocType: DocType,Is Published Field,Publiceras Field
DocType: GCalendar Settings,GCalendar Settings,GCalendar Inställningar
DocType: Email Group,Email Group,E-postgrupp
-apps/frappe/frappe/__init__.py,Only for {},Bara för {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Kalender - kunde inte ta bort händelse {0} från Google Kalender, felkod {1}."
DocType: Event,Pulled from Google Calendar,Dras från Google Kalender
DocType: Note,Seen By,Ses av
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Lägg till flera
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Inte en giltig användarbild.
DocType: Energy Point Log,Reverted,åter
DocType: Success Action,First Success Message,Första framgångsbudskapet
+DocType: Document Type Mapping,Document Type Mapping,Dokumenttypmappning
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Inte som
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Felaktigt värde: {0} måste vara {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Ändra fältegenskaper (dölja, skrivskyddad, tillstånd etc.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Webbplatsen som konsumerar dina evenemang.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Uppskatta
DocType: Notification Settings,Document Share,Dokumentdelning
DocType: Workflow State,lock,låsa
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Logga
DocType: Workflow State,indent-right,indent-höger
DocType: Has Role,Has Role,har Role
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Tid i sekunder för att behålla QR-kodbild på server. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fälttyp {1} för {2} kan inte indexeras
DocType: Dashboard Chart,Timespan,Tidsrymd
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Webblänk
DocType: Deleted Document,Restored,Återställd
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Fel vid anslutning till QZ Tray Application ...
Du måste ha QZ Tray-applikation installerad och igång för att kunna använda Raw Print-funktionen.
Klicka här för att ladda ner och installera QZ-fack .
Klicka här för att lära dig mer om Raw Printing ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minut sedan
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Bortsett från Systemansvarig, roller med satta användarbehörigheters rätt kan ställa in behörigheter för andra användare för att Document Type."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigurera tema
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,OSYNLIG
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Filhanterare
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML-rubrik, robotar och omdirigeringar"
DocType: GCalendar Account,Refresh Token,Uppdatera Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Det gick inte att ansluta till händelseproducentens webbplats. Försök igen efter en tid.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Inga väntande eller aktuella jobb för den här webbplatsen
DocType: Webhook,Doc Event,Doc Event
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Skripthanterare
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Ingen aktivitet
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Tredjepartsapplikationer
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Den första användaren blir System Manager (du kan ändra detta senare).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Du kan försöka byta filter i din rapport.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Inga händelser idag
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Du kan inte ge dig själv poäng
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType måste vara Inmitterbar för den valda Doc-händelsen
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Du får inte skicka e-post i samband med detta dokument
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Välj minst en kolumn från {0} för att sortera / grupp
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Inte tillåtet för {0}: {1}. Begränsat fält: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Företaget är inte kopplat
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Markera det här om du testar din betalning med sandlådan API
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Du får inte ta bort en standard webbplats tema
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Skapa din första {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Uppdater
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,En Onboarding-bild {0} med samma bildordning finns redan
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Inaktivera rapport
DocType: Translation,Contributed Translation Doctype Name,Bidragsöversättning Doctype Name
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Inställning> Anpassa formulär
DocType: PayPal Settings,Redirect To,Omdirigering till
DocType: Data Migration Mapping,Pull,Dra
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['rapportnamn'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Inte tillåtet
DocType: DocShare,Internal record of document shares,Intern dokumentation av dokument aktier
DocType: Energy Point Settings,Review Levels,Granska nivåer
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Inställning> Användarrättigheter
DocType: Workflow State,Comment,Kommentar
DocType: Data Migration Plan,Postprocess Method,Efterprocessmetod
DocType: DocType Action,Action Type,Åtgärdstyp
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Vis
DocType: Workflow State,remove-circle,Avlägsna cirkel
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Min profil
DocType: Help Article,Beginner,Nybörjare
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Den här åtgärden är endast tillåten för {}
DocType: Contact,Is Primary Contact,Är Primär kontaktperson
+DocType: Event Consumer,Event Consumer,Eventkonsument
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript för att lägga till avsnittet huvudet på sidan.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Lägg till / uppdatera
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Inte tillåtet att skriva ut utkast
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Återställ standard
DocType: Workflow,Transition Rules,Övergångsbestämmelser
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Visar endast de första {0} raderna i förhandsgranskning
apps/frappe/frappe/core/doctype/report/report.js,Example:,Exempel:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,begränsningar
DocType: Workflow,Defines workflow states and rules for a document.,Definierar arbetsflödes status och regler för ett dokument.
@@ -481,7 +487,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Upprepa Till
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Ny
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Du måste skapa dessa först:
-DocType: Google Maps Settings,Google Maps Settings,Google Maps-inställningar
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Laddar ...
DocType: DocField,Password,Lösenord
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Systemet uppdateras. Uppdatera igen efter en stund
@@ -574,6 +579,7 @@ DocType: Onboarding Slide,Onboarding Slide,Onboarding Slide
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Felaktigt lösenord:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Felaktigt lösenord:
DocType: Print Settings,Send document web view link in email,Skicka dokument webbvy länk i e-post
+DocType: Event Consumer Document Type,Event Consumer Document Type,Händelse konsumentdokumenttyp
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Föregående
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Kräv Trusted Certificate
@@ -649,6 +655,7 @@ DocType: Workflow State,volume-down,Sänk volymen
DocType: Onboarding Slide,Help Links,Hjälplänkar
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Åtkomst är inte tillåten från denna IP-adress
DocType: Notification Settings,Enable Email Notifications,Aktivera e-postmeddelanden
+DocType: Document Type Field Mapping,Event Streaming,Händelseströmning
apps/frappe/frappe/desk/reportview.py,No Tags,Inga taggar
DocType: Email Account,Send Notification to,Skicka Anmälan till
DocType: DocField,Collapsible,Hopfällbar
@@ -665,11 +672,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Filt
apps/frappe/frappe/database/database.py,No conditions provided,Inga förutsättningar
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y Axis Fields
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sorteringsfält {0} måste vara ett giltigt fältnamn
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standardadressmall hittades. Skapa en ny från Setup> Print and Branding> Address Mall.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Mer
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Skapa en ny post
DocType: Contact,Sales Manager,FÖRSÄLJNINGSCHEF
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Byt namn
DocType: Print Format,Format Data,Format Data
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} är inte ett giltigt rapportformat. Rapportformatet ska vara ett av följande {1}
DocType: List Filter,Filter Name,Filternamn
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Som
DocType: Assignment Rule,Automation,Automatisering
@@ -688,6 +697,7 @@ DocType: User,Reset Password Key,Återställ lösenord Nyckel
DocType: Dashboard Chart,All Time,Hela tiden
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Otillåten dokumentstatus för {0}
DocType: Email Account,Enable Auto Reply,Aktivera autosvar
+apps/frappe/frappe/desk/query_report.py,No data to export,Inga data att exportera
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Inte Sett
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Det går inte att kartlägga flera skrivare till ett enda utskriftsformat.
DocType: Workflow State,zoom-in,zooma in
@@ -840,6 +850,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Växla anv
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Först
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Uppdatera översättningar
DocType: Error Snapshot,Exception,Undantag
+DocType: Event Consumer,Event Consumer Document Types,Händelse konsumentdokumenttyper
DocType: Email Account,Use IMAP,Använd IMAP
DocType: Activity Log,Activity Log,Aktivitets Logg
DocType: View Log,Viewed By,Visad av
@@ -879,6 +890,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,St
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konfigurera diagram
DocType: User,Last IP,Senast IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Lägg till ett ämne i din email
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Felaktiga transaktioner
DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} har återgått {1}
DocType: Email Account,Track Email Status,Spåra e-poststatus
@@ -910,6 +922,7 @@ DocType: Email Queue,Attachments,Bilagor
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Du har inte behörighet att få tillgång till det här dokumentet
DocType: Language,Language Name,språk Namn
DocType: Email Group Member,Email Group Member,E-post Grupp medlemmar
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Inget e-postkonto kopplat till användaren. Lägg till ett konto under User> Email Inbox.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Ditt konto har blivit låsat och kommer att fortsätta efter {0} sekunder
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Användarbehörigheter används för att begränsa användarna till specifika poster.
DocType: Notification,Value Changed,Värde Ändrad
@@ -1002,6 +1015,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Nämn avslutad
DocType: Help Article,Expert,Expert
DocType: Workflow State,circle-arrow-right,cirkel-pil-höger
DocType: Role Profile,Role Profile,Rollprofil
+DocType: Document Type Mapping,Remote Document Type,Dokumenttyp för fjärrkontroll
apps/frappe/frappe/permissions.py,Document Type is not importable,Dokumenttyp kan inte importeras
DocType: LDAP Settings,LDAP Server Url,LDAP-server webbadress
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Det går inte att öppna exempel när dess {0} är öppen
@@ -1087,7 +1101,7 @@ DocType: Web Form,Allow Print,Tillåt tryck~~POS=HEADCOMP
DocType: Communication,Clicked,Klickade
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Sluta följa
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ingen behörighet att "{0} {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ställ in standard E-postkonto från Setup> E-post> E-postkonto
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Visar endast de första {0} raderna av {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Planerad att skicka
DocType: DocType,Track Seen,spår Sett
DocType: Dropbox Settings,File Backup,Filbackup
@@ -1158,6 +1172,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vä
DocType: Data Export,Filter List,Filterlista
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Eventkonfigurationer
DocType: Email Account,Auto Reply Message,Autosvar Meddelande
DocType: Data Migration Mapping,Condition,Tillstånd
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} timmar sedan
@@ -1217,9 +1232,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Använd allt
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Logga in för att kommentera
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Börja mata in data under denna linje
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},ändrade värden för {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","E-post-ID måste vara unikt, E-postkonto finns redan \ för {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","För jämförelse, använd> 5, <10 eller = 324. För intervall, använd 5:10 (för värden mellan 5 och 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Anpassa ...
DocType: Print Format,Align Labels to the Right,Rikta ut etiketterna till höger
DocType: Assignment Rule,Disabled,Inaktiverad
@@ -1268,8 +1282,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tangentbordsgenvägar
DocType: Post,Comments,Kommentarer
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Bekräfta
+DocType: Event Sync Log,Update Type,Uppdateringstyp
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Autentisering ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Kollapsa alla
+DocType: Event Producer,Last Update,Senaste uppdateringen
apps/frappe/frappe/www/login.html,Forgot Password?,Glömt lösenord?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1310,6 +1326,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,tabell Fie
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolonner baserade på
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importerar {0} av {1}, {2}"
DocType: Workflow State,move,drag
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Det gick inte att skapa en händelsekonsument eller en händelsekonsument för den aktuella webbplatsen är redan registrerad.
apps/frappe/frappe/model/document.py,Action Failed,åtgärden misslyckades
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,för användare
DocType: View Log,View log,Visa logg
@@ -1473,6 +1490,7 @@ DocType: DefaultValue,Key,Nyckel
DocType: Address,Contacts,Kontakter
DocType: System Settings,Setup Complete,Installationen är klar
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport från alla dokument
+DocType: Event Consumer,Callback URL,URL för återuppringning
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Importmallen ska vara av typen .csv, .xlsx eller .xls"
apps/frappe/frappe/www/update-password.html,New Password,Nytt Lösenord
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filter {0} saknas
@@ -1539,7 +1557,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Fra
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Ej tillåtet i skick
DocType: Async Task,Async Task,Async Uppgift
DocType: Workflow State,picture,bild
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Komplett
+DocType: Scheduled Job Log,Complete,Komplett
DocType: DocType,Image Field,bildfält
DocType: Print Format,Custom HTML Help,Custom HTML Help
DocType: LDAP Settings,Default Role on Creation,Standardroll för skapandet
@@ -1565,6 +1583,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hjälp på Sök
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrerad men inaktiverat
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adress måste kopplas till ett företag. Lägg till en rad för företag i tabellen Länkar nedan.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Auto Repeat för detta dokument har inaktiverats.
DocType: DocType,Hide Copy,Dölj Kopiera
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Rensa alla roller
@@ -1603,6 +1622,7 @@ DocType: Bulk Update,Field,Fält
DocType: Communication,Received,Mottagna
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger på giltiga metoder som "before_insert", "after_update", etc (beror på DocType vald)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},ändrat värde på {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Ange e-postkonto, ange ditt lösenord för: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Lägga Systemansvarig till denna användare eftersom det måste finnas minst en Systemansvarig
DocType: Chat Message,URLs,Webbadresser adresser~~POS=HEADCOMP
DocType: Data Migration Run,Total Pages,Totalt antal sidor
@@ -1610,7 +1630,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Bifoga bild
DocType: Workflow State,list-alt,list-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Lösenord Uppdaterad
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Inställning> Användarrättigheter
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Åtgärder för att verifiera din inloggning
apps/frappe/frappe/utils/password.py,Password not found,Lösenord inte hittade
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1626,8 +1645,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-instä
DocType: Report,Query Report,Frågo Rapport
DocType: User,Set New Password,Ange nytt lösenord
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Inte tillåtet för {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s är inte ett giltigt rapportformat. Rapportformat ska \ innehålla en av följande %s
DocType: Chat Message,Chat,Chatta
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Inga dokument hittade taggade med {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-gruppkartläggning
@@ -1663,7 +1680,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ange ditt
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Tillträde Secret
DocType: Tag Link,Document Title,Dokument titel
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatorisk)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år sedan
DocType: Social Login Key,Social Login Provider,Social inloggningsleverantör
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Lägg till en ny kommentar
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Inga data finns i filen. Sätt tillbaka den nya filen med data.
@@ -1711,6 +1727,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Välj t
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 år
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Radera permanent {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Samma fil har redan varit knuten till posten
+DocType: Event Sync Log,Synced,synkroniserad
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} är inte ett giltig tillstånd för arbetsflöde. Uppdatera ditt arbetsflöde och försök igen.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,gav {0} poäng
DocType: Workflow State,wrench,skiftnyckel
@@ -1813,6 +1830,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,B
DocType: Web Form Field,Max Length,Maxlängd
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,map-markör
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Kartläggningskonfigurationen mellan två doktyper.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Skicka en händelse
DocType: Event,Repeat this Event,Upprepa detta evenemang
DocType: Address,Maintenance User,Serviceanvändare
@@ -1872,6 +1890,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test E-postadress
DocType: Auto Repeat,Reference Document Type,Referensdokument Typ
DocType: ToDo,Sender,Avsändare
+DocType: Event Consumer,Incoming Change,Inkommande förändring
DocType: Google Drive,Backup Folder Name,Säkerhetskopimappens namn
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Fel vid utvärdering av anmälan {0}. Snälla fixa din mall.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1934,9 +1953,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Nytt uts
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Klicka på länken nedan för att godkänna begäran
DocType: Workflow State,align-left,rikta vänster
DocType: Onboarding Slide,Action Settings,Handlingsinställningar
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Inställning> Användare
DocType: User,Defaults,Standard
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","För jämförelse, använd> 5, <10 eller = 324. För intervall, använd 5:10 (för värden mellan 5 och 10)."
DocType: Energy Point Log,Revert Of,Återgå till
+DocType: Document Type Mapping,Field Mapping,Fältkartläggning
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sammanfoga med befintlig
DocType: User,Birth Date,Födelsedag
DocType: Communication Link,Link Title,Link Title
@@ -1964,6 +1984,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tag länk
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Chain Integrity
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,I test
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Valuta = [?] fraktion för t.ex. 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Delvis framgångsrik
@@ -1973,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP-gruppkartläggningar
DocType: Chat Message Attachment,Chat Message Attachment,Chat meddelande bifogad
DocType: LDAP Settings,Path to CA Certs File,Sökväg till CA Certs-fil
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Om dokumentet har olika fältnamn på producenten och konsumentens slut, kontrollera detta och ställ in kartläggningen"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Tillåt läsning på alla länkalternativ
DocType: DocType,Database Engine,databasmotorn
@@ -2107,6 +2129,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Notera
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Felrapport
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Exportera data i CSV / Excel-format.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Dokumenttyp Fältkartläggning
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Ställa in dokument för global sökning.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Autentiseringsprogram som du kan använda är:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} finns redan. Välj ett annat namn
@@ -2182,7 +2205,6 @@ DocType: Workflow State,Upload,Överför
DocType: User Permission,Advanced Control,Avancerad kontroll
DocType: System Settings,Date Format,Datumformat
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Inte Publicerad
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standardadressmall hittades. Skapa en ny från Setup> Print and Branding> Address Mall.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Atgärder för arbetsflöde (t.ex. godkänna, Avbryt)."
DocType: Data Import,Skip rows with errors,Hoppa över rader med fel
DocType: Workflow State,flag,flagga
@@ -2245,6 +2267,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Representerar tillstånd som tillåts i ett dokument och roll som att ändra tillståndet.
DocType: Data Migration Connector,Database Name,Databas namn
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Uppdatera Formulär
+DocType: Event Producer,Event Producer,Eventproducent
DocType: DocField,Select,Välj
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Visa fullständig logg
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Simple Python Expression, Exempel: status == 'Open' och typ == 'Bug'"
@@ -2346,6 +2369,7 @@ DocType: DocType,User Cannot Search,Användaren kan inte söka
DocType: Communication Link,Communication Link,Kommunikationslänk
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Ogiltigt Utdataformat
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Kan inte {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,En återkommande {0} {1} har skapats för dig via Auto Repeat {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Tillämpa denna regel om användaren är ägare
DocType: Global Search Settings,Global Search Settings,Inställningar för global sökning
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Kommer att vara ditt inloggnings-ID
@@ -2363,12 +2387,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-kod för in
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Lägg till att göra
DocType: Footer Item,Company,Företaget
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Genomsnitt av {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Framgångsrika transaktioner
DocType: Scheduled Job Log,Scheduled,Planerad
DocType: User,Logout from all devices while changing Password,Logga ut från alla enheter medan du byter lösenord
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Verifiera Lösenord
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Det fanns fel
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Ange klient-id och klienthemlighet i Googles inställningar.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Stänga
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",E-post-ID måste vara unikt. E-postkonto finns redan för {0}
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Det går inte att ändra docstatus från 0 till 2
DocType: File,Attached To Field,Bifogad till fält
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Uppdatera
@@ -2476,6 +2502,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Månad
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Lägg Reference: {{ reference_doctype }} {{ reference_name }} för att skicka dokument referens
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Endast användare som är involverade i dokumentet listas
DocType: DocField,Fetch From,Hämta från
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Inställning> Anpassa formulär
apps/frappe/frappe/modules/utils.py,App not found,App inte hittas
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Det går inte att skapa en {0} mot ett underordnat dokument: {1}
DocType: Social Login Key,Social Login Key,Social inloggnings nyckel
@@ -2487,7 +2514,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chattme
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Socialt hem
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Sätt Efter kan inte ställas in som {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Dela {0} med
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Kontoinställningar e-postadress Ange ditt lösenord för:
DocType: Workflow State,hand-up,hand upp
DocType: Blog Settings,Writers Introduction,Författarna Inledning
DocType: Address,Phone,Telefon
@@ -2546,7 +2572,7 @@ DocType: Web Page,Insert Style,Infoga stil
DocType: Prepared Report,Error Message,Felmeddelande
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ny rapport namn
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Dölj helgerna
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Genererar automatiskt återkommande dokument.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Genererar automatiskt återkommande dokument.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Är
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,infoskylt
@@ -2554,7 +2580,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Värde
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hur ska denna valuta formateras? Om inte satt, kommer systemet som standard"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Skicka {0} dokument?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Du måste vara inloggad och ha System Manager roll för att kunna få tillgång till säkerhetskopior.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Fel vid anslutning till QZ Tray Application ...
Du måste ha QZ Tray-applikation installerad och igång för att kunna använda Raw Print-funktionen.
Klicka här för att ladda ner och installera QZ-fack .
Klicka här för att lära dig mer om Raw Printing ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Skrivarkartläggning
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Spara innan bifogning.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Vill du avbryta alla länkade dokument?
@@ -2584,6 +2609,7 @@ DocType: Role Permission for Page and Report,Set Role For,Ställ ROLL FÖR
DocType: GCalendar Account,The name that will appear in Google Calendar,Namnet som kommer att visas i Google Kalender
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Direktrum med {0} existerar redan.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Uppfriskande ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Kontrollera filtervärdena som är inställda på Dashboard Chart: {}
DocType: Event,Starts on,Startar på
DocType: System Settings,System Settings,Systeminställningar
DocType: GCalendar Settings,Google API Credentials,Googles API-referenser
@@ -2609,6 +2635,7 @@ DocType: Workflow State,ok-sign,OK-tecken
apps/frappe/frappe/config/settings.py,Deleted Documents,Raderade dokument
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV-formatet är skiftlägeskänsligt
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon finns redan
+DocType: Event Consumer Document Type,Approval Status,Godkännandestatus
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Ange i vilka domäner alla bilder ska visas. Om inget anges visas bilden som standard i alla domäner.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicera
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Fält {1} i rad {2} kan inte döljas och obligatoriskt utan standard
@@ -2628,6 +2655,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Hjälpartiklar
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Typ:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Din betalning har misslyckats.
+DocType: Event Producer,Producer URL,Producentens URL
DocType: Comment,Unshared,odelade
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modul hittades inte
@@ -2639,6 +2667,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,uppdrag Avslutade
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Bulk Redigera {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Hämta rapport
+apps/frappe/frappe/model/workflow.py,Workflow Status,Arbetsflödesstatus
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Inte aktiv
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Endast administratör har rätt att skapa kartläggningskällor i instrumentpanelen
DocType: About Us Settings,Settings for the About Us Page,Inställningar för oss Page
@@ -2648,6 +2677,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Skr
DocType: Notification Settings,Energy Points,Energipoäng
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Tid {0} måste vara i format: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,t.ex. pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}: Det gick inte att bifoga nytt återkommande dokument. Aktivera {1} i Utskriftsinställningar för att aktivera bifogande dokument i e-postmeddelandet om automatisk upprepning
DocType: User,Generate Keys,Generera nycklar
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Detta kommer att ta bort dina data permanent.
DocType: DocType,View Settings,Visa inställningar
@@ -2699,6 +2729,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Allt
DocType: Email Queue,Recipient,Mottagare
DocType: Webhook,Webhook Security,Webhook Security
+DocType: Event Sync Log,Producer Document Name,Producentdokumentnamn
DocType: Communication,Has Attachment,har Attachment
DocType: Address,Sales User,Försäljningsanvändar
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Dra och släpp verktyg för att bygga och anpassa utskriftsformat.
@@ -2734,6 +2765,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Barntabeller visas som ett rutnät i andra DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Inställning Auto E-post
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Ner
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Webbplatsen du vill prenumerera på för konsumtiva evenemang.
DocType: Chat Profile,Message Preview,Förhandsgranskning av meddelande
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Detta är en top-10 vanliga lösenord.
DocType: User,User Defaults,Användarinställningar
@@ -2766,6 +2798,7 @@ DocType: Dashboard Chart,Last Synced On,Senast synkroniserad
DocType: Comment,Comment Type,Kommentar Typ
DocType: OAuth Client,OAuth Client,OAuth-klient
DocType: Assignment Rule,Users,Användare
+DocType: Document Type Mapping,Local Document Type,Lokal dokumenttyp
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Rapporttyp
DocType: DocField,Signature,Namnteckning
@@ -2808,6 +2841,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} självtilldelade denna uppgift: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Ditt land
DocType: Assignment Rule Day,Sunday,Söndag
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Underhåller en logg över alla infogningar, uppdateringar och raderingar på händelseproducentens webbplats för dokument som har konsumenter."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Fältnamn kan inte vara ett av {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,ställningar
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,I Grid View
@@ -2955,7 +2989,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar och kommentarer
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","När du ändra rett dokument efter Avbryt och spara den, kommer det att bli ett nytt nummer som är en version av det gamla numret."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Ej tillåtet att bifoga {0} dokument, vänligen aktivera Tillåt utskrift för {0} i utskriftsinställningar"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto är inte inställt. Skapa ett nytt e-postkonto från Inställning> E-post> E-postkonto
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Se dokumentet vid {0}
DocType: Stripe Settings,Publishable Key,Publicerbar nyckel
DocType: Stripe Settings,Publishable Key,Publicerbar nyckel
@@ -3033,7 +3066,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Info:
DocType: Custom Field,Permission Level,Behörighetsnivå
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan inte ange skickad, avbryt eller ändra utan att skriva"
DocType: List View Setting,Disable Count,Inaktivera Count
-DocType: Google Maps Settings,Client Key,Klient nyckel
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Är du säker på att du vill ta bort den bifogade filen?
apps/frappe/frappe/__init__.py,Thank you,Tack
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Spara
@@ -3160,6 +3192,7 @@ DocType: Workflow Document State,Only Allow Edit For,Endast Tillåt Redigera fö
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Säkerhetskopiera till Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Obligatoriskt fält: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Ditt namn
+DocType: Event Producer Document Type,Event Producer Document Type,Eventproducent Dokumenttyp
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Anslutningsframgång
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,En Onboarding-bild av diabildtyp fortsätter finns redan.
@@ -3230,6 +3263,7 @@ DocType: Address,Postal Code,Postkod
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Länka Communication
DocType: Translation,Contributed,Bidrog
apps/frappe/frappe/config/customization.py,Form Customization,Formanpassning
+DocType: Event Update Log,Event Update Log,Händelseuppdateringslogg
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Inga aktiva sessioner
DocType: Web Form,Route to Success Link,Rutt till framgångslänk
DocType: Onboarding Slide Field,Right,Höger
@@ -3256,7 +3290,7 @@ DocType: Website Settings,Chat Operators,Chattoperatörer
DocType: S3 Backup Settings,ca-central-1,ca-central-1
DocType: Contact Us Settings,Pincode,Pinkod
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Se till att det inte finns några tomma kolumner i filen.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Spårar milstolpar i livscykeln för ett dokument om det genomgår flera steg.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Spårar milstolpar i livscykeln för ett dokument om det genomgår flera steg.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Byt namn på filer och ersatt kod i kontroller, kontrollera!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Se till att din profil har en e-postadress
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Du har osparade ändringar i detta formulär. Spara innan du fortsätter.
@@ -3283,7 +3317,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Spara API-hemlighet:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Det går inte att länka annullerade dokument: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Det går inte att redigera en standardrapport. Vänligen kopiera och skapa en ny rapport
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Företaget är obligatorisk, eftersom det är företagets adress"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Till exempel: Om du vill inkludera dokument-ID, använd {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Välj tabellkolumner för {0}
DocType: Custom Field,Options Help,Alternativ Hjälp
@@ -3291,7 +3324,6 @@ DocType: Footer Item,Group Label,grupp~~POS=HEADCOMP Etikett
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google-kontakter har konfigurerats.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 post exporteras
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Inget e-postkonto kopplat till användaren. Lägg till ett konto under User> Email Inbox.
DocType: DocField,Report Hide,Dölj rapport
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Träd inte tillgängligt för {0}
DocType: DocType,Restrict To Domain,Begränsa till domänen
@@ -3357,7 +3389,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Fält {1} av typen {2} kan inte vara obligatoriskt
DocType: System Settings,In Days,I dagar
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Fröken
+DocType: Event Producer Document Type,Has Mapping,Har kartläggning
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Vänligen specificera
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Ogiltigt filtervärde
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Hjälp artikel
DocType: Page,Page Name,Sidnamn
@@ -3465,7 +3499,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Utskriftsformat
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Byt rutnätvy
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Gå till nästa post
-DocType: System Settings,Time Format,Tidsformat
+DocType: Country,Time Format,Tidsformat
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Ogiltiga betalning gateway referenser
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Det här är mallfilen som genereras med endast raderna med något fel. Du bör använda den här filen för korrigering och import.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Ange behörigheter på dokumenttyper och roller
@@ -3791,6 +3825,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Tillåt inloggning med användarnamn
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Aktivera rapport
DocType: DocField,Display Depends On,Visas beror på
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år sedan
DocType: Social Login Key,API Endpoint,API slutpunkt
DocType: Web Page,Insert Code,Infoga kod
DocType: Data Migration Run,Current Mapping Type,Aktuell kartläggningstyp
@@ -3844,6 +3879,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Bek
apps/frappe/frappe/www/login.html,Or login with,Eller logga in med
DocType: Error Snapshot,Locals,Lokalbefolkningen
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Kommuniceras via {0} på {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Eventproducentens dokumenttyper
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ställ in standard E-postkonto från Setup> E-post> E-postkonto
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Välj grupp efter ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,t.ex. (55 + 434) / 4 eller = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} krävs
@@ -3876,9 +3913,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Ange starttid
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportera data
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Underhåller en logg över varje händelse som konsumeras tillsammans med statusen för synkroniseringen och en Resync-knapp om synkroniseringen misslyckas.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Välj kolumner
DocType: Translation,Source Text,källtext
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Detta är en bakgrundsrapport. Ställ in lämpliga filter och generera sedan ett nytt.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto är inte konfigurerat. Skapa ett nytt e-postkonto från Inställning> E-post> E-postkonto
apps/frappe/frappe/www/login.py,Missing parameters for login,Saknade parametrar för inloggning
DocType: Workflow State,folder-open,mapp öppen
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",När de har skickats in kan inte skickbara dokument ändras De kan bara avbrytas och ändras.
@@ -3958,6 +3997,7 @@ DocType: Blog Post,Published On,Publicerad den
DocType: Contact,Gender,Kön
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Obligatorisk information saknas:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} återställde dina poäng på {1}
+DocType: Event Consumer,Event Subscriber,Abonnent för evenemang
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Kontrollera önskad URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Endast 200 skär tillåts i en förfrågan
DocType: Footer Item,URL,URL
@@ -3970,6 +4010,7 @@ DocType: Auto Email Report,Half Yearly,Halvår
DocType: Communication,Marked As Spam,Markerats som skräppost
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Det finns vissa problem med filen url: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Träd
+DocType: Event Producer Document Type,Use Same Name,Använd samma namn
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Det är inte tillåtet att skriva ut denna rapport
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Användarbehörigheter
DocType: Workflow State,warning-sign,varningstecken
@@ -3979,6 +4020,7 @@ DocType: Workflow State,User,Användare
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Visa titel i webbläsarfönstret som "Prefix - titeln"
DocType: Payment Gateway,Gateway Settings,Gateway-inställningar
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,text i dokument typ
+DocType: Event Sync Log,Event Sync Log,Händelsynkroniseringslogg
apps/frappe/frappe/handler.py,Logged Out,Utloggad
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Mer...
DocType: System Settings,User can login using Email id or Mobile number,Användaren kan logga in med e-post eller mobilnummer
@@ -4019,12 +4061,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Inte I
DocType: Workflow State,star,stjärna
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Nav
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,Om detta är markerat kommer dokumenten att ha samma namn som de har på händelseproducentens webbplats
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,värden separerade med kommatecken
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max bredd för typ Valuta är 100px i rad {0}
apps/frappe/frappe/config/website.py,Content web page.,Innehåll webbsida.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Lägg till en ny roll
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Besök webbsidan
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nytt uppdrag
+DocType: Event Consumer Document Type,Approved,Godkänd
DocType: Google Contacts,Last Sync On,Senast synkroniserad
DocType: Deleted Document,Deleted Document,raderade dokument
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hoppsan! Något gick snett
@@ -4077,7 +4121,6 @@ DocType: DocField,Unique,Unik
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} uppskattat {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Delvis framgång
DocType: Email Account,Service,Tjänsten
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Inställning> Användare
DocType: File,File Name,Filnamn
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Hittade inte {0} för {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4089,11 +4132,10 @@ DocType: Calendar View,Calendar View,Kalendervy
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Redigera Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Avsluta registrering
DocType: GCalendar Settings,Enable,Gör det möjligt
-DocType: Google Maps Settings,Home Address,Hemadress
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Du kan bara ladda upp 5000 register på en gång. (Kan vara mindre i vissa fall)
DocType: Report,"output in the form of `data = [columns, result]`","ut i form av `data = [kolumner, resultat]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Tillämpliga dokumenttyper
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Ställ in regler för användaruppdrag.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Ställ in regler för användaruppdrag.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Otillräcklig tillåtelse för {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Otillräcklig tillåtelse för {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Rapporten sparades inte (det fanns fel)
diff --git a/frappe/translations/sw.csv b/frappe/translations/sw.csv
index e514b29cc7..abd17b0733 100644
--- a/frappe/translations/sw.csv
+++ b/frappe/translations/sw.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Jukumu hili la kuruhusu Ruhusa ya Mtumiaji kwa mtumiaji
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Badilisha tena {0}
DocType: Workflow State,zoom-out,zoom-out
-DocType: Data Import Beta,Import Options,Chaguzi za kuagiza
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Haiwezi kufungua {0} wakati mfano wake ulipo wazi
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Jedwali {0} haiwezi kuwa tupu
DocType: SMS Parameter,Parameter,Kipimo
@@ -83,7 +82,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Futa
DocType: DocType,Is Published Field,Inayochapishwa Field
DocType: GCalendar Settings,GCalendar Settings,Mipangilio ya GCalendar
DocType: Email Group,Email Group,Kundi la barua pepe
-apps/frappe/frappe/__init__.py,Only for {},Tu kwa {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Kalenda ya Google - Haikuweza kufuta Tukio {0} kutoka Kalenda ya Google, nambari ya kosa {1}."
DocType: Event,Pulled from Google Calendar,Iliyohamishwa kutoka Kalenda ya Google
DocType: Note,Seen By,Kuonekana na
@@ -91,9 +89,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Ongeza Multiple
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Sio Picha ya Mtumiaji halali.
DocType: Energy Point Log,Reverted,Imerudishwa
DocType: Success Action,First Success Message,Ujumbe wa Kwanza wa Mafanikio
+DocType: Document Type Mapping,Document Type Mapping,Ramani ya Aina ya Hati
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Si kama
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Thamani isiyo sahihi: {0} lazima {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Badilisha mali ya shamba (kujificha, readonly, ruhusa nk)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Wavuti inayotumia hafla zako.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Thamini
DocType: Notification Settings,Document Share,Kushiriki kwa Hati
DocType: Workflow State,lock,funga
@@ -113,11 +113,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Ingia
DocType: Workflow State,indent-right,indent-haki
DocType: Has Role,Has Role,Inahusika
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Sawazisha tena
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Muda kwa sekunde ili kuhifadhi picha ya QR kwenye seva. Kidogo: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} kwa {2} haiwezi kuelekezwa
DocType: Dashboard Chart,Timespan,Timespan
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Kiungo cha Mtandao
DocType: Deleted Document,Restored,Imerejeshwa
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Kosa la unganisho na Matumizi ya Tray ya QZ ...
Unahitaji kuwa na programu ya QZ Tray iliyosanikishwa na kuendeshwa, ili kutumia kipengee cha Mchapishaji wa Raw.
Bonyeza hapa kupakua na kusanikisha tray ya QZ .
Bonyeza hapa kujifunza zaidi juu ya Uchapishaji wa Raw ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Dakika 1 iliyopita
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Mbali na Meneja wa Mfumo, majukumu na Hifadhi ya Mtumiaji wa Kuweka haki inaweza kuweka ruhusa kwa watumiaji wengine kwa Aina hiyo ya Nyaraka."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Sanidi Kisa
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,UNSEEN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Meneja wa faili
DocType: Website Settings,"HTML Header, Robots and Redirects","Mkuu wa HTML, Robots na Uelekezaji"
DocType: GCalendar Account,Refresh Token,Rejea Kitambulisho
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Imeshindwa kuunganisha kwenye Wavuti ya Tukio. Jaribu tena baada ya muda.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Hakuna kazi inayosubiri au ya sasa ya tovuti hii
DocType: Webhook,Doc Event,Tukio la Doc
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,Meneja wa Hati
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Hakuna shughuli
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Programu ya Tatu
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Mtumiaji wa kwanza atakuwa Meneja wa Mfumo (unaweza kubadilisha hii baadaye).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Unaweza kujaribu kubadilisha vichungi vya ripoti yako.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Hakuna Matukio Leo
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Hauwezi kujipa nukuu za ukaguzi kwako
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType lazima iwasilishwe kwa Tukio la Doc iliyochaguliwa
@@ -239,6 +243,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Huruhusiwi kupeleka barua pepe zinazohusiana na waraka huu
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Tafadhali chagua safu ya safu ya 1 kutoka {0} ili kutatua / kikundi
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Hairuhusiwi kwa {0}: {1}. Sehemu iliyofungwa: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Kampuni haijaunganishwa
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Angalia hii ikiwa unapima malipo yako kwa kutumia Sandbox API
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Huruhusiwi kufuta Mandhari ya Tovuti ya kawaida
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Unda {0} yako ya kwanza
@@ -258,7 +263,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Inasisha {0}
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Zima Ripoti
DocType: Translation,Contributed Translation Doctype Name,Imechangiwa Jina la Doctype Jina
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Usanidi> Fomu ya Kubinafsisha
DocType: PayPal Settings,Redirect To,Rejea Kwa
DocType: Data Migration Mapping,Pull,Piga
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Jarida la Javascript: vivutio vya usafiri ['REPORTNAME'] = {}
@@ -271,6 +275,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Hairuhusiwi
DocType: DocShare,Internal record of document shares,Rekodi ya ndani ya hisa za hati
DocType: Energy Point Settings,Review Levels,Viwango vya Mapitio
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sanidi> Ruhusa za Mtumiaji
DocType: Workflow State,Comment,Maoni
DocType: Data Migration Plan,Postprocess Method,Njia ya Utumaji
DocType: DocType Action,Action Type,Aina ya Kitendo
@@ -320,7 +325,9 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Ony
DocType: Workflow State,remove-circle,kuondoa-mzunguko
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profaili yangu
DocType: Help Article,Beginner,Mwanzoni
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Kitendo hiki kinaruhusiwa tu kwa {}
DocType: Contact,Is Primary Contact,Mawasiliano ya Msingi
+DocType: Event Consumer,Event Consumer,Mtumiaji wa hafla
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript kuongezea sehemu ya kichwa cha ukurasa.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Ongeza / Sasisha
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Hairuhusiwi kuchapisha hati za rasimu
@@ -473,7 +480,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Rudia hadi Mpaka
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Mpya
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Unahitaji kuunda hizi kwanza:
-DocType: Google Maps Settings,Google Maps Settings,Mipangilio ya Ramani za Google
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Inapakia ...
DocType: DocField,Password,Nenosiri
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Mfumo wako unasasishwa. Tafadhali furahisha tena baada ya muda mfupi
@@ -565,6 +571,7 @@ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy
DocType: Onboarding Slide,Onboarding Slide,Kuweka Slide
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Password batili:
DocType: Print Settings,Send document web view link in email,Tuma kiungo cha hati ya mtandao kwenye barua pepe
+DocType: Event Consumer Document Type,Event Consumer Document Type,Aina ya Hati ya Watumiaji
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Kabla
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Zinahitaji Cheti cha Kuaminiwa
@@ -640,6 +647,7 @@ DocType: Workflow State,volume-down,kiasi-chini
DocType: Onboarding Slide,Help Links,Viunga vya Msaada
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Ufikiaji hairuhusiwi kutoka kwa Anwani hii ya IP
DocType: Notification Settings,Enable Email Notifications,Wezesha Arifa za Barua pepe
+DocType: Document Type Field Mapping,Event Streaming,Utiririshaji wa hafla
apps/frappe/frappe/desk/reportview.py,No Tags,Hakuna Lebo
DocType: Email Account,Send Notification to,Tuma Arifa kwa
DocType: DocField,Collapsible,Haiwezekani
@@ -656,11 +664,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Futa
apps/frappe/frappe/database/database.py,No conditions provided,Hakuna masharti yaliyotolewa
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Mashamba Y Axis
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Aina ya aina {0} lazima iwe jina la shamba la halali
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Hakuna Kiolezo cha anwani default kilichopatikana. Tafadhali unda mpya kutoka kwa Kusanidi> Kuchapa na Kuweka alama> Kiolezo cha Anwani.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Zaidi
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Unda rekodi mpya
DocType: Contact,Sales Manager,Meneja wa Mauzo
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Badilisha tena
DocType: Print Format,Format Data,Weka Data
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} sio muundo halali wa ripoti. Fomati ya ripoti inapaswa kuwa moja ya ifuatayo {1}
DocType: List Filter,Filter Name,Jina la Filter
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Kama
DocType: Assignment Rule,Automation,Operesheni
@@ -679,6 +689,7 @@ DocType: User,Reset Password Key,Weka upya Neno la Nywila
DocType: Dashboard Chart,All Time,Muda wote
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Hali ya hati ya halali kwa {0}
DocType: Email Account,Enable Auto Reply,Wezesha Auto Jibu
+apps/frappe/frappe/desk/query_report.py,No data to export,Hakuna data ya kuuza nje
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Haionekani
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Haiwezi kuchapisha nyingi kwenye ramani kwa muundo mmoja wa kuchapisha.
DocType: Workflow State,zoom-in,inzisha
@@ -829,6 +840,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Badilisha
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Kwanza
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Sasisha Tafsiri
DocType: Error Snapshot,Exception,Uzoefu
+DocType: Event Consumer,Event Consumer Document Types,Aina za Hati ya Watumiaji
DocType: Email Account,Use IMAP,Tumia IMAP
DocType: Activity Log,Activity Log,Ingia ya Shughuli
DocType: View Log,Viewed By,Imeonekana
@@ -867,6 +879,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Wek
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Sanidi chati
DocType: User,Last IP,IP ya mwisho
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Tafadhali ongeza suala la barua pepe yako
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Usafirishaji ulioondolewa
DocType: Data Migration Connector,Data Migration Connector,Connector Connection Connector
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} ilibadilishwa {1}
DocType: Email Account,Track Email Status,Fuatilia Hali ya barua pepe
@@ -897,6 +910,7 @@ DocType: Email Queue,Attachments,Viambatisho
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Huna ruhusa ya kufikia hati hii
DocType: Language,Language Name,Jina la Lugha
DocType: Email Group Member,Email Group Member,Mjumbe wa Kikundi cha barua pepe
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Hakuna akaunti ya barua pepe inayohusiana na Mtumiaji. Tafadhali ongeza akaunti chini ya Mtumiaji> Kikasha cha barua pepe.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Akaunti yako imefungwa na itaanza baada ya {0} sekunde
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Vidokezo vya mtumiaji hutumiwa kupunguza watumiaji kwa rekodi maalum.
DocType: Notification,Value Changed,Thamani imebadilishwa
@@ -988,6 +1002,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Taja URL ya kuk
DocType: Help Article,Expert,Mtaalam
DocType: Workflow State,circle-arrow-right,mduara-arrow-kulia
DocType: Role Profile,Role Profile,Profaili ya Wajibu
+DocType: Document Type Mapping,Remote Document Type,Aina ya Hati ya Kijijini
apps/frappe/frappe/permissions.py,Document Type is not importable,Aina ya Hati haiingiliwi
DocType: LDAP Settings,LDAP Server Url,Url ya Server LDAP
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Haiwezi kufungua mfano wakati {0} yake imefunguliwa
@@ -1072,7 +1087,6 @@ DocType: Web Form,Allow Print,Ruhusu Print
DocType: Communication,Clicked,Imebofya
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Ondoa wazi
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Hakuna kibali cha '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Tafadhali seti Akaunti ya barua pepe ya usanidi kutoka kwa Usanidi> Barua pepe> Akaunti ya barua pepe
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Imepangwa kutuma
DocType: DocType,Track Seen,Kufuatilia Kuonekana
DocType: Dropbox Settings,File Backup,Funga Backup
@@ -1142,6 +1156,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,cha
DocType: Data Export,Filter List,Orodha ya Filter
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Usanidi wa hafla
DocType: Email Account,Auto Reply Message,Ujumbe wa Jibu la Auto
DocType: Data Migration Mapping,Condition,Hali
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} masaa iliyopita
@@ -1201,9 +1216,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Daima kutumi
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Ingia ili kutoa maoni
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Anza kuingia data chini ya mstari huu
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},mabadiliko ya maadili kwa {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Kitambulisho cha barua pepe kinapaswa kuwa cha pekee, Akaunti ya barua pepe tayari ikopo kwa {0}"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Kwa kulinganisha, tumia> 5, <10 au = 324. Kwa safu, tumia 5:10 (kwa maadili kati ya 5 & 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Customize ...
DocType: Print Format,Align Labels to the Right,Unganisha Lebo kwa Haki
DocType: Assignment Rule,Disabled,Walemavu
@@ -1250,8 +1264,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Njia za mkato za kibodi
DocType: Post,Comments,Maoni
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Thibitisha
+DocType: Event Sync Log,Update Type,Sasisha Aina
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Inathibitisha ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Omba Wote
+DocType: Event Producer,Last Update,Sasisha Mwisho
apps/frappe/frappe/www/login.html,Forgot Password?,Umesahau nywila?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,Kitambulisho
@@ -1291,6 +1307,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Shamba la
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Nguzo zimezingatia
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Inahamisha {0} kati ya {1}, {2}"
DocType: Workflow State,move,hoja
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Imeshindwa kuunda Mtumiaji wa Tukio au Mtumiaji wa Tukio kwa tovuti ya sasa imesajiliwa.
apps/frappe/frappe/model/document.py,Action Failed,Hatua Imeshindwa
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Kwa Mtumiaji
DocType: View Log,View log,Ona logi
@@ -1453,6 +1470,7 @@ DocType: DefaultValue,Key,Muhimu
DocType: Address,Contacts,Mawasiliano
DocType: System Settings,Setup Complete,Kuweka Kukamilisha
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Ripoti ya hisa zote za hati
+DocType: Event Consumer,Callback URL,URL ya Kurudisha nyuma
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Kiolezo cha kuingiza kinapaswa kuwa cha aina .csv, .xlsx au .xls"
apps/frappe/frappe/www/update-password.html,New Password,Nywila mpya
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Futa {0} haipo
@@ -1518,7 +1536,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Kuf
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; haruhusiwi kwa masharti
DocType: Async Task,Async Task,Kazi ya Async
DocType: Workflow State,picture,picha
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Jaza
+DocType: Scheduled Job Log,Complete,Jaza
DocType: DocType,Image Field,Shamba la Picha
DocType: Print Format,Custom HTML Help,Msaada wa HTML wa kawaida
DocType: LDAP Settings,Default Role on Creation,Jukumu Mbadala la Uumbaji
@@ -1544,6 +1562,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Msaada kwenye Utafutaji
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Imeandikishwa lakini imezimwa
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Anwani inahitaji kuunganishwa na Kampuni. Tafadhali ongeza safu ya Kampuni kwenye Jedwali la Viunga hapa chini.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Kurudia Kiotomatiki kwa hati hii kumezimwa.
DocType: DocType,Hide Copy,Ficha Nakala
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Futa majukumu yote
@@ -1582,6 +1601,7 @@ DocType: Bulk Update,Field,Shamba
DocType: Communication,Received,Imepokea
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Tumia njia zenye halali kama "kabla_insert", "baada ya_update", nk (itategemea DocType iliyochaguliwa)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},thamani iliyobadilishwa ya {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},Usanidi wa Akaunti ya barua pepe tafadhali ingiza nenosiri lako kwa: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Kuongeza Meneja wa Mfumo kwa Mtumiaji huyu kama kuna lazima iwe na Meneja wa Mfumo mmoja
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,Kurasa zote
@@ -1589,7 +1609,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Weka picha
DocType: Workflow State,list-alt,orodha ya juu
apps/frappe/frappe/www/update-password.html,Password Updated,Nenosiri limehifadhiwa
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sanidi> Ruhusa za Mtumiaji
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Hatua za kuthibitisha kuingia kwako
apps/frappe/frappe/utils/password.py,Password not found,Nenosiri haipatikani
DocType: Webhook,Webhook Secret,Siri ya Webhook
@@ -1605,8 +1624,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Mipangilio ya API
DocType: Report,Query Report,Ripoti ya Maswala
DocType: User,Set New Password,Weka Nenosiri Mpya
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Hairuhusiwi kwa {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% s sio sahihi ya muundo ya ripoti. Fomu ya ripoti lazima iwe moja ya yafuatayo% s
DocType: Chat Message,Chat,Ongea
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Hakuna nyaraka zilizopatikana zilizowekwa na {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Ramani ya Kikundi cha LDAP
@@ -1687,6 +1704,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Chagua
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 mwaka
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Futa kabisa {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Faili hiyo imewekwa tayari kwenye rekodi
+DocType: Event Sync Log,Synced,Imesawazishwa
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} sio Hali ya Kazi ya Kazi ya Kazi. Tafadhali sasisha Workflow yako na jaribu tena.
DocType: Workflow State,wrench,wrench
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Haijawekwa
@@ -1788,6 +1806,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,K
DocType: Web Form Field,Max Length,Urefu wa Max
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,alama ya ramani
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Usanidi wa ramani kati ya mafundisho mawili.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Tuma Suala
DocType: Event,Repeat this Event,Kurudia Tukio hili
DocType: Address,Maintenance User,Mtumiaji wa matengenezo
@@ -1847,6 +1866,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Anwani ya barua pepe ya mtihani
DocType: Auto Repeat,Reference Document Type,Aina ya Kumbukumbu ya Kumbukumbu
DocType: ToDo,Sender,Sender
+DocType: Event Consumer,Incoming Change,Mabadiliko yanayokuja
DocType: Google Drive,Backup Folder Name,Jina la Hifadhi ya Hifadhi
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Hitilafu wakati wa kutathmini Arifa {0}. Tafadhali tengeneza template yako.
DocType: GSuite Settings,Google Apps Script,Script Apps ya Google
@@ -1909,9 +1929,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Jina mpy
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Bonyeza kwenye kiunga hapa chini kupitisha ombi
DocType: Workflow State,align-left,salama-kushoto
DocType: Onboarding Slide,Action Settings,Mipangilio ya Kitendo
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sanidi> Mtumiaji
DocType: User,Defaults,Hifadhi
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Kwa kulinganisha, tumia> 5, <10 au = 324. Kwa safu, tumia 5:10 (kwa maadili kati ya 5 & 10)."
DocType: Energy Point Log,Revert Of,Rejea ya
+DocType: Document Type Mapping,Field Mapping,Ramani ya shamba
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Unganisha na zilizopo
DocType: User,Birth Date,Tarehe ya kuzaliwa
DocType: Communication Link,Link Title,Cheza Kiungo
@@ -1939,6 +1960,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Kiungo cha Tag
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Chain Uaminifu
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Katika Mtihani
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",Fedha = =?? Fraction Kwa mfano 1 USD = 100 Cent
DocType: Data Import,Partially Successful,Inafanikiwa kikamilifu
@@ -1948,6 +1970,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Uporaji wa Kundi la LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Shirikisha Ujumbe wa Maandishi
DocType: LDAP Settings,Path to CA Certs File,Njia ya faili ya CA Cert
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,Ikiwa hati hiyo ina majina ya uwanja tofauti kwenye Mzalishaji na Mtumiaji mwisho wake angalia hii na usanidi Ramani
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Ruhusu Chagua Chaguo Zote za Kiungo
DocType: DocType,Database Engine,Injini ya Hifadhi
@@ -2080,6 +2103,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Kumbuka
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Ripoti ya Hitilafu
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Tuma Data katika muundo wa CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Ramani ya Aina ya Nyaraka
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Kuweka hati za Utaftaji wa Ulimwenguni.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Programu za uthibitishaji unazoweza kutumia ni:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} tayari imepo. Chagua jina lingine
@@ -2153,7 +2177,6 @@ DocType: Workflow State,Upload,Pakia
DocType: User Permission,Advanced Control,Udhibiti wa Juu
DocType: System Settings,Date Format,Format ya tarehe
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Haijachapishwa
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Hakuna Kiolezo cha anwani default kilichopatikana. Tafadhali unda mpya kutoka kwa Kusanidi> Kuchapa na Kuweka alama> Kiolezo cha Anwani.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Hatua za uendeshaji wa kazi (kwa mfano, Thibitisha, Futa)."
DocType: Data Import,Skip rows with errors,Ruka safu kwa makosa
DocType: Workflow State,flag,bendera
@@ -2216,6 +2239,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Inaonyesha nchi zilizorejeshwa katika hati moja na jukumu la kupewa mabadiliko ya hali.
DocType: Data Migration Connector,Database Name,Jina la Database
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Furahisha Fomu
+DocType: Event Producer,Event Producer,Mzalishaji wa Tukio
DocType: DocField,Select,Chagua
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Angalia Ingia Kamili
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Maonyesho rahisi ya Python, Mfano: hali == 'Fungua' na chapa == 'Mdudu'"
@@ -2315,6 +2339,7 @@ DocType: DocType,User Cannot Search,Mtumiaji hawezi kutafuta
DocType: Communication Link,Communication Link,Kiunga cha Mawasiliano
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Aina ya Pembejeo batili
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Haiwezi {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,{0} {1} mara kwa mara ameundwa kwako kupitia Rudia Auto {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Tumia kanuni hii ikiwa Mtumiaji ni Mmiliki
DocType: Global Search Settings,Global Search Settings,Mipangilio ya Utaftaji Ulimwenguni
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Itakuwa ID yako ya kuingia
@@ -2332,12 +2357,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kanuni ya QR y
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Ongeza kwa Kufanya
DocType: Footer Item,Company,Kampuni
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Wastani wa {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Uuzaji uliofanikiwa
DocType: Scheduled Job Log,Scheduled,Imepangwa
DocType: User,Logout from all devices while changing Password,Ingia kutoka kwa vifaa vyote wakati ukibadilisha nenosiri
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Thibitisha Nenosiri
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Kulikuwa na makosa
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Ingiza Kitambulisho cha Mteja na Siri ya Mteja katika Mipangilio ya Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Funga
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","Kitambulisho cha barua pepe lazima kiwe cha kipekee, Akaunti ya barua pepe tayari inapatikana kwa {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Haiwezi kubadilisha docstatus kutoka 0 hadi 2
DocType: File,Attached To Field,Imewekwa kwenye shamba
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Sasisha
@@ -2443,6 +2470,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Mwezi
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Ongeza Reference: {{ reference_doctype }} {{ reference_name }} kutuma kumbukumbu ya waraka
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Watumiaji tu waliohusika katika hati hiyo wameorodheshwa
DocType: DocField,Fetch From,Puta Kutoka
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Usanidi> Fomu ya Kubinafsisha
apps/frappe/frappe/modules/utils.py,App not found,Programu haipatikani
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Haiwezi kuunda {0} dhidi ya hati ya mtoto: {1}
DocType: Social Login Key,Social Login Key,Kitu cha Kuingia kwa Jamii
@@ -2454,7 +2482,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Ujumbe
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Nyumba ya Jamii
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Ingiza Baada ya haiwezi kuweka kama {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Shiriki {0} na
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Email kuanzisha Akaunti tafadhali ingiza nenosiri lako kwa:
DocType: Workflow State,hand-up,mkono-up
DocType: Blog Settings,Writers Introduction,Waandishi Utangulizi
DocType: Address,Phone,Simu
@@ -2513,7 +2540,7 @@ DocType: Web Page,Insert Style,Weka Mtindo
DocType: Prepared Report,Error Message,Ujumbe wa Kosa
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Jina Jipya la Taarifa
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ficha Mwishoni mwa wiki
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Inazalisha kiotomati hati zinazorudiwa.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Inazalisha kiotomati hati zinazorudiwa.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Ni
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-ishara
@@ -2521,7 +2548,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Thamani
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Fedha hii inapaswa kupangiliwaje? Ikiwa haijawekwa, itatumia desfaults ya mfumo"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Wasilisha {0} nyaraka?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Unahitaji kuingia na uwe na Meneja wa Mfumo wa Mfumo ili uweze kufikia salama.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Kosa la unganisho na Matumizi ya Tray ya QZ ...
Unahitaji kuwa na programu ya QZ Tray iliyosanikishwa na kuendeshwa, ili kutumia kipengee cha Mchapishaji wa Raw.
Bonyeza hapa kupakua na kusanikisha tray ya QZ .
Bonyeza hapa kujifunza zaidi juu ya Uchapishaji wa Raw ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Ramani ya Printa
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Tafadhali salama kabla ya kuunganishwa.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Je! Unataka kufuta hati zote zilizounganishwa?
@@ -2551,6 +2577,7 @@ DocType: Role Permission for Page and Report,Set Role For,Weka Kazi Kwa
DocType: GCalendar Account,The name that will appear in Google Calendar,Jina ambalo litaonekana katika Kalenda ya Google
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Hatua ya moja kwa moja na {0} tayari imepo.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Inafurahisha ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Tafadhali angalia maadili ya kichujio kilichowekwa kwa Chati ya Dashibodi: {}
DocType: Event,Starts on,Inaanza
DocType: System Settings,System Settings,Mifumo ya Mfumo
DocType: GCalendar Settings,Google API Credentials,Vidokezo vya Google API
@@ -2575,6 +2602,7 @@ DocType: Workflow State,ok-sign,ok-ishara
apps/frappe/frappe/config/settings.py,Deleted Documents,Nyaraka zilizofutwa
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Fomu ya CSV ni nyeti ya kesi
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Icon ya Desktop tayari ipo
+DocType: Event Consumer Document Type,Approval Status,Hali ya kibali
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,Taja katika vikoa vipi ikiwa slaidi itaonekana. Ikiwa hakuna chochote kimeainishwa slaidi inaonyeshwa katika vikoa vyote kwa msingi.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplicate
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: shamba {1} katika safu {2} haiwezi kufichwa na ya lazima bila kiolezo
@@ -2594,6 +2622,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Msaada Makala
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Weka:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Malipo yako yameshindwa.
+DocType: Event Producer,Producer URL,URL ya Mzalishaji
DocType: Comment,Unshared,Haijahamishwa
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Moduli Haikupatikana
@@ -2605,6 +2634,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Kazi Imekamilishwa
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Hariri Kikubwa {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Pakua Ripoti
+apps/frappe/frappe/model/workflow.py,Workflow Status,Hali ya Utiririshaji
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Sio kazi
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Msimamizi tu ndiye anayeruhusiwa kuunda Vyanzo vya Chati vya Dashibodi
DocType: About Us Settings,Settings for the About Us Page,Mipangilio kwa ajili yetu Kuhusu Ukurasa
@@ -2613,6 +2643,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Cha
DocType: Notification Settings,Energy Points,Pointi za Nishati
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Muda {0} lazima uwe katika muundo: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,kwa mfano pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Imeshindwa kushikamana hati mpya inayorudiwa. Ili kuwezesha kushikilia hati katika barua pepe ya arifu ya kurudia otomatiki, wezesha {1} kwenye Mipangilio ya Printa"
DocType: User,Generate Keys,Tengeneza Keys
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Hii itaondoa data yako kabisa.
DocType: DocType,View Settings,Angalia Mipangilio
@@ -2664,6 +2695,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Wote
DocType: Email Queue,Recipient,Mpokeaji
DocType: Webhook,Webhook Security,Usalama wa Wavuti
+DocType: Event Sync Log,Producer Document Name,Jina la Hati ya Mzalishaji
DocType: Communication,Has Attachment,Ina Attachment
DocType: Address,Sales User,Mtumiaji wa Mauzo
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag na Drop chombo cha kujenga na Customize Print Formats.
@@ -2699,6 +2731,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Jedwali za watoto zinaonyeshwa kama gridi ya taifa kwenye nyaraka zingine
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Kuweka Email Barua pepe
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Chini
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Wavuti unayotaka kujisajili kwa hafla za kuteketeza.
DocType: Chat Profile,Message Preview,Ujumbe Preview
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Hii ni nenosiri la kawaida la 10.
DocType: User,User Defaults,Defaults ya Mtumiaji
@@ -2731,6 +2764,7 @@ DocType: Dashboard Chart,Last Synced On,Imesawazishwa mwisho
DocType: Comment,Comment Type,Aina ya maoni
DocType: OAuth Client,OAuth Client,Mteja wa OAuth
DocType: Assignment Rule,Users,Watumiaji
+DocType: Document Type Mapping,Local Document Type,Aina ya Hati ya Karibu
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Aina ya Ripoti
DocType: DocField,Signature,Sahihi
@@ -2772,6 +2806,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} mwenyewe alitoa kazi hii: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Nchi yako
DocType: Assignment Rule Day,Sunday,Jumapili
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Inatunza Ingizo la uwekaji wote, sasisho na ufutaji kwenye tovuti ya Mzalishaji wa Tukio kwa hati ambazo zina watumiaji."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Jina la uwanja haliwezi kuwa moja ya {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Viwango
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Katika Tazama Gridi
@@ -2915,7 +2950,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar na Maoni
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Unapofanya hati baada ya Kufuta na kuiokoa, itapata namba mpya ambayo ni toleo la nambari ya zamani."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Hairuhusiwi kuunganisha {0} hati, tafadhali weza Kuruhusu Chapisha Kwa {0} katika Mipangilio ya Kuchapa"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaunti ya barua pepe sio kusanidi. Tafadhali unda Akaunti mpya ya Barua pepe kutoka kwa Kusanidi> Barua pepe> Akaunti ya barua pepe
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Angalia hati katika {0}
DocType: Stripe Settings,Publishable Key,Kitu cha kuchapishwa
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Anza Kuingiza
@@ -2992,7 +3026,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Maelezo:
DocType: Custom Field,Permission Level,Kiwango cha Ruhusa
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Haiwezi kuweka Isilisha, Futa, Badilisha au Andika"
DocType: List View Setting,Disable Count,Lemaza Hesabu
-DocType: Google Maps Settings,Client Key,Muhimu wa Mteja
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Una uhakika unataka kufuta kiambatisho?
apps/frappe/frappe/__init__.py,Thank you,Asante
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Inahifadhi
@@ -3118,6 +3151,7 @@ DocType: Workflow Document State,Only Allow Edit For,Ruhusu Kuruhusu
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Kuhifadhi nakala rudufu kwenye Hifadhi ya Google.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Sehemu ya lazima: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Jina lako
+DocType: Event Producer Document Type,Event Producer Document Type,Aina ya Hati ya Mzalishaji wa Tukio
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Mafanikio ya uhusiano
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Slide ya Onboarding ya Aina ya slaidi Endelea tayari iko.
@@ -3187,6 +3221,7 @@ DocType: Address,Postal Code,Posta
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Uhusiano wa Relink
DocType: Translation,Contributed,Imechangiwa
apps/frappe/frappe/config/customization.py,Form Customization,Umbo la Fomu
+DocType: Event Update Log,Event Update Log,Sasisha ya Sasisha ya Tukio
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Hakuna Kazi za Kazi
DocType: Web Form,Route to Success Link,Njia ya Mafanikio ya Kiungo
DocType: Onboarding Slide Field,Right,Haki
@@ -3213,7 +3248,7 @@ DocType: Website Settings,Chat Operators,Wafanyakazi wa Mazungumzo
DocType: S3 Backup Settings,ca-central-1,ca-kati-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Tafadhali hakikisha kuwa hakuna safu zilizopo tupu kwenye faili.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Inafuatilia hatua muhimu kwenye maisha ya hati ikiwa inapitia hatua nyingi.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Inafuatilia hatua muhimu kwenye maisha ya hati ikiwa inapitia hatua nyingi.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Faili zilizopewa jina na nambari iliyobadilishwa kwa watawala, tafadhali angalia!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Tafadhali hakikisha kwamba wasifu wako una anwani ya barua pepe
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Una mabadiliko yasiyohifadhiwa katika fomu hii. Tafadhali salama kabla ya kuendelea.
@@ -3240,7 +3275,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Hifadhi siri ya API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Haiwezi kuunganisha hati kufutwa: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Haiwezi kuhariri ripoti ya kawaida. Tafadhali duplicate na unda ripoti mpya
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Kampuni ni lazima, kama ni anwani ya kampuni yako"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Kwa mfano: Ikiwa unataka kuingiza Kitambulisho cha hati, tumia {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Chagua nguzo za Jedwali kwa {0}
DocType: Custom Field,Options Help,Chaguo Msaada
@@ -3248,7 +3282,6 @@ DocType: Footer Item,Group Label,Lebo ya Kikundi
DocType: Kanban Board,Kanban Board,Bodi ya Kanban
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Anwani za Google zimesanidiwa.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Rekodi 1 itahamishwa
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Hakuna akaunti ya barua pepe inayohusiana na Mtumiaji. Tafadhali ongeza akaunti chini ya Mtumiaji> Kikasha cha barua pepe.
DocType: DocField,Report Hide,Ripoti Ficha
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Mtazamo wa mti haupatikani kwa {0}
DocType: DocType,Restrict To Domain,Fungua Domain
@@ -3314,7 +3347,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: shamba {1} ya aina {2} haiwezi kuwa ya lazima
DocType: System Settings,In Days,Katika Siku
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Miss
+DocType: Event Producer Document Type,Has Mapping,Ina Ramani
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Tafadhali fafanua
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Thamani ya Kichujio kisicho sahihi
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Msaada wa Kifungu
DocType: Page,Page Name,Jina la Ukurasa
@@ -3422,7 +3457,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Fomu ya Kuchapa
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Badilisha Grid View
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Nenda kwenye rekodi inayofuata
-DocType: System Settings,Time Format,Njia ya Wakati
+DocType: Country,Time Format,Njia ya Wakati
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Vidokezo vya gateway batili za malipo
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Hii ni faili ya template inayozalishwa na safu tu zilizo na hitilafu. Unapaswa kutumia faili hii kwa ajili ya kusahihisha na kuagiza.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Weka Ruhusa kwenye Aina za Nyaraka na Majukumu
@@ -3796,6 +3831,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Thi
apps/frappe/frappe/www/login.html,Or login with,Au ingia na
DocType: Error Snapshot,Locals,Wakazi
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Imewasiliana kupitia {0} kwenye {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Aina za Hati za Mzalishaji wa Tukio
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Tafadhali weka Akaunti ya barua pepe ya usanidi kutoka kwa Usanidi> Barua pepe> Akaunti ya barua pepe
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Chagua Kikundi na ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,mfano (55 + 434) / 4 au = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} inahitajika
@@ -3826,9 +3863,11 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have
DocType: Deleted Document,GCalendar Sync ID,Kitambulisho cha Usawazishaji wa GCalendar
DocType: Prepared Report,Report Start Time,Ripoti Muda wa Kuanza
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Tuma Data
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Inabaki na logi ya kila tukio linalotumiwa pamoja na hali ya kusawazisha na kitufe cha Usawazishaji ukilinganisha.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Chagua nguzo
DocType: Translation,Source Text,Nakala ya Chanzo
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Hii ni ripoti ya nyuma. Tafadhali weka vichungi sahihi na kisha upange mpya.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaunti ya barua pepe sio kusanidi. Tafadhali unda Akaunti mpya ya Barua pepe kutoka kwa Kusanidi> Barua pepe> Akaunti ya barua pepe
apps/frappe/frappe/www/login.py,Missing parameters for login,Vigezo vya kupoteza kwa kuingia
DocType: Workflow State,folder-open,folda-wazi
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Mara tu ikiwasilishwa, hati zinazowasilishwa haziwezi kubadilishwa. Wanaweza kufutwa tu na kurekebishwa."
@@ -3907,6 +3946,7 @@ DocType: Blog Post,Published On,Imechapishwa On
DocType: Contact,Gender,Jinsia
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Maelezo ya lazima ya kukosa:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ilibadilisha hoja zako kwenye {1}
+DocType: Event Consumer,Event Subscriber,Msajili wa Hafla
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Angalia URL ya Ombi
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Kuingiza 200 tu kuruhusiwa katika ombi moja
DocType: Footer Item,URL,URL
@@ -3919,6 +3959,7 @@ DocType: Auto Email Report,Half Yearly,Nusu ya mwaka
DocType: Communication,Marked As Spam,Imewekwa kama Spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Kuna tatizo fulani na url ya faili: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Mti
+DocType: Event Producer Document Type,Use Same Name,Tumia Jina moja
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Huruhusiwi kuchapisha ripoti hii
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Idhini ya Mtumiaji
DocType: Workflow State,warning-sign,ishara-ishara
@@ -3928,6 +3969,7 @@ DocType: Workflow State,User,Mtumiaji
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Onyesha kichwa katika kivinjari cha kivinjari kama "Kiambatisho - kichwa"
DocType: Payment Gateway,Gateway Settings,Mipangilio ya Hifadhi
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Nakala katika aina ya hati
+DocType: Event Sync Log,Event Sync Log,Tukio la Usawazishaji wa Tukio
apps/frappe/frappe/handler.py,Logged Out,Imeingia nje
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Zaidi ...
DocType: System Settings,User can login using Email id or Mobile number,Mtumiaji anaweza kuingia kwa kutumia id ya barua pepe au Namba ya simu
@@ -3967,12 +4009,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Sio
DocType: Workflow State,star,nyota
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,Ikiwa hii itaangaliwa hati zitakuwa na jina moja kama walivyokuwa nazo kwenye waunda Mzalishaji wa Tukio
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,maadili yaliyotenganishwa na vitendo
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Urefu wa Max kwa Aina ya Fedha ni 100px mfululizo {0}
apps/frappe/frappe/config/website.py,Content web page.,Ukurasa wa wavuti wa maudhui.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Ongeza Jukumu Jipya
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Tembelea Ukurasa wa Wavuti
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Ujumbe Mpya
+DocType: Event Consumer Document Type,Approved,Imekubaliwa
DocType: Google Contacts,Last Sync On,Mwisho Sync On
DocType: Deleted Document,Deleted Document,Hati iliyofutwa
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Lo! Kitu kilichokosa
@@ -4024,7 +4068,6 @@ DocType: DocField,Unique,Ni ya pekee
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} kuthaminiwa kwenye {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Mafanikio ya pekee
DocType: Email Account,Service,Huduma
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sanidi> Mtumiaji
DocType: File,File Name,Jina la faili
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Haikupata {0} kwa {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4036,11 +4079,10 @@ DocType: Calendar View,Calendar View,Mtazamo wa Kalenda
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Badilisha muundo
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Usajili kamili
DocType: GCalendar Settings,Enable,Wezesha
-DocType: Google Maps Settings,Home Address,Anwani ya nyumbani
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Unaweza tu kupakia rekodi hadi kufikia 5000 kwa moja. (inaweza kuwa chini katika baadhi ya matukio)
DocType: Report,"output in the form of `data = [columns, result]`","matokeo katika mfumo wa `data = [nguzo, matokeo]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Aina za Hati zinazotumika
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Sanidi sheria za mgawo wa watumiaji.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Sanidi sheria za mgawo wa watumiaji.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Ruhusa Haitoshi kwa {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Ripoti haikuhifadhiwa (kulikuwa na makosa)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Haiwezi kubadilisha maudhui ya kichwa
diff --git a/frappe/translations/ta.csv b/frappe/translations/ta.csv
index 717535a417..f5a4f74556 100644
--- a/frappe/translations/ta.csv
+++ b/frappe/translations/ta.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,ஒரு பயனர் இந்த பங்கு மேம்படுத்தல் பயனர் அனுமதிகள்
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},மறுபெயரிடு {0}
DocType: Workflow State,zoom-out,ஜூம்-அவுட்
-DocType: Data Import Beta,Import Options,இறக்குமதி விருப்பங்கள்
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,அதன் உதாரணமாக திறந்த போது {0} திறக்க முடியாது
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,அட்டவணை {0} காலியாக இருக்க முடியாது
DocType: SMS Parameter,Parameter,அளவுரு
@@ -85,16 +84,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,ஆ
DocType: DocType,Is Published Field,களம் வெளியிடப்பட்ட
DocType: GCalendar Settings,GCalendar Settings,GCalendar அமைப்புகள்
DocType: Email Group,Email Group,மின்னஞ்சல் குழு
-apps/frappe/frappe/__init__.py,Only for {},அதற்கு மட்டும் {}
DocType: Event,Pulled from Google Calendar,Google கேலெண்டரிலிருந்து இழுக்கப்பட்டது
DocType: Note,Seen By,பார்க்கப்பட்டது
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,பல சேர்
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,செல்லுபடியாகாத பயனர் படம் இல்லை.
DocType: Energy Point Log,Reverted,க்கப்பட்டது
DocType: Success Action,First Success Message,முதல் வெற்றி செய்தி
+DocType: Document Type Mapping,Document Type Mapping,ஆவண வகை மேப்பிங்
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,பிடிக்காது
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},தவறான மதிப்பு: {0} இருக்க வேண்டும் {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","மாற்றம் துறையில் பண்புகள் ( மறைக்க , படிக்கமட்டும், அனுமதி முதலியன)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,உங்கள் நிகழ்வுகளை நுகரும் தளம்.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,பாராட்ட
DocType: Notification Settings,Document Share,ஆவணப் பகிர்வு
DocType: Workflow State,lock,பூட்ட
@@ -114,10 +114,12 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,புகுபதிகை
DocType: Workflow State,indent-right,உள்தள் வலது
DocType: Has Role,Has Role,பங்கு உள்ளது
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,மீண்டும் ஒத்திசை
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,சேவையகத்தில் QR குறியீடு படத்தை தக்கவைக்க நேரம். குறைந்தபட்சம்: 240
DocType: Dashboard Chart,Timespan,கால இடைவெளி
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,வலை இணைப்பு
DocType: Deleted Document,Restored,மீட்டெடுத்தது
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ தட்டு பயன்பாட்டுடன் இணைப்பதில் பிழை ...
மூல அச்சு அம்சத்தைப் பயன்படுத்த நீங்கள் QZ தட்டு பயன்பாட்டை நிறுவி இயக்க வேண்டும்.
QZ தட்டில் பதிவிறக்கி நிறுவ இங்கே கிளிக் செய்க .
மூல அச்சிடுதல் பற்றி மேலும் அறிய இங்கே கிளிக் செய்க ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 நிமிடம் முன்பு
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","தவிர கணினி மேலாளர், அமை பயனர் அனுமதிகள் வேடங்களில் சரி என்று ஆவண வகை மற்ற பயனர்களுக்கு அனுமதிகளை அமைக்க முடியும்."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,தீம் உள்ளமைக்கவும்
@@ -188,6 +190,7 @@ DocType: Email Account,UNSEEN,காணாத
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,கோப்பு மேலாளர்
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML தலைப்பு, ரோபோக்கள் மற்றும் வழிமாற்றுகள்"
DocType: GCalendar Account,Refresh Token,புதுப்பிப்பு டோக்கன்
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,நிகழ்வு தயாரிப்பாளர் தளத்துடன் இணைப்பதில் தோல்வி. சிறிது நேரம் கழித்து மீண்டும் முயற்சிக்கவும்.
DocType: Address,Goa,கோவா
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,இந்த தளத்திற்கு நிலுவையில் அல்லது தற்போதைய வேலைகள் இல்லை
DocType: Webhook,Doc Event,Doc நிகழ்வு
@@ -210,6 +213,7 @@ DocType: Server Script,Script Manager,ஸ்கிரிப்ட் மேல
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,செயல்பாடு இல்லை
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,மூன்றாம் தரப்பு பயன்பாடுகள்
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,கணினி மேலாளர் மாறும் முதல் பயனர் (இந்த பிறகு மாற்றலாம்).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,உங்கள் அறிக்கையின் வடிப்பான்களை மாற்ற முயற்சி செய்யலாம்.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,இன்று நிகழ்வுகள் இல்லை
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,மறுஆய்வு புள்ளிகளை நீங்களே கொடுக்க முடியாது
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,தேர்ந்தெடுக்கப்பட்ட ஆவண நிகழ்வுக்கு DocType சமர்ப்பிக்கப்பட வேண்டும்
@@ -240,6 +244,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,இந்த ஆவணம் தொடர்பான மின்னஞ்சல்களை அனுப்ப அனுமதி இல்லை
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,{0} வரிசைப்படுத்த / குழுவில் இருந்து குறைந்தது 1 நிரலை தேர்ந்தெடுக்கவும்
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} க்கு அனுமதிக்கப்படவில்லை: {1}. தடைசெய்யப்பட்ட புலம்: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,நிறுவனம் இணைக்கப்படவில்லை
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,நீங்கள் சாண்ட்பாக்ஸ் API ஐ பயன்படுத்தி உங்கள் பணம் பரிசோதித்து வருகின்றனர் இந்த பாருங்கள்
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,நீங்கள் ஒரு நிலையான இணைய தீம் நீக்க நீங்கள் அனுமதிக்கப்படவில்லை
DocType: Data Import,Log Details,பதிவு விவரங்கள்
@@ -258,7 +263,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} புதுப்பிக்கிறது
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,முடக்கு அறிக்கை
DocType: Translation,Contributed Translation Doctype Name,பங்களித்த மொழிபெயர்ப்பு டாக்டைப் பெயர்
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,அமைவு> படிவத்தைத் தனிப்பயனாக்கு
DocType: PayPal Settings,Redirect To,திருப்பி
DocType: Data Migration Mapping,Pull,இழு
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ஜாவா வடிவம்: frappe.query_reports [' REPORTNAME '] = { }
@@ -270,6 +274,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,அனுமதி இல்லை
DocType: DocShare,Internal record of document shares,ஆவணம் பங்குகள் உள் சாதனை
DocType: Energy Point Settings,Review Levels,மதிப்பாய்வு நிலைகள்
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,அமைவு> பயனர் அனுமதிகள்
DocType: Workflow State,Comment,கருத்து
DocType: Data Migration Plan,Postprocess Method,Postprocess முறை
DocType: DocType Action,Action Type,செயல் வகை
@@ -320,13 +325,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,வ
DocType: Workflow State,remove-circle,நீக்க-வட்டம்
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,என் சுயவிவரம்
DocType: Help Article,Beginner,தொடக்க
+apps/frappe/frappe/__init__.py,This action is only allowed for {},இந்த நடவடிக்கை {for க்கு மட்டுமே அனுமதிக்கப்படுகிறது
DocType: Contact,Is Primary Contact,முதன்மை தொடர்பு
+DocType: Event Consumer,Event Consumer,நிகழ்வு நுகர்வோர்
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript பக்கம் தலை பிரிவில் சேர்க்க வேண்டும்.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,சேர் / புதுப்பித்தல்
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,வரைவு ஆவணங்களை அச்சிட அனுமதி இல்லை
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,இயல்புநிலைக்கு மீட்டமை
DocType: Workflow,Transition Rules,மாற்றம் விதிகள்
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,முன்னோட்டத்தில் முதல் {0} வரிசைகளை மட்டுமே காட்டுகிறது
apps/frappe/frappe/core/doctype/report/report.js,Example:,உதாரணமாக:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,கட்டுப்பாடுகள்
DocType: Workflow,Defines workflow states and rules for a document.,ஒரு ஆவணம் முறையை மாநிலங்கள் மற்றும் விதிகள் வரையறுக்கிறது.
@@ -471,7 +477,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,வரை மீண்டும்
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,புதிய
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,நீங்கள் முதலில் இதை உருவாக்க வேண்டும்:
-DocType: Google Maps Settings,Google Maps Settings,Google Maps அமைப்புகள்
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,ஏற்றுகிறது ...
DocType: DocField,Password,கடவுச்சொல்
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,உங்கள் கணினி புதுப்பிக்கப்படுகிறது. ஒரு சில நிமிடங்கள் கழித்து மீண்டும் புதுப்பிக்கவும்
@@ -563,6 +568,7 @@ DocType: Onboarding Slide,Onboarding Slide,ஆன் போர்டிங்
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,தவறான கடவுச்சொல்:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,தவறான கடவுச்சொல்:
DocType: Print Settings,Send document web view link in email,மின்னஞ்சல் ஆவணம் வலை காட்சி இணைப்பை அனுப்ப
+DocType: Event Consumer Document Type,Event Consumer Document Type,நிகழ்வு நுகர்வோர் ஆவண வகை
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,முந்தைய
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,நம்பகமான சான்றிதழ் தேவை
@@ -639,6 +645,7 @@ DocType: Workflow State,volume-down,தொகுதி-கீழே
DocType: Onboarding Slide,Help Links,உதவி இணைப்புகள்
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,இந்த ஐபி முகவரியிலிருந்து அணுகல் அனுமதிக்கப்படவில்லை
DocType: Notification Settings,Enable Email Notifications,மின்னஞ்சல் அறிவிப்புகளை இயக்கு
+DocType: Document Type Field Mapping,Event Streaming,நிகழ்வு ஸ்ட்ரீமிங்
apps/frappe/frappe/desk/reportview.py,No Tags,குறிகள் இல்லை
DocType: Email Account,Send Notification to,அறிவிப்பு அனுப்ப
DocType: DocField,Collapsible,மடக்கு
@@ -655,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,ம
apps/frappe/frappe/database/database.py,No conditions provided,எந்த நிபந்தனைகளும் வழங்கப்படவில்லை
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y அச்சு புலங்கள்
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,வரிசைப்படுத்த துறையில் {0} சரியான FIELDNAME இருக்க வேண்டும்
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,இயல்புநிலை முகவரி வார்ப்புரு இல்லை. அமைவு> அச்சிடுதல் மற்றும் பிராண்டிங்> முகவரி வார்ப்புருவில் இருந்து புதிய ஒன்றை உருவாக்கவும்.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,அதிக
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,புதிய பதிவை உருவாக்கவும்
DocType: Contact,Sales Manager,விற்பனை மேலாளர்
@@ -678,6 +686,7 @@ DocType: User,Reset Password Key,கடவுச்சொல் முக்
DocType: Dashboard Chart,All Time,எல்லா நேரமும்
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} க்கான சட்டவிரோத ஆவண நிலை
DocType: Email Account,Enable Auto Reply,வாகன பதில் இயக்கு
+apps/frappe/frappe/desk/query_report.py,No data to export,ஏற்றுமதி செய்ய தரவு இல்லை
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,பார்த்ததில்லை
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,ஒற்றை அச்சு வடிவத்தில் பல அச்சுப்பொறிகளை வரைபடமாக்க முடியாது.
DocType: Workflow State,zoom-in,ஜூம்-இல்
@@ -827,6 +836,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,பயன
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,முதல்
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,புதுப்பிப்புகளை புதுப்பி
DocType: Error Snapshot,Exception,விதிவிலக்கு
+DocType: Event Consumer,Event Consumer Document Types,நிகழ்வு நுகர்வோர் ஆவண வகைகள்
DocType: Email Account,Use IMAP,பயன்பாட்டு ஐஎம்எபி
DocType: Activity Log,Activity Log,நடவடிக்கை பதிவு
DocType: View Log,Viewed By,பார்க்கப்பட்டது
@@ -866,6 +876,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ப
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,வரைபடங்கள் கட்டமைக்க
DocType: User,Last IP,கடந்த ஐபி
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,உங்கள் மின்னஞ்சலுக்கு ஒரு பொருளைச் சேர்க்கவும்
+apps/frappe/frappe/model/workflow.py,Errored Transactions,பிழையான பரிவர்த்தனைகள்
DocType: Data Migration Connector,Data Migration Connector,தரவு நகர்த்தல் இணைப்பான்
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} மாற்றப்பட்டது {1}
DocType: Email Account,Track Email Status,மின்னஞ்சல் நிலைமை கண்காணிக்க
@@ -896,6 +907,7 @@ DocType: Email Queue,Attachments,இணைப்புகள்
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,இந்த ஆவணத்தை நீங்கள் அணுக உங்களுக்கு அனுமதி இல்லை
DocType: Language,Language Name,மொழி பெயர்
DocType: Email Group Member,Email Group Member,மின்னஞ்சல் குழு உறுப்பினர்
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,பயனருடன் மின்னஞ்சல் கணக்கு எதுவும் இல்லை. பயனர்> மின்னஞ்சல் இன்பாக்ஸின் கீழ் ஒரு கணக்கைச் சேர்க்கவும்.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,உங்கள் கணக்கு பூட்டப்பட்டுள்ளது மற்றும் {0} வினாடிகளுக்கு பிறகு தொடரும்
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,பயனர் பதிவேடுகள் குறிப்பிட்ட பதிவுகள் பயனர் குறைக்க பயன்படுத்தப்படுகின்றன.
DocType: Notification,Value Changed,மதிப்பு மாற்றப்பட்டது
@@ -985,6 +997,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,பரிவர
DocType: Help Article,Expert,நிபுணர்
DocType: Workflow State,circle-arrow-right,வட்டத்தை-அம்பு வலது
DocType: Role Profile,Role Profile,பங்கு விவரக்குறிப்பு
+DocType: Document Type Mapping,Remote Document Type,தொலை ஆவண வகை
apps/frappe/frappe/permissions.py,Document Type is not importable,ஆவண வகை இறக்குமதி செய்ய முடியாது
DocType: LDAP Settings,LDAP Server Url,LDAP சேவையகம் Url ஐ
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,அதன் {0} திறந்த போது உதாரணமாக திறக்க முடியாது
@@ -1068,7 +1081,6 @@ DocType: Web Form,Allow Print,அச்சு அனுமதி
DocType: Communication,Clicked,சொடுக்கும்
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,பின்தொடராட்
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},அனுமதி இல்லை ' {0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து இயல்புநிலை மின்னஞ்சல் கணக்கை அமைக்கவும்
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,அனுப்ப திட்டமிடப்பட்டுள்ளது
DocType: DocType,Track Seen,ட்ராக் ஸீன்
DocType: Dropbox Settings,File Backup,கோப்பு காப்பு
@@ -1139,6 +1151,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ஒ
DocType: Data Export,Filter List,வடிகட்டி பட்டியல்
DocType: Data Export,Excel,எக்செல்
DocType: System Settings,HH:mm,ஹெச்ஹெச்: மிமீ
+DocType: Event Sync Log,Event Configurations,நிகழ்வு உள்ளமைவுகள்
DocType: Email Account,Auto Reply Message,வாகன பதில் செய்தி
DocType: Data Migration Mapping,Condition,நிபந்தனை
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} மணி நேரம் முன்பு
@@ -1196,9 +1209,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,எப்ப
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,கருத்து உள்நுழைய
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,இந்த வரி கீழே தரவு நுழையும் தொடங்கவும்
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},ஐந்து மாற்றம் மதிப்புகள் {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","மின்னஞ்சல் ஐடி தனிப்பட்டதாக இருக்க வேண்டும், மின்னஞ்சல் கணக்கு ஏற்கனவே உள்ளது \ {0}"
DocType: Workflow State,retweet,மறு ட்வீட் செய்க
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ஒப்பிட,> 5, <10 அல்லது = 324 ஐப் பயன்படுத்தவும். வரம்புகளுக்கு, 5:10 ஐப் பயன்படுத்தவும் (5 & 10 க்கு இடையிலான மதிப்புகளுக்கு)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,தனிப்பயனாக்கலாம்...
DocType: Print Format,Align Labels to the Right,லேபிள்களை வலதுபுறமாக சீரமை
DocType: Assignment Rule,Disabled,முடக்கப்பட்டது
@@ -1245,8 +1257,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,விசைப்பலகை குறுக்குவழிகள்
DocType: Post,Comments,கருத்துகள்
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,உறுதிப்படுத்தவும்
+DocType: Event Sync Log,Update Type,புதுப்பிப்பு வகை
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,அங்கீகரிக்கிறது ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,எல்லாவற்றையும் அழி
+DocType: Event Producer,Last Update,கடைசியாக புதுப்பிக்கப்பட்டது
apps/frappe/frappe/www/login.html,Forgot Password?,கடவுச்சொல்லை மறந்துவிட்டீர்களா?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ஐடி
@@ -1286,6 +1300,7 @@ DocType: LDAP Settings,Password for Base DN,பேஸ் டி.என் கட
apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,டேபிள் களம்
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,பத்திகள் அடிப்படையில்
DocType: Workflow State,move,நகர்த்து
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,தற்போதைய தளத்திற்கான நிகழ்வு நுகர்வோர் அல்லது நிகழ்வு நுகர்வோரை உருவாக்குவதில் தோல்வி ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது.
apps/frappe/frappe/model/document.py,Action Failed,தோல்வி
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,பயனர்
DocType: View Log,View log,பதிவைப் பார்க்கவும்
@@ -1443,6 +1458,7 @@ DocType: DefaultValue,Key,சாவி
DocType: Address,Contacts,தொடர்புகள்
DocType: System Settings,Setup Complete,அமைப்பு முழு
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,அனைத்து ஆவணம் பங்குகளை அறிக்கை
+DocType: Event Consumer,Callback URL,திரும்ப அழைக்கும் URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","இறக்குமதி வார்ப்புரு .csv, .xlsx அல்லது .xls வகையாக இருக்க வேண்டும்"
apps/frappe/frappe/www/update-password.html,New Password,புதிய கடவுச்சொல்
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,வடிகட்டி {0} காணாமல்
@@ -1509,7 +1525,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,வ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; நிலையில் அனுமதி இல்லை
DocType: Async Task,Async Task,ஒத்திசைக்க பணி
DocType: Workflow State,picture,ஓவியம்
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,முழுமையான
+DocType: Scheduled Job Log,Complete,முழுமையான
DocType: DocType,Image Field,படத்தை துறையில்
DocType: Print Format,Custom HTML Help,விருப்ப HTML உதவி
DocType: LDAP Settings,Default Role on Creation,உருவாக்கத்தில் இயல்புநிலை பங்கு
@@ -1534,6 +1550,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,தேடல் உதவி
DocType: Milestone,Milestone Tracker,மைல்கல் டிராக்கர்
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,பதிவு ஆனாலும் முடக்கத்தில்
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,முகவரியை ஒரு நிறுவனத்துடன் இணைக்க வேண்டும். கீழேயுள்ள இணைப்புகள் அட்டவணையில் நிறுவனத்திற்கான வரிசையைச் சேர்க்கவும்.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,இந்த ஆவணத்திற்கான தானியங்கு மீண்டும் முடக்கப்பட்டுள்ளது.
DocType: DocType,Hide Copy,நகல் மறைக்க
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,அனைத்து வேடங்களில் அழி
@@ -1571,13 +1588,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print
DocType: Bulk Update,Field,களம்
DocType: Communication,Received,பெற்றார்
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update" போன்றவை சரியான முறைகள் தூண்டல் (தேர்வு DOCTYPE சார்ந்தது)"
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},மின்னஞ்சல் கணக்கு அமைப்பு தயவுசெய்து உங்கள் கடவுச்சொல்லை உள்ளிடவும்: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,குறைந்தது ஒரு கணினி மேலாளர் இருக்க வேண்டும் என இந்த பயனர் கணினி மேலாளர் சேர்த்தல்
DocType: Chat Message,URLs,URL கள்
DocType: Data Migration Run,Total Pages,மொத்த பக்கங்கள்
DocType: DocField,Attach Image,படத்தை இணைக்கவும்
DocType: Workflow State,list-alt,பட்டியல்-alt
apps/frappe/frappe/www/update-password.html,Password Updated,கடவுச்சொல் இற்றை
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,அமைவு> பயனர் அனுமதிகள்
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,உங்கள் உள்நுழைவை சரிபார்க்க படிகள்
apps/frappe/frappe/utils/password.py,Password not found,கடவுச்சொல் இல்லை
DocType: Webhook,Webhook Secret,வெப்ஹூக் ரகசியம்
@@ -1593,8 +1610,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API அம
DocType: Report,Query Report,கேள்வி அறிக்கை
DocType: User,Set New Password,புதிய கடவுச்சொல்லை
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} க்கு அனுமதிக்கப்படவில்லை: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S செல்லுபடியாகும் அறிக்கை வடிவில் இல்லை. அறிக்கை வடிவம் பின்வரும்% கள் ஒரு \ வேண்டும்
DocType: Chat Message,Chat,அரட்டை
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP குழு மேப்பிங்
DocType: Dashboard Chart,Chart Options,விளக்கப்படம் விருப்பங்கள்
@@ -1629,7 +1644,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,உங்
DocType: Dropbox Settings,Dropbox Access Secret,டிரா பாக்ஸ் அணுகல் ரகசியம்
DocType: Tag Link,Document Title,ஆவண தலைப்பு
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(கட்டாயமாகும்)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு
DocType: Social Login Key,Social Login Provider,சமூக உள்நுழை வழங்குநர்
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,மற்றொரு கருத்து சேர்
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,கோப்பில் தரவு எதுவும் இல்லை. தரவுடன் புதிய கோப்பை மீண்டும் இணைக்கவும்.
@@ -1675,6 +1689,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","தே
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 வருடம்
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,நிரந்தரமாக {0} நீக்க வேண்டுமா?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,அதே கோப்பு ஏற்கனவே பதிவு இணைக்கப்பட்டுள்ள
+DocType: Event Sync Log,Synced,ஒத்திசைக்கப்பட்டன
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} சரியான பணியிட மாநில அல்ல. உங்கள் பணியிடத்தை புதுப்பித்து மீண்டும் முயற்சிக்கவும்.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} புள்ளிகளைக் கொடுத்தார்
DocType: Workflow State,wrench,பிடுங்கு
@@ -1771,6 +1786,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,அதிகபட்ச நீளம்
DocType: Print Format,Jinja,ஜின்ஜாவில்
DocType: Workflow State,map-marker,வரைபடம்-மார்க்கர்
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,இரண்டு கோட்பாடுகளுக்கு இடையில் மேப்பிங் உள்ளமைவு.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ஒரு Issue சமர்ப்பிக்கவும்
DocType: Event,Repeat this Event,இந்த நிகழ்வு மீண்டும்
DocType: Address,Maintenance User,பராமரிப்பு பயனர்
@@ -1828,6 +1844,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,டெஸ்ட் மின்னஞ்சல் முகவரி
DocType: Auto Repeat,Reference Document Type,குறிப்பு ஆவண வகை
DocType: ToDo,Sender,அனுப்புபவர்
+DocType: Event Consumer,Incoming Change,உள்வரும் மாற்றம்
DocType: Google Drive,Backup Folder Name,காப்பு கோப்புறை பெயர்
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,அறிவிப்பு {0} மதிப்பீடு செய்யும் போது பிழை. தயவு செய்து உங்கள் டெம்ப்ளேட்டை சரிசெய்யவும்.
DocType: GSuite Settings,Google Apps Script,Google Apps ஸ்கிரிப்ட்
@@ -1888,9 +1905,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,பு
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,கோரிக்கையை அங்கீகரிக்க கீழேயுள்ள இணைப்பைக் கிளிக் செய்க
DocType: Workflow State,align-left,சீரமை-விட்டு
DocType: Onboarding Slide,Action Settings,செயல் அமைப்புகள்
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,அமைவு> பயனர்
DocType: User,Defaults,இயல்புநிலைக்கு
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ஒப்பிட,> 5, <10 அல்லது = 324 ஐப் பயன்படுத்தவும். வரம்புகளுக்கு, 5:10 ஐப் பயன்படுத்தவும் (5 & 10 க்கு இடையிலான மதிப்புகளுக்கு)."
DocType: Energy Point Log,Revert Of,திரும்பவும்
+DocType: Document Type Mapping,Field Mapping,புலம் மேப்பிங்
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,இருக்கும் இணைவதற்கு
DocType: User,Birth Date,பிறந்த தேதி
DocType: Communication Link,Link Title,இணைப்பு தலைப்பு
@@ -1918,6 +1936,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,டேக் இணைப்பு
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,சங்கிலி ஒருங்கிணைப்பு
DocType: Data Export,CSV,கோப்பை
+DocType: Event Consumer,In Test,டெஸ்டில்
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 நாணய = [?] எ.கா. 1 அமெரிக்க டாலர் பின்னம்
= 100 சதவீதம்"
@@ -1928,6 +1947,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP குழு மேப்பிங்ஸ்
DocType: Chat Message Attachment,Chat Message Attachment,செய்தி இணைப்பு இணைக்க
DocType: LDAP Settings,Path to CA Certs File,CA சான்றிதழ்கள் கோப்புக்கான பாதை
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,தயாரிப்பாளர் மற்றும் நுகர்வோர் முடிவில் ஆவணத்தில் வெவ்வேறு புல பெயர்கள் இருந்தால் இதை சரிபார்த்து மேப்பிங்கை அமைக்கவும்
DocType: Address,Manipur,மணிப்பூர்
DocType: Web Form Field,Allow Read On All Link Options,அனைத்து இணைப்பு விருப்பங்களையும் படிக்க அனுமதி
DocType: DocType,Database Engine,டேட்டாபேஸ் எஞ்சின்
@@ -2061,6 +2081,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,குறிப்பு
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,பிழை அறிக்கை
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / Excel வடிவத்தில் தரவை ஏற்றுமதி செய்யுங்கள்.
+DocType: Document Type Field Mapping,Document Type Field Mapping,ஆவண வகை புலம் மேப்பிங்
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,உலகளாவிய தேடல் ஆவணங்களை அமைத்தல்.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,நீங்கள் பயன்படுத்தக்கூடிய அங்கீகார பயன்பாடுகள்:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ஏற்கனவே உள்ளது. மற்றொரு பெயரைத் தேர்ந்தெடுக்கவும்
@@ -2136,7 +2157,6 @@ DocType: Workflow State,Upload,பதிவேற்ற
DocType: User Permission,Advanced Control,மேம்பட்ட கட்டுப்பாடு
DocType: System Settings,Date Format,தேதி வடிவமைப்பு
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,வெளியிடப்படவில்லை.
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,இயல்புநிலை முகவரி வார்ப்புரு இல்லை. அமைவு> அச்சிடுதல் மற்றும் பிராண்டிங்> முகவரி வார்ப்புருவில் இருந்து புதிய ஒன்றை உருவாக்கவும்.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","திடுக்கிடும் செயல்கள் (எ.கா., ஒப்புதல் ரத்து ) ."
DocType: Data Import,Skip rows with errors,பிழைகளுடன் வரிசைகள் தவிர்
DocType: Workflow State,flag,கொடி
@@ -2200,6 +2220,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,மாநில மாற்ற ஒதுக்கப்படும் ஒரு ஆவணம் மற்றும் பங்கு அனுமதி மாநிலங்களில் குறிக்கிறது.
DocType: Data Migration Connector,Database Name,தரவுத்தள பெயர்
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,புதுப்பி படிவம்
+DocType: Event Producer,Event Producer,நிகழ்வு தயாரிப்பாளர்
DocType: DocField,Select,தேர்ந்தெடு
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,முழு பதிவையும் காண்க
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","எளிய பைதான் வெளிப்பாடு, எடுத்துக்காட்டு: நிலை == 'திற' மற்றும் தட்டச்சு == 'பிழை'"
@@ -2315,6 +2336,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,தேதி
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,செய்யவேண்டியவை சேர்க்க
DocType: Footer Item,Company,நிறுவனம்
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},சராசரி {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,வெற்றிகரமான பரிவர்த்தனைகள்
DocType: Scheduled Job Log,Scheduled,திட்டமிடப்பட்ட
DocType: User,Logout from all devices while changing Password,கடவுச்சொல்லை மாற்றும்போது எல்லா சாதனங்களிலிருந்து வெளியேறும்
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,கடவுச்சொல் சரிபார்க்கவும்
@@ -2425,6 +2447,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,மாதம
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: சேர் Reference: {{ reference_doctype }} {{ reference_name }} அனுப்ப ஆவணக் குறிப்பு
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,ஆவணத்தில் சம்பந்தப்பட்ட பயனர்கள் மட்டுமே பட்டியலிடப்பட்டுள்ளனர்
DocType: DocField,Fetch From,இருந்து எடு
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,அமைவு> படிவத்தைத் தனிப்பயனாக்கு
apps/frappe/frappe/modules/utils.py,App not found,பயன்பாடு இல்லை
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},உருவாக்க முடியவில்லையா {0} ஒரு குழந்தை ஆவணம் எதிராக: {1}
DocType: Social Login Key,Social Login Key,சமூக உள்நுழைவு விசை
@@ -2435,7 +2458,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,செ
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,சமூக முகப்பு
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},என அமைக்க முடியாது பிறகு நுழைக்கவும் {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,பகிர் {0} உடன்
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,மின்னஞ்சல் கணக்கை அமைப்பது தயவு செய்து உங்கள் கடவுச்சொல்லை உள்ளிடவும்:
DocType: Workflow State,hand-up,கை அப்
DocType: Blog Settings,Writers Introduction,எழுத்தாளர்கள் அறிமுகம்
DocType: Address,Phone,தொலைபேசி
@@ -2493,7 +2515,7 @@ DocType: Web Page,Insert Style,பாணி செருக
DocType: Prepared Report,Error Message,பிழை செய்தி
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,புதிய அறிக்கையின் பெயர்
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,வார இறுதிகளை மறை
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,தொடர்ச்சியான ஆவணங்களை தானாக உருவாக்குகிறது.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,தொடர்ச்சியான ஆவணங்களை தானாக உருவாக்குகிறது.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,இருக்கிறது
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,தகவல்-அறிகுறி
@@ -2501,7 +2523,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} ஒ
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","எப்படி இந்த நாணய வடிவமைக்க வேண்டும்? அமைக்கவில்லை எனில், கணினி இயல்புநிலைகளை பயன்படுத்தும்"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ஆவணங்களை {0} சமர்ப்பிக்கவா?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,நீங்கள் உள்நுழைந்திருக்க மற்றும் காப்பு அணுக முடியும் கணினி மேலாளர் பங்கு பெற்றிருக்க வேண்டும் .
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ தட்டு பயன்பாட்டுடன் இணைப்பதில் பிழை ...
மூல அச்சு அம்சத்தைப் பயன்படுத்த நீங்கள் QZ தட்டு பயன்பாட்டை நிறுவி இயக்க வேண்டும்.
QZ தட்டில் பதிவிறக்கி நிறுவ இங்கே கிளிக் செய்க .
மூல அச்சிடுதல் பற்றி மேலும் அறிய இங்கே கிளிக் செய்க ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,அச்சுப்பொறி மேப்பிங்
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,இணைக்கிறேன் முன் சேமிக்க கொள்ளவும்.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,இணைக்கப்பட்ட அனைத்து ஆவணங்களையும் ரத்து செய்ய விரும்புகிறீர்களா?
@@ -2530,6 +2551,7 @@ DocType: Role Permission for Page and Report,Set Role For,அதே கதாப
DocType: GCalendar Account,The name that will appear in Google Calendar,Google Calendar இல் தோன்றும் பெயர்
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} உடனடி அறை ஏற்கனவே உள்ளது.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,புதுப்பிக்கிறது ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},டாஷ்போர்டு விளக்கப்படத்திற்காக அமைக்கப்பட்ட வடிகட்டி மதிப்புகளைச் சரிபார்க்கவும்: {}
DocType: Event,Starts on,தொடங்குகிறது
DocType: System Settings,System Settings,கணினி அமைப்புகள்
DocType: GCalendar Settings,Google API Credentials,Google API சான்றுகள்
@@ -2555,6 +2577,7 @@ DocType: Workflow State,ok-sign,"சரி, அறிகுறி"
apps/frappe/frappe/config/settings.py,Deleted Documents,நீக்கப்பட்ட ஆவணங்கள்
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,சி.எஸ்.வி. வடிவமைப்பு மிகவும் முக்கியமானது
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,மேசை ஐகான் ஏற்கனவே உள்ளது
+DocType: Event Consumer Document Type,Approval Status,ஒப்புதல் நிலைமை
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"ஸ்லைடுகள் காண்பிக்கப்பட வேண்டிய எல்லா களங்களிலும் குறிப்பிடவும். எதுவும் குறிப்பிடப்படவில்லை எனில், எல்லா களங்களிலும் இயல்பாக ஸ்லைடு காட்டப்படும்."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,நகல்
DocType: Newsletter,Create and Send Newsletters,உருவாக்க மற்றும் அனுப்பவும் செய்தி
@@ -2573,6 +2596,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,உதவி கட்டுரைகள்
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,வகை:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,உங்கள் செலுத்துவது தோல்வியுற்றது.
+DocType: Event Producer,Producer URL,தயாரிப்பாளர் URL
DocType: Comment,Unshared,பகிர்வுநீக்கப்பட்டது
DocType: Address,Karnataka,கர்நாடக
apps/frappe/frappe/desk/moduleview.py,Module Not Found,தொகுதி கிடைக்கவில்லை
@@ -2584,6 +2608,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,மதிப்பளித்தல் நிறைவு
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},மொத்த திருத்து {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,புகாரைப் பதிவிறக்கவும்
+apps/frappe/frappe/model/workflow.py,Workflow Status,பணிப்பாய்வு நிலை
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,பயனில் இல்லை
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,டாஷ்போர்டு விளக்கப்பட ஆதாரங்களை உருவாக்க நிர்வாகி மட்டுமே அனுமதிக்கப்படுகிறார்
DocType: About Us Settings,Settings for the About Us Page,பற்றி எங்களை பக்கம் அமைப்புகளை
@@ -2642,6 +2667,7 @@ DocType: User Social Login,User Social Login,பயனர் சமூக தே
DocType: Contact,All,அனைத்து
DocType: Email Queue,Recipient,பெறுபவர்
DocType: Webhook,Webhook Security,வெப்ஹூக் பாதுகாப்பு
+DocType: Event Sync Log,Producer Document Name,தயாரிப்பாளர் ஆவண பெயர்
DocType: Communication,Has Attachment,இணைப்பு உள்ளது
DocType: Address,Sales User,விற்பனை பயனர்
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,இழுத்தல் மற்றும் கருவி உருவாக்க மற்றும் அச்சு வடிவங்கள் தனிப்பயனாக்கலாம்.
@@ -2677,6 +2703,7 @@ DocType: Address,Arunachal Pradesh,அருணாச்சல பிரதே
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,குழந்தை அட்டவணைகள் மற்ற ஆவண வகைகளில் ஒரு கட்டமாகக் காட்டப்படுகின்றன
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,அமைப்பு வாகன மின்னஞ்சல்
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + கீழ்நோக்கிய
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,நிகழ்வுகளை உட்கொள்வதற்கு நீங்கள் குழுசேர விரும்பும் தளம்.
DocType: Chat Profile,Message Preview,செய்தி முன்னோட்டம்
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,இந்த ஒரு மேல் 10 பொதுவான கடவுச்சொல்.
DocType: User,User Defaults,சுயவிவரத்தை இயல்புநிலைகளுக்கு
@@ -2710,6 +2737,7 @@ DocType: Comment,Comment Type,கருத்து வகை
DocType: OAuth Client,OAuth Client,"OAuth
வாடிக்கையாளர்"
DocType: Assignment Rule,Users,பயனர்கள்
+DocType: Document Type Mapping,Local Document Type,உள்ளூர் ஆவண வகை
DocType: Address,Odisha,ஒடிசா
DocType: Report,Report Type,வகை புகார்
DocType: DocField,Signature,கையொப்பம்
@@ -2752,6 +2780,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} சுய இந்த பணி ஒதுக்கீடு: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,உங்கள் நாடு
DocType: Assignment Rule Day,Sunday,ஞாயிற்றுக்கிழமை
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","நுகர்வோர் உள்ள ஆவணங்களுக்கான நிகழ்வு தயாரிப்பாளர் தளத்தில் அனைத்து செருகல்கள், புதுப்பிப்புகள் மற்றும் நீக்குதல்களின் பதிவை பராமரிக்கிறது."
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,களத்தில்
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,கட்டக் காட்சியில்
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,மேலும் செயல்பாடு இல்லை
@@ -2896,7 +2925,6 @@ DocType: Web Page,Sidebar and Comments,பக்கப்பட்டி மற
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","நீங்கள் பின்னர் ரத்து மற்றும் அதை காப்பாற்ற ஒரு ஆவணத்தை திருத்தம் போது, அது பழைய எண் ஒரு பதிப்பு என்று ஒரு புதிய எண் கிடைக்கும் ."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} ஆவணத்தை இணைக்க அனுமதி இல்லை, அச்சிடு அமைப்புகளில் {0} க்கான அச்சு அனுமதிக்கவும்"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு அமைக்கப்படவில்லை. அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து புதிய மின்னஞ்சல் கணக்கை உருவாக்கவும்
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},ஆவணத்தை {0}
DocType: Stripe Settings,Publishable Key,பதிப்பு சாவி
DocType: Stripe Settings,Publishable Key,பதிப்பு சாவி
@@ -2974,7 +3002,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,தகவல்:
DocType: Custom Field,Permission Level,அனுமதி நிலை
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : எழுது இல்லாமல் , திருத்தவோ, ரத்து , சமர்ப்பி அமைக்க முடியாது"
DocType: List View Setting,Disable Count,எண்ணிக்கையை முடக்கு
-DocType: Google Maps Settings,Client Key,வாடிக்கையாளர் விசை
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,நீங்கள் இணைப்பு நீக்க வேண்டும் நீங்கள் உறுதியாக இருக்கிறீர்களா?
apps/frappe/frappe/__init__.py,Thank you,நன்றி
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,சேமிப்பு
@@ -3099,6 +3126,7 @@ DocType: Workflow Document State,Only Allow Edit For,திருத்து
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google இயக்ககத்திற்கு காப்புப்பிரதி எடுக்கிறது.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},கட்டாய துறையில்: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,உங்கள் பெயர்
+DocType: Event Producer Document Type,Event Producer Document Type,நிகழ்வு தயாரிப்பாளர் ஆவண வகை
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,இணைப்பு வெற்றி
DocType: DocType,InnoDB,InnoDB என்ற
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,ஸ்லைடு வகையின் ஆன் போர்டிங் ஸ்லைடு தொடரவும் ஏற்கனவே உள்ளது.
@@ -3169,6 +3197,7 @@ DocType: Address,Postal Code,அஞ்சல் குறியீடு
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,இணைக்கவும் தொடர்பாடல்
DocType: Translation,Contributed,பங்களிப்பு
apps/frappe/frappe/config/customization.py,Form Customization,படிவம் தனிப்பயனாக்கம்
+DocType: Event Update Log,Event Update Log,நிகழ்வு புதுப்பிப்பு பதிவு
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,செயலில் அமர்வு இல்லை
DocType: Web Form,Route to Success Link,வெற்றி இணைப்புக்கு வழி
DocType: Onboarding Slide Field,Right,சரியான
@@ -3194,7 +3223,7 @@ DocType: Website Settings,Chat Operators,அரட்டை இயக்கி
DocType: S3 Backup Settings,ca-central-1,CA-மத்திய-1
DocType: Contact Us Settings,Pincode,ப ன்ேகா
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,கோப்பு எந்த காலியாக பத்திகள் உள்ளன என்று உறுதிப்படுத்தி கொள்ளுங்கள்.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ஒரு ஆவணத்தின் வாழ்க்கைச் சுழற்சியில் பல கட்டங்களுக்கு உட்பட்டால் அது மைல்கற்களைக் கண்காணிக்கும்.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ஒரு ஆவணத்தின் வாழ்க்கைச் சுழற்சியில் பல கட்டங்களுக்கு உட்பட்டால் அது மைல்கற்களைக் கண்காணிக்கும்.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","கோப்புகளில் மறுபெயரிடப்பட்டது மற்றும் கட்டுப்படுத்திகளில் குறியீட்டை மாற்றியது, தயவுசெய்து சரிபார்க்கவும்!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,உங்கள் சுயவிவர ஒரு மின்னஞ்சல் முகவரியை உள்ளது என்பதை உறுதி செய்து கொள்ளவும்
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,நீங்கள் இந்த படிவத்தை சேமிக்கப்படாத மாற்றங்கள் உள்ளன .
@@ -3221,7 +3250,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,இரகசியத்தை சேமி
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},ரத்து ஆவணம் இணைக்க முடியவில்லை: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,ஒரு நிலையான அறிக்கை திருத்த முடியாது. நகல் மற்றும் ஒரு புதிய அறிக்கை உருவாக்கி கொள்ளவும்
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","அது உங்கள் நிறுவனத்தின் முகவரி போன்ற நிறுவனம், கட்டாயமாகும்"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","எடுத்துக்காட்டாக: நீங்கள் ஆவண ID சேர்க்க வேண்டும் என்றால், பயன்படுத்த {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},தேர்ந்தெடுக்கவும் அட்டவணை பத்திகள் {0}
DocType: Custom Field,Options Help,விருப்பங்கள் உதவி
@@ -3229,7 +3257,6 @@ DocType: Footer Item,Group Label,குழு லேபிள்
DocType: Kanban Board,Kanban Board,கான்பன் வாரியம்
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google தொடர்புகள் உள்ளமைக்கப்பட்டுள்ளன.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 பதிவு ஏற்றுமதி செய்யப்படும்
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,பயனருடன் மின்னஞ்சல் கணக்கு எதுவும் இல்லை. பயனர்> மின்னஞ்சல் இன்பாக்ஸின் கீழ் ஒரு கணக்கைச் சேர்க்கவும்.
DocType: DocField,Report Hide,மறை அறிக்கை
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},மரம் காண்க கிடைக்கவில்லை {0}
DocType: DocType,Restrict To Domain,களத்தில் இருப்பவர்களுக்குத் கட்டுப்படுத்து
@@ -3293,7 +3320,9 @@ DocType: DocField,Fold,மடி
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,ஸ்டாண்டர்ட் அச்சு வடிவம் மேம்படுத்தப்பட்டது முடியாது
DocType: System Settings,In Days,நாட்களில்
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,மிஸ்
+DocType: Event Producer Document Type,Has Mapping,மேப்பிங் உள்ளது
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,குறிப்பிடவும்
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,தவறான வடிகட்டி மதிப்பு
DocType: Comment,Bot,பாட்
DocType: Help Article,Help Article,உதவிக் கட்டுரை
DocType: Page,Page Name,பக்கம் பெயர்
@@ -3399,7 +3428,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,வடிவமைப்பு அச்சிட
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,கிரிட் காட்சியை மாற்று
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,அடுத்த பதிவுக்குச் செல்லவும்
-DocType: System Settings,Time Format,நேர அமைப்பு
+DocType: Country,Time Format,நேர அமைப்பு
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,தவறான கட்டணம் நுழைவாயில் சான்றுகளை
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,இது சில பிழைகளை கொண்ட வரிசைகள் மட்டுமே உருவாக்கப்பட்ட டெம்ப்ளேட் கோப்பாகும். இந்த கோப்பை திருத்தி மற்றும் இறக்குமதி செய்ய நீங்கள் பயன்படுத்த வேண்டும்.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,ஆவண வகைகள் மற்றும் பாத்திரங்களை அமைக்க அனுமதி
@@ -3730,6 +3759,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,பயனர் பெயர் பயன்படுத்தி உள்நுழைய அனுமதி
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,இயக்கு
DocType: DocField,Display Depends On,காட்சி பொறுத்தது
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு
DocType: Social Login Key,API Endpoint,API முடிப்பு
DocType: Web Page,Insert Code,குறியீடு செருக
DocType: Data Migration Run,Current Mapping Type,தற்போதைய வரைபட வகை
@@ -3782,6 +3812,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,உ
apps/frappe/frappe/www/login.html,Or login with,அல்லது உள்நுழைய
DocType: Error Snapshot,Locals,உள்ளூர்
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},வழியாகத் தொடர்புகொள்ளும் {0} ம் {1}: {2}
+DocType: Event Producer,Event Producer Document Types,நிகழ்வு தயாரிப்பாளர் ஆவண வகைகள்
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து இயல்புநிலை மின்னஞ்சல் கணக்கை அமைக்கவும்
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,குழுவைத் தேர்ந்தெடு ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,எ.கா. (55 + 434) / 4 அல்லது = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} தேவைப்படுகிறது
@@ -3812,9 +3844,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar ஒத்திசைவு ஐடி
DocType: Prepared Report,Report Start Time,தொடக்க நேரத்தைப் புகாரளி
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,தரவு ஏற்றுமதி
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"ஒத்திசைவின் நிலையுடன் நுகரப்படும் ஒவ்வொரு நிகழ்வின் பதிவையும், ஒத்திசைவு தோல்வியுற்றால் மறு ஒத்திசைவு பொத்தானையும் பராமரிக்கிறது."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,தேர்வு பத்திகள்
DocType: Translation,Source Text,மூலத்தொடர்
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"இது ஒரு பின்னணி அறிக்கை. பொருத்தமான வடிப்பான்களை அமைத்து, புதியதை உருவாக்கவும்."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு அமைக்கப்படவில்லை. அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து புதிய மின்னஞ்சல் கணக்கை உருவாக்கவும்
apps/frappe/frappe/www/login.py,Missing parameters for login,உள்நுழைவு காணாமல் அளவுருக்கள்
DocType: Workflow State,folder-open,கோப்புறையை திறக்க
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","சமர்ப்பித்ததும், சமர்ப்பிக்கக்கூடிய ஆவணங்களை மாற்ற முடியாது. அவை ரத்து செய்யப்பட்டு திருத்தப்பட முடியும்."
@@ -3889,6 +3923,7 @@ DocType: Event,Send an email reminder in the morning,காலையில்
DocType: Blog Post,Published On,ம் தேதி வெளியிடப்பட்ட
DocType: Contact,Gender,பாலினம்
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,காணாமல் கட்டாய தகவல்:
+DocType: Event Consumer,Event Subscriber,நிகழ்வு சந்தாதாரர்
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,கோரிக்கை URL ஐ சரிபார்க்கவும்
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,செருகி 200 கோரிக்கை அனுமதி
DocType: Footer Item,URL,URL ஐ
@@ -3901,6 +3936,7 @@ DocType: Auto Email Report,Half Yearly,அரையாண்டு
DocType: Communication,Marked As Spam,Spam எனக் குறிக்கப்பட்டது
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},கோப்பு URL சில சிக்கல் உள்ளது: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,மரம்
+DocType: Event Producer Document Type,Use Same Name,ஒரே பெயரைப் பயன்படுத்தவும்
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,இந்த அறிக்கையில் அச்சிட அனுமதி இல்லை
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,பயனர் அனுமதிகள்
DocType: Workflow State,warning-sign,எச்சரிக்கை-அறிகுறி
@@ -3910,6 +3946,7 @@ DocType: Workflow State,User,பயனர்
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",உலாவி சாளரத்தில் நிகழ்ச்சியின் தலைப்பு "வள் - தலைப்பு"
DocType: Payment Gateway,Gateway Settings,நுழைவாயில் அமைப்புகள்
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ஆவண வகை உள்ள உரை
+DocType: Event Sync Log,Event Sync Log,நிகழ்வு ஒத்திசைவு பதிவு
apps/frappe/frappe/handler.py,Logged Out,வெளியேற்றப்படுவீர்கள்
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,மேலும் ...
DocType: System Settings,User can login using Email id or Mobile number,பயனர் மின்னஞ்சல் ஐடி அல்லது மொபைல் எண் பயன்படுத்தி உள்நுழையலாம்
@@ -3950,12 +3987,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,இல்லை
DocType: Workflow State,star,நட்சத்திரம்
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,மையம்
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"இது சரிபார்க்கப்பட்டால், ஆவணங்கள் நிகழ்வு தயாரிப்பாளரின் தளத்தில் உள்ள அதே பெயரைக் கொண்டிருக்கும்"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,பிரிக்கப்பட்ட மதிப்புகள்
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},வகை நாணய அதிகபட்சம் அகலம் வரிசையில் 100px {0}
apps/frappe/frappe/config/website.py,Content web page.,உள்ளடக்கத்தை வலைப்பக்கத்தில்.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ஒரு புதிய பங்கு சேர்
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,வலைப்பக்கத்தைப் பார்வையிடவும்
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,புதிய பணி
+DocType: Event Consumer Document Type,Approved,ஏற்பளிக்கப்பட்ட
DocType: Google Contacts,Last Sync On,கடைசி ஒத்திசைவு
DocType: Deleted Document,Deleted Document,நீக்கப்பட்ட ஆவண
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,அச்சச்சோ! ஏதோ தவறு
@@ -4006,7 +4045,6 @@ DocType: Communication,Communication Type,தொடர்பாடல் வ
DocType: DocField,Unique,தனித்த
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,பகுதி வெற்றி
DocType: Email Account,Service,சேவை
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,அமைவு> பயனர்
DocType: File,File Name,கோப்பு பெயர்
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ஐந்து {0} கண்டுபிடிக்க முடியவில்லை {0} ( {1} )
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ரெஸ்: {0}
@@ -4018,11 +4056,10 @@ DocType: Calendar View,Calendar View,நாட்காட்டி காட்
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,வடிவத்தை தொகுக்க
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,முழுமையான பதிவு
DocType: GCalendar Settings,Enable,இயக்கு
-DocType: Google Maps Settings,Home Address,வீட்டு முகவரி
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),நீங்கள் மட்டும் ஒரு பயணத்தின் 5000 பதிவுகளை வரை பதிவேற்ற முடியும். (சில நேரங்களில் குறைவாக இருக்கலாம்)
DocType: Report,"output in the form of `data = [columns, result]`","`தரவு = [நெடுவரிசைகள், முடிவு]` வடிவத்தில் வெளியீடு"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,பொருந்தக்கூடிய ஆவண வகைகள்
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,பயனர் பணிகளுக்கு விதிகளை அமைக்கவும்.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,பயனர் பணிகளுக்கு விதிகளை அமைக்கவும்.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},போதுமான அனுமதி {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},போதுமான அனுமதி {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),அறிக்கை சேமிக்க (பிழைகள் இருந்தன)
diff --git a/frappe/translations/te.csv b/frappe/translations/te.csv
index 52877e1d6f..2a762df379 100644
--- a/frappe/translations/te.csv
+++ b/frappe/translations/te.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,ఒక వినియోగదారు కోసం ఈ పాత్ర నవీకరణ వినియోగదారు అనుమతులను
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},పేరుమార్చు {0}
DocType: Workflow State,zoom-out,జూమ్ అవుట్
-DocType: Data Import Beta,Import Options,దిగుమతి ఎంపికలు
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,తెరువబడలేదు {0} దాని ఉదాహరణకు ఓపెన్ ఉన్నప్పుడు
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,టేబుల్ {0} ఖాళీగా ఉండకూడదు
DocType: SMS Parameter,Parameter,పరామితి
@@ -84,16 +83,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,ప్రచురించబడింది ఫీల్డ్
DocType: GCalendar Settings,GCalendar Settings,GCalendar సెట్టింగులు
DocType: Email Group,Email Group,ఇమెయిల్ గ్రూప్
-apps/frappe/frappe/__init__.py,Only for {},{For కోసం మాత్రమే
DocType: Event,Pulled from Google Calendar,Google క్యాలెండర్ నుండి తీసివేయబడింది
DocType: Note,Seen By,చూడబడింది
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,బహుళ జోడించండి
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,చెల్లుబాటు అయ్యే వాడుకరి చిత్రం కాదు.
DocType: Energy Point Log,Reverted,పొందబడింది
DocType: Success Action,First Success Message,మొదటి సక్సెస్ మెసేజ్
+DocType: Document Type Mapping,Document Type Mapping,పత్ర రకం మ్యాపింగ్
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ఇష్టం లేదు
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},సరికాని విలువ: {0} ఉండాలి {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","మార్పు రంగంలో లక్షణాలు (దాచిపెట్టు, చదవడానికి మాత్రమే అనుమతి మొదలైనవి)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,మీ సంఘటనలను వినియోగించే సైట్.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,అభినందిస్తున్నాము
DocType: Notification Settings,Document Share,పత్రం భాగస్వామ్యం
DocType: Workflow State,lock,లాక్
@@ -113,10 +113,12 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,లోనికి ప్రవేశించండి
DocType: Workflow State,indent-right,ఇండెంట్ కుడి
DocType: Has Role,Has Role,పాత్ర ఉంది
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,మళ్లీ సమకాలీకరించు
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,సర్వర్లో QR కోడ్ చిత్రం నిలుపుకోడానికి సెకన్లలో సమయం. కనిష్టం: 240
DocType: Dashboard Chart,Timespan,కాల వ్యవధి
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,వెబ్ లింక్
DocType: Deleted Document,Restored,పునరుద్ధరించబడిన
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ ట్రే అనువర్తనానికి కనెక్ట్ చేయడంలో లోపం ...
రా ప్రింట్ ఫీచర్ను ఉపయోగించడానికి మీరు QZ ట్రే అప్లికేషన్ను ఇన్స్టాల్ చేసి అమలు చేయాలి.
QZ ట్రేని డౌన్లోడ్ చేసి, ఇన్స్టాల్ చేయడానికి ఇక్కడ క్లిక్ చేయండి .
రా ప్రింటింగ్ గురించి మరింత తెలుసుకోవడానికి ఇక్కడ క్లిక్ చేయండి ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 నిమిషం క్రితం
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","కాకుండా వ్యవస్థ మేనేజర్ నుండి, సెట్ వాడుకరి అనుమతులు పాత్రలు కుడి డాక్యుమెంట్ టైప్ ఇతర వినియోగదారులకు అనుమతులు సెట్ చేయవచ్చు."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,థీమ్ను కాన్ఫిగర్ చేయండి
@@ -187,6 +189,7 @@ DocType: Email Account,UNSEEN,కనిపించని
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ఫైల్ మేనేజర్
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML హెడర్, రోబోట్లు మరియు దారిమార్పులు"
DocType: GCalendar Account,Refresh Token,రిఫ్రెష్ టోకెన్
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,ఈవెంట్ నిర్మాత సైట్కు కనెక్ట్ చేయడంలో విఫలమైంది. కొంత సమయం తర్వాత మళ్లీ ప్రయత్నించండి.
DocType: Address,Goa,గోవా
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,ఈ సైట్ కోసం పెండింగ్ లేదా ప్రస్తుత ఉద్యోగాలు లేవు
DocType: Webhook,Doc Event,Doc ఈవెంట్
@@ -209,6 +212,7 @@ DocType: Server Script,Script Manager,స్క్రిప్ట్ మేన
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,కార్యాచరణ లేదు
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,మూడవ పక్ష అనువర్తనాలు
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,సిస్టం మేనేజర్ అవుతుంది మొదటి వినియోగదారు (మీరు తర్వాత మార్చవచ్చు).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,మీరు మీ నివేదిక యొక్క ఫిల్టర్లను మార్చడానికి ప్రయత్నించవచ్చు.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ఈ రోజు సంఘటనలు లేవు
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,మీరు మీరే సమీక్ష పాయింట్లు ఇవ్వలేరు
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,ఎంచుకున్న Doc ఈవెంట్ కోసం DocType తప్పక సమర్పించబడాలి
@@ -238,6 +242,7 @@ apps/frappe/frappe/config/desk.py,Files,ఫైళ్లు
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permissions get applied on Users based on what Roles they are assigned.,అనుమతులు వారు కేటాయిస్తారు ఏమి పాత్రలు ఆధారంగా యూజర్లు అనువర్తిత కలుగుతుంది.
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,ఈ పత్రానికి సంబంధించిన ఇమెయిల్స్ పంపడం అనుమతి లేదు
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,దయచేసి {0} క్రమం / సమూహం నుండి కనీసం 1 కాలమ్ ఎంచుకోండి
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,కంపెనీ లింక్ చేయబడలేదు
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,మీరు శాండ్బాక్స్ API ని ఉపయోగించి మీ చెల్లింపు పరీక్షిస్తున్నాయి ఈ తనిఖీ
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,మీరు ఒక ప్రామాణిక వెబ్సైట్ థీమ్ తొలగించడానికి అనుమతి లేదు
DocType: Data Import,Log Details,లాగ్ వివరాలు
@@ -256,7 +261,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} ను నవీకరిస్తోంది
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ఆపివేయి నివేదిక
DocType: Translation,Contributed Translation Doctype Name,సహకారం అనువాద డాక్టైప్ పేరు
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,సెటప్> ఫారమ్ను అనుకూలీకరించండి
DocType: PayPal Settings,Redirect To,దారి మార్పు
DocType: Data Migration Mapping,Pull,పుల్
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},జావాస్క్రిప్ట్ ఫార్మాట్: frappe.query_reports ['REPORTNAME'] = {}
@@ -268,6 +272,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,ప్రవేశము లేదు
DocType: DocShare,Internal record of document shares,పత్రం వాటాల అంతర్గత రికార్డు
DocType: Energy Point Settings,Review Levels,స్థాయిలను సమీక్షించండి
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,సెటప్> వినియోగదారు అనుమతులు
DocType: Workflow State,Comment,వ్యాఖ్య
DocType: Data Migration Plan,Postprocess Method,Postprocess పద్ధతి
DocType: DocType Action,Action Type,చర్య రకం
@@ -318,13 +323,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,వ
DocType: Workflow State,remove-circle,తొలగించడానికి సర్కిల్
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,నా జీవన వివరణ
DocType: Help Article,Beginner,బిగినర్స్
+apps/frappe/frappe/__init__.py,This action is only allowed for {},ఈ చర్య {for కు మాత్రమే అనుమతించబడుతుంది
DocType: Contact,Is Primary Contact,ప్రాథమిక సంప్రదించండి ఈజ్
+DocType: Event Consumer,Event Consumer,ఈవెంట్ వినియోగదారు
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,జావాస్క్రిప్ట్ పేజీ యొక్క భాగంలో జోడించే.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,జోడించు / నవీకరించు
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,కాదు డ్రాఫ్ట్ పత్రాలు ప్రింట్ అనుమతి
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,డిఫాల్ట్లకు రీసెట్
DocType: Workflow,Transition Rules,ట్రాన్సిషన్ రూల్స్
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,ప్రివ్యూలో మొదటి {0} వరుసలను మాత్రమే చూపుతోంది
apps/frappe/frappe/core/doctype/report/report.js,Example:,ఉదాహరణ:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,పరిమితులు
DocType: Workflow,Defines workflow states and rules for a document.,"ఒక పత్రం కోసం వర్క్ఫ్లో రాష్ట్రాలు, నియమాలను నిర్వచిస్తుంది."
@@ -468,7 +474,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,వరకు రిపీట్
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,న్యూ
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,మీరు మొదట వీటిని సృష్టించాలి:
-DocType: Google Maps Settings,Google Maps Settings,Google మ్యాప్స్ సెట్టింగులు
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,లోడ్ అవుతోంది ...
DocType: DocField,Password,పాస్వర్డ్
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,మీ సిస్టమ్ నవీకరించబడింది. కొన్ని క్షణాలు తర్వాత మళ్ళీ రిఫ్రెష్ చెయ్యండి
@@ -560,6 +565,7 @@ DocType: Onboarding Slide,Onboarding Slide,ఆన్బోర్డింగ
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,చెల్లని పాస్వర్డ్:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,చెల్లని పాస్వర్డ్:
DocType: Print Settings,Send document web view link in email,ఇమెయిల్ పత్రం వెబ్ వీక్షణ లింక్ను పంపండి
+DocType: Event Consumer Document Type,Event Consumer Document Type,ఈవెంట్ వినియోగదారు పత్ర రకం
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,మునుపటి
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,విశ్వసనీయ ధృవీకరణ పత్రం అవసరం
@@ -633,6 +639,7 @@ DocType: Workflow State,volume-down,వాల్యూమ్ డౌన్
DocType: Onboarding Slide,Help Links,సహాయం లింకులు
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ఈ IP చిరునామా నుండి యాక్సెస్ అనుమతించబడదు
DocType: Notification Settings,Enable Email Notifications,ఇమెయిల్ నోటిఫికేషన్లను ప్రారంభించండి
+DocType: Document Type Field Mapping,Event Streaming,ఈవెంట్ స్ట్రీమింగ్
apps/frappe/frappe/desk/reportview.py,No Tags,తోబుట్టువుల టాగ్లు
DocType: Email Account,Send Notification to,తెలియపరచకండి
DocType: DocField,Collapsible,ధ్వంసమయ్యే
@@ -649,6 +656,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,ద
apps/frappe/frappe/database/database.py,No conditions provided,షరతులు అందించబడలేదు
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y యాక్సిస్ ఫీల్డ్స్
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,విభజించే ఫీల్డ్ {0} చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,డిఫాల్ట్ చిరునామా మూస కనుగొనబడలేదు. దయచేసి సెటప్> ప్రింటింగ్ మరియు బ్రాండింగ్> చిరునామా మూస నుండి క్రొత్తదాన్ని సృష్టించండి.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,మరిన్ని
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,క్రొత్త రికార్డును సృష్టించండి
DocType: Contact,Sales Manager,అమ్మకాల నిర్వాహకుడు
@@ -672,6 +680,7 @@ DocType: User,Reset Password Key,పాస్వర్డ్ రీసెట్
DocType: Dashboard Chart,All Time,అన్ని సమయంలో
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} కోసం అక్రమ పత్రం స్థితి
DocType: Email Account,Enable Auto Reply,ఆటో Reply ప్రారంభించు
+apps/frappe/frappe/desk/query_report.py,No data to export,ఎగుమతి చేయడానికి డేటా లేదు
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,చూడని
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,ఒకే ప్రింట్ ఆకృతికి బహుళ ప్రింటర్లు మ్యాప్ చేయబడవు.
DocType: Workflow State,zoom-in,పెద్దదిగా చూపు
@@ -823,6 +832,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,విన
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,ప్రధమ
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,అనువాదాలు నవీకరించండి
DocType: Error Snapshot,Exception,మినహాయింపు
+DocType: Event Consumer,Event Consumer Document Types,ఈవెంట్ వినియోగదారు పత్ర రకాలు
DocType: Email Account,Use IMAP,ఉపయోగం IMAP
DocType: Activity Log,Activity Log,కార్యాచరణ లాగ్
DocType: View Log,Viewed By,వీక్షించినది
@@ -862,6 +872,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ల
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,చార్ట్లు ఆకృతీకరించు
DocType: User,Last IP,చివరి IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,దయచేసి మీ ఇమెయిల్కు ఒక అంశాన్ని చేర్చండి
+apps/frappe/frappe/model/workflow.py,Errored Transactions,తప్పు లావాదేవీలు
DocType: Data Migration Connector,Data Migration Connector,డేటా మైగ్రేషన్ కనెక్టర్
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} తిరిగి మార్చబడింది {1}
DocType: Email Account,Track Email Status,ఇమెయిల్ స్థితి ట్రాక్
@@ -892,6 +903,7 @@ DocType: Email Queue,Attachments,అటాచ్మెంట్లు
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,మీరు ఈ పత్రాన్ని ప్రాప్తి అనుమతులు లేదు
DocType: Language,Language Name,భాష పేరు
DocType: Email Group Member,Email Group Member,గుంపు సభ్యుల ఈమెయిలు
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,వినియోగదారుతో ఇమెయిల్ ఖాతా లేదు. దయచేసి వినియోగదారు> ఇమెయిల్ ఇన్బాక్స్ క్రింద ఒక ఖాతాను జోడించండి.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,మీ ఖాతా లాక్ చేయబడింది మరియు {0} సెకన్ల తర్వాత పునఃప్రారంభమవుతుంది
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,వాడుకరి అనుమతులు నిర్దిష్ట రికార్డులకు వినియోగదారులను పరిమితం చేయడానికి ఉపయోగించబడతాయి.
DocType: Notification,Value Changed,విలువ మార్చబడింది
@@ -981,6 +993,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,లావాద
DocType: Help Article,Expert,నిపుణుల
DocType: Workflow State,circle-arrow-right,సర్కిల్-మెట్ట కుడి
DocType: Role Profile,Role Profile,పాత్ర ప్రొఫైల్
+DocType: Document Type Mapping,Remote Document Type,రిమోట్ డాక్యుమెంట్ రకం
apps/frappe/frappe/permissions.py,Document Type is not importable,పత్ర రకం దిగుమతి చేయబడదు
DocType: LDAP Settings,LDAP Server Url,LDAP సర్వర్ Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,దాని {0} ఓపెన్ ఉన్నప్పుడు ఉదాహరణకు తెరువబడలేదు
@@ -1065,7 +1078,6 @@ DocType: Web Form,Allow Print,ప్రింట్ అనుమతిస్త
DocType: Communication,Clicked,క్లిక్
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,అనుసరించవద్దు
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},అనుమతి లేదు '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి డిఫాల్ట్ ఇమెయిల్ ఖాతాను సెటప్ చేయండి
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,పంపడానికి షెడ్యూల్డ్
DocType: DocType,Track Seen,ట్రాక్ సీన్
DocType: Dropbox Settings,File Backup,ఫైల్ బ్యాకప్
@@ -1135,6 +1147,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ఒ
DocType: Data Export,Filter List,ఫిల్టర్ జాబితా
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,ఈవెంట్ కాన్ఫిగరేషన్లు
DocType: Email Account,Auto Reply Message,ఆటో Reply సందేశం
DocType: Data Migration Mapping,Condition,కండిషన్
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} గంటల క్రితం
@@ -1194,6 +1207,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,ఈ రేఖ దిగువన డేటా నమోదు చేయడాన్ని ప్రారంభించండి
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},కోసం మారిన విలువలు {0}
DocType: Workflow State,retweet,మళ్ళీ ట్వీట్
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","పోలిక కోసం,> 5, <10 లేదా = 324 ఉపయోగించండి. శ్రేణుల కోసం, 5:10 (5 & 10 మధ్య విలువల కోసం) ఉపయోగించండి."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,అనుకూలీకరించు ...
DocType: Print Format,Align Labels to the Right,లేబుల్లను కుడికి సమలేఖనం చేయండి
DocType: Assignment Rule,Disabled,వికలాంగుల
@@ -1240,8 +1254,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,కీబోర్డ్ సత్వరమార్గాలు
DocType: Post,Comments,వ్యాఖ్యలు
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,నిర్ధారించండి
+DocType: Event Sync Log,Update Type,నవీకరణ రకం
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,ధ్రువీకరిస్తున్నాయి ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,అన్నీ కుదించు
+DocType: Event Producer,Last Update,చివరి నవీకరణ
apps/frappe/frappe/www/login.html,Forgot Password?,పాస్వర్డ్ మర్చిపోయారా?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1281,6 +1297,7 @@ DocType: LDAP Settings,Password for Base DN,బేస్ DN కోసం పా
apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,టేబుల్ ఫీల్డ్
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,లు ఆధారంగా
DocType: Workflow State,move,తరలింపు
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,ప్రస్తుత సైట్ కోసం ఈవెంట్ వినియోగదారుని లేదా ఈవెంట్ వినియోగదారుని సృష్టించడం విఫలమైంది.
apps/frappe/frappe/model/document.py,Action Failed,చర్య విఫలమైంది
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,వాడుకరి
DocType: View Log,View log,లాగ్ను చూడండి
@@ -1439,6 +1456,7 @@ DocType: DefaultValue,Key,కీ
DocType: Address,Contacts,కాంటాక్ట్స్
DocType: System Settings,Setup Complete,సెటప్ పూర్తయింది
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,అన్ని పత్రం వాటాల నివేదిక
+DocType: Event Consumer,Callback URL,బ్యాక్ URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","దిగుమతి టెంప్లేట్ .csv, .xlsx లేదా .xls రకం ఉండాలి"
apps/frappe/frappe/www/update-password.html,New Password,కొత్త పాస్వర్డ్
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,వడపోత {0} తప్పిపోయిన
@@ -1505,7 +1523,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,వ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; పరిస్థితి లో అనుమతించబడవు
DocType: Async Task,Async Task,Async టాస్క్
DocType: Workflow State,picture,చిత్రాన్ని
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,పూర్తి
+DocType: Scheduled Job Log,Complete,పూర్తి
DocType: DocType,Image Field,చిత్రం ఫీల్డ్
DocType: Print Format,Custom HTML Help,కస్టమ్ HTML సహాయం
DocType: LDAP Settings,Default Role on Creation,సృష్టిపై డిఫాల్ట్ పాత్ర
@@ -1530,6 +1548,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,సెర్చ్లో సహాయం
DocType: Milestone,Milestone Tracker,మైలురాయి ట్రాకర్
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,రిజిస్టర్ కాని వికలాంగ
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,చిరునామాను కంపెనీకి లింక్ చేయాలి. దయచేసి దిగువ లింకుల పట్టికలో కంపెనీ కోసం ఒక వరుసను జోడించండి.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,ఈ పత్రం కోసం ఆటో రిపీట్ నిలిపివేయబడింది.
DocType: DocType,Hide Copy,కాపీ దాచు
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,అన్ని పాత్రలు క్లియర్
@@ -1568,13 +1587,13 @@ DocType: Bulk Update,Field,ఫీల్డ్
DocType: Communication,Received,స్వీకరించిన
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update", etc వంటి చెల్లుబాటు అయ్యే పద్ధతులపై ట్రిగ్గర్ (ఎంచుకున్న DOCTYPE ఆధారపడి ఉంటుంది)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},మార్చబడిన విలువ {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},ఇమెయిల్ ఖాతా సెటప్ దయచేసి మీ పాస్వర్డ్ను దీని కోసం నమోదు చేయండి: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,ఈ యూజర్ సిస్టమ్ మేనేజర్ జోడించడం కనీసం ఒక వ్యవస్థ మేనేజర్ అక్కడ ఉండాలి
DocType: Chat Message,URLs,URL లు
DocType: Data Migration Run,Total Pages,మొత్తం పేజీలు
DocType: DocField,Attach Image,చిత్రం అటాచ్
DocType: Workflow State,list-alt,జాబితా-alt
apps/frappe/frappe/www/update-password.html,Password Updated,పాస్వర్డ్ నవీకరించబడింది
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,సెటప్> వినియోగదారు అనుమతులు
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,మీ లాగిన్ను ధృవీకరించడానికి దశలు
apps/frappe/frappe/utils/password.py,Password not found,పాస్వర్డ్ దొరకలేదు
DocType: Webhook,Webhook Secret,వెబ్హూక్ సీక్రెట్
@@ -1590,8 +1609,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API సె
DocType: Report,Query Report,ప్రశ్న నివేదిక
DocType: User,Set New Password,కొత్త పాస్వర్డ్ సెట్
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} కోసం అనుమతించబడదు: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S చెల్లుబాటు అయ్యే నివేదిక రూపంలో లేదు. ఫార్మాట్ క్రింది% s ఒకటి \ ఉండాలి నివేదిక
DocType: Chat Message,Chat,చాట్
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP గ్రూప్ మ్యాపింగ్
DocType: Dashboard Chart,Chart Options,చార్ట్ ఎంపికలు
@@ -1626,7 +1643,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,మీ
DocType: Dropbox Settings,Dropbox Access Secret,డ్రాప్బాక్స్ యాక్సెస్ సీక్రెట్
DocType: Tag Link,Document Title,పత్రం శీర్షిక
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ఆదేశక)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం
DocType: Social Login Key,Social Login Provider,సామాజిక లాగిన్ ప్రొవైడర్
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,మరో వ్యాఖ్య జోడించండి
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ఫైల్లో డేటా ఏదీ కనుగొనబడలేదు. దయచేసి కొత్త ఫైల్ డేటాతో తిరిగి చేరండి.
@@ -1672,6 +1688,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Select
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 సంవత్సరం
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,శాశ్వతంగా తొలగించండి {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,ఒకే ఫైల్ ఇప్పటికే రికార్డు జత చెయ్యబడింది
+DocType: Event Sync Log,Synced,సమకాలీకరించిన
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} చెల్లుబాటు అయ్యే వర్క్ఫ్లో రాష్ట్రం కాదు. దయచేసి మీ కార్యప్రవాహాన్ని నవీకరించండి మరియు మళ్లీ ప్రయత్నించండి.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} పాయింట్లు ఇచ్చారు
DocType: Workflow State,wrench,రెంచ్
@@ -1768,6 +1785,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,మాక్స్ పొడవు
DocType: Print Format,Jinja,జింజ
DocType: Workflow State,map-marker,మాప్-మార్కర్
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,రెండు డాక్టైప్ల మధ్య మ్యాపింగ్ కాన్ఫిగరేషన్.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ఒక ఇష్యూ సమర్పించండి
DocType: Event,Repeat this Event,ఈ ఈవెంట్ రిపీట్
DocType: Address,Maintenance User,నిర్వహణ వాడుకరి
@@ -1825,6 +1843,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,టెస్ట్ ఇమెయిల్ అడ్రస్
DocType: Auto Repeat,Reference Document Type,సూచన డాక్యుమెంట్ టైప్
DocType: ToDo,Sender,పంపినవారు
+DocType: Event Consumer,Incoming Change,ఇన్కమింగ్ మార్పు
DocType: Google Drive,Backup Folder Name,బ్యాకప్ ఫోల్డర్ పేరు
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,నోటిఫికేషన్ {0} ను మూల్యాంకనం చేస్తున్నప్పుడు లోపం ఏర్పడింది. దయచేసి మీ టెంప్లేట్ను పరిష్కరించండి.
DocType: GSuite Settings,Google Apps Script,Google Apps స్క్రిప్ట్
@@ -1885,9 +1904,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,క్
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,అభ్యర్థనను ఆమోదించడానికి క్రింది లింక్పై క్లిక్ చేయండి
DocType: Workflow State,align-left,-align వదిలి
DocType: Onboarding Slide,Action Settings,చర్య సెట్టింగ్లు
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,సెటప్> వినియోగదారు
DocType: User,Defaults,అప్రమేయం
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","పోలిక కోసం,> 5, <10 లేదా = 324 ఉపయోగించండి. శ్రేణుల కోసం, 5:10 (5 & 10 మధ్య విలువల కోసం) ఉపయోగించండి."
DocType: Energy Point Log,Revert Of,తిరిగి మార్చండి
+DocType: Document Type Mapping,Field Mapping,ఫీల్డ్ మ్యాపింగ్
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ఇప్పటికే విలీనం
DocType: User,Birth Date,పుట్టిన తేదీ
DocType: Communication Link,Link Title,లింక్ శీర్షిక
@@ -1915,6 +1935,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,ట్యాగ్ లింక్
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,చైన్ ఇంటిగ్రిటి
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,టెస్ట్లో
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",= [?] ఉదా 1 USD కోసం ఫ్రేక్షన్ = 100 సెంట్ 1 కరెన్సీ
DocType: Data Import,Partially Successful,పాక్షికంగా విజయవంతమైంది
@@ -1924,6 +1945,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP గ్రూప్ మ్యాపింగ్లు
DocType: Chat Message Attachment,Chat Message Attachment,సందేశం జోడింపుని చాట్ చేయండి
DocType: LDAP Settings,Path to CA Certs File,CA సర్ట్స్ ఫైల్కు మార్గం
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,పత్రం నిర్మాత మరియు వినియోగదారుల ముగింపులో వేర్వేరు ఫీల్డ్ పేర్లను కలిగి ఉంటే దీన్ని తనిఖీ చేసి మ్యాపింగ్ను సెటప్ చేయండి
DocType: Address,Manipur,మణిపూర్
DocType: Web Form Field,Allow Read On All Link Options,అన్ని లింక్ ఐచ్ఛికాలపై చదవండి
DocType: DocType,Database Engine,డేటాబేస్ ఇంజిన్
@@ -2056,6 +2078,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,గమనిక
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,లోపం నివేదిక
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / Excel ఫార్మాట్లో డేటాను ఎగుమతి చేయండి.
+DocType: Document Type Field Mapping,Document Type Field Mapping,పత్ర రకం ఫీల్డ్ మ్యాపింగ్
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,గ్లోబల్ సెర్చ్ పత్రాలను ఏర్పాటు చేస్తోంది.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,మీరు ఉపయోగించే ప్రామాణీకరణ అనువర్తనాలు:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ఇప్పటికే ఉంది. మరొక పేరుని ఎంచుకోండి
@@ -2131,7 +2154,6 @@ DocType: Workflow State,Upload,అప్లోడ్
DocType: User Permission,Advanced Control,ఆధునిక నియంత్రణ
DocType: System Settings,Date Format,తేదీ ఫార్మాట్
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ప్రచురించబడలేదు
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,డిఫాల్ట్ చిరునామా మూస కనుగొనబడలేదు. దయచేసి సెటప్> ప్రింటింగ్ మరియు బ్రాండింగ్> చిరునామా మూస నుండి క్రొత్తదాన్ని సృష్టించండి.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",వర్క్ఫ్లో కోసం చర్యలు (ఉదా రద్దు ఆమోదించండి).
DocType: Data Import,Skip rows with errors,లోపాలతో అడ్డు వరుసలను దాటవేయి
DocType: Workflow State,flag,జెండా
@@ -2195,6 +2217,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,రాష్ట్ర మార్చడానికి కేటాయించిన ఒక పత్రం మరియు పాత్ర లో అనుమతించబడవు రాష్ట్రాలు సూచిస్తుంది.
DocType: Data Migration Connector,Database Name,డేటాబేస్ పేరు
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,రిఫ్రెష్ ఫారం
+DocType: Event Producer,Event Producer,ఈవెంట్ నిర్మాత
DocType: DocField,Select,ఎంచుకోండి
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,పూర్తి లాగ్ చూడండి
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","సాధారణ పైథాన్ వ్యక్తీకరణ, ఉదాహరణ: స్థితి == 'ఓపెన్' మరియు == 'బగ్' అని టైప్ చేయండి"
@@ -2309,6 +2332,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,లాగి
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,డు జోడించండి
DocType: Footer Item,Company,కంపెనీ
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},సగటు {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,విజయవంతమైన లావాదేవీలు
DocType: Scheduled Job Log,Scheduled,షెడ్యూల్డ్
DocType: User,Logout from all devices while changing Password,పాస్వర్డ్ను మార్చినప్పుడు అన్ని పరికరాల నుండి లాగ్అవుట్ చేయండి
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,పాస్ వర్డ్ నిర్ధారించు
@@ -2417,6 +2441,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,నెల
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: జోడించండి Reference: {{ reference_doctype }} {{ reference_name }} పంపండి పత్రం సూచన
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,పత్రంలో పాల్గొన్న వినియోగదారులు మాత్రమే జాబితా చేయబడ్డారు
DocType: DocField,Fetch From,నుండి పొందు
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,సెటప్> ఫారమ్ను అనుకూలీకరించండి
apps/frappe/frappe/modules/utils.py,App not found,App దొరకలేదు
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},సృష్టించలేను ఒక {0} పిల్లల పత్రం వ్యతిరేకంగా: {1}
DocType: Social Login Key,Social Login Key,సామాజిక లాగిన్ కీ
@@ -2427,7 +2452,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,సం
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,సోషల్ హోమ్
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},సెట్ చేయబడదు తరువాత చొప్పించు {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Share {0} తో
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ఇమెయిల్ ఖాతా సెటప్ కోసం మీ పాస్వర్డ్ను నమోదు చేయండి:
DocType: Workflow State,hand-up,చేతి అప్
DocType: Blog Settings,Writers Introduction,రైటర్స్ పరిచయం
DocType: Address,Phone,ఫోన్
@@ -2485,7 +2509,7 @@ DocType: Web Page,Insert Style,చొప్పించు శైలి
DocType: Prepared Report,Error Message,లోపం సందేశం
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,న్యూ రిపోర్ట్ పేరు
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,వారాంతాలను దాచు
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,పునరావృత పత్రాలను స్వయంచాలకంగా ఉత్పత్తి చేస్తుంది.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,పునరావృత పత్రాలను స్వయంచాలకంగా ఉత్పత్తి చేస్తుంది.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ఉంది
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,సమాచార సైన్
@@ -2493,7 +2517,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,కో
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ఈ కరెన్సీ ఎలా ఫార్మాట్ చెయ్యాలి? సెట్ చేయకపోతే, వ్యవస్థ అప్రమేయం ఉపయోగిస్తుంది"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} పత్రాలను సమర్పించాలా?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,మీరు లాగిన్ మరియు బ్యాకప్ యాక్సెస్ చెయ్యలేరు వ్యవస్థ మేనేజర్ పాత్ర కలిగి అవసరం.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ ట్రే అనువర్తనానికి కనెక్ట్ చేయడంలో లోపం ...
రా ప్రింట్ ఫీచర్ను ఉపయోగించడానికి మీరు QZ ట్రే అప్లికేషన్ను ఇన్స్టాల్ చేసి అమలు చేయాలి.
QZ ట్రేని డౌన్లోడ్ చేసి, ఇన్స్టాల్ చేయడానికి ఇక్కడ క్లిక్ చేయండి .
రా ప్రింటింగ్ గురించి మరింత తెలుసుకోవడానికి ఇక్కడ క్లిక్ చేయండి ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,ప్రింటర్ మ్యాపింగ్
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,అటాచ్ ముందు సేవ్ చేయండి.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,మీరు లింక్ చేసిన అన్ని పత్రాలను రద్దు చేయాలనుకుంటున్నారా?
@@ -2521,6 +2544,7 @@ DocType: Role Permission for Page and Report,Set Role For,స్ఫూర్త
DocType: GCalendar Account,The name that will appear in Google Calendar,Google Calendar లో కనిపించే పేరు
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} తో ప్రత్యక్ష గది ఇప్పటికే ఉంది.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,రిఫ్రెష్ ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},దయచేసి డాష్బోర్డ్ చార్ట్ కోసం సెట్ చేసిన ఫిల్టర్ విలువలను తనిఖీ చేయండి: {}
DocType: Event,Starts on,న మొదలవుతుంది
DocType: System Settings,System Settings,వ్యవస్థ సెట్టింగులు
DocType: GCalendar Settings,Google API Credentials,Google API ఆధారాలు
@@ -2545,6 +2569,7 @@ DocType: Workflow State,ok-sign,సరే సైన్
apps/frappe/frappe/config/settings.py,Deleted Documents,తొలగించిన పత్రాలను
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV ఫార్మాట్ కేస్ సెన్సిటివ్
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,డెస్క్టాప్ ఐకాన్ ఇప్పటికే ఉంది
+DocType: Event Consumer Document Type,Approval Status,ఆమోద స్థితి
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,స్లైడ్లు చూపించాల్సిన అన్ని డొమైన్లలో పేర్కొనండి. ఏమీ పేర్కొనకపోతే స్లైడ్ అప్రమేయంగా అన్ని డొమైన్లలో చూపబడుతుంది.
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,నకిలీ
DocType: Newsletter,Create and Send Newsletters,సృష్టించు మరియు పంపండి వార్తాలేఖలు
@@ -2563,6 +2588,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Articles సహాయం
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,రకం:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,మీ చెల్లింపు విఫలమైంది.
+DocType: Event Producer,Producer URL,నిర్మాత URL
DocType: Comment,Unshared,అన్షేర్డ్
DocType: Address,Karnataka,కర్ణాటక
apps/frappe/frappe/desk/moduleview.py,Module Not Found,మాడ్యూల్ దొరకలేదు
@@ -2574,6 +2600,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,అసైన్మెంట్ పూర్తయింది
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},బల్క్ మార్చు {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,రిపోర్ట్ డౌన్ లోడ్
+apps/frappe/frappe/model/workflow.py,Workflow Status,వర్క్ఫ్లో స్థితి
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,చురుకుగా
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,డాష్బోర్డ్ చార్ట్ సోర్స్లను సృష్టించడానికి నిర్వాహకుడికి మాత్రమే అనుమతి ఉంది
DocType: About Us Settings,Settings for the About Us Page,మా గురించి పేజీ సెట్టింగ్లను
@@ -2631,6 +2658,7 @@ DocType: User Social Login,User Social Login,వాడుకరి సామా
DocType: Contact,All,అన్ని
DocType: Email Queue,Recipient,స్వీకర్త
DocType: Webhook,Webhook Security,వెబ్హూక్ భద్రత
+DocType: Event Sync Log,Producer Document Name,నిర్మాత పత్రం పేరు
DocType: Communication,Has Attachment,జోడింపు ఉంది
DocType: Address,Sales User,సేల్స్ వాడుకరి
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,డ్రాగ్ మరియు డ్రాప్ సాధనం నిర్మించడానికి మరియు ప్రింట్ ఆకృతులు అనుకూలీకరించడానికి.
@@ -2665,6 +2693,7 @@ DocType: Address,Arunachal Pradesh,అరుణాచల్ ప్రదేశ
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,పిల్లల పట్టికలు ఇతర డాక్టైప్లలో గ్రిడ్గా చూపబడతాయి
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,సెటప్ ఆటో ఇమెయిల్
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,ఈవెంట్లను వినియోగించడానికి మీరు సభ్యత్వాన్ని పొందాలనుకునే సైట్.
DocType: Chat Profile,Message Preview,సందేశ పరిదృశ్యం
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,ఈ ఒక టాప్ 10 సాధారణ పాస్వర్డ్.
DocType: User,User Defaults,వాడుకరి డిఫాల్ట్లకు
@@ -2697,6 +2726,7 @@ DocType: Dashboard Chart,Last Synced On,చివరి సమకాలీకర
DocType: Comment,Comment Type,వ్యాఖ్య రకం
DocType: OAuth Client,OAuth Client,ను క్లయింట్
DocType: Assignment Rule,Users,వినియోగదారులు
+DocType: Document Type Mapping,Local Document Type,స్థానిక పత్ర రకం
DocType: Address,Odisha,ఒడిషా
DocType: Report,Report Type,నివేదిక రకం
DocType: DocField,Signature,సంతకం
@@ -2738,6 +2768,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} స్వీయ ఈ పనిని కేటాయించింది: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,మీ దేశం
DocType: Assignment Rule Day,Sunday,ఆదివారం
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","వినియోగదారులను కలిగి ఉన్న పత్రాల కోసం ఈవెంట్ ప్రొడ్యూసర్ సైట్లోని అన్ని ఇన్సర్ట్లు, నవీకరణలు మరియు తొలగింపుల లాగ్ను నిర్వహిస్తుంది."
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,స్టాండింగ్ల
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,గ్రిడ్ వీక్షణ
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,ఎక్కువ కార్యాచరణ లేదు
@@ -2882,7 +2913,6 @@ DocType: Web Page,Sidebar and Comments,సైడ్బార్ మరియ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","మీరు ఒక పత్రాన్ని తర్వాత అది రద్దు చేసి సేవ్ సవరణ చేసినప్పుడు, అది పాత సంఖ్యలో ఒక వెర్షన్ ఒక కొత్త సంఖ్య పొందుతారు."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} పత్రాన్ని అటాచ్ చేయడానికి అనుమతి లేదు, దయచేసి ముద్రణ సెట్టింగులలో {0} ముద్రణను అనుమతించు ప్రారంభించండి"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్ కాదు. దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి క్రొత్త ఇమెయిల్ ఖాతాను సృష్టించండి
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} వద్ద పత్రాన్ని చూడండి
DocType: Stripe Settings,Publishable Key,publishable కీ
DocType: Stripe Settings,Publishable Key,publishable కీ
@@ -2958,7 +2988,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,సమాచార
DocType: Custom Field,Permission Level,అనుమతి స్థాయి
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: సమర్పించండి రద్దు వ్రాయండి లేకుండా సవరణ సెట్ చెయ్యబడదు
DocType: List View Setting,Disable Count,కౌంట్ ఆపివేయి
-DocType: Google Maps Settings,Client Key,క్లయింట్ కీ
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,మీరు అటాచ్మెంట్ తొలగించాలనుకుంటున్నారా మీరు భావిస్తున్నారా?
apps/frappe/frappe/__init__.py,Thank you,ధన్యవాదాలు
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,సేవ్
@@ -3082,6 +3111,7 @@ DocType: Workflow Document State,Only Allow Edit For,మాత్రమే మ
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google డ్రైవ్కు బ్యాకప్ చేస్తోంది.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},తప్పనిసరి రంగంలో: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,నీ పేరు
+DocType: Event Producer Document Type,Event Producer Document Type,ఈవెంట్ నిర్మాత పత్ర రకం
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,కనెక్షన్ సక్సెస్
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,స్లైడ్ రకాన్ని కొనసాగించే ఆన్బోర్డింగ్ స్లయిడ్ ఇప్పటికే ఉంది.
@@ -3150,6 +3180,7 @@ DocType: Address,Postal Code,పోస్టల్ కోడ్
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,మళ్లీ లింక్ కమ్యూనికేషన్
DocType: Translation,Contributed,దోహదపడింది
apps/frappe/frappe/config/customization.py,Form Customization,ఫారమ్ అనుకూలీకరణ
+DocType: Event Update Log,Event Update Log,ఈవెంట్ నవీకరణ లాగ్
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,యాక్టివ్ సెషన్లు లేవు
DocType: Web Form,Route to Success Link,సక్సెస్ లింక్కి మార్గం
DocType: Onboarding Slide Field,Right,కుడి
@@ -3175,7 +3206,7 @@ DocType: Website Settings,Chat Operators,చాట్ ఆపరేటర్ల
DocType: S3 Backup Settings,ca-central-1,ca-కేంద్ర -1
DocType: Contact Us Settings,Pincode,పిన్కోడు
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,ఏ ఖాళీ నిలువు ఫైలు ఉన్నాయి నిర్ధారించుకోండి.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,పత్రం బహుళ దశలకు గురైతే దాని జీవితచక్రంలో మైలురాళ్లను ట్రాక్ చేస్తుంది.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,పత్రం బహుళ దశలకు గురైతే దాని జీవితచక్రంలో మైలురాళ్లను ట్రాక్ చేస్తుంది.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","ఫైళ్ళ పేరు మార్చబడింది మరియు కంట్రోలర్లలో కోడ్ మార్చబడింది, దయచేసి తనిఖీ చేయండి!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,మీ ప్రొఫైల్ ఒక ఇమెయిల్ చిరునామాను కలిగి ఉండేలా దయచేసి
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,మీరు ఈ రూపం లో సేవ్ చెయ్యని మార్పులు ఉన్నాయి. కొనసాగించే ముందు సేవ్ చెయ్యండి.
@@ -3202,7 +3233,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API సీక్రెట్ను సేవ్ చేయండి:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},రద్దు పత్రం లింక్ చేయలేదు: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,ప్రామాణిక నివేదిక సవరించడం సాధ్యపడదు. దయచేసి నకిలీ మరియు ఒక కొత్త నివేదిక రూపొందించినప్పుడు
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","మీ కంపెనీ చిరునామా వంటి కంపెనీ, తప్పనిసరి"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","ఉదాహరణకు: మీరు డాక్యుమెంట్ ID చేర్చాలనుకుంటే, ఉపయోగించండి {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},సెలెక్ట్ టేబుల్ లు {0}
DocType: Custom Field,Options Help,ఎంపికలు సహాయము
@@ -3210,7 +3240,6 @@ DocType: Footer Item,Group Label,గ్రూప్ లేబుల్
DocType: Kanban Board,Kanban Board,కంబన్ బోర్డు
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google పరిచయాలు కాన్ఫిగర్ చేయబడ్డాయి.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 రికార్డు ఎగుమతి చేయబడుతుంది
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,వినియోగదారుతో ఇమెయిల్ ఖాతా లేదు. దయచేసి వినియోగదారు> ఇమెయిల్ ఇన్బాక్స్ క్రింద ఒక ఖాతాను జోడించండి.
DocType: DocField,Report Hide,నివేదిక దాచు
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},ట్రీ వీక్షణ కోసం అందుబాటులో లేదు {0}
DocType: DocType,Restrict To Domain,డొమైన్కు పరిమితం
@@ -3274,7 +3303,9 @@ DocType: DocField,Fold,మడత
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,ప్రామాణిక ప్రింట్ ఫార్మాట్ నవీకరించబడింది సాధ్యం కాదు
DocType: System Settings,In Days,డేస్ లో
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,మిస్
+DocType: Event Producer Document Type,Has Mapping,మ్యాపింగ్ ఉంది
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,పేర్కొనండి
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,చెల్లని ఫిల్టర్ విలువ
DocType: Comment,Bot,బొట్
DocType: Help Article,Help Article,సహాయ కథనం
DocType: Page,Page Name,పేజీ పేరు
@@ -3380,7 +3411,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,ప్రింట్ ఫార్మాట్
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,గ్రిడ్ వీక్షణను టోగుల్ చేయండి
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,తదుపరి రికార్డుకు వెళ్ళండి
-DocType: System Settings,Time Format,సమయ నమూనా
+DocType: Country,Time Format,సమయ నమూనా
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,చెల్లని చెల్లింపు గేట్వే ఆధారాలను
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,ఇది కొన్ని లోపం ఉన్న అడ్డు వరుసలతో సృష్టించబడిన టెంప్లేట్ ఫైల్. మీరు దిద్దుబాటు మరియు దిగుమతి కోసం ఈ ఫైల్ ను వాడాలి.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,డాక్యుమెంట్ రకాలు మరియు భాద్యతలు సెట్ అనుమతులు
@@ -3697,6 +3728,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,యూజర్ పేరును ఉపయోగించి లాగిన్ అనుమతించు
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,నివేదిక ప్రారంభించు
DocType: DocField,Display Depends On,ప్రదర్శించు ఆధారపడి
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం
DocType: Social Login Key,API Endpoint,API ముగింపు స్థానం
DocType: Web Page,Insert Code,చొప్పించు కోడ్
DocType: Data Migration Run,Current Mapping Type,ప్రస్తుత మ్యాపింగ్ పద్ధతి
@@ -3749,6 +3781,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,మ
apps/frappe/frappe/www/login.html,Or login with,లేదా లాగిన్
DocType: Error Snapshot,Locals,స్థానికులు
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},ద్వారా సమాచారాన్ని {0} లో {1}: {2}
+DocType: Event Producer,Event Producer Document Types,ఈవెంట్ నిర్మాత పత్ర రకాలు
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి డిఫాల్ట్ ఇమెయిల్ ఖాతాను సెటప్ చేయండి
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,ద్వారా సమూహాన్ని ఎంచుకోండి ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ఉదా (55 + 434) / 4 లేదా = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} అవసరం
@@ -3779,9 +3813,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar సమకాలీకరణ ID
DocType: Prepared Report,Report Start Time,ప్రారంభ సమయం నివేదించండి
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ఎగుమతి డేటా
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,సమకాలీకరణ యొక్క స్థితితో పాటు వినియోగించే ప్రతి ఈవెంట్ యొక్క లాగ్ను మరియు సమకాలీకరణ విఫలమైతే పున yn సమకాలీకరణ బటన్ను నిర్వహిస్తుంది.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,సెలెక్ట్ కాలమ్స్
DocType: Translation,Source Text,మూల టెక్స్ట్
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"ఇది నేపథ్య నివేదిక. దయచేసి తగిన ఫిల్టర్లను సెట్ చేసి, ఆపై క్రొత్తదాన్ని రూపొందించండి."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్ కాదు. దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి క్రొత్త ఇమెయిల్ ఖాతాను సృష్టించండి
apps/frappe/frappe/www/login.py,Missing parameters for login,లాగిన్ మిస్సింగ్ పారామితులు
DocType: Workflow State,folder-open,ఫోల్డర్ ఓపెన్
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","సమర్పించిన తర్వాత, సమర్పించదగిన పత్రాలను మార్చలేము. వాటిని రద్దు చేసి సవరించవచ్చు."
@@ -3856,6 +3892,7 @@ DocType: Event,Send an email reminder in the morning,ఉదయం ఒక ఇమ
DocType: Blog Post,Published On,లో ప్రచురితమైన
DocType: Contact,Gender,లింగ
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,తప్పనిసరి సమాచారం లేదు:
+DocType: Event Consumer,Event Subscriber,ఈవెంట్ చందాదారుడు
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,అభ్యర్థన URL తనిఖీ
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,కేవలం 200 ఇన్సర్ట్స్ ఒక అభ్యర్థన లో అనుమతించబడవు
DocType: Footer Item,URL,URL
@@ -3868,6 +3905,7 @@ DocType: Auto Email Report,Half Yearly,అర్ధవార్షిక
DocType: Communication,Marked As Spam,స్పామ్ వలె గుర్తించబడింది
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ఫైల్ URL కొన్ని సమస్య ఉంది: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,ట్రీ
+DocType: Event Producer Document Type,Use Same Name,ఒకే పేరు ఉపయోగించండి
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,ఈ నివేదికను ప్రింట్ అనుమతి లేదు
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,వినియోగదారు అనుమతులను
DocType: Workflow State,warning-sign,హెచ్చరిక సంకేతం
@@ -3877,6 +3915,7 @@ DocType: Workflow State,User,వాడుకరి
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",బ్రౌజర్ విండోలో టైటిల్ "ఉపసర్గ - శీర్షిక"
DocType: Payment Gateway,Gateway Settings,గేట్వే సెట్టింగులు
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,డాక్యుమెంట్ రకము టెక్స్ట్
+DocType: Event Sync Log,Event Sync Log,ఈవెంట్ సమకాలీకరణ లాగ్
apps/frappe/frappe/handler.py,Logged Out,లాగ్ అవుట్
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,మరింత...
DocType: System Settings,User can login using Email id or Mobile number,వాడుకరి ఇమెయిల్ ఐడి లేదా మొబైల్ నంబర్ ఉపయోగించి లాగిన్
@@ -3916,12 +3955,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,లో Not
DocType: Workflow State,star,స్టార్
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,హబ్
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,దీన్ని తనిఖీ చేస్తే పత్రాలు ఈవెంట్ ప్రొడ్యూసర్ సైట్లో ఉన్న పేరును కలిగి ఉంటాయి
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,విలువలు కామాలతో వేరు
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},రకం కరెన్సీ కోసం గరిష్ట వెడల్పు వరుసగా 100 px {0}
apps/frappe/frappe/config/website.py,Content web page.,కంటెంట్ వెబ్ పేజీ.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ఒక కొత్త పాత్ర జోడించండి
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,వెబ్ పేజీని సందర్శించండి
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,కొత్త అసైన్మెంట్
+DocType: Event Consumer Document Type,Approved,ఆమోదించబడింది
DocType: Google Contacts,Last Sync On,చివరి సమకాలీకరణ ఆన్ చేయబడింది
DocType: Deleted Document,Deleted Document,తొలగించిన పత్రం
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,అయ్యో! ఎక్కడో తేడ జరిగింది
@@ -3972,7 +4013,6 @@ DocType: Communication,Communication Type,కమ్యూనికేషన్
DocType: DocField,Unique,ప్రత్యేక
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,పాక్షిక సక్సెస్
DocType: Email Account,Service,సర్వీస్
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,సెటప్> వినియోగదారు
DocType: File,File Name,ఫైలు పేరు
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),నివ్వలేదు {0} కోసం {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},రెస్: {0}
@@ -3984,11 +4024,10 @@ DocType: Calendar View,Calendar View,క్యాలెండర్ వీక్
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,ఎడిట్ ఫార్మాట్
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,పూర్తి నమోదు
DocType: GCalendar Settings,Enable,ప్రారంభించు
-DocType: Google Maps Settings,Home Address,హోం చిరునామా
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),మీరు మాత్రమే ఒక ప్రయాణంలో 5000 రికార్డులు వరకు అప్లోడ్ చేయవచ్చు. (కొన్ని సందర్భాల్లో తక్కువ ఉండవచ్చు)
DocType: Report,"output in the form of `data = [columns, result]`","`డేటా = [నిలువు వరుసలు, ఫలితం]` రూపంలో అవుట్పుట్"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,వర్తించే పత్ర రకాలు
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,వినియోగదారు కేటాయింపుల కోసం నియమాలను సెటప్ చేయండి.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,వినియోగదారు కేటాయింపుల కోసం నియమాలను సెటప్ చేయండి.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},కోసం చాలని అనుమతి {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),నివేదిక సేవ్ కాలేదు (లోపాలు ఉన్నాయి)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,శీర్షిక కంటెంట్ను మార్చలేరు
diff --git a/frappe/translations/th.csv b/frappe/translations/th.csv
index cb024f7bc5..97930707d6 100644
--- a/frappe/translations/th.csv
+++ b/frappe/translations/th.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,บทบาทนี้ สิทธิ์ การปรับปรุง ผู้ใช้งานของ ผู้ใช้
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},เปลี่ยนชื่อ {0}
DocType: Workflow State,zoom-out,ซูมออก
-DocType: Data Import Beta,Import Options,ตัวเลือกนำเข้า
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,ไม่สามารถเปิด {0} เมื่อ ตัวอย่าง ที่ เปิดให้บริการ
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,ตารางที่ {0} ไม่ว่างเปล่า
DocType: SMS Parameter,Parameter,พารามิเตอร์
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,ย
DocType: DocType,Is Published Field,มีการเผยแพร่สนาม
DocType: GCalendar Settings,GCalendar Settings,การตั้งค่า GCalendar
DocType: Email Group,Email Group,กลุ่มอีเมล์
-apps/frappe/frappe/__init__.py,Only for {},เฉพาะสำหรับ {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar - ไม่สามารถลบกิจกรรม {0} จาก Google ปฏิทิน, รหัสข้อผิดพลาด {1}"
DocType: Event,Pulled from Google Calendar,ดึงจาก Google ปฏิทิน
DocType: Note,Seen By,เห็นโดย
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,เพิ่มห
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,ไม่ใช่รูปภาพผู้ใช้ที่ถูกต้อง
DocType: Energy Point Log,Reverted,หวนกลับ
DocType: Success Action,First Success Message,ข้อความแสดงความสำเร็จเป็นครั้งแรก
+DocType: Document Type Mapping,Document Type Mapping,การทำแผนที่ประเภทเอกสาร
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ไม่ชอบ
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},ค่าไม่ถูกต้อง: {0} จะต้อง {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","เปลี่ยนคุณสมบัติ เขตข้อมูล (ซ่อน , อ่านได้อย่างเดียว ได้รับอนุญาต ฯลฯ )"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,ไซต์ที่ใช้กิจกรรมของคุณ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ซาบซึ้ง
DocType: Notification Settings,Document Share,แบ่งปันเอกสาร
DocType: Workflow State,lock,ล็อค
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,เข้าสู่ระบบ
DocType: Workflow State,indent-right,เยื้องขวา
DocType: Has Role,Has Role,มีบทบาท
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,resync
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,เวลาเป็นวินาทีเพื่อเก็บภาพโค้ด QR บนเซิร์ฟเวอร์ ต่ำสุด: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Fieldtype {1} สำหรับ {2} ไม่สามารถทำดัชนีได้
DocType: Dashboard Chart,Timespan,ช่วงเวลา
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,เว็บลิงค์
DocType: Deleted Document,Restored,การบูรณะ
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","เกิดข้อผิดพลาดในการเชื่อมต่อกับแอปพลิเคชันถาด QZ ...
คุณต้องมีแอปพลิเคชัน QZ Tray ติดตั้งและใช้งานเพื่อใช้คุณสมบัติการพิมพ์แบบ Raw
คลิกที่นี่เพื่อดาวน์โหลดและติดตั้ง QZ Tray
คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับการพิมพ์แบบดิบ"
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 นาทีที่ผ่านมา
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",นอกเหนือจากการจัดการระบบบทบาทกับการตั้งค่าสิทธิ์ของผู้ใช้ที่เหมาะสมสามารถกำหนดสิทธิ์สำหรับผู้ใช้อื่น ๆ สำหรับประเภทเอกสารที่
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,กำหนดค่าธีม
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,UNSEEN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,ตัวจัดการไฟล์
DocType: Website Settings,"HTML Header, Robots and Redirects",ส่วนหัว HTML หุ่นยนต์และการเปลี่ยนเส้นทาง
DocType: GCalendar Account,Refresh Token,รีเฟรช Token
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,ไม่สามารถเชื่อมต่อกับไซต์ Event Producer ลองอีกครั้งในภายหลัง
DocType: Address,Goa,กัว
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,ไม่มีงานที่รอดำเนินการหรืองานปัจจุบันสำหรับไซต์นี้
DocType: Webhook,Doc Event,เหตุการณ์หมอ
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,ผู้จัดการสคริป
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,ไม่มีกิจกรรม
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,แอปของบุคคลที่สาม
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,ผู้ใช้คนแรกจะกลายเป็นตัวจัดการระบบ (คุณสามารถเปลี่ยนภายหลัง)
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,คุณสามารถลองเปลี่ยนตัวกรองรายงานของคุณ
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,ไม่มีกิจกรรมวันนี้
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,คุณไม่สามารถให้คะแนนความเห็นต่อตนเองได้
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType ต้องถูกส่งต่อสำหรับเหตุการณ์ Doc ที่เลือกไว้
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,คุณยังไม่ได้ รับอนุญาตให้ส่ง อีเมล ที่เกี่ยวข้องกับ เอกสารฉบับนี้
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,กรุณาเลือกอย่างน้อย 1 คอลัมน์จาก {0} เพื่อเรียงลำดับ / กลุ่ม
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},ไม่อนุญาตสำหรับ {0}: {1} ฟิลด์ที่ถูก จำกัด : {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,บริษัท ไม่ได้เชื่อมโยง
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ตรวจสอบเรื่องนี้ถ้าคุณกำลังทดสอบการชำระเงินของคุณโดยใช้ API แซนด์
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,คุณยังไม่ได้รับอนุญาตให้ลบรูปแบบมาตรฐานเว็บไซต์
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},สร้าง {0} แรกของคุณ
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},กำ
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,มี Onboarding Slide {0} ที่ มีลำดับสไลด์เท่ากันอยู่แล้ว
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,ปิดการใช้งานรายงาน
DocType: Translation,Contributed Translation Doctype Name,ชื่อประเภทการแปลที่สนับสนุน
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ตั้งค่า> ปรับแต่งฟอร์ม
DocType: PayPal Settings,Redirect To,เปลี่ยนเส้นทางไปยัง
DocType: Data Migration Mapping,Pull,ดึง
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},รูปแบบ JavaScript : frappe.query_reports [ 'ชื่อรายงาน' ] = { }
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,ไม่อนุญาต
DocType: DocShare,Internal record of document shares,บันทึกของหุ้นเอกสารภายใน
DocType: Energy Point Settings,Review Levels,ระดับความเห็น
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ตั้งค่า> สิทธิ์ผู้ใช้
DocType: Workflow State,Comment,ความเห็น
DocType: Data Migration Plan,Postprocess Method,วิธีการ Postprocess
DocType: DocType Action,Action Type,ประเภทการกระทำ
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,แ
DocType: Workflow State,remove-circle,ลบวงกลม
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,ประวัติของฉัน
DocType: Help Article,Beginner,ผู้เริ่มต้น
+apps/frappe/frappe/__init__.py,This action is only allowed for {},การทำงานนี้อนุญาตสำหรับ {} เท่านั้น
DocType: Contact,Is Primary Contact,ติดต่อหลักคือ
+DocType: Event Consumer,Event Consumer,ผู้บริโภคเหตุการณ์
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,จาวาสคริปต์เพื่อผนวกกับส่วนหัวของหน้า
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,เพิ่ม / อัปเดต
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,ไม่ได้รับอนุญาตในการพิมพ์เอกสารร่าง
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,รีเซ็ตเป็นค่าเริ่มต้น
DocType: Workflow,Transition Rules,กฎการเปลี่ยน
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,แสดงแถว {0} แถวแรกเท่านั้นในหน้าตัวอย่าง
apps/frappe/frappe/core/doctype/report/report.js,Example:,ตัวอย่าง:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,ข้อ จำกัด
DocType: Workflow,Defines workflow states and rules for a document.,กำหนดขั้นตอนการทำงานรัฐและกฎระเบียบสำหรับเอกสาร
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,ทำซ้ำจน
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,ใหม่
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,คุณต้องสร้างสิ่งเหล่านี้ก่อน:
-DocType: Google Maps Settings,Google Maps Settings,การตั้งค่า Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,กำลังโหลด ...
DocType: DocField,Password,รหัสผ่าน
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,ระบบของคุณกำลังถูกปรับปรุง โปรดรีเฟรชอีกครั้งหลังจากสักครู่
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,สไลด์ออนบอร์
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,รหัสผ่านไม่ถูกต้อง:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,รหัสผ่านไม่ถูกต้อง:
DocType: Print Settings,Send document web view link in email,ส่งเอกสารลิงก์ดูเว็บในอีเมล
+DocType: Event Consumer Document Type,Event Consumer Document Type,ประเภทเอกสารสำหรับผู้บริโภคของเหตุการณ์
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,ก่อน
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,ต้องการใบรับรองที่เชื่อถือได้
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,ปริมาณลง
DocType: Onboarding Slide,Help Links,ลิงค์ช่วยเหลือ
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ไม่อนุญาตให้เข้าถึงจากที่อยู่ IP นี้
DocType: Notification Settings,Enable Email Notifications,เปิดใช้งานการแจ้งเตือนทางอีเมล
+DocType: Document Type Field Mapping,Event Streaming,การสตรีมเหตุการณ์
apps/frappe/frappe/desk/reportview.py,No Tags,ไม่มีแท็ก
DocType: Email Account,Send Notification to,แจ้งการส่ง
DocType: DocField,Collapsible,พับ
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,ก
apps/frappe/frappe/database/database.py,No conditions provided,ไม่มีเงื่อนไข
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,แกน Y Fields
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ฟิลด์เรียง {0} จะต้องเป็น fieldname ที่ถูกต้อง
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ไม่พบแม่แบบที่อยู่เริ่มต้น โปรดสร้างอันใหม่จากการตั้งค่า> การพิมพ์และการสร้างแบรนด์> เทมเพลตที่อยู่
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,เพิ่ม
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,สร้างบันทึกใหม่
DocType: Contact,Sales Manager,ผู้จัดการฝ่ายขาย
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,ตั้งชื่อใหม่
DocType: Print Format,Format Data,ข้อมูลรูปแบบ
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} ไม่ใช่รูปแบบรายงานที่ถูกต้อง รูปแบบรายงานควรเป็นหนึ่งใน {1} ต่อไปนี้
DocType: List Filter,Filter Name,ชื่อตัวกรอง
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,เช่น
DocType: Assignment Rule,Automation,การทำงานอัตโนมัติ
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,รีเซ็ต รหัสผ่าน ท
DocType: Dashboard Chart,All Time,ตลอดเวลา
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},สถานะเอกสารที่ไม่ถูกต้องสำหรับ {0}
DocType: Email Account,Enable Auto Reply,เปิดใช้งานการตอบกลับอัตโนมัติ
+apps/frappe/frappe/desk/query_report.py,No data to export,ไม่มีข้อมูลที่จะส่งออก
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,ไม่ได้กระทำ
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,ไม่สามารถมีเครื่องพิมพ์หลายเครื่องที่แมปกับรูปแบบการพิมพ์เดียว
DocType: Workflow State,zoom-in,ซูมเข้า
@@ -841,6 +851,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,เปล
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,เป็นครั้งแรก
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,อัปเดตการแปล
DocType: Error Snapshot,Exception,ข้อยกเว้น
+DocType: Event Consumer,Event Consumer Document Types,ประเภทเอกสารสำหรับผู้บริโภคในเหตุการณ์
DocType: Email Account,Use IMAP,ใช้ IMAP
DocType: Activity Log,Activity Log,บันทึกกิจกรรม
DocType: View Log,Viewed By,ดูโดย
@@ -880,6 +891,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ต
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,กำหนดค่าแผนภูมิ
DocType: User,Last IP,IP สุดท้าย
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,โปรดเพิ่มหัวข้อลงในอีเมลของคุณ
+apps/frappe/frappe/model/workflow.py,Errored Transactions,ธุรกรรมที่ผิดพลาด
DocType: Data Migration Connector,Data Migration Connector,Data Migration Connector
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} เปลี่ยนกลับ {1}
DocType: Email Account,Track Email Status,ติดตามสถานะอีเมล
@@ -911,6 +923,7 @@ DocType: Email Queue,Attachments,สิ่งที่แนบมา
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,คุณไม่มีสิทธิ์ในการเข้าถึงเอกสารนี้
DocType: Language,Language Name,ชื่อภาษา
DocType: Email Group Member,Email Group Member,อีเมลของกลุ่มสมาชิก
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ไม่มีบัญชีอีเมลที่เชื่อมโยงกับผู้ใช้ กรุณาเพิ่มบัญชีภายใต้ผู้ใช้> กล่องจดหมายอีเมล
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,บัญชีของคุณถูกล็อคและจะกลับมาทำงานต่อหลังจาก {0} วินาที
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,สิทธิ์ผู้ใช้จะถูกใช้เพื่อ จำกัด ผู้ใช้เฉพาะระเบียน
DocType: Notification,Value Changed,เปลี่ยนแปลงค่าเรียบร้อย
@@ -1003,6 +1016,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,กล่าว
DocType: Help Article,Expert,ผู้เชี่ยวชาญ
DocType: Workflow State,circle-arrow-right,วงกลมลูกศรขวา
DocType: Role Profile,Role Profile,โปรไฟล์บทบาท
+DocType: Document Type Mapping,Remote Document Type,ประเภทเอกสารระยะไกล
apps/frappe/frappe/permissions.py,Document Type is not importable,ประเภทเอกสารไม่สามารถนำเข้าได้
DocType: LDAP Settings,LDAP Server Url,เซิร์ฟเวอร์ LDAP Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,ไม่สามารถเปิด เช่นเมื่อ มัน {0} เปิด
@@ -1088,7 +1102,7 @@ DocType: Web Form,Allow Print,อนุญาตให้พิมพ์
DocType: Communication,Clicked,คลิก
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,เลิก
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ไม่ อนุญาตให้ ' {0} ' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},แสดงเฉพาะ {0} แถวแรกจาก {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,การกำหนดตารางเวลาในการส่ง
DocType: DocType,Track Seen,ติดตามการกระทำ
DocType: Dropbox Settings,File Backup,การสำรองข้อมูลไฟล์
@@ -1159,6 +1173,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,เ
DocType: Data Export,Filter List,ตัวกรองรายการ
DocType: Data Export,Excel,สันทัด
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,การกำหนดค่าเหตุการณ์
DocType: Email Account,Auto Reply Message,ข้อความตอบกลับอัตโนมัติ
DocType: Data Migration Mapping,Condition,สภาพ
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ชั่วโมงที่ผ่านมา
@@ -1218,9 +1233,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,มักจ
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,เข้าสู่ระบบเพื่อแสดงความคิดเห็น
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,เริ่มป้อนข้อมูลด้านล่างบรรทัดนี้
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},ค่าการเปลี่ยนแปลงสำหรับ {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}",รหัสอีเมลต้องไม่ซ้ำกันมีบัญชีอีเมลอยู่แล้ว \ for {0}
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","สำหรับการเปรียบเทียบให้ใช้> 5, <10 หรือ = 324 สำหรับช่วงใช้ 5:10 (สำหรับค่าระหว่าง 5 และ 10)"
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,ปรับแต่ง ...
DocType: Print Format,Align Labels to the Right,จัดเรียงป้ายกำกับทางด้านขวา
DocType: Assignment Rule,Disabled,ปิดการใช้งาน
@@ -1269,8 +1283,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,แป้นพิมพ์ลัด
DocType: Post,Comments,ความเห็น
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,ยืนยัน
+DocType: Event Sync Log,Update Type,ประเภทการอัพเดท
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,ตรวจสอบสิทธิ์ ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,ยุบทั้งหมด
+DocType: Event Producer,Last Update,การปรับปรุงครั้งล่าสุด
apps/frappe/frappe/www/login.html,Forgot Password?,ลืมรหัสผ่าน?
DocType: System Settings,yyyy-mm-dd,ปปปป-ดด-วว
apps/frappe/frappe/desk/report/todo/todo.py,ID,ไอดี
@@ -1311,6 +1327,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,เขต
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,คอลัมน์อยู่บนพื้นฐานของ
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","การอิมพอร์ต {0} จาก {1}, {2}"
DocType: Workflow State,move,ย้าย
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,ไม่สามารถสร้าง Event Consumer หรือ Event Consumer สำหรับไซต์ปัจจุบันได้ลงทะเบียนแล้ว
apps/frappe/frappe/model/document.py,Action Failed,ดำเนินการล้มเหลว
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,สำหรับผู้ใช้
DocType: View Log,View log,ดูบันทึก
@@ -1474,6 +1491,7 @@ DocType: DefaultValue,Key,คีย์
DocType: Address,Contacts,ติดต่อ
DocType: System Settings,Setup Complete,การติดตั้ง เสร็จสมบูรณ์
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,รายงานหุ้นเอกสารทั้งหมด
+DocType: Event Consumer,Callback URL,URL โทรกลับ
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","เทมเพลตนำเข้าควรเป็นประเภท. csv, .xlsx หรือ. xls"
apps/frappe/frappe/www/update-password.html,New Password,รหัสผ่านใหม่
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,กรอง {0} ที่ขาดหายไป
@@ -1540,7 +1558,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ท
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; เงื่อนไขไม่ได้รับอนุญาต
DocType: Async Task,Async Task,Async งาน
DocType: Workflow State,picture,ภาพ
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,ที่สมบูรณ์แบบ
+DocType: Scheduled Job Log,Complete,ที่สมบูรณ์แบบ
DocType: DocType,Image Field,ลานภาพ
DocType: Print Format,Custom HTML Help,ที่กำหนดเองวิธีใช้ HTML
DocType: LDAP Settings,Default Role on Creation,บทบาทเริ่มต้นในการสร้าง
@@ -1566,6 +1584,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,ช่วยในการค้นหา
DocType: Milestone,Milestone Tracker,ติดตามเหตุการณ์สำคัญ
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,สมัครสมาชิก แต่คนพิการ
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,ที่อยู่จะต้องเชื่อมโยงกับ บริษัท โปรดเพิ่มแถวสำหรับ บริษัท ในตารางลิงก์ด้านล่าง
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,การทำซ้ำอัตโนมัติสำหรับเอกสารนี้ถูกปิดใช้งาน
DocType: DocType,Hide Copy,ซ่อนคัดลอก
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,ล้าง ทุกบทบาท
@@ -1604,6 +1623,7 @@ DocType: Bulk Update,Field,สนาม
DocType: Communication,Received,ที่ได้รับ
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","ทริกเกอร์เกี่ยวกับวิธีการที่ถูกต้องเช่น "before_insert", "after_update" ฯลฯ (จะขึ้นอยู่กับ DocType ที่เลือก)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},เปลี่ยนค่าของ {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},การตั้งค่าบัญชีอีเมลโปรดป้อนรหัสผ่านของคุณสำหรับ: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,เพิ่ม ระบบ การ จัดการ ผู้ใช้ นี้ จะต้องมี อย่างน้อย หนึ่ง ระบบการ จัดการ
DocType: Chat Message,URLs,URL ที่
DocType: Data Migration Run,Total Pages,จำนวนหน้าทั้งหมด
@@ -1611,7 +1631,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,แนบ ภาพ
DocType: Workflow State,list-alt,รายการ ALT-
apps/frappe/frappe/www/update-password.html,Password Updated,รหัสผ่าน การปรับปรุง
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ตั้งค่า> สิทธิ์ผู้ใช้
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,ขั้นตอนในการยืนยันการเข้าสู่ระบบของคุณ
apps/frappe/frappe/utils/password.py,Password not found,ไม่พบรหัสผ่าน
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1627,8 +1646,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,การตั
DocType: Report,Query Report,รายงานแบบสอบถาม
DocType: User,Set New Password,ตั้งรหัสผ่านใหม่
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},ไม่อนุญาตสำหรับ {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s ไม่ใช่รูปแบบรายงานที่ถูกต้อง รูปแบบรายงานควรเป็น \ หนึ่งใน %s ต่อไปนี้
DocType: Chat Message,Chat,พูดคุย
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},ไม่พบเอกสารที่ติดแท็กด้วย {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,การจับคู่กลุ่ม LDAP
@@ -1664,7 +1681,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ป้อ
DocType: Dropbox Settings,Dropbox Access Secret,ความลับในการเข้าถึง Dropbox
DocType: Tag Link,Document Title,ชื่อเอกสาร
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(บังคับ)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ปีที่แล้ว
DocType: Social Login Key,Social Login Provider,ผู้ให้บริการเข้าสู่ระบบสังคม
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,เพิ่มความคิดเห็นอื่น
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,ไม่มีข้อมูลที่พบในไฟล์ โปรดใส่ข้อมูลใหม่ลงในไฟล์ใหม่
@@ -1712,6 +1728,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","เล
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ปี
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,ลบ {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,ไฟล์เดียวกันได้ถูกแนบมากับบันทึก
+DocType: Event Sync Log,Synced,ซิงค์
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ไม่ใช่สถานะเวิร์กโฟลว์ที่ถูกต้อง โปรดอัปเดตเวิร์กโฟลว์และลองอีกครั้ง
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,ให้คะแนน {0} คะแนน
DocType: Workflow State,wrench,ประแจ
@@ -1814,6 +1831,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,ความยาวสูงสุด
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,แผนที่เครื่องหมาย
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,การกำหนดค่าการแมประหว่างสอง doctypes
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ส่ง ออก
DocType: Event,Repeat this Event,ทำซ้ำเหตุการณ์นี้
DocType: Address,Maintenance User,ผู้บำรุงรักษา
@@ -1873,6 +1891,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,ทดสอบอีเมล์
DocType: Auto Repeat,Reference Document Type,เอกสารประเภท
DocType: ToDo,Sender,ผู้ส่ง
+DocType: Event Consumer,Incoming Change,การเปลี่ยนแปลงที่เข้ามา
DocType: Google Drive,Backup Folder Name,ชื่อโฟลเดอร์สำรอง
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,เกิดข้อผิดพลาดขณะประเมินประกาศ {0} โปรดแก้ไขเทมเพลตของคุณ
DocType: GSuite Settings,Google Apps Script,สคริปต์ Google Apps
@@ -1935,9 +1954,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,ให
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,คลิกที่ลิงค์ด้านล่างเพื่ออนุมัติคำขอ
DocType: Workflow State,align-left,จัดซ้าย
DocType: Onboarding Slide,Action Settings,การตั้งค่าการกระทำ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ตั้งค่า> ผู้ใช้
DocType: User,Defaults,เริ่มต้น
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","สำหรับการเปรียบเทียบให้ใช้> 5, <10 หรือ = 324 สำหรับช่วงใช้ 5:10 (สำหรับค่าระหว่าง 5 และ 10)"
DocType: Energy Point Log,Revert Of,ย้อนกลับของ
+DocType: Document Type Mapping,Field Mapping,การแมปฟิลด์
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,รวมกับที่มีอยู่
DocType: User,Birth Date,วันเกิด
DocType: Communication Link,Link Title,ลิงค์ติเติล
@@ -1965,6 +1985,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,ลิงก์แท็ก
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,ความถูกต้องของ Chain Integrity
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,ในการทดสอบ
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 สกุลเงิน = [?] ส่วน
ตัวอย่างเช่น 1 USD = 100 Cent."
@@ -1975,6 +1996,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,การจับคู่กลุ่ม LDAP
DocType: Chat Message Attachment,Chat Message Attachment,ข้อความในข้อความแชท
DocType: LDAP Settings,Path to CA Certs File,พา ธ ไปที่ไฟล์ CA Certs
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,หากเอกสารมีชื่อฟิลด์ที่แตกต่างกันในจุดสิ้นสุดของโปรดิวเซอร์และผู้บริโภคให้ตรวจสอบสิ่งนี้และตั้งค่าการทำแผนที่
DocType: Address,Manipur,มณีปุระ
DocType: Web Form Field,Allow Read On All Link Options,อนุญาตให้อ่านในตัวเลือกลิงก์ทั้งหมด
DocType: DocType,Database Engine,โปรแกรมฐานข้อมูล
@@ -2109,6 +2131,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,หมายเหตุ
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,รายงานข้อผิดพลาด
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,ส่งออกข้อมูลในรูปแบบ CSV / Excel
+DocType: Document Type Field Mapping,Document Type Field Mapping,การแมปฟิลด์ประเภทเอกสาร
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,การตั้งค่าเอกสารการค้นหาทั่วโลก
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,แอปพลิเคชันการตรวจสอบสิทธิ์ที่คุณสามารถใช้ได้ ได้แก่
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} มีอยู่แล้ว เลือกชื่ออื่น
@@ -2184,7 +2207,6 @@ DocType: Workflow State,Upload,อัปโหลด
DocType: User Permission,Advanced Control,การควบคุมขั้นสูง
DocType: System Settings,Date Format,รูปแบบวันที่
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,ไม่ได้เผยแพร่
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ไม่พบแม่แบบที่อยู่เริ่มต้น โปรดสร้างอันใหม่จากการตั้งค่า> การพิมพ์และการสร้างแบรนด์> เทมเพลตที่อยู่
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","การดำเนินการสำหรับขั้นตอนการทำงานิ (เช่น อนุมัติ, ยกเลิก )"
DocType: Data Import,Skip rows with errors,ข้ามแถวที่มีข้อผิดพลาด
DocType: Workflow State,flag,ธง
@@ -2248,6 +2270,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ที่เป็นตัวแทนของรัฐที่ได้รับอนุญาตในเอกสารและบทบาทที่ได้รับมอบหมายในการเปลี่ยนสถานะ
DocType: Data Migration Connector,Database Name,ชื่อฐานข้อมูล
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,แบบฟอร์มรีเฟรช
+DocType: Event Producer,Event Producer,ผู้สร้างเหตุการณ์
DocType: DocField,Select,เลือก
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,ดูบันทึกเต็ม
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Python Expression, ตัวอย่าง: status == 'Open' และ type == 'Bug'"
@@ -2349,6 +2372,7 @@ DocType: DocType,User Cannot Search,ผู้ใช้ไม่สามาร
DocType: Communication Link,Communication Link,ลิงค์การสื่อสาร
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,รูปแบบเอาต์พุตที่ไม่ถูกต้อง
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},ไม่สามารถ {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,สร้างซ้ำ {0} {1} ให้คุณผ่านการทำซ้ำอัตโนมัติ {2}
DocType: Custom DocPerm,Apply this rule if the User is the Owner,ใช้กฎนี้ถ้าผู้ใช้เป็นเจ้าของ
DocType: Global Search Settings,Global Search Settings,การตั้งค่าการค้นหาทั่วโลก
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,จะเป็นรหัสการเข้าสู่ระบบของคุณ
@@ -2366,12 +2390,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,รหัส Q
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,เพิ่มสิ่งที่ต้องทำ
DocType: Footer Item,Company,บริษัท
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ค่าเฉลี่ยของ {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,ธุรกรรมที่ประสบความสำเร็จ
DocType: Scheduled Job Log,Scheduled,กำหนด
DocType: User,Logout from all devices while changing Password,ออกจากระบบจากอุปกรณ์ทั้งหมดขณะเปลี่ยนรหัสผ่าน
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,ยืนยันรหัสผ่าน
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,มีข้อผิดพลาด ได้
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,ป้อนรหัสลูกค้าและความลับลูกค้าในการตั้งค่า Google
apps/frappe/frappe/core/doctype/communication/communication.js,Close,ปิด
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",ID อีเมลต้องไม่ซ้ำกันบัญชีอีเมลมีอยู่แล้วสำหรับ {0}
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,ไม่สามารถเปลี่ยน docstatus 0-2
DocType: File,Attached To Field,แนบไปกับฟิลด์
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,อัพเดท
@@ -2479,6 +2505,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,เดือ
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,protip: เพิ่ม Reference: {{ reference_doctype }} {{ reference_name }} ที่จะส่งเอกสารอ้างอิง
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,มีเพียงผู้ใช้ที่เกี่ยวข้องในเอกสารเท่านั้น
DocType: DocField,Fetch From,เรียกข้อมูลจาก
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ตั้งค่า> ปรับแต่งฟอร์ม
apps/frappe/frappe/modules/utils.py,App not found,ไม่พบแอพพลิเคชั่น
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},ไม่สามารถสร้าง {0} กับเอกสารสำหรับเด็ก: {1}
DocType: Social Login Key,Social Login Key,คีย์เข้าสู่ระบบสังคม
@@ -2490,7 +2517,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,ข้
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,โซเชียลโฮม
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},ใส่หลังจากที่ไม่สามารถกำหนดให้เป็น {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,แบ่งปัน {0} กับ
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,การตั้งค่าบัญชีอีเมล์กรุณาใส่รหัสผ่านของคุณสำหรับ:
DocType: Workflow State,hand-up,มือขึ้น
DocType: Blog Settings,Writers Introduction,แนะนำนักเขียน
DocType: Address,Phone,โทรศัพท์
@@ -2549,7 +2575,7 @@ DocType: Web Page,Insert Style,ใส่สไตล์
DocType: Prepared Report,Error Message,ข้อความผิดพลาด
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,ชื่อรายงานใหม่
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,ซ่อนวันหยุดสุดสัปดาห์
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,สร้างเอกสารที่เกิดซ้ำโดยอัตโนมัติ
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,สร้างเอกสารที่เกิดซ้ำโดยอัตโนมัติ
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,เป็น
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,ข้อมูลการเข้าสู่ระบบ
@@ -2557,7 +2583,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,รา
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",วิธีการที่ควรสกุลเงินนี้จะจัดรูปแบบ? ถ้าไม่ตั้งจะใช้เริ่มต้นของระบบ
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,ส่ง {0} เอกสาร?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,คุณจะต้อง เข้าสู่ระบบและ มี บทบาท ผู้จัดการ ระบบ เพื่อให้สามารถ เข้าถึง การสำรองข้อมูล
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","เกิดข้อผิดพลาดในการเชื่อมต่อกับแอปพลิเคชันถาด QZ ...
คุณต้องมีแอปพลิเคชัน QZ Tray ติดตั้งและใช้งานเพื่อใช้คุณสมบัติการพิมพ์แบบ Raw
คลิกที่นี่เพื่อดาวน์โหลดและติดตั้ง QZ Tray
คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับการพิมพ์แบบดิบ"
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,การทำแผนที่เครื่องพิมพ์
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,กรุณาบันทึกก่อนที่จะติด
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,คุณต้องการยกเลิกเอกสารที่เชื่อมโยงทั้งหมดหรือไม่
@@ -2587,6 +2612,7 @@ DocType: Role Permission for Page and Report,Set Role For,ตั้งบทบ
DocType: GCalendar Account,The name that will appear in Google Calendar,ชื่อที่จะปรากฏใน Google ปฏิทิน
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,ห้องที่ตรงกับ {0} มีอยู่แล้ว
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,กำลังปรับปรุง...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},โปรดตรวจสอบค่าตัวกรองที่ตั้งค่าสำหรับแผนภูมิแดชบอร์ด: {}
DocType: Event,Starts on,เริ่มเมื่อ
DocType: System Settings,System Settings,การตั้งค่าระบบ
DocType: GCalendar Settings,Google API Credentials,ข้อมูลรับรอง Google API
@@ -2612,6 +2638,7 @@ DocType: Workflow State,ok-sign,OK-เครื่องหมาย
apps/frappe/frappe/config/settings.py,Deleted Documents,เอกสารที่ถูกลบ
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,รูปแบบ CSV เป็นตัวพิมพ์เล็กและใหญ่
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,เดสก์ท็อปไอคอนมีอยู่แล้ว
+DocType: Event Consumer Document Type,Approval Status,สถานะการอนุมัติ
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,ระบุว่าควรแสดงสไลด์ใดในโดเมนทั้งหมด หากไม่มีการระบุสไลด์จะแสดงในทุกโดเมนโดยค่าเริ่มต้น
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,ซ้ำ
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: ฟิลด์ {1} ในแถว {2} ไม่สามารถซ่อนและบังคับใช้โดยไม่มีค่าดีฟอลต์
@@ -2631,6 +2658,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,บทความช่วยเหลือ
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ประเภท:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,การชำระเงินของคุณล้มเหลว
+DocType: Event Producer,Producer URL,URL ผู้ผลิต
DocType: Comment,Unshared,ยกเลิกการแบ่งปัน
DocType: Address,Karnataka,กรณาฏกะ
apps/frappe/frappe/desk/moduleview.py,Module Not Found,ไม่พบโมดูล
@@ -2642,6 +2670,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,การมอบหมายงานที่เสร็จสมบูรณ์
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},กลุ่มแก้ไข {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ดาวน์โหลดรายงาน
+apps/frappe/frappe/model/workflow.py,Workflow Status,สถานะเวิร์กโฟลว์
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,ที่ใช้งานไม่ได้
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,ผู้ดูแลระบบเท่านั้นที่ได้รับอนุญาตให้สร้างแหล่งข้อมูลแผนภูมิแดชบอร์ด
DocType: About Us Settings,Settings for the About Us Page,การตั้งค่าสำหรับหน้าเกี่ยวกับเรา
@@ -2651,6 +2680,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,พ
DocType: Notification Settings,Energy Points,คะแนนพลังงาน
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},เวลา {0} ต้องอยู่ในรูปแบบ: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,เช่น pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}: ล้มเหลวในการแนบเอกสารที่เกิดซ้ำใหม่ หากต้องการเปิดใช้งานการแนบเอกสารในอีเมลแจ้งเตือนการทำซ้ำอัตโนมัติให้เปิดใช้งาน {1} ในการตั้งค่าการพิมพ์
DocType: User,Generate Keys,สร้างคีย์
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,นี่จะเป็นการลบข้อมูลของคุณอย่างถาวร
DocType: DocType,View Settings,ดูการตั้งค่า
@@ -2702,6 +2732,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,ทั้งหมด
DocType: Email Queue,Recipient,ผู้รับ
DocType: Webhook,Webhook Security,Webhook ความปลอดภัย
+DocType: Event Sync Log,Producer Document Name,ชื่อเอกสารผู้ผลิต
DocType: Communication,Has Attachment,มีสิ่งที่แนบมา
DocType: Address,Sales User,ผู้ขาย
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ลากและวางเครื่องมือในการสร้างและปรับแต่งรูปแบบการพิมพ์
@@ -2737,6 +2768,7 @@ DocType: Address,Arunachal Pradesh,อรุณาจัลประเทศ
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,ตารางลูกจะแสดงเป็นตารางใน DocTypes อื่น
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,การตั้งค่าอีเมล์อัตโนมัติ
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + ลง
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,ไซต์ที่คุณต้องการสมัครรับข้อมูลสำหรับการบริโภคกิจกรรม
DocType: Chat Profile,Message Preview,แสดงตัวอย่างข้อความ
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,นี่คือ 10 อันดับรหัสผ่านทั่วไป
DocType: User,User Defaults,ค่าดีฟอลต์รายละเอียด
@@ -2769,6 +2801,7 @@ DocType: Dashboard Chart,Last Synced On,ซิงค์ครั้งสุด
DocType: Comment,Comment Type,ประเภทแสดงความคิดเห็น
DocType: OAuth Client,OAuth Client,ไคลเอ็นต์ OAuth
DocType: Assignment Rule,Users,ผู้ใช้
+DocType: Document Type Mapping,Local Document Type,ประเภทเอกสารท้องถิ่น
DocType: Address,Odisha,โอริสสา
DocType: Report,Report Type,ประเภทรายงาน
DocType: DocField,Signature,ลายเซ็น
@@ -2811,6 +2844,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} ตัวเองมอบหมายงานนี้: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,ประเทศของคุณ
DocType: Assignment Rule Day,Sunday,วันอาทิตย์
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",เก็บรักษาบันทึกการแทรกการอัพเดตและการลบทั้งหมดบนไซต์ Event Producer สำหรับเอกสารที่มีผู้บริโภค
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: ชื่อฟิลด์ไม่สามารถเป็นหนึ่งใน {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,ตารางคะแนน
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,ในตารางมุมมอง
@@ -2958,7 +2992,6 @@ DocType: Web Page,Sidebar and Comments,Sidebar และความคิดเ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",เมื่อคุณ แก้ไข เอกสารหลังจาก ยกเลิก และบันทึกไว้ ก็จะ ได้รับหมายเลข ใหม่ที่ เป็นรุ่นของ หมายเลขเดิม
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings",ไม่สามารถแนบเอกสาร {0} ได้โปรดเปิดใช้งานอนุญาตพิมพ์สำหรับ {0} ในการตั้งค่าการพิมพ์
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จากการตั้งค่า> อีเมล> บัญชีอีเมล
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},ดูเอกสารที่ {0}
DocType: Stripe Settings,Publishable Key,คีย์ที่เผยแพร่ได้
DocType: Stripe Settings,Publishable Key,คีย์ที่เผยแพร่ได้
@@ -3036,7 +3069,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,ข้อมูล
DocType: Custom Field,Permission Level,ระดับของสิทธิ์
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : ไม่สามารถตั้งค่า การส่ง การยกเลิก และ การแก้ไข ได้โดยไม่ได้ เขียน
DocType: List View Setting,Disable Count,ปิดใช้งานการนับ
-DocType: Google Maps Settings,Client Key,คีย์ไคลเอ็นต์
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,คุณแน่ใจหรือว่าต้องการลบสิ่งที่แนบมา?
apps/frappe/frappe/__init__.py,Thank you,ขอบคุณ
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,กำลังบันทึก
@@ -3163,6 +3195,7 @@ DocType: Workflow Document State,Only Allow Edit For,อนุญาตให้
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,สำรองข้อมูลไปยัง Google Drive
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},ฟิลด์บังคับ: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,ชื่อของคุณ
+DocType: Event Producer Document Type,Event Producer Document Type,ประเภทเอกสารผู้สร้างเหตุการณ์
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,ความสำเร็จในการเชื่อมต่อ
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,มีการนำเสนอภาพนิ่งของประเภทภาพนิ่งต่อไปแล้ว
@@ -3234,6 +3267,7 @@ DocType: Address,Postal Code,รหัสไปรษณีย์
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,การสื่อสารเชื่อมโยงอีกครั้ง
DocType: Translation,Contributed,มีส่วนร่วม
apps/frappe/frappe/config/customization.py,Form Customization,การปรับแต่งแบบฟอร์ม
+DocType: Event Update Log,Event Update Log,บันทึกการอัพเดทเหตุการณ์
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ไม่มีเซสชันที่ใช้งานอยู่
DocType: Web Form,Route to Success Link,เส้นทางสู่ความสำเร็จ Link
DocType: Onboarding Slide Field,Right,ขวา
@@ -3260,7 +3294,7 @@ DocType: Website Settings,Chat Operators,ผู้ดำเนินการแ
DocType: S3 Backup Settings,ca-central-1,CA-กลาง 1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,กรุณาตรวจสอบให้แน่ใจว่าไม่มีคอลัมน์ที่ว่างเปล่าในแฟ้ม
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ติดตามเหตุการณ์สำคัญในวงจรชีวิตของเอกสารหากผ่านหลายขั้นตอน
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,ติดตามเหตุการณ์สำคัญในวงจรชีวิตของเอกสารหากผ่านหลายขั้นตอน
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",เปลี่ยนชื่อไฟล์และเปลี่ยนรหัสในคอนโทรลเลอร์โปรดตรวจสอบ!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,โปรดตรวจสอบว่ารายละเอียดของคุณมีที่อยู่อีเมล
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,คุณมีการเปลี่ยนแปลงที่ไม่ได้บันทึกในฟอร์มนี้ กรุณาบันทึกเพื่อที่จะดำเนินการต่อ
@@ -3287,7 +3321,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,บันทึก API Secret:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},ไม่สามารถเชื่อมโยงเอกสารยกเลิก: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,ไม่สามารถแก้ไขรายงานมาตรฐาน กรุณาซ้ำกันและสร้างรายงานใหม่
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address",บริษัท มีผลบังคับใช้ตามที่มันเป็นอยู่ บริษัท ของคุณ
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}",ตัวอย่างเช่นถ้าคุณต้องการที่จะรวม ID เอกสารใช้ {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},เลือกคอลัมน์ตารางสำหรับ {0}
DocType: Custom Field,Options Help,ตัวเลือกความช่วยเหลือ
@@ -3295,7 +3328,6 @@ DocType: Footer Item,Group Label,กลุ่มป้ายกำกับ
DocType: Kanban Board,Kanban Board,กระดานคันบัน
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,กำหนดค่า Google Contacts แล้ว
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 บันทึกจะถูกส่งออก
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,ไม่มีบัญชีอีเมลที่เชื่อมโยงกับผู้ใช้ กรุณาเพิ่มบัญชีภายใต้ผู้ใช้> กล่องจดหมายอีเมล
DocType: DocField,Report Hide,แจ้งซ่อน
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},มุมมองต้นไม้ไม่สามารถใช้ได้สำหรับ {0}
DocType: DocType,Restrict To Domain,จำกัด โดเมน
@@ -3361,7 +3393,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: ฟิลด์ {1} ชนิด {2} ไม่สามารถบังคับได้
DocType: System Settings,In Days,ในหลายวัน
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,นางสาว
+DocType: Event Producer Document Type,Has Mapping,มีการทำแผนที่
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,โปรดระบุ
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,ค่าตัวกรองไม่ถูกต้อง
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,บทความช่วยเหลือ
DocType: Page,Page Name,ชื่อเพจ
@@ -3469,7 +3503,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,พิมพ์รูปแบบ
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,สลับมุมมองตาราง
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,ไปที่ระเบียนถัดไป
-DocType: System Settings,Time Format,รูปแบบเวลา
+DocType: Country,Time Format,รูปแบบเวลา
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,ข้อมูลประจำตัวของช่องทางการชำระเงินที่ไม่ถูกต้อง
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,นี่เป็นไฟล์เทมเพลตที่สร้างขึ้นเฉพาะแถวที่มีข้อผิดพลาดเท่านั้น คุณควรใช้ไฟล์นี้เพื่อแก้ไขและนำเข้า
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,กำหนดสิทธิ์ ใน ประเภท เอกสาร และบทบาท
@@ -3805,6 +3839,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,อนุญาตการเข้าสู่ระบบโดยใช้ชื่อผู้ใช้
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,เปิดใช้งานการรายงาน
DocType: DocField,Display Depends On,จอแสดงผลขึ้นอยู่กับ
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ปีที่แล้ว
DocType: Social Login Key,API Endpoint,จุดเชื่อมต่อ API
DocType: Web Page,Insert Code,ใส่รหัส
DocType: Data Migration Run,Current Mapping Type,ประเภทการทำแผนที่ปัจจุบัน
@@ -3858,6 +3893,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,ย
apps/frappe/frappe/www/login.html,Or login with,หรือเข้าสู่ระบบด้วย
DocType: Error Snapshot,Locals,ชาวบ้าน
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},สื่อสารผ่าน {0} ใน {1}: {2}
+DocType: Event Producer,Event Producer Document Types,ประเภทเอกสารผู้ผลิตเหตุการณ์
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,เลือกจัดกลุ่มตาม ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,เช่น (55 + 434) / 4 หรือ = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,ต้องระบุ {0}
@@ -3890,9 +3927,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,รหัสการซิงโครไนซ์ GCalendar
DocType: Prepared Report,Report Start Time,รายงานเวลาเริ่มต้น
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ส่งออกข้อมูล
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,เก็บรักษาบันทึกของทุกเหตุการณ์ที่ใช้ไปพร้อมกับสถานะการซิงค์และปุ่ม Resync ในกรณีที่การซิงค์ล้มเหลว
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,เลือกคอลัมน์
DocType: Translation,Source Text,ข้อความที่มา
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างตัวกรองใหม่
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จากการตั้งค่า> อีเมล> บัญชีอีเมล
apps/frappe/frappe/www/login.py,Missing parameters for login,พารามิเตอร์ที่หายไปเพื่อเข้าสู่ระบบ
DocType: Workflow State,folder-open,โฟลเดอร์เปิด
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",เมื่อส่งแล้วจะไม่สามารถเปลี่ยนแปลงเอกสารที่ส่งได้ สามารถยกเลิกและแก้ไขได้เท่านั้น
@@ -3972,6 +4011,7 @@ DocType: Blog Post,Published On,เผยแพร่เมื่อ
DocType: Contact,Gender,เพศ
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,ข้อมูลบังคับขาดหายไป:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} คืนคะแนนของคุณในวันที่ {1}
+DocType: Event Consumer,Event Subscriber,สมาชิกกิจกรรม
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,ตรวจสอบ URL คำขอ
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,เพียง 200 แทรกได้รับอนุญาตในการร้องขอ
DocType: Footer Item,URL,URL
@@ -3984,6 +4024,7 @@ DocType: Auto Email Report,Half Yearly,ประจำปีครึ่ง
DocType: Communication,Marked As Spam,ทำเครื่องหมายเป็นสแปม
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},มีปัญหากับ url ของไฟล์เป็น: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,ต้นไม้
+DocType: Event Producer Document Type,Use Same Name,ใช้ชื่อเดียวกัน
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,คุณไม่ได้รับอนุญาตให้พิมพ์รายงานนี้
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,สิทธิ์ของผู้ใช้
DocType: Workflow State,warning-sign,ป้ายเตือน
@@ -3993,6 +4034,7 @@ DocType: Workflow State,User,ผู้ใช้งาน
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ชื่อแสดงในหน้าต่างเบราว์เซอร์เป็น "คำนำหน้า - ชื่อ"
DocType: Payment Gateway,Gateway Settings,การตั้งค่าเกตเวย์
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,ข้อความที่อยู่ในประเภทของเอกสาร
+DocType: Event Sync Log,Event Sync Log,บันทึกการซิงค์เหตุการณ์
apps/frappe/frappe/handler.py,Logged Out,ออกจากระบบแล้ว
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,มากกว่า...
DocType: System Settings,User can login using Email id or Mobile number,ผู้ใช้สามารถเข้าสู่ระบบโดยใช้ Email id หรือ Mobile number
@@ -4033,12 +4075,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ไม่อยู่ใน
DocType: Workflow State,star,ดาว
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,ดุม
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,หากมีการตรวจสอบเอกสารจะมีชื่อเดียวกับที่มีในเว็บไซต์ของผู้ผลิตกิจกรรม
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,ค่าที่คั่นด้วยเครื่องหมายจุลภาค
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},ความกว้าง สูงสุด สำหรับประเภท สกุลเงิน เป็น 100px ในแถว {0}
apps/frappe/frappe/config/website.py,Content web page.,หน้าเว็บเนื้อหา
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,เพิ่มบทบาท ใหม่
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,เยี่ยมชมหน้าเว็บ
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,ใหม่ที่ได้รับมอบหมาย
+DocType: Event Consumer Document Type,Approved,ได้รับการอนุมัติ
DocType: Google Contacts,Last Sync On,ซิงค์ล่าสุดเปิด
DocType: Deleted Document,Deleted Document,เอกสารที่ถูกลบ
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,อ๊ะ! สิ่งที่ผิดพลาด
@@ -4091,7 +4135,6 @@ DocType: DocField,Unique,เป็นเอกลักษณ์
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} ได้รับความนิยมเมื่อ {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,ความสำเร็จบางส่วน
DocType: Email Account,Service,ให้บริการ
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ตั้งค่า> ผู้ใช้
DocType: File,File Name,ชื่อไฟล์
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),ไม่พบ {0} กับ {0} ({1} )
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4103,11 +4146,10 @@ DocType: Calendar View,Calendar View,มุมมองปฏิทิน
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,แก้ไขรูปแบบที่
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,ลงทะเบียนเสร็จสมบูรณ์
DocType: GCalendar Settings,Enable,การเปิดใช้งาน
-DocType: Google Maps Settings,Home Address,ที่อยู่บ้าน
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),คุณสามารถอัปโหลดได้ไม่เกิน 5000 บันทึกในครั้งเดียว (อาจจะน้อยกว่าในบางกรณี)
DocType: Report,"output in the form of `data = [columns, result]`",เอาท์พุทในรูปแบบของ `ข้อมูล = [คอลัมน์ผล] '
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,ประเภทเอกสารที่ใช้บังคับ
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,ตั้งค่ากฎสำหรับการมอบหมายผู้ใช้
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,ตั้งค่ากฎสำหรับการมอบหมายผู้ใช้
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},ไม่ได้รับอนุญาตสำหรับ {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},ไม่ได้รับอนุญาตสำหรับ {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),รายงานไม่ถูกบันทึกไว้ (มีข้อผิดพลาด)
diff --git a/frappe/translations/tr.csv b/frappe/translations/tr.csv
index 21cc97aa36..ab5ded3496 100644
--- a/frappe/translations/tr.csv
+++ b/frappe/translations/tr.csv
@@ -48,7 +48,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Bir kullanıcı için bu rolü güncelleştirme Kullanıcı İzinleri
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Rename {0}
DocType: Workflow State,zoom-out,Uzaklaştırın
-DocType: Data Import Beta,Import Options,Seçenekleri al
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Örnek açıkken {0} açılamıyor
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tablo {0} boş olamaz
DocType: SMS Parameter,Parameter,Parametre
@@ -89,7 +88,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,Alan Yayın mi
DocType: GCalendar Settings,GCalendar Settings,GCalendar Ayarları
DocType: Email Group,Email Group,E-posta Grubu
-apps/frappe/frappe/__init__.py,Only for {},Sadece {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Takvim - {0} Etkinliği Google Takvim’den silinemedi, hata kodu {1}."
DocType: Event,Pulled from Google Calendar,Google Takvim’den Çekti
DocType: Note,Seen By,Tarafından görüldü
@@ -97,9 +95,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Birden fazla ekle
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Geçerli bir Kullanıcı Resmi değil.
DocType: Energy Point Log,Reverted,Geri alındı
DocType: Success Action,First Success Message,İlk Başarı Mesajı
+DocType: Document Type Mapping,Document Type Mapping,Belge Türü Eşleme
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Gibi değil
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Yanlış değeri: {0} olmalı {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Değişim alan özellikleri (sakla, salt okunur, izin vb)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Etkinliklerinizi tüketen site.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,takdir etmek
DocType: Notification Settings,Document Share,Belge Paylaşımı
DocType: Workflow State,lock,kilitlemek
@@ -120,11 +120,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Giriş
DocType: Workflow State,indent-right,indent-right
DocType: Has Role,Has Role,Rol Has
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Yeniden senkronize
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Sunucuda QR kodu görüntüsü tutmak için saniye cinsinden süre. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: {2} için {1} alan tipi dizine alınamıyor
DocType: Dashboard Chart,Timespan,Zaman aralığı
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web Link
DocType: Deleted Document,Restored,restore
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","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 ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 dakika önce
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Apart Sistem Yöneticisi, Set User izinleri ile rolleri doğru bu belge Tip diğer kullanıcılar için izinleri ayarlayabilirsiniz."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Temayı Yapılandır
@@ -199,6 +201,7 @@ DocType: Email Account,UNSEEN,GÖRÜLMEMESİNİN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Dosya Yöneticisi
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML Üstbilgisi, Robotlar ve Yönlendirmeler"
DocType: GCalendar Account,Refresh Token,Yenile Jetonu
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Etkinlik Üreticisi sitesine bağlanılamadı. Bir süre sonra tekrar deneyin.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Bu site için beklemede veya mevcut iş yok
DocType: Webhook,Doc Event,Doktor Etkinliği
@@ -221,6 +224,7 @@ DocType: Server Script,Script Manager,Senaryo Yöneticisi
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Aktivite yok
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Üçüncü Taraf Uygulamaları
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Sistem Yöneticisi olacak ilk kullanıcı (bu daha sonra değiştirebilirsiniz).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Raporunuzun filtrelerini değiştirmeyi deneyebilirsiniz.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Bugün Etkinlik Yok
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Kendinize inceleme noktaları veremezsiniz
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,"DocType, seçilen Dok Olayı için Gönderilebilir olmalıdır"
@@ -253,6 +257,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Bu belge ile ilgili e-posta göndermenize izin verilmemiştir
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,{0} sıralamak / gruptan en az 1 sütun seçin
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0} için izin verilmiyor: {1}. Sınırlı alan: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Şirket Bağlantılı Değil
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Sandbox API kullanarak ödemenizi test eğer bu kontrol
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Standart bir Web Sitesi Temasını silmek için yeterli izniniz yok.
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},İlk {0} ürününüzü oluşturun
@@ -273,7 +278,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} gün
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Aynı slayt sırasına sahip bir Yeni Slayt {0} zaten var
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Devre Dışı Raporu
DocType: Translation,Contributed Translation Doctype Name,Katkıda Bulunan Çeviri Belgesi Adı
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kurulum> Formu Özelleştir
DocType: PayPal Settings,Redirect To,To yönlendir
DocType: Data Migration Mapping,Pull,Çek
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['ReportName'] = {}
@@ -286,6 +290,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,İzin Değil
DocType: DocShare,Internal record of document shares,Belge hisse İç rekor
DocType: Energy Point Settings,Review Levels,Seviyeleri gözden geçir
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kurulum> Kullanıcı İzinleri
DocType: Workflow State,Comment,Yorum yap
DocType: Data Migration Plan,Postprocess Method,Postprocess Yöntemi
DocType: DocType Action,Action Type,Eylem Türü
@@ -339,13 +344,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Haf
DocType: Workflow State,remove-circle,remove-circle
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Benim profilim
DocType: Help Article,Beginner,Acemi
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Bu eyleme yalnızca {}
DocType: Contact,Is Primary Contact,Birincil İrtibat
+DocType: Event Consumer,Event Consumer,Etkinlik Tüketicisi
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript sayfasının baş bölümünde eklenecek.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Ekle / Güncelle
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Taslak dokümanları yazdırma yetkiniz yok
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Varsayılan sıfırla
DocType: Workflow,Transition Rules,İşlem Kuralları
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Önizlemede yalnızca ilk {0} satır gösteriliyor
apps/frappe/frappe/core/doctype/report/report.js,Example:,Örneğin:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Kısıtlamalar
DocType: Workflow,Defines workflow states and rules for a document.,Bir belge için iş akışı durumları ve kuralları tanımlar.
@@ -502,7 +508,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Till tekrarlayın
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Yeni
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Önce bunları oluşturmanız gerekir:
-DocType: Google Maps Settings,Google Maps Settings,Google Haritalar Ayarları
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Yükleniyor...
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Yükleniyor...
DocType: DocField,Password,Parola
@@ -598,6 +603,7 @@ DocType: Onboarding Slide,Onboarding Slide,Yeni Slayt
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Geçersiz şifre:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Geçersiz şifre:
DocType: Print Settings,Send document web view link in email,E-posta belge web görünümü bağlantısını gönder
+DocType: Event Consumer Document Type,Event Consumer Document Type,Etkinlik Tüketici Belge Türü
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Önceki
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Önceki
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
@@ -678,6 +684,7 @@ DocType: Workflow State,volume-down,volume-down
DocType: Onboarding Slide,Help Links,Yardım Bağlantıları
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Bu IP Adresinden erişime izin verilmiyor
DocType: Notification Settings,Enable Email Notifications,E-posta Bildirimlerini Etkinleştir
+DocType: Document Type Field Mapping,Event Streaming,Etkinlik Akışı
apps/frappe/frappe/desk/reportview.py,No Tags,hiçbir Etiketler
DocType: Email Account,Send Notification to,Için Bildirim gönder
DocType: DocField,Collapsible,Katlanabilir
@@ -695,11 +702,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Tara
apps/frappe/frappe/database/database.py,No conditions provided,Koşul yok
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y Eksen Alanı
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sıralama alanı {0} geçerli bir AlanAdı olmalıdır
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Varsayılan Adres Şablonu bulunamadı. Lütfen Kurulum> Baskı ve Markalama> Adres Şablonu'ndan yeni bir tane oluşturun.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Daha fazla
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Yeni bir kayıt oluştur
DocType: Contact,Sales Manager,Satış Müdürü
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Yeniden adlandır
DocType: Print Format,Format Data,Biçim Verileri
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} geçerli bir rapor biçimi değil. Rapor biçimi aşağıdakilerden birini yapmalıdır {1}
DocType: List Filter,Filter Name,Filtre Adı
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Beğen
DocType: Assignment Rule,Automation,Otomasyon
@@ -719,6 +728,7 @@ DocType: User,Reset Password Key,Şifre Key Reset
DocType: Dashboard Chart,All Time,Her zaman
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} için Geçersiz Belge Durumu
DocType: Email Account,Enable Auto Reply,Otomatik Yanıt etkinleştirin
+apps/frappe/frappe/desk/query_report.py,No data to export,Verilecek veri yok
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Görmedim
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Tek bir baskı biçiminde eşlenmiş birden fazla yazıcıya sahip olamaz.
DocType: Workflow State,zoom-in,Yakınlaştırın
@@ -881,6 +891,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Kullanıc
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,İlk
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Çevirileri Güncelle
DocType: Error Snapshot,Exception,İstisna
+DocType: Event Consumer,Event Consumer Document Types,Etkinlik Tüketici Belge Türleri
DocType: Email Account,Use IMAP,Kullanım IMAP
DocType: Activity Log,Activity Log,Etkinlik Günlüğü
DocType: Activity Log,Activity Log,Etkinlik Günlüğü
@@ -921,6 +932,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Iş
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Grafikleri Yapılandırma
DocType: User,Last IP,Son IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Lütfen e-postanıza bir konu ekleyin
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Hatalı İşlemler
DocType: Data Migration Connector,Data Migration Connector,Veri Taşıma Bağlayıcısı
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} {1} geri döndü
DocType: Email Account,Track Email Status,E-posta Durumunu İzle
@@ -953,6 +965,7 @@ DocType: Email Queue,Attachments,Eklentiler
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Bu dokümana erişim izniniz yok
DocType: Language,Language Name,Dil Adı
DocType: Email Group Member,Email Group Member,Grup Üyesi e-posta
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Kullanıcı ile ilişkilendirilmiş e-posta hesabı yok. Lütfen Kullanıcı> E-posta Gelen Kutusu altına bir hesap ekleyin.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Hesabınız kilitlendi ve {0} saniye sonra devam edecek
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,"Kullanıcı İzinleri, kullanıcıları belirli kayıtlara sınırlamak için kullanılır."
DocType: Notification,Value Changed,Değer Değişti
@@ -1048,6 +1061,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,işlem tamamlam
DocType: Help Article,Expert,Uzman
DocType: Workflow State,circle-arrow-right,daire-ok-sağ
DocType: Role Profile,Role Profile,Rol Profili
+DocType: Document Type Mapping,Remote Document Type,Uzak Belge Türü
apps/frappe/frappe/permissions.py,Document Type is not importable,Belge Türü içe aktarılmaz
DocType: LDAP Settings,LDAP Server Url,LDAP Sunucusu URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Açıkken, örneği açılamaz {0}"
@@ -1133,7 +1147,7 @@ DocType: Web Form,Allow Print,Yazdırmaya izin ver
DocType: Communication,Clicked,Tıklandı
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Takip etmekten vazgeç
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Izniniz yok '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Lütfen Kurulum> E-posta> E-posta Hesabı'ndan varsayılan E-posta Hesabını ayarlayın
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},{1} içinden yalnızca ilk {0} satır gösteriliyor
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,göndermek için planlanmış
DocType: DocType,Track Seen,Görüldüğünü takip et
DocType: Dropbox Settings,File Backup,Dosya Yedekleme
@@ -1210,6 +1224,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,Bir
DocType: Data Export,Filter List,Filtre Listesi
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,SS: dd
+DocType: Event Sync Log,Event Configurations,Etkinlik Yapılandırmaları
DocType: Email Account,Auto Reply Message,Otomatik Cevap Mesajı
DocType: Data Migration Mapping,Condition,Koşul
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} saat önce
@@ -1269,9 +1284,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Daima Gönde
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Yorum için giriş
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Bu çizginin altına verileri girmeye başlayın
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},değiştirilen değerler {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","E-posta Kimliği benzersiz olmalı, {0} için E-posta Hesabı zaten mevcut"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Karşılaştırma için> 5, <10 veya = 324 kullanın. Aralıklar için 5:10 kullanın (5 ve 10 arasındaki değerler için)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Özelleştirmek...
DocType: Print Format,Align Labels to the Right,Etiketleri Sağa hizalayın
DocType: Assignment Rule,Disabled,Devredışı
@@ -1323,8 +1337,10 @@ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klavye kı
DocType: Post,Comments,Yorumlar
DocType: Post,Comments,Yorumlar
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Onaylamak
+DocType: Event Sync Log,Update Type,Güncelleme Türü
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Kimlik doğrulanıyor ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Tüm daraltmak
+DocType: Event Producer,Last Update,Son Güncelleme
apps/frappe/frappe/www/login.html,Forgot Password?,Parolanızı mı unuttunuz?
DocType: System Settings,yyyy-mm-dd,yyyy-aa-gg
apps/frappe/frappe/desk/report/todo/todo.py,ID,İD
@@ -1366,6 +1382,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tablo Alan
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Sütunlar dayalı
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{1}, {2} içinden {0} içe aktarılıyor"
DocType: Workflow State,move,Hareket
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Mevcut site için Etkinlik Tüketicisi veya Etkinlik Tüketicisi oluşturulamadı zaten kayıtlı.
apps/frappe/frappe/model/document.py,Action Failed,İşlem başarılamadı
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Kullanıcı için
DocType: View Log,View log,Günlüğü görüntüle
@@ -1538,6 +1555,7 @@ DocType: Address,Contacts,Kişiler
DocType: System Settings,Setup Complete,Kurulum Tamamlandı
DocType: System Settings,Setup Complete,Kurulum Tamamlandı
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Tüm belge hisselerinin Raporu
+DocType: Event Consumer,Callback URL,Geri arama URL'si
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","İçe aktarma şablonu .csv, .xlsx veya .xls türünde olmalıdır"
apps/frappe/frappe/www/update-password.html,New Password,Yeni Şifre
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtre {0} eksik
@@ -1607,7 +1625,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Ba
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; Durumda izin verilmiyor
DocType: Async Task,Async Task,Zaman uyumsuz Görev
DocType: Workflow State,picture,resim
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Komple
+DocType: Scheduled Job Log,Complete,Komple
DocType: DocType,Image Field,Resim Alanı
DocType: Print Format,Custom HTML Help,Özel HTML Yardımı
DocType: LDAP Settings,Default Role on Creation,Yaratılışta Varsayılan Rol
@@ -1634,6 +1652,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Arama Yardımı
DocType: Milestone,Milestone Tracker,Kilometre Taşı İzleyici
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Tescil edilmiş ancak engelli
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Adresin bir Şirkete bağlı olması gerekir. Lütfen Şirket için aşağıdaki Bağlantılar tablosuna bir satır ekleyin.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Bu belge için Otomatik Tekrarlama devre dışı bırakıldı.
DocType: DocType,Hide Copy,Kopya gizle
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Tüm rolleri temizleyin
@@ -1673,6 +1692,7 @@ DocType: Bulk Update,Field,Alan
DocType: Communication,Received,Alındı
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update", vb gibi geçerli yöntemler hakkında Tetik (seçilen DocType bağlıdır)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1} değişmiş değeri
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},E-posta Hesabı kurulumu için lütfen şifrenizi girin: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"En az bir Sistem Yöneticisi olması gerektiği gibi, bu üyeler için Sistem Yöneticisi ekleme"
DocType: Chat Message,URLs,URL'ler
DocType: Data Migration Run,Total Pages,Toplam Sayfa Sayısı
@@ -1680,7 +1700,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Görüntü Ekleyin
DocType: Workflow State,list-alt,list-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Şifre Güncelleme
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kurulum> Kullanıcı İzinleri
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Girişinizi doğrulamak için gereken adımlar
apps/frappe/frappe/utils/password.py,Password not found,Şifre bulunamadı
DocType: Webhook,Webhook Secret,Webhook Sırrı
@@ -1699,8 +1718,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API Ayarla
DocType: Report,Query Report,Sorgu Raporu
DocType: User,Set New Password,Yeni Şifre ayarla
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} için izin verilmiyor: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s geçerli bir rapor biçimi değil. Rapor biçimi \ aşağıdakilerden biri olmalıdır %s
DocType: Chat Message,Chat,Sohbet
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},{0} ile etiketlenmiş doküman bulunamadı
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP Grup Eşlemesi
@@ -1737,7 +1754,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Şifreniz
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Erişimi Gizli
DocType: Tag Link,Document Title,Belge başlığı
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Zorunlu)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yıl önce
DocType: Social Login Key,Social Login Provider,Sosyal Giriş Sağlayıcısı
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Bir yorum daha ekle
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Dosyada veri bulunamadı. Lütfen yeni dosyayı veri ile yeniden bağlayın.
@@ -1786,6 +1802,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Seçin
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 yıl
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Kalıcı {0} silmek?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Aynı dosya zaten daha önce kayıtlara eklenmiş
+DocType: Event Sync Log,Synced,Senkronize edildi
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} geçerli bir İş Akışı Durumu değil. Lütfen iş akışınızı güncelleyin ve tekrar deneyin.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} puan verdi
DocType: Workflow State,wrench,wrench
@@ -1891,6 +1908,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,Maksimum uzunluk
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,harita işaretleyici
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,İki doktrin arasındaki eşleme yapılandırması.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Bir Sorun Gönder
DocType: Event,Repeat this Event,Bu olay tekrarlayın
DocType: Address,Maintenance User,Bakımcı Kullanıcı
@@ -1952,6 +1970,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Test E-posta Adresi
DocType: Auto Repeat,Reference Document Type,Referans Belge Türü
DocType: ToDo,Sender,Gönderici
+DocType: Event Consumer,Incoming Change,Gelen Değişiklik
DocType: Google Drive,Backup Folder Name,Yedekleme Klasörü Adı
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,{0} Bildirimini değerlendirirken hata oluştu. Lütfen şablonunuzu düzeltin.
DocType: GSuite Settings,Google Apps Script,Google Apps Komut Dosyası
@@ -2014,9 +2033,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Yeni Bas
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,İsteği onaylamak için aşağıdaki linke tıklayın
DocType: Workflow State,align-left,sola-hizala
DocType: Onboarding Slide,Action Settings,Eylem Ayarları
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Kurulum> Kullanıcı
DocType: User,Defaults,Standart Değerler
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Karşılaştırma için> 5, <10 veya = 324 kullanın. Aralıklar için 5:10 kullanın (5 ve 10 arasındaki değerler için)."
DocType: Energy Point Log,Revert Of,Geri Dön
+DocType: Document Type Mapping,Field Mapping,Alan Eşleme
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Mevcut Birleştirme
DocType: User,Birth Date,Doğum tarihi
DocType: Communication Link,Link Title,link Title
@@ -2047,6 +2067,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Etiket Bağlantısı
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Zincir bütünlüğü
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Testte
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 Döviz = [?] Örneğin 1 TKY = 100 Kuruş
DocType: Data Import,Partially Successful,Kısmen Başarılı
@@ -2056,6 +2077,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP Grup Eşlemeleri
DocType: Chat Message Attachment,Chat Message Attachment,Sohbet Eklentisi Eki
DocType: LDAP Settings,Path to CA Certs File,CA Certs Dosyasının Yolu
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,Belgenin Üretici ve Tüketici tarafında farklı alan adları varsa bunu kontrol edin ve Eşleme'yi ayarlayın
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Tüm Bağlantı Seçeneklerinde Okumaya İzin Ver
DocType: DocType,Database Engine,veritabanı Altyapısı
@@ -2201,6 +2223,7 @@ DocType: Note,Note,Not
DocType: Note,Note,Not
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Hata raporu
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Verileri CSV / Excel formatında dışa aktarın.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Belge Türü Alan Eşleme
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Global Search belgelerini ayarlama.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Kullanabileceğiniz kimlik doğrulama uygulamaları şunlardır:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} zaten var. Başka bir isim seçin
@@ -2282,7 +2305,6 @@ DocType: User Permission,Advanced Control,Gelişmiş Kontrol
DocType: System Settings,Date Format,Tarih Biçimi
DocType: System Settings,Date Format,Tarih Biçimi
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Yayınlandı değil
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Varsayılan Adres Şablonu bulunamadı. Lütfen Kurulum> Baskı ve Markalama> Adres Şablonu'ndan yeni bir tane oluşturun.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","İş akışı için eylemler (örneğin İptal, Onayla)."
DocType: Data Import,Skip rows with errors,Hatalı satırları atlar
DocType: Workflow State,flag,bayrak
@@ -2346,6 +2368,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Durumunu değiştirmek için atanan bir belge ve rol izin durumları temsil eder.
DocType: Data Migration Connector,Database Name,Veri tabanı ismi
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Yenile Formu
+DocType: Event Producer,Event Producer,Etkinlik Yapımcısı
DocType: DocField,Select,Seç
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Tam Günlüğü Görüntüle
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Basit Python İfadesi, Örnek: status == 'Aç' ve == 'Hata' yazın"
@@ -2448,6 +2471,7 @@ DocType: DocType,User Cannot Search,Kullanıcı aranamıyor
DocType: Communication Link,Communication Link,İletişim linki
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Geçersiz Çıktı Biçimi
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},{0} {1} olamaz
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Otomatik Tekrar {2} ile sizin için tekrarlayan bir {0} {1} oluşturuldu.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Kullanıcı Sahibi ise bu kuralı uygula
DocType: Global Search Settings,Global Search Settings,Global Arama Ayarları
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Oturum açma kimliğiniz olacak
@@ -2465,12 +2489,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Giriş Doğrul
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Yapılacaklara Ekle
DocType: Footer Item,Company,Şirket
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} ortalaması
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Başarılı İşlemler
DocType: Scheduled Job Log,Scheduled,Planlandı
DocType: User,Logout from all devices while changing Password,Şifre değiştirirken tüm cihazlardan çıkış yapın
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Şifrenizi denetleyin
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Hatalar vardı
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Google Ayarları’na Müşteri Kimliği ve Müşteri Sırrı girin.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Kapat
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","E-posta kimliği benzersiz olmalıdır, {0} için E-posta Hesabı zaten var"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,0-2 docstatus değiştirilemiyor
DocType: File,Attached To Field,Alana Bağlı
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Güncelleme
@@ -2581,6 +2607,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Ay
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Ekle Reference: {{ reference_doctype }} {{ reference_name }} göndermek için doküman referansı
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Yalnızca belgeye katılan kullanıcılar listelenir
DocType: DocField,Fetch From,From Get
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kurulum> Formu Özelleştir
apps/frappe/frappe/modules/utils.py,App not found,Uygulama bulunamadı
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},oluşturulamıyor bir {0} alt belgenin karşı: {1}
DocType: Social Login Key,Social Login Key,Sosyal Giriş Anahtarı
@@ -2592,7 +2619,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Iletile
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Sosyal Ev
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Olarak ayarlanamaz sonra yerleştirin {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,{0} öğesini şunla paylaş
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-posta hesabı kurulumu için lütfen parolanızı girin
DocType: Workflow State,hand-up,hand-up
DocType: Blog Settings,Writers Introduction,Yazarlar Tanıtım
DocType: Address,Phone,Telefon
@@ -2653,7 +2679,7 @@ DocType: Web Page,Insert Style,Stil ekleme
DocType: Prepared Report,Error Message,Hata mesajı
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Yeni Rapor adı
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Haftasonlarını Gizle
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Otomatik olarak yinelenen belgeler oluşturur.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Otomatik olarak yinelenen belgeler oluşturur.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Mı
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-sign
@@ -2661,7 +2687,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} bir
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Bu para birimi nasıl biçimlendirilmelidir? Ayarlanmamışsa, sistem varsayılanı kullanacaktır."
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} dokümanı gönderilsin mi?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Yedek almak için sisteme giriş yapmalı ve sistem yöneticisi rolüne sahip olmalısınız.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","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 ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Yazıcı eşlemesi
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Takmadan önce tasarruf edin.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Bağlantılı tüm belgeleri iptal etmek istiyor musunuz?
@@ -2691,6 +2716,7 @@ DocType: Role Permission for Page and Report,Set Role For,İçin Set Rol
DocType: GCalendar Account,The name that will appear in Google Calendar,Google Takvim’de görünecek isim
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} ile doğrudan oda zaten var.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Yenileniyor ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Lütfen Gösterge Tablosu Grafiği için ayarlanmış filtre değerlerini kontrol edin: {}
DocType: Event,Starts on,Başlıyor
DocType: System Settings,System Settings,Sistem Ayarları
DocType: System Settings,System Settings,Sistem Ayarları
@@ -2718,6 +2744,8 @@ DocType: Workflow State,ok-sign,ok-sign
apps/frappe/frappe/config/settings.py,Deleted Documents,Silinmiş Belgeler
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV biçimi büyük / küçük harf duyarlıdır
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Masaüstü Simgesi zaten var
+DocType: Event Consumer Document Type,Approval Status,Onay Durumu
+DocType: Event Consumer Document Type,Approval Status,Onay Durumu
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Slaytların hangi alan adlarında görüneceğini belirtin. Hiçbir şey belirtilmezse, slayt varsayılan olarak tüm etki alanlarında gösterilir."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Kopyala
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,"{0}: {2} satırındaki {1} alanı, varsayılan olmadan gizlenemez ve zorunlu değildir"
@@ -2737,6 +2765,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Yardım Makaleleri
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Türü:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Ödemeniz başarısız oldu.
+DocType: Event Producer,Producer URL,Üretici URL'si
DocType: Comment,Unshared,paylaşılmayan
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Modül Bulunamadı
@@ -2748,6 +2777,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,atama Tamamlandı
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Toplu Düzenleme {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Raporu İndir
+apps/frappe/frappe/model/workflow.py,Workflow Status,İş Akışı Durumu
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Aktif Değil
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Gösterge Tablosu Grafik Kaynakları oluşturmasına yalnızca Yönetici izinli
DocType: About Us Settings,Settings for the About Us Page,Hakkımızda Sayfa Ayarları
@@ -2757,6 +2787,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Yaz
DocType: Notification Settings,Energy Points,Enerji Noktaları
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},{0} süresi şu biçimde olmalıdır: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,Örneğin pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{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
DocType: User,Generate Keys,Anahtar Oluştur
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,"Bu, verilerinizi kalıcı olarak kaldıracak."
DocType: DocType,View Settings,Görünüm Ayarları
@@ -2809,6 +2840,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Tümü
DocType: Email Queue,Recipient,Alıcı
DocType: Webhook,Webhook Security,Webhook Güvenliği
+DocType: Event Sync Log,Producer Document Name,Üretici Doküman Adı
DocType: Communication,Has Attachment,Ek Has
DocType: Address,Sales User,Satış Kullanıcı
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Sürükle ve Bırak aracı inşa etmek ve Baskı Biçimleri özelleştirmek için.
@@ -2845,6 +2877,7 @@ DocType: Address,Arunachal Pradesh,Hindistan
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,"Alt Tablolar, Diğer Doküman Tiplerinde Kılavuz olarak gösterilir."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Kurulum Otomatik e-posta
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Aşağı
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Etkinlik tüketmek için abone olmak istediğiniz site.
DocType: Chat Profile,Message Preview,Mesaj önizlemesi
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Bu bir üst-10 ortak şifredir.
DocType: User,User Defaults,Kullanıcı Varsayılanları
@@ -2880,6 +2913,7 @@ DocType: Dashboard Chart,Last Synced On,Son Senkronize Açık
DocType: Comment,Comment Type,Yorum Tipi
DocType: OAuth Client,OAuth Client,OAuth İstemci
DocType: Assignment Rule,Users,Kullanıcılar
+DocType: Document Type Mapping,Local Document Type,Yerel Belge Türü
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Rapor Türü
DocType: Report,Report Type,Rapor Türü
@@ -2925,6 +2959,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Ülke
DocType: Assignment Rule Day,Sunday,Pazar
DocType: Assignment Rule Day,Sunday,Pazar
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Tüketici içeren belgeler için Event Producer sitesindeki tüm eklerin, güncellemelerin ve silme işlemlerinin bir kaydını tutar."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Alan adı {1} 'den biri olamaz
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Sıralamalar
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Grid View
@@ -3074,7 +3109,6 @@ DocType: Web Page,Sidebar and Comments,Kenar çubuğu ve Yorumlar
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Eğer sonra iptal ve bunu kaydetmek Belgeyi Amend zaman, eski sayısının bir versiyonu yeni bir numara almak olacaktır."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} dokümanı eklemesine izin verilmiyor, lütfen Yazdırma Ayarları'nda {0} için Yazdırmaya İzin Ver'i etkinleştirin"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı kurulmadı. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} adresindeki dokümana bakın
DocType: Stripe Settings,Publishable Key,Yayınlanabilir Anahtar
DocType: Stripe Settings,Publishable Key,Yayınlanabilir Anahtar
@@ -3160,7 +3194,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Bilgi:
DocType: Custom Field,Permission Level,İzin Düzeyi
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Yaz olmadan onaylanmasına, İptal, Gönder ayarlanamaz"
DocType: List View Setting,Disable Count,Sayıyı Devre Dışı Bırak
-DocType: Google Maps Settings,Client Key,Müşteri Anahtarı
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Eki silmek istediğinizden emin misiniz?
apps/frappe/frappe/__init__.py,Thank you,Teşekkürler
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Kaydediliyor
@@ -3288,6 +3321,7 @@ DocType: Workflow Document State,Only Allow Edit For,Only Allow Edit For
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google Drive'a yedekleme.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Zorunlu alan: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Adınız
+DocType: Event Producer Document Type,Event Producer Document Type,Etkinlik Yapımcısı Belge Türü
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Bağlantı Başarı
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Bir Slayt Türü Devam Etme Sürümü zaten var.
@@ -3359,6 +3393,7 @@ DocType: Address,Postal Code,Posta Kodu
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Yeniden Bağla Haberleşme
DocType: Translation,Contributed,Katkıda
apps/frappe/frappe/config/customization.py,Form Customization,Form Özelleştirme
+DocType: Event Update Log,Event Update Log,Olay Güncelleme Günlüğü
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Etkin Oturum Yok
DocType: Web Form,Route to Success Link,Başarı Bağlantısına Giden Yol
DocType: Onboarding Slide Field,Right,Sağ
@@ -3386,7 +3421,7 @@ DocType: Website Settings,Chat Operators,Sohbet Operatörleri
DocType: S3 Backup Settings,ca-central-1,ca-merkez-1
DocType: Contact Us Settings,Pincode,Pinkodu
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Lütfen dosyada boş sütun bulunmadığına emin olun.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Birden çok aşamadan geçerse, bir belgenin kullanım ömrünün kilometre taşlarını izler."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Birden çok aşamadan geçerse, bir belgenin kullanım ömrünün kilometre taşlarını izler."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",Yeniden adlandırılmış dosyalar ve değiştirilen kodları kontrol cihazlarında kontrol edin!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Profil E-posta adresi olduğundan emin olun
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Bu formda kaydedilmemiş değişiklikler var. Devam etmeden önce lütfen kaydedin.
@@ -3416,7 +3451,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API Gizli Kaydet:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},İptal belgeyi bağlantı Can not: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Standart bir rapor düzenlenemez. çoğaltmak ve yeni bir rapor oluşturun
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","o şirket adresi olarak şirket, zorunludur"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Örneğin: Belge Kimliği eklemek istiyorsanız, kullanmak {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Için Tablo Seç Sütunlar {0}
DocType: Custom Field,Options Help,Yardım Seçenekleri
@@ -3424,7 +3458,6 @@ DocType: Footer Item,Group Label,Grup Etiketi
DocType: Kanban Board,Kanban Board,Kanban Kurulu
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kişileri yapılandırıldı.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 kayıt dışa aktarılacak
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Kullanıcı ile ilişkilendirilmiş e-posta hesabı yok. Lütfen Kullanıcı> E-posta Gelen Kutusu altına bir hesap ekleyin.
DocType: DocField,Report Hide,Rapor Gizle
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},için geçerli değildir Ağaç görünümü {0}
DocType: DocType,Restrict To Domain,Alana Kısıtla
@@ -3495,8 +3528,10 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: {2} tipindeki {1} alanı zorunlu olamaz
DocType: System Settings,In Days,Günlerde
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,bayan
+DocType: Event Producer Document Type,Has Mapping,Haritalama Var
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Lütfen belirtiniz
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Lütfen belirtiniz
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Geçersiz Filtre Değeri
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Yardım Madde
DocType: Page,Page Name,Sayfa Adı
@@ -3608,7 +3643,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Yazdırma Formatı
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Izgara Görünümünü Aç / Kapat
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Bir sonraki kayda git
-DocType: System Settings,Time Format,Zaman formatı
+DocType: Country,Time Format,Zaman formatı
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Geçersiz ödeme ağ geçidi kimlik bilgileri
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Bu, yalnızca bazı hatalara sahip satırlarla üretilen şablon dosyasıdır. Bu dosyayı düzeltme ve içe aktarma için kullanmalısınız."
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Belge Türleri ve Rol üzerinde İzinleri Ayarlama
@@ -3958,6 +3993,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Kullanıcı Adını Kullanarak Girişe İzin Ver
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Rapor etkinleştirin
DocType: DocField,Display Depends On,Görüntü şuna bağlı
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yıl önce
DocType: Social Login Key,API Endpoint,API Bitiş Noktası
DocType: Web Page,Insert Code,Kod Ekle
DocType: Data Migration Run,Current Mapping Type,Geçerli Eşleme Türü
@@ -4012,6 +4048,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,E-p
apps/frappe/frappe/www/login.html,Or login with,Ya ile giriş
DocType: Error Snapshot,Locals,Yerliler
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},aracılığıyla iletilen {0} {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Etkinlik Yapımcısı Belge Türleri
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Lütfen Kurulum> E-posta> E-posta Hesabı'ndan varsayılan E-posta Hesabını ayarlayın
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Grupla Seç ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,Örneğin (55 + 434) / 4 veya = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} gereklidir
@@ -4047,9 +4085,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync Kimliği
DocType: Prepared Report,Report Start Time,Başlangıç saatini bildir
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Verileri Dışa Aktar
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Senkronizasyonun durumu ile birlikte tüketilen her olayın günlüğünü ve senkronizasyonun başarısız olması durumunda bir Yeniden Senkronize Et düğmesini tutar.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Seçin Sütunlar
DocType: Translation,Source Text,Kaynak Metin
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Bu bir arka plan raporu. Lütfen uygun filtreleri ayarlayın ve sonra yeni bir tane oluşturun.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı kurulmadı. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun
apps/frappe/frappe/www/login.py,Missing parameters for login,Giriş için eksik parametreler
DocType: Workflow State,folder-open,folder-open
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Gönderildikten sonra gönderilebilir belgeler değiştirilemez. Sadece İptal Edilebilir ve Değiştirilebilirler.
@@ -4133,6 +4173,7 @@ DocType: Contact,Gender,Cinsiyet
DocType: Contact,Gender,Cinsiyet
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Eksik zorunlu bilgiler:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} puanlarınızı {1} için geri aldı
+DocType: Event Consumer,Event Subscriber,Etkinlik Abonesi
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,İstek URL'sini kontrol et
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Sadece 200 ekler tek isteği izin
DocType: Footer Item,URL,URL
@@ -4146,6 +4187,7 @@ DocType: Auto Email Report,Half Yearly,Yarım Yıllık
DocType: Communication,Marked As Spam,Spam olarak işaretlenen
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Dosya url ile bazı sorun var: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,ağaç
+DocType: Event Producer Document Type,Use Same Name,Aynı Adı Kullan
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Bu raporu yazdırmanıza izin verilmemiştir
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Kullanıcı İzinleri
DocType: Workflow State,warning-sign,warning-sign
@@ -4156,6 +4198,7 @@ DocType: Workflow State,User,Kullanıcı
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Olarak tarayıcı penceresinde göster başlığı "Önek - title"
DocType: Payment Gateway,Gateway Settings,Ağ Geçidi Ayarları
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,belge tipi içindeki yazı
+DocType: Event Sync Log,Event Sync Log,Olay Senkronizasyon Günlüğü
apps/frappe/frappe/handler.py,Logged Out,Çıkış yapıldı
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Daha...
DocType: System Settings,User can login using Email id or Mobile number,Kullanıcı e-posta kimliği veya Cep telefonu numarası kullanarak giriş yapabilir
@@ -4198,12 +4241,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Değil ise
DocType: Workflow State,star,yıldız
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Bu işaretlenirse, belgeler Etkinlik Üreticisinin sitesiyle aynı ada sahip olur"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,virgülle ayrılmış değerler
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Para için maksimum genişlik 100px verilen satır {0}
apps/frappe/frappe/config/website.py,Content web page.,Içerik web sayfası.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Yeni Rol Ekle
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Web Sayfasını Ziyaret Edin
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Yeni görev
+DocType: Event Consumer Document Type,Approved,Onaylandı
DocType: Google Contacts,Last Sync On,Son Senkronizasyon Açık
DocType: Deleted Document,Deleted Document,Döküman silindi
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops Bir şeyler yanlış gitti
@@ -4261,7 +4306,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Kısmi Başarı
DocType: Email Account,Service,Servis
DocType: Email Account,Service,Servis
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Kurulum> Kullanıcı
DocType: File,File Name,Dosya Adı
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Için {0} bulamadık {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4274,11 +4318,10 @@ DocType: Calendar View,Calendar View,Takvim Görünümü
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Düzen Biçimi
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Tam Kayıt
DocType: GCalendar Settings,Enable,Etkinleştir
-DocType: Google Maps Settings,Home Address,Ev adresi
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),En fazla 5 bin '5000' kayıt ekleyebilirsiniz bu bazı durumlarda daha azdır
DocType: Report,"output in the form of `data = [columns, result]`","`data = [sütunlar, sonuç] 'şeklinde çıktı"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Uygulanabilir Belge Türleri
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Kullanıcı atamaları için kurallar kurun.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Kullanıcı atamaları için kurallar kurun.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} için yetersiz izin
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} için yetersiz izin
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Rapor kaydedilmedi (hatalar vardı)
diff --git a/frappe/translations/uk.csv b/frappe/translations/uk.csv
index cbb09faa5b..2332ca5c1c 100644
--- a/frappe/translations/uk.csv
+++ b/frappe/translations/uk.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Це оновлення роль права користувачів для користувача
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Перейменувати {0}
DocType: Workflow State,zoom-out,зменшити
-DocType: Data Import Beta,Import Options,Параметри імпорту
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Не вдається відкрити {0}, коли його примірник відкритий"
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Таблиця {0} не може бути порожнім
DocType: SMS Parameter,Parameter,Параметр
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Ск
DocType: DocType,Is Published Field,Є Опубліковано поле
DocType: GCalendar Settings,GCalendar Settings,Налаштування GCalendar
DocType: Email Group,Email Group,E-mail Група
-apps/frappe/frappe/__init__.py,Only for {},Лише для {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Календар Google - не вдалося видалити подію {0} з календаря Google, код помилки {1}."
DocType: Event,Pulled from Google Calendar,Стягнуто з Календаря Google
DocType: Note,Seen By,Побачений
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Додати кі
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Недійсне зображення користувача.
DocType: Energy Point Log,Reverted,Повернено
DocType: Success Action,First Success Message,Перше повідомлення про успіх
+DocType: Document Type Mapping,Document Type Mapping,Картографування типу документа
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Не схоже на
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Неправильне значення: {0} повинен бути {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Зміна властивостей полів (приховати, тільки для читання, дозвіл і т.д.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,"Сайт, який споживає ваші події."
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Вдячний
DocType: Notification Settings,Document Share,Доля документа
DocType: Workflow State,lock,замкнути
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Ввійти
DocType: Workflow State,indent-right,абзац правом
DocType: Has Role,Has Role,має роль
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Перейміть
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,"Час в секундах, щоб зберегти зображення QR-коду на сервері. Мінін .: 240"
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Тип поля {1} для {2} не можна індексувати
DocType: Dashboard Chart,Timespan,Проміжок часу
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Веб посилання
DocType: Deleted Document,Restored,відновлена
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Помилка підключення до програми QZ Tray ...
Для використання функції Raw Print вам потрібно встановити та запустити додаток QZ Tray.
Натисніть тут, щоб завантажити та встановити QZ Tray .
Клацніть тут, щоб дізнатися більше про сирий друк ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 хвилину тому
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Крім System Manager, з безліччю ролей доступу користувачів право може встановити дозволи для інших користувачів для даного типу документа."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Налаштування теми
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,UNSEEN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Файловий менеджер
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML заголовки, роботи та перенаправлення"
DocType: GCalendar Account,Refresh Token,Поновити токен
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Не вдалося підключитися до сайту виробника подій. Повторіть спробу через деякий час.
DocType: Address,Goa,Гоа
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,На цьому веб-сайті немає очікуваних чи поточних завдань
DocType: Webhook,Doc Event,Doc Event
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Менеджер сценаріїв
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Немає активності
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Сторонні програми
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Перший користувач стане System Manager (ви можете змінити це пізніше).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Ви можете спробувати змінити фільтри свого звіту.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Сьогодні немає подій
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Ви не можете давати оглядові бали собі
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType має бути Submittable для вибраної події Doc
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,"Ви не можете відправляти повідомлення електронної пошти, пов'язані з цим документом"
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,"Будь ласка, виберіть принаймні 1 стовпець {0} для сортування / груп"
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Не дозволено для {0}: {1}. Поле з обмеженням: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Компанія не пов'язана
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Перевірте це, якщо ви перевіряєте ваш платіж за допомогою API Пісочниця"
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Ви не можете видалити стандартну тему веб-сайту
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Створіть свій перший {0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Онов
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Слайд на борту {0} з тим самим порядком слайдів уже існує
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Відключити звіт
DocType: Translation,Contributed Translation Doctype Name,Назва доктрипу перекладу
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Налаштування> Налаштувати форму
DocType: PayPal Settings,Redirect To,перенаправити
DocType: Data Migration Mapping,Pull,Витягніть
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Формат: frappe.query_reports ['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Не дозволено
DocType: DocShare,Internal record of document shares,Внутрішній запис оприлюднення документів
DocType: Energy Point Settings,Review Levels,Перегляньте рівні
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Налаштування> Дозволи користувача
DocType: Workflow State,Comment,Коментар
DocType: Data Migration Plan,Postprocess Method,Метод постпроцесу
DocType: DocType Action,Action Type,Тип дії
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,П
DocType: Workflow State,remove-circle,видалити круг-
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Мій профіль
DocType: Help Article,Beginner,початківець
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Ця дія дозволена лише для {}
DocType: Contact,Is Primary Contact,Основний контакт
+DocType: Event Consumer,Event Consumer,Подія споживача
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript прикласти до головної частини сторінки.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Додати / оновити
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Не дозволено друкувати чернетки документів
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Відновити значення за замовчуванням
DocType: Workflow,Transition Rules,Перехідні правила
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Показано лише перші {0} рядки в попередньому перегляді
apps/frappe/frappe/core/doctype/report/report.js,Example:,Приклад:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Обмеження
DocType: Workflow,Defines workflow states and rules for a document.,Визначає стани робочого процесу і правила для документу.
@@ -482,7 +488,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Повторіть До
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Створити
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Спершу вам потрібно створити:
-DocType: Google Maps Settings,Google Maps Settings,Налаштування Карт Google
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Завантаження ...
DocType: DocField,Password,Пароль
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,"Ваша система оновлюється. Будь ласка, поновіть ще раз за кілька хвилин"
@@ -575,6 +580,7 @@ DocType: Onboarding Slide,Onboarding Slide,Бортовий слайд
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Неправильний пароль:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Неправильний пароль:
DocType: Print Settings,Send document web view link in email,Надіслати документ посилання на веб-перегляду в електронній пошті
+DocType: Event Consumer Document Type,Event Consumer Document Type,Тип документа споживача події
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Назад
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Re:
DocType: LDAP Settings,Require Trusted Certificate,Потрібна довірена довідка
@@ -650,6 +656,7 @@ DocType: Workflow State,volume-down,Обсяг вниз
DocType: Onboarding Slide,Help Links,Довідкові посилання
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Доступ заборонено з цієї IP-адреси
DocType: Notification Settings,Enable Email Notifications,Увімкнути сповіщення електронною поштою
+DocType: Document Type Field Mapping,Event Streaming,Потокове трансляція
apps/frappe/frappe/desk/reportview.py,No Tags,немає тегів
DocType: Email Account,Send Notification to,Відправити повідомлення
DocType: DocField,Collapsible,Складаний
@@ -666,11 +673,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Фі
apps/frappe/frappe/database/database.py,No conditions provided,Не передбачено жодних умов
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y Axis Fields
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Сортування поля {0} повинен бути дійсним ім'я_поля
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Шаблон адреси за замовчуванням не знайдено. Створіть новий із меню Налаштування> Друк та брендинг> Шаблон адреси.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Більш
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Створіть новий запис
DocType: Contact,Sales Manager,Менеджер з продажу
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Перейменувати
DocType: Print Format,Format Data,Формат даних
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} - недійсний формат звіту. Формат звіту має бути одним із наступних {1}
DocType: List Filter,Filter Name,Фільтрувати ім'я
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Схоже на
DocType: Assignment Rule,Automation,Автоматизація
@@ -689,6 +698,7 @@ DocType: User,Reset Password Key,Скидання пароля ключа
DocType: Dashboard Chart,All Time,Весь час
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Незаконний стан документа для {0}
DocType: Email Account,Enable Auto Reply,Включити Auto Відповісти
+apps/frappe/frappe/desk/query_report.py,No data to export,Немає даних для експорту
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Не бачив
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Неможливо кілька принтерів відображати в одному форматі друку.
DocType: Workflow State,zoom-in,збільшити
@@ -841,6 +851,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Зміни
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Спочатку
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Оновити переклади
DocType: Error Snapshot,Exception,Виняток
+DocType: Event Consumer,Event Consumer Document Types,Типи споживчих документів події
DocType: Email Account,Use IMAP,Використання IMAP
DocType: Activity Log,Activity Log,Журнал активності
DocType: View Log,Viewed By,Переглянуто за
@@ -880,6 +891,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,В
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Налаштувати діаграми
DocType: User,Last IP,Останнє IP-
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Будь ласка, додайте тему до вашої електронної пошти"
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Помилкові транзакції
DocType: Data Migration Connector,Data Migration Connector,Коннектор міграції даних
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} повернено {1}
DocType: Email Account,Track Email Status,Відстеження стану електронної пошти
@@ -911,6 +923,7 @@ DocType: Email Queue,Attachments,Долучення
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Ви не маєте дозволу на доступ до цього документу
DocType: Language,Language Name,Назва мови
DocType: Email Group Member,Email Group Member,Електронна пошта Група користувача
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Жоден обліковий запис електронної пошти не пов’язаний з Користувачем. Будь ласка, додайте обліковий запис у розділі Користувач> Вхідні адреси електронної пошти."
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,"Ваш обліковий запис заблоковано, і його буде відновлено через {0} секунди"
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Права користувача використовуються для обмеження доступу користувачів до певних записів.
DocType: Notification,Value Changed,Значення Змінено
@@ -1003,6 +1016,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Згадка у
DocType: Help Article,Expert,експерт
DocType: Workflow State,circle-arrow-right,Круг-стрілка направо
DocType: Role Profile,Role Profile,Роль профілю
+DocType: Document Type Mapping,Remote Document Type,Тип віддаленого документа
apps/frappe/frappe/permissions.py,Document Type is not importable,Тип документа не можна імпортувати
DocType: LDAP Settings,LDAP Server Url,Сервер LDAP Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Не вдається відкрити випадок, коли його {0} відкрито"
@@ -1088,7 +1102,7 @@ DocType: Web Form,Allow Print,дозволити друк
DocType: Communication,Clicked,Натиснув
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Не слідкувати
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Немає доступу для '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Установіть обліковий запис електронної пошти за замовчуванням у програмі Налаштування> Електронна пошта> Обліковий запис електронної пошти
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Показано лише перші {0} рядки з {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,планується відправити
DocType: DocType,Track Seen,трек відвідування
DocType: Dropbox Settings,File Backup,Файл резервного копіювання
@@ -1159,6 +1173,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,в
DocType: Data Export,Filter List,Список фільтрів
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: мм
+DocType: Event Sync Log,Event Configurations,Конфігурації подій
DocType: Email Account,Auto Reply Message,Автоматична відповідь повідомлення
DocType: Data Migration Mapping,Condition,Стан
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} годин тому
@@ -1218,9 +1233,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Завжди
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Увійдіть щоб коментувати
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Почніть вводити дані нижче цієї лінії
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},змінені значення для {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Ідентифікатор електронної пошти має бути унікальним, обліковий запис електронної пошти вже існує \ for {0}"
DocType: Workflow State,retweet,перечіріканье
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для порівняння використовуйте> 5, <10 або = 324. Для діапазонів використовуйте 5:10 (для значень від 5 до 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Налаштувати ...
DocType: Print Format,Align Labels to the Right,Вирівняти ярлики праворуч
DocType: Assignment Rule,Disabled,Неактивний
@@ -1269,8 +1283,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Гарячі клавіши
DocType: Post,Comments,Коментарі
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Підтвердити
+DocType: Event Sync Log,Update Type,Тип оновлення
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Аутентифікація ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Згорнути все
+DocType: Event Producer,Last Update,Останнє оновлення
apps/frappe/frappe/www/login.html,Forgot Password?,Забули пароль?
DocType: System Settings,yyyy-mm-dd,рррр-мм-дд
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1311,6 +1327,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Табли
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Колони на основі
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Імпорт {0} з {1}, {2}"
DocType: Workflow State,move,крок
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Помилка створення споживача події або споживача події для поточного сайту вже зареєстрована.
apps/frappe/frappe/model/document.py,Action Failed,дія Помилка
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,для користувачів
DocType: View Log,View log,Переглянути журнал
@@ -1474,6 +1491,7 @@ DocType: DefaultValue,Key,Ключ
DocType: Address,Contacts,контакти
DocType: System Settings,Setup Complete,Завершення установки
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Звіт про усі оприлюднені документи
+DocType: Event Consumer,Callback URL,URL-адреса зворотного дзвінка
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Шаблон імпорту повинен мати тип .csv, .xlsx або .xls"
apps/frappe/frappe/www/update-password.html,New Password,Новий пароль
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Фільтр {0} відсутній
@@ -1541,7 +1559,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,У
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; не допускаються в умові
DocType: Async Task,Async Task,Асинхронний Завдання
DocType: Workflow State,picture,картина
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Повний
+DocType: Scheduled Job Log,Complete,Повний
DocType: DocType,Image Field,зображення поля
DocType: Print Format,Custom HTML Help,Особливий HTML Допомога
DocType: LDAP Settings,Default Role on Creation,Роль за створенням за замовчуванням
@@ -1567,6 +1585,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Довідка з пошуку
DocType: Milestone,Milestone Tracker,Віховий трекер
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Зареєстрований але відключений
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,"Адреса повинна бути пов’язана з Компанією. Будь ласка, додайте рядок для компанії в таблицю посилань нижче."
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Автоматичне повторення цього документа вимкнено.
DocType: DocType,Hide Copy,Приховати Копіювати
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Очистіть всі ролі
@@ -1605,6 +1624,7 @@ DocType: Bulk Update,Field,поле
DocType: Communication,Received,Надійшло
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Запуск з поважних методи, такі як "before_insert", "after_update", і т.д. (буде залежати від обраного DocType)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},змінене значення {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},"Налаштування облікового запису електронної пошти, введіть свій пароль для: {0}"
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Додавання диспетчера до цієї Користувачем повинно бути принаймні одне System Manager
DocType: Chat Message,URLs,URL-адреси
DocType: Data Migration Run,Total Pages,Всього сторінок
@@ -1612,7 +1632,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Долучити зображення
DocType: Workflow State,list-alt,Список Alt-
apps/frappe/frappe/www/update-password.html,Password Updated,Пароль оновлено
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Налаштування> Дозволи користувача
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Кроки для підтвердження вашого входу
apps/frappe/frappe/utils/password.py,Password not found,Пароль не знайдений
DocType: Webhook,Webhook Secret,Webhook Secret
@@ -1628,8 +1647,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Налаштув
DocType: Report,Query Report,Запит Повідомити
DocType: User,Set New Password,Встановити новий пароль
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Не дозволено для {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% S не є допустимим форматом звіту. Формат звіту повинен \ одну з таких дій% з
DocType: Chat Message,Chat,Чат
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Не знайдено документів із тегом {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Картографування групи LDAP
@@ -1665,7 +1682,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Введ
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox доступ до секретних
DocType: Tag Link,Document Title,Заголовок документа
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Обов’язково)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} рік тому
DocType: Social Login Key,Social Login Provider,Постачальник соціальних входу
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Додати ще один коментар
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,У файлі не знайдено жодних даних. Повторно встановіть новий файл із даними.
@@ -1713,6 +1729,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Виб
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 рік
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Назавжди видалити {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Те ж файл вже був приєднаний до запису
+DocType: Event Sync Log,Synced,Синхронізовано
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} не є дійсним стан робочого процесу. Оновіть свій робочий процес і повторіть спробу.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,дав {0} балів
DocType: Workflow State,wrench,гайковий ключ
@@ -1815,6 +1832,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,Максимальна довжина
DocType: Print Format,Jinja,Джинджа
DocType: Workflow State,map-marker,Карта-маркер
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Конфігурація відображення між двома доктипами.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Подати поблему
DocType: Event,Repeat this Event,Повторіть цю подію
DocType: Address,Maintenance User,Користувач Технічного обслуговування
@@ -1874,6 +1892,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Тест E-mail адреса
DocType: Auto Repeat,Reference Document Type,Посилання Тип документа
DocType: ToDo,Sender,Відправник
+DocType: Event Consumer,Incoming Change,Вхідні зміни
DocType: Google Drive,Backup Folder Name,Ім'я папки резервного копіювання
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Помилка при оцінці сповіщення {0}. Виправте свій шаблон.
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1936,9 +1955,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Нова
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,"Натисніть посилання нижче, щоб затвердити запит"
DocType: Workflow State,align-left,вирівняти лівий
DocType: Onboarding Slide,Action Settings,Налаштування дій
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Налаштування> Користувач
DocType: User,Defaults,За замовчуванням
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для порівняння використовуйте> 5, <10 або = 324. Для діапазонів використовуйте 5:10 (для значень від 5 до 10)."
DocType: Energy Point Log,Revert Of,Повернення
+DocType: Document Type Mapping,Field Mapping,Польова карта
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Злиття з існуючими
DocType: User,Birth Date,Дата народження
DocType: Communication Link,Link Title,лінк титли
@@ -1966,6 +1986,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Посилання тегів
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Цілісність ланцюга
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,У тесті
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 Валюта = [?] Частка. Наприклад, 1 ГРН = 100 копійок"
DocType: Data Import,Partially Successful,Частково Успішний
@@ -1975,6 +1996,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Групові відображення LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Прикріплення повідомлень чату
DocType: LDAP Settings,Path to CA Certs File,Шлях до файлу сертифікатів CA
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Якщо документ має різні назви полів на кінці виробника та споживача, перевірте це та налаштуйте картографування"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Дозволити прочитати всі параметри посилання
DocType: DocType,Database Engine,Database Engine
@@ -2109,6 +2131,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Примітка
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Звіт про помилки
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Експортувати дані у форматі CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Картографія поля документа
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Налаштування документів глобального пошуку.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Програми автентифікації, які ви можете використовувати, є:"
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} вже існує. Виберіть інше ім'я
@@ -2184,7 +2207,6 @@ DocType: Workflow State,Upload,Завантажити
DocType: User Permission,Advanced Control,Розширений контроль
DocType: System Settings,Date Format,Формат дати
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Чи не Публікується
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Шаблон адреси за замовчуванням не знайдено. Створіть новий із меню Налаштування> Друк та брендинг> Шаблон адреси.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Дії робочого процесу (наприклад, Затвердити, Скасувати)."
DocType: Data Import,Skip rows with errors,Пропустити рядки з помилками
DocType: Workflow State,flag,прапор
@@ -2248,6 +2270,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Являє держави дозволило в одному документі і роллю, відведеною для зміни стану."
DocType: Data Migration Connector,Database Name,Ім'я бази даних
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Оновити Форма
+DocType: Event Producer,Event Producer,Продюсер подій
DocType: DocField,Select,Вибрати
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Переглянути повний журнал
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Просте вираження Python, приклад: status == 'Open' та введіть == 'Bug'"
@@ -2349,6 +2372,7 @@ DocType: DocType,User Cannot Search,Користувач не може Пошу
DocType: Communication Link,Communication Link,Комунікаційна посилання
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Невірний формат вихідного
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Не можу {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Для вас було створено повторний {0} {1} через Автоповтор {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Застосувати це правило, якщо Користувач є власником"
DocType: Global Search Settings,Global Search Settings,Налаштування глобального пошуку
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Буде вашим логін ID
@@ -2366,12 +2390,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,QR-код дл
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Додати в To Do
DocType: Footer Item,Company,Компанія
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},В середньому {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Успішні транзакції
DocType: Scheduled Job Log,Scheduled,Заплановане
DocType: User,Logout from all devices while changing Password,Вийти з усіх пристроїв під час зміни пароля
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Підтвердіть пароль
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Були помилки
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Введіть ідентифікатор клієнта та секрет клієнта в налаштуваннях Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Закрити
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","Ідентифікатор електронної пошти повинен бути унікальним, обліковий запис електронної пошти вже існує для {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Неможливо змінити docstatus від 0 до 2
DocType: File,Attached To Field,Приєднаний до поля
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Оновлення
@@ -2479,6 +2505,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Місяць
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Додати Reference: {{ reference_doctype }} {{ reference_name }} відправити довідковий документ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,"Перераховані лише користувачі, які беруть участь у документі"
DocType: DocField,Fetch From,Принеси з
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Налаштування> Налаштувати форму
apps/frappe/frappe/modules/utils.py,App not found,Додаток не знайдено
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Неможливо створити {0} проти дочірнього документа: {1}
DocType: Social Login Key,Social Login Key,Ключ до соціального входу
@@ -2490,7 +2517,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Чат
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Соціальний дім
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Вставка Після не може бути встановлений як {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Оприлюднити {0} для
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Налаштування облікового запису електронної пошти, будь ласка, введіть пароль для:"
DocType: Workflow State,hand-up,руки вгору
DocType: Blog Settings,Writers Introduction,Письменники Введення
DocType: Address,Phone,Телефон
@@ -2549,7 +2575,7 @@ DocType: Web Page,Insert Style,Вставити стиль
DocType: Prepared Report,Error Message,Повідомлення про помилку
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Нова назва звіту
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Сховати вихідні
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Автоматично створює повторювані документи.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Автоматично створює повторювані документи.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Є
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,"Інформація, знак"
@@ -2557,7 +2583,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Зна
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Як має бути відформатована валюта? Якщо не встановлено, будуть використовуватись системні значення за замовчуванням"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Надіслати {0} документи?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Ви повинні бути зареєстровані і мати роль адміністратора системи, щоб мати можливість отримати доступ до копії."
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Помилка підключення до програми QZ Tray ...
Для використання функції Raw Print вам потрібно встановити та запустити додаток QZ Tray.
Натисніть тут, щоб завантажити та встановити QZ Tray .
Клацніть тут, щоб дізнатися більше про сирий друк ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Картографування принтерів
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Будь ласка, збережіть перед установкою."
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Ви хочете скасувати всі пов'язані документи?
@@ -2587,6 +2612,7 @@ DocType: Role Permission for Page and Report,Set Role For,Встановити
DocType: GCalendar Account,The name that will appear in Google Calendar,"Назва, яка з'явиться в Календарі Google"
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Пряма кімната з {0} вже існує.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Оновлюється…
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},"Перевірте значення фільтра, встановлені для діаграми інформаційної панелі: {}"
DocType: Event,Starts on,Починається на
DocType: System Settings,System Settings,Системні налаштування
DocType: GCalendar Settings,Google API Credentials,Перелік повноважень Google API
@@ -2612,6 +2638,7 @@ DocType: Workflow State,ok-sign,ОК-знак
apps/frappe/frappe/config/settings.py,Deleted Documents,Дистанційні документи
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Формат CSV з урахуванням регістру
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Desktop Icon вже існує
+DocType: Event Consumer Document Type,Approval Status,Стан затвердження
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Вкажіть, у яких доменах мають відображатися слайди. Якщо нічого не вказано, слайд відображається у всіх доменах за замовчуванням."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Дублювати
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Поле {1} у рядку {2} не може бути прихованим і обов'язковим без замовчування
@@ -2631,6 +2658,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Довідка зі статей
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Тип:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Ваш платіж не вдався.
+DocType: Event Producer,Producer URL,URL-адреса виробника
DocType: Comment,Unshared,неподілений
DocType: Address,Karnataka,Карнатака
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Модуль не знайдено
@@ -2642,6 +2670,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Призначення завершено
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Масова зміна {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Завантажити звіт
+apps/frappe/frappe/model/workflow.py,Workflow Status,Статус робочого процесу
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Не активний
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Лише адміністратору дозволено створювати джерела діаграмної панелі
DocType: About Us Settings,Settings for the About Us Page,"Установки для сторінки ""Про нас"""
@@ -2651,6 +2680,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Д
DocType: Notification Settings,Energy Points,Енергетичні бали
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Час {0} повинен бути у форматі: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,наприклад pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Не вдалося долучити новий повторюваний документ. Щоб увімкнути приєднання документа до електронного листа з повторним сповіщенням, увімкніть {1} у Налаштуваннях друку"
DocType: User,Generate Keys,Генерувати клавіші
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Це назавжди видалить ваші дані.
DocType: DocType,View Settings,Перегляд параметрів
@@ -2702,6 +2732,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Всі
DocType: Email Queue,Recipient,Одержувач
DocType: Webhook,Webhook Security,Безпека Webhook
+DocType: Event Sync Log,Producer Document Name,Назва документа виробника
DocType: Communication,Has Attachment,має Вкладення
DocType: Address,Sales User,Продажі Користувач
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Drag and Drop інструмент для створення та налаштування форматів друку.
@@ -2737,6 +2768,7 @@ DocType: Address,Arunachal Pradesh,Аруначал-Прадеш
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Дочірні таблиці відображаються як сітка в інших DocTypes
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Автоматична настройка електронної пошти
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Вниз
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,"Веб-сайт, на який ви хочете підписатися для споживання подій."
DocType: Chat Profile,Message Preview,Попередній перегляд повідомлення
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Це топ-10 загальний пароль.
DocType: User,User Defaults,Система за замовчуванням
@@ -2769,6 +2801,7 @@ DocType: Dashboard Chart,Last Synced On,Востаннє синхронізов
DocType: Comment,Comment Type,Коментар Тип
DocType: OAuth Client,OAuth Client,клієнт OAuth
DocType: Assignment Rule,Users,Користувачі
+DocType: Document Type Mapping,Local Document Type,Тип локального документа
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Тип звіту
DocType: DocField,Signature,Підпис
@@ -2811,6 +2844,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} самостійно призначив це завдання: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Ваша країна
DocType: Assignment Rule Day,Sunday,Неділя
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Веде Журнал усіх вставок, оновлень та видалень на сайті виробника подій для документів, які мають споживачі."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Ім'я поля не може бути одним із {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Турнірна таблиця
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,У табличному вигляді
@@ -2958,7 +2992,6 @@ DocType: Web Page,Sidebar and Comments,Бічна панель і комента
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Коли ви Відновите документ після Скасування і збережете його, він отримає новий номер, який буде версією старого."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Не дозволяється прикріплювати {0} документ, будь ласка, увімкніть параметр Дозволити друк для {0} в налаштуваннях друку"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не налаштовано обліковий запис електронної пошти. Створіть новий обліковий запис електронної пошти у меню Налаштування> Електронна пошта> Обліковий запис електронної пошти
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Переглянути документ у {0}
DocType: Stripe Settings,Publishable Key,Ключ до опублікування
DocType: Stripe Settings,Publishable Key,Ключ до опублікування
@@ -3037,7 +3070,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Інформаці
DocType: Custom Field,Permission Level,Рівень дозволів
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Неможливо встановити Провести, Скасувати, Відновити без Записати"
DocType: List View Setting,Disable Count,Відключити кількість
-DocType: Google Maps Settings,Client Key,Клієнтський ключ
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,"Ви впевнені, що хочете видалити долучення?"
apps/frappe/frappe/__init__.py,Thank you,Дякую
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Зберігається
@@ -3164,6 +3196,7 @@ DocType: Workflow Document State,Only Allow Edit For,Тільки Дозволи
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Резервне копіювання на Диск Google.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Обов'язкове поле: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Ваше ім'я
+DocType: Event Producer Document Type,Event Producer Document Type,Тип документа виробника події
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Успіх підключення
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Вбудований слайд типу "Слайд" продовжувати вже існує.
@@ -3234,6 +3267,7 @@ DocType: Address,Postal Code,Поштовий індекс
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Relink зв'язку
DocType: Translation,Contributed,Внесли свій внесок
apps/frappe/frappe/config/customization.py,Form Customization,Налаштування форми
+DocType: Event Update Log,Event Update Log,Журнал оновлення подій
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Немає активних сеансів
DocType: Web Form,Route to Success Link,Маршрут до посилання на успіх
DocType: Onboarding Slide Field,Right,Право
@@ -3260,7 +3294,7 @@ DocType: Website Settings,Chat Operators,Оператори чату
DocType: S3 Backup Settings,ca-central-1,ca-центральний-1
DocType: Contact Us Settings,Pincode,PIN-код
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Будь ласка, переконайтеся, що немає ніяких порожніх стовпців у файлі."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Відстежує основні етапи життєвого циклу документа, якщо він проходить декілька етапів."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Відстежує основні етапи життєвого циклу документа, якщо він проходить декілька етапів."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Перейменовані файли та замінений код у контролерах, будь ласка, перевірте!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Будь ласка, переконайтеся, що ваш профіль має адресу електронної пошти"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Ви не зберегли зміни в цій формі. Будь ласка, збережіть, перш ніж продовжити."
@@ -3287,7 +3321,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Зберегти таємне API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Не можете зв'язати документ скасований: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,"Неможливо змінити стандартний звіт. Будь ласка, дублювати і створити новий звіт"
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Компанія є обов'язковим, так як це ваша компанія адреса"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Наприклад: Якщо ви хочете, щоб включити ідентифікатор документа, використовуйте {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Вибрати стовпчики Таблиця для {0}
DocType: Custom Field,Options Help,Довідка з опцій
@@ -3295,7 +3328,6 @@ DocType: Footer Item,Group Label,Група Етикетка
DocType: Kanban Board,Kanban Board,Kanban рада
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Контакти Google налаштовано.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Буде експортовано 1 запис
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Жоден обліковий запис електронної пошти не пов’язаний з Користувачем. Будь ласка, додайте обліковий запис у розділі Користувач> Вхідні адреси електронної пошти."
DocType: DocField,Report Hide,Повідомити Приховати
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Подання у вигляді дерева не доступний для {0}
DocType: DocType,Restrict To Domain,обмежити домену
@@ -3361,7 +3393,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Поле {1} типу {2} не може бути обов'язковим
DocType: System Settings,In Days,У Дні
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Міс
+DocType: Event Producer Document Type,Has Mapping,Мапинг
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Будь ласка уточніть
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Недійсне значення фільтра
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Стаття довідки
DocType: Page,Page Name,Сторінку
@@ -3469,7 +3503,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Формат друку
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Переключити режим перегляду сітки
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Перейти до наступного запису
-DocType: System Settings,Time Format,Формат часу
+DocType: Country,Time Format,Формат часу
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,Невірні облікові дані для платіжного шлюзу
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,"Це файл шаблону, згенерований лише з рядками, що мають певну помилку. Ви повинні використовувати цей файл для виправлення та імпорту."
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Встановити дозволу на типами документів і ролі
@@ -3795,6 +3829,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Дозволити вхід за допомогою імені користувача
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Включити звіт
DocType: DocField,Display Depends On,Показання залежить від
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} рік тому
DocType: Social Login Key,API Endpoint,Кінцева точка API
DocType: Web Page,Insert Code,Вставити код
DocType: Data Migration Run,Current Mapping Type,Поточний тип відображення
@@ -3848,6 +3883,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,П
apps/frappe/frappe/www/login.html,Or login with,Або увійдіть в систему з
DocType: Error Snapshot,Locals,Місцеві жителі
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Повідомляється через {0} {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Типи документів виробника події
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Установіть обліковий запис електронної пошти за замовчуванням у програмі Налаштування> Електронна пошта> Обліковий запис електронної пошти
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Виберіть групу за ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"наприклад, (55 + 434) / 4 = або Math.sin (Math.PI / 2) ..."
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} обов’язковий
@@ -3880,9 +3917,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,Час початку звіту
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Експортувати дані
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,"Веде журнал кожної події, споживаної разом зі статусом синхронізації та кнопкою Resync у випадку, якщо синхронізація не вдалася."
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Вибрати стовпчики
DocType: Translation,Source Text,Оригінальний текст
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Це довідковий звіт. Встановіть відповідні фільтри та генеруйте новий.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не налаштовано обліковий запис електронної пошти. Створіть новий обліковий запис електронної пошти у програмі Налаштування> Електронна пошта> Обліковий запис електронної пошти
apps/frappe/frappe/www/login.py,Missing parameters for login,Відсутні параметри для входу
DocType: Workflow State,folder-open,folder-open
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",Після подання подані документи неможливо змінити. Їх можна лише скасувати та доповнити.
@@ -3962,6 +4001,7 @@ DocType: Blog Post,Published On,Опубліковано на
DocType: Contact,Gender,Стать
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Обов'язкова інформація відсутня:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} повернув свої бали на {1}
+DocType: Event Consumer,Event Subscriber,Абонент події
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Перевірити URL-адресу запиту
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Тільки 200 вставок допускається в одному запиті
DocType: Footer Item,URL,URL
@@ -3974,6 +4014,7 @@ DocType: Auto Email Report,Half Yearly,Півроку
DocType: Communication,Marked As Spam,Позначені як спам
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Існує деяка проблема з файлової URL: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,дерево
+DocType: Event Producer Document Type,Use Same Name,Використовуйте те саме ім’я
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Ви не можете надрукувати цей звіт
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Дозволи користувачів
DocType: Workflow State,warning-sign,знак застереження
@@ -3983,6 +4024,7 @@ DocType: Workflow State,User,Користувач
DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Показати назву у вікні переглядача як ""префікс - назва"""
DocType: Payment Gateway,Gateway Settings,Параметри шлюзу
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,Текст в документі типу
+DocType: Event Sync Log,Event Sync Log,Журнал синхронізації подій
apps/frappe/frappe/handler.py,Logged Out,вийшов з
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Детальніше ...
DocType: System Settings,User can login using Email id or Mobile number,"Користувач може увійти в систему, використовуючи ІД епошти або мобільний номер"
@@ -4023,12 +4065,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Не в
DocType: Workflow State,star,зірка
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Концентратор
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Якщо це встановлено, документи матимуть те саме ім’я, що і на сайті виробника подій"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,"значень, розділених комами"
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Максимальна ширина для тип валюти 100px в рядку {0}
apps/frappe/frappe/config/website.py,Content web page.,Вміст веб-сторінки.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Додати нову роль
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Відвідайте веб-сторінку
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Нове призначення
+DocType: Event Consumer Document Type,Approved,Затверджений
DocType: Google Contacts,Last Sync On,Остання синхронізація включена
DocType: Deleted Document,Deleted Document,видаляється документ
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Нам Щось пішло не так
@@ -4081,7 +4125,6 @@ DocType: DocField,Unique,Унікальний
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} оцінено {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Частковий успіх
DocType: Email Account,Service,Сервіс
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Налаштування> Користувач
DocType: File,File Name,Файл
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Не знайшли {0} {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4093,11 +4136,10 @@ DocType: Calendar View,Calendar View,Перегляд календаря
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Змінити формат
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Повний Реєстрація
DocType: GCalendar Settings,Enable,включити
-DocType: Google Maps Settings,Home Address,Домашня адреса
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),"Ви можете завантажувати тільки до 5 000 записів за один раз. (може бути менше, в деяких випадках)"
DocType: Report,"output in the form of `data = [columns, result]`","вивести у вигляді `data = [стовпці, результат]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Застосовувані типи документів
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Встановіть правила для призначення користувачів.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Встановіть правила для призначення користувачів.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недостатній Введено в {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Недостатній Введено в {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Повідомити не був збережений (були помилки)
diff --git a/frappe/translations/ur.csv b/frappe/translations/ur.csv
index e76f90a80a..cec57d29eb 100644
--- a/frappe/translations/ur.csv
+++ b/frappe/translations/ur.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,ایک صارف کے لئے یہ کردار اپ ڈیٹ صارف کی اجازت
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},نام تبدیل {0}
DocType: Workflow State,zoom-out,دور کرنا
-DocType: Data Import Beta,Import Options,امپورٹ آپشنز۔
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,نہیں کھول سکتا {0} اس مثال کھلا ہوا ہے جب
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,ٹیبل {0} خالی نہیں ہو سکتا
DocType: SMS Parameter,Parameter,پیرامیٹر
@@ -83,16 +82,17 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,میدان اشاعت
DocType: GCalendar Settings,GCalendar Settings,GCalendar ترتیبات
DocType: Email Group,Email Group,ای میل گروپ
-apps/frappe/frappe/__init__.py,Only for {},صرف کے لئے {}
DocType: Event,Pulled from Google Calendar,گوگل کیلنڈر سے نکالا گیا۔
DocType: Note,Seen By,کی طرف سے دیکھا
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,ایک سے زیادہ شامل
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,درست صارف کی تصویر نہیں ہے.
DocType: Energy Point Log,Reverted,واپس کردی گئی۔
DocType: Success Action,First Success Message,پہلا کامیابی پیغام
+DocType: Document Type Mapping,Document Type Mapping,دستاویز کی قسم کی تعریفیں
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,پسند نہیں
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},غلط قیمت: {0} ہونا ضروری ہے {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",پیج میدان خصوصیات (چھپائیں، صرف پڑھنے، کی اجازت وغیرہ)
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,وہ سائٹ جو آپ کے واقعات کو کھا رہی ہے۔
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,کی تعریف
DocType: Notification Settings,Document Share,دستاویز بانٹیں
DocType: Workflow State,lock,مقفل
@@ -112,11 +112,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,لاگ
DocType: Workflow State,indent-right,پوٹ دائیں
DocType: Has Role,Has Role,کردار ہے
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,ریسینک
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,سرور پر QR کوڈ کی تصویر کو برقرار رکھنے کے لئے سیکنڈ میں وقت. منٹ: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: فیلڈ ٹائپ {1} کیلئے {2} انڈیکس نہیں ہوسکتی ہے۔
DocType: Dashboard Chart,Timespan,وقت کی مدت
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,ویب لنک
DocType: Deleted Document,Restored,بحال کردہ
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","کیو زیڈ ٹرے ایپلیکیشن سے رابطہ کرنے میں خرابی…
آپ کو را پرنٹ کی خصوصیت استعمال کرنے کے ل Q ، QZ ٹرے ایپلی کیشن انسٹال اور چلانے کی ضرورت ہے۔
کیو زیڈ ٹرے کو ڈاؤن لوڈ اور انسٹال کرنے کے لئے یہاں کلک کریں ۔
را پرنٹنگ کے بارے میں مزید معلومات کے لئے یہاں کلک کریں ۔"
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 منٹ پہلے
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",علاوہ سسٹم مینیجر سے، سیٹ صارف کی اجازت کے ساتھ کردار ٹھیک ہے دستاویز کی قسم کے لئے دیگر صارفین کے لئے اجازت مقرر کر سکتے ہیں.
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,تھیم تشکیل دیں۔
@@ -186,6 +188,7 @@ DocType: Email Account,UNSEEN,غیب
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,فائل مینیجر
DocType: Website Settings,"HTML Header, Robots and Redirects",ایچ ٹی ایم ایل ہیڈر ، روبوٹ اور ری ڈائریکٹس۔
DocType: GCalendar Account,Refresh Token,تازہ کریں ٹوکن
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,واقعہ پروڈیوسر سائٹ سے رابطہ قائم کرنے میں ناکام۔ کچھ دیر بعد دوبارہ کوشش کریں۔
DocType: Address,Goa,گوا
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,اس سائٹ کے لئے کوئی زیر التواء یا موجودہ ملازمتیں نہیں ہیں۔
DocType: Webhook,Doc Event,ڈاکٹر کا واقعہ
@@ -208,6 +211,7 @@ DocType: Server Script,Script Manager,اسکرپٹ مینیجر
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,کوئی سرگرمی نہیں ہے۔
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,تیسری پارٹی کے اطلاقات
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,سسٹم مینیجر ہو جائے گا سب سے پہلے صارف (آپ بعد میں اس کو تبدیل کر سکتے ہیں).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,آپ اپنی رپورٹ کے فلٹرز کو تبدیل کرنے کی کوشش کر سکتے ہیں۔
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,آج کوئی واقعات نہیں
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,آپ خود کو جائزہ لینے کے نکات نہیں دے سکتے ہیں۔
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,منتخب ڈیک ایونٹ کے لئے ڈوکوپائپ سبٹیٹیبل ہونا ضروری ہے
@@ -237,8 +241,10 @@ apps/frappe/frappe/config/desk.py,Files,فائلوں
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permissions get applied on Users based on what Roles they are assigned.,اجازتیں وہ تفویض کر رہے ہیں کیا کردار کی بنیاد پر صارفین پر لاگو ہو.
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,آپ کو اس دستاویز سے متعلق ای میلز بھیجنے کی اجازت نہیں کر رہے ہیں
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,{0} کو الگ الگ کرنے / گروپ سے کم سے کم 1 کالم براہ مہربانی منتخب کریں
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,کمپنی لنک نہیں ہے
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,آپ سینڈباکس API کا استعمال کرتے ہوئے اپنی ادائیگی کی جانچ کر رہے ہیں تو یہ چیک کریں
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,آپ کو ایک معیاری ویب سائٹ تھیم خارج کرنے کی اجازت نہیں کر رہے ہیں
+apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},اپنا پہلا بنائیں {0}
DocType: Data Import,Log Details,لاگ ان کی تفصیلات
DocType: Workflow Transition,Example,مثال
DocType: Webhook Header,Webhook Header,Webhook ہیڈر
@@ -255,7 +261,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},اپ ڈیٹ کرنا {0}
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,غیر فعال رپورٹ
DocType: Translation,Contributed Translation Doctype Name,تعاون یافتہ ترجمہ دستاویز نام۔
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,سیٹ اپ> فارم کو کسٹمائز کریں
DocType: PayPal Settings,Redirect To,پر ری ڈائریکٹ
DocType: Data Migration Mapping,Pull,ھیںچو
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},جاوا کی شکل: frappe.query_reports ['REPORTNAME'] = {}
@@ -267,6 +272,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,اجازت نہیں ہے
DocType: DocShare,Internal record of document shares,دستاویز حصص کی اندرونی ریکارڈ
DocType: Energy Point Settings,Review Levels,جائزہ لیول
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,سیٹ اپ> صارف کی اجازت
DocType: Workflow State,Comment,تبصرہ
DocType: Data Migration Plan,Postprocess Method,پوسٹ پروسیسر کا طریقہ
DocType: DocType Action,Action Type,ایکشن کی قسم
@@ -317,7 +323,9 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,ہ
DocType: Workflow State,remove-circle,دور دائرے
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,میری پروفائل
DocType: Help Article,Beginner,شروع
+apps/frappe/frappe/__init__.py,This action is only allowed for {},اس کارروائی کی اجازت صرف} for کے لئے ہے
DocType: Contact,Is Primary Contact,پرائمری سے رابطہ کریں
+DocType: Event Consumer,Event Consumer,واقعہ صارف
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,جاوا سکرپٹ کو صفحے کے سر کے حصے سے ملحق کرنا.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,شامل / اپ ڈیٹ کریں۔
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,ڈرافٹ دستاویزات کو پرنٹ کرنے کے لئے کی اجازت نہیں
@@ -471,7 +479,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,تک دہرائیں
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,نئی
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,آپ کو پہلے ان کو بنانے کی ضرورت ہے۔
-DocType: Google Maps Settings,Google Maps Settings,Google Maps ترتیبات
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,لوڈ کر رہا ہے ...
DocType: DocField,Password,پاس ورڈ
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,آپ کے سسٹم کو اپ ڈیٹ کیا جا رہا ہے. چند لمحوں کے بعد ایک بار پھر براہ کرم ریفریش کریں
@@ -563,6 +570,7 @@ DocType: Onboarding Slide,Onboarding Slide,آن بورڈنگ سلائڈ
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,غلط پاسورڈ:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,غلط پاسورڈ:
DocType: Print Settings,Send document web view link in email,ای میل میں دستاویز ویب قول لنک بھیجیں
+DocType: Event Consumer Document Type,Event Consumer Document Type,واقعہ صارفین کی دستاویز کی قسم
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,پچھلا
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,براہ مہربانی دوبارہ کوشش
DocType: LDAP Settings,Require Trusted Certificate,قابل اعتبار سند کی ضرورت ہے۔
@@ -638,6 +646,7 @@ DocType: Workflow State,volume-down,حجم نیچے
DocType: Onboarding Slide,Help Links,مدد لنکس
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,اس IP پتے سے رسائی کی اجازت نہیں ہے۔
DocType: Notification Settings,Enable Email Notifications,ای میل کی اطلاعات کو فعال کریں
+DocType: Document Type Field Mapping,Event Streaming,واقعہ سلسلہ بندی
apps/frappe/frappe/desk/reportview.py,No Tags,کوئی ٹیگز
DocType: Email Account,Send Notification to,کو نوٹیفکیشن بھیجنے کے
DocType: DocField,Collapsible,تہ
@@ -654,6 +663,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,کی
apps/frappe/frappe/database/database.py,No conditions provided,کوئی شرائط مہیا نہیں کی گئیں۔
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y Axis Fields
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,چھانٹیں میدان {0} ایک درست FIELDNAME ہونا ضروری ہے
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,پتہ کا کوئی طے شدہ سانچہ نہیں ملا۔ براہ کرم سیٹ اپ> پرنٹنگ اور برانڈنگ> ایڈریس ٹیمپلیٹ سے ایک نیا بنائیں۔
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,مزید
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,ایک نیا ریکارڈ بنائیں۔
DocType: Contact,Sales Manager,منتظم سامان فروخت
@@ -677,6 +687,7 @@ DocType: User,Reset Password Key,پاس ورڈ ری سیٹ کلیدی
DocType: Dashboard Chart,All Time,تمام وقت
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} کیلئے غیر قانونی دستاویز کی حیثیت
DocType: Email Account,Enable Auto Reply,آٹو جواب فعال
+apps/frappe/frappe/desk/query_report.py,No data to export,برآمد کرنے کے لئے کوئی ڈیٹا نہیں ہے۔
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,نہیں دیکھا
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,ایک ہی پرنٹ فارمیٹ میں متعدد پرنٹرز نقش نہیں کر سکتے ہیں۔
DocType: Workflow State,zoom-in,زوم میں
@@ -828,6 +839,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,صارف
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,پہلا
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,تازہ ترین ترجمہ
DocType: Error Snapshot,Exception,رعایت
+DocType: Event Consumer,Event Consumer Document Types,واقعہ صارفین کی دستاویز کی اقسام
DocType: Email Account,Use IMAP,استعمال IMAP
DocType: Activity Log,Activity Log,سرگرمی لاگ ان
DocType: View Log,Viewed By,کی طرف سے دیکھا
@@ -867,6 +879,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,ل
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,چارٹ تشکیل دیں
DocType: User,Last IP,آخری IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,براہ مہربانی اپنے ای میل پر ایک مضمون شامل کریں
+apps/frappe/frappe/model/workflow.py,Errored Transactions,غلط معاملات
DocType: Data Migration Connector,Data Migration Connector,ڈیٹا منتقلی کنیکٹر
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} کو الٹ دیا {1}
DocType: Email Account,Track Email Status,ای میل کی حیثیت کو ٹریک کریں
@@ -898,6 +911,7 @@ DocType: Email Queue,Attachments,ملحقات
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,آپ کو اس دستاویز تک رسائی حاصل کرنے کی اجازت نہیں ہے
DocType: Language,Language Name,زبان کا نام
DocType: Email Group Member,Email Group Member,گروپ کے رکن کو ای میل کریں
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,صارف کے ساتھ کوئی ای میل اکاؤنٹ منسلک نہیں ہے۔ براہ کرم صارف> ای میل ان باکس کے تحت ایک اکاؤنٹ شامل کریں۔
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,آپ کا اکاؤنٹ بند کردیا گیا ہے اور {0} سیکنڈ کے بعد دوبارہ شروع ہو جائے گا
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,صارفین کو مخصوص ریکارڈز پر محدود کرنے کے لئے استعمال کی اجازت دی جاتی ہے.
DocType: Notification,Value Changed,قیمت کو تبدیل
@@ -987,6 +1001,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,لین دین
DocType: Help Article,Expert,ماہر
DocType: Workflow State,circle-arrow-right,دائرے تیر دائیں
DocType: Role Profile,Role Profile,رول پروفائل
+DocType: Document Type Mapping,Remote Document Type,ریموٹ دستاویز کی قسم
apps/frappe/frappe/permissions.py,Document Type is not importable,دستاویز کی قسم قابل درآمد نہیں ہے۔
DocType: LDAP Settings,LDAP Server Url,LDAP سرور URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,اس {0} کھلا ہوا ہے جب مثال کے طور پر نہیں کھول سکتا
@@ -1071,7 +1086,6 @@ DocType: Web Form,Allow Print,پرنٹ اجازت دیں
DocType: Communication,Clicked,کلک
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,غیر مسدود کریں
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},کرنے کی اجازت نہیں '{0} {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے پہلے سے طے شدہ ای میل اکاؤنٹ مرتب کریں
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,بھیجنے کے لئے تخسوچت
DocType: DocType,Track Seen,ٹریک دیکھا
DocType: Dropbox Settings,File Backup,فائل بیک اپ
@@ -1142,6 +1156,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ا
DocType: Data Export,Filter List,فلٹر کی فہرست
DocType: Data Export,Excel,ایکسل
DocType: System Settings,HH:mm,HH: ملی میٹر
+DocType: Event Sync Log,Event Configurations,واقعہ کی تشکیلات
DocType: Email Account,Auto Reply Message,آٹو جواب پیغام
DocType: Data Migration Mapping,Condition,حالت
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} گھنٹے پہلے
@@ -1201,9 +1216,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,ہمیشہ
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,تبصرہ کرنے سے لاگ ان کریں
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,اس کی لکیر سے نیچے کے اعداد و شمار میں داخل ہونے شروع
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},{0} کے لئے تبدیل کردہ اقدار
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}",ای میل ID منفرد ہونا ضروری ہے، ای میل اکاؤنٹ پہلے ہی موجود ہے \ {0}
DocType: Workflow State,retweet,ریٹویٹ
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",موازنہ کے لئے ،> 5 ، <10 یا = 324 استعمال کریں۔ حدود کے ل 5 ، 5:10 (5 اور 10 کے درمیان اقدار کے لئے) استعمال کریں۔
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,اپنی مرضی کے مطابق ...
DocType: Print Format,Align Labels to the Right,لیبل کو دائیں طرف سیدھا کریں
DocType: Assignment Rule,Disabled,معذور
@@ -1249,8 +1263,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,کی بورڈ شارٹ کٹس
DocType: Post,Comments,تبصرے
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,کی توثیق
+DocType: Event Sync Log,Update Type,اپ ڈیٹ کی قسم
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,تصدیق کر رہا ہے…
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,تمام مختصر کریں
+DocType: Event Producer,Last Update,آخری تازہ کاری
apps/frappe/frappe/www/login.html,Forgot Password?,پاسورڈ بھول گے؟
DocType: System Settings,yyyy-mm-dd,YYYY-MM-DD
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1291,6 +1307,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,ٹیبل
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,کالم کی بنیاد پر
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}",{1} ، {2} میں سے {0} درآمد کرنا
DocType: Workflow State,move,اقدام
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,موجودہ سائٹ کیلئے واقعہ صارف یا واقعہ صارف پیدا کرنے میں ناکام۔
apps/frappe/frappe/model/document.py,Action Failed,ایکشن میں ناکام
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,صارف کے لئے
DocType: View Log,View log,لاگ لاگ دیکھیں
@@ -1447,6 +1464,7 @@ DocType: DefaultValue,Key,کلیدی
DocType: Address,Contacts,رابطے
DocType: System Settings,Setup Complete,مکمل سیٹ
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,تمام دستاویز حصص کی رپورٹ
+DocType: Event Consumer,Callback URL,کال بیک یو آر ایل
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",درآمد ٹیمپلیٹ .csv ، .xlsx یا .xls قسم کا ہونا چاہئے
apps/frappe/frappe/www/update-password.html,New Password,نیا پاس ورڈ
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,فلٹر {0} لاپتہ
@@ -1512,7 +1530,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,ک
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,؛ حالت میں اجازت نہیں
DocType: Async Task,Async Task,کرنے async ٹاسک
DocType: Workflow State,picture,تصویر
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,مکمل
+DocType: Scheduled Job Log,Complete,مکمل
DocType: DocType,Image Field,تصویر میدان
DocType: Print Format,Custom HTML Help,اپنی مرضی کے HTML مدد
DocType: LDAP Settings,Default Role on Creation,تخلیق سے پہلے سے طے شدہ کردار۔
@@ -1537,6 +1555,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,تلاش کرنے میں مدد
DocType: Milestone,Milestone Tracker,سنگ میل ٹریکر
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,رجسٹرڈ لیکن غیر فعال
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,ایڈریس کو کسی کمپنی سے منسلک کرنے کی ضرورت ہے۔ براہ کرم ذیل کے لنکس ٹیبل میں کمپنی کے لئے ایک قطار شامل کریں۔
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,اس دستاویز کے لئے آٹو ریپیٹ کو غیر فعال کردیا گیا ہے۔
DocType: DocType,Hide Copy,کاپی چھپائیں
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,تمام کردار صاف
@@ -1573,13 +1592,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print
DocType: Bulk Update,Field,فیلڈ
DocType: Communication,Received,موصول
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","before_insert"، "after_update"، وغیرہ درست طریقوں پر ٹریگر (منتخب DOCTYPE پر انحصار کرے گا)
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},ای میل اکاؤنٹ سیٹ اپ برائے مہربانی اپنا پاس ورڈ درج کریں: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,اس صارف کے لئے نظام کے مینیجر کو شامل کرنے سے کم سے کم ایک سسٹم مینیجر وہاں ہونا ضروری ہے کے طور پر
DocType: Chat Message,URLs,یو آر ایل
DocType: Data Migration Run,Total Pages,کل صفحات
DocType: DocField,Attach Image,تصویر منسلک
DocType: Workflow State,list-alt,فہرست ALT
apps/frappe/frappe/www/update-password.html,Password Updated,پاس ورڈ کو اپ ڈیٹ
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,سیٹ اپ> صارف کی اجازت
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,اپنے لاگ ان کی تصدیق کے لئے اقدامات
apps/frappe/frappe/utils/password.py,Password not found,پاس ورڈ نہیں ملا
DocType: Webhook,Webhook Secret,ویب ہک سیکرٹ
@@ -1594,8 +1613,6 @@ DocType: Website Settings,Brand,برانڈ
apps/frappe/frappe/config/integrations.py,Google API Settings.,گوگل API کی ترتیبات۔
DocType: Report,Query Report,استفسار رپورٹ
DocType: User,Set New Password,نیا پاس ورڈ مقرر
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",٪ s کو ایک درست رپورٹ کی شکل نہیں ہے. رپورٹ کی شکل مندرجہ ذیل٪ ے میں سے ایک \ چاہئے
DocType: Chat Message,Chat,چیٹ
DocType: LDAP Group Mapping,LDAP Group Mapping,ایل ڈی اے پی گروپ میپنگ۔
DocType: Dashboard Chart,Chart Options,چارٹ کے اختیارات۔
@@ -1630,7 +1647,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,آپ اپ
DocType: Dropbox Settings,Dropbox Access Secret,ڈراپ باکس تک رسائی خفیہ
DocType: Tag Link,Document Title,دستاویز کا عنوان
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(لازمی)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پہلے
DocType: Social Login Key,Social Login Provider,سوشل لاگ ان فراہم کنندہ
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,ایک اور تبصرہ شامل کریں
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,فائل میں کوئی ڈیٹا نہیں ملا. براہ کرم اعداد و شمار کے ساتھ نئی فائل دوبارہ بھیجیں.
@@ -1676,6 +1692,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",منت
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 سال
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,مستقل طور پر خارج کر دیں {0}؟
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,ایک ہی فائل پہلے سے ریکارڈ کے ساتھ منسلک کر دیا گیا ہے
+DocType: Event Sync Log,Synced,مطابقت پذیر
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} ایک درست ورک فلو ریاست نہیں ہے. براہ کرم اپنا کام فلو اپ ڈیٹ کریں اور دوبارہ کوشش کریں.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} پوائنٹس دیئے۔
DocType: Workflow State,wrench,رنچ
@@ -1773,6 +1790,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,زیادہ سے زیادہ لمبائی
DocType: Print Format,Jinja,جنجا
DocType: Workflow State,map-marker,نقشہ مارکر
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,دو دستاویزات کے مابین نقشہ سازی کی تشکیل۔
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,ایک مسئلہ جمع کرائیں
DocType: Event,Repeat this Event,یہ واقعہ دہرائیں
DocType: Address,Maintenance User,بحالی صارف
@@ -1830,6 +1848,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,ٹیسٹ ای میل ایڈریس
DocType: Auto Repeat,Reference Document Type,حوالہ دستاویز کی قسم
DocType: ToDo,Sender,مرسل
+DocType: Event Consumer,Incoming Change,آنے والی تبدیلی
DocType: Google Drive,Backup Folder Name,بیک اپ فولڈر کا نام۔
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,اطلاع {0} کا اندازہ کرتے ہوئے خرابی براہ مہربانی اپنا سانچے کو ٹھیک کریں.
DocType: GSuite Settings,Google Apps Script,Google Apps اسکرپٹ
@@ -1891,9 +1910,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,نیا
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,درخواست کو منظور کرنے کے لئے نیچے دیئے گئے لنک پر کلک کریں۔
DocType: Workflow State,align-left,سیدھ بائیں
DocType: Onboarding Slide,Action Settings,ایکشن کی ترتیبات
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,سیٹ اپ> صارف
DocType: User,Defaults,ڈیفالٹس
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",موازنہ کے لئے ،> 5 ، <10 یا = 324 استعمال کریں۔ حدود کے ل 5 ، 5:10 (5 اور 10 کے درمیان اقدار کے لئے) استعمال کریں۔
DocType: Energy Point Log,Revert Of,واپس لوٹائیں۔
+DocType: Document Type Mapping,Field Mapping,فیلڈ میپنگ
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,موجودہ کے ساتھ ضم
DocType: User,Birth Date,تاریخ پیدائش
DocType: Communication Link,Link Title,لنک کا عنوان
@@ -1921,6 +1941,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,ٹیگ لنک
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,چین کی صداقت
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,ٹیسٹ میں
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",= [؟] مثال کے طور پر 1 USD کے لئے کسر = 100 Cent کی 1 کرنسی
DocType: Data Import,Partially Successful,جزوی طور پر کامیاب
@@ -1930,6 +1951,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,ایل ڈی اے پی گروپ میپنگز۔
DocType: Chat Message Attachment,Chat Message Attachment,چیٹ پیغام منسلک
DocType: LDAP Settings,Path to CA Certs File,CA Certs فائل کا راستہ۔
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,اگر دستاویز کے پروڈیوسر اور صارف کے اختتام پر مختلف فیلڈ کے نام ہیں تو اسے چیک کریں اور میپنگ مرتب کریں
DocType: Address,Manipur,منی پور
DocType: Web Form Field,Allow Read On All Link Options,تمام لنک کے اختیارات پر پڑھیں
DocType: DocType,Database Engine,ڈیٹا بیس انجن
@@ -2062,6 +2084,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,نوٹ
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,غلطی کی رپورٹ
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,CSV / ایکسل فارمیٹ میں برآمد ڈیٹا.
+DocType: Document Type Field Mapping,Document Type Field Mapping,دستاویز کی قسم فیلڈ میپنگ
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,عالمی تلاش کے دستاویزات مرتب کرنا۔
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,توثیقی اطلاقات آپ استعمال کر سکتے ہیں:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} پہلے ہی موجود ہے. دوسرا نام منتخب کریں
@@ -2136,7 +2159,6 @@ DocType: Workflow State,Upload,اپ لوڈ کریں
DocType: User Permission,Advanced Control,اعلی درجے کی کنٹرول
DocType: System Settings,Date Format,تاریخ کی شکل
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,شائع نہیں
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,پتہ کا کوئی طے شدہ سانچہ نہیں ملا۔ براہ کرم سیٹ اپ> پرنٹنگ اور برانڈنگ> ایڈریس ٹیمپلیٹ سے ایک نیا بنائیں۔
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",کام کے فلو کو کے اعمال (مثال کے طور پر، منسوخ منظور).
DocType: Data Import,Skip rows with errors,غلطیوں کے ساتھ قطاروں کو چھوڑ دیں
DocType: Workflow State,flag,پرچم
@@ -2200,6 +2222,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,حالت کو تبدیل کرنے کے لئے مقرر ایک دستاویز اور کردار میں اس کی اجازت امریکہ کی نمائندگی کرتا ہے.
DocType: Data Migration Connector,Database Name,ڈیٹا بیس کا نام
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,تازہ کاری فارم
+DocType: Event Producer,Event Producer,واقعہ پروڈیوسر
DocType: DocField,Select,منتخب کریں
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,مکمل لاگ دیکھیں۔
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",سادہ ازگر اظہار ، مثال: حیثیت == 'کھولیں' اور ٹائپ کریں == 'بگ'
@@ -2314,6 +2337,7 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,لاگ ان ک
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ایسا کرنے کے لئے میں شامل کریں
DocType: Footer Item,Company,کمپنی
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},اوسط {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,کامیاب لین دین
DocType: Scheduled Job Log,Scheduled,تخسوچت
DocType: User,Logout from all devices while changing Password,پاس ورڈ تبدیل کرنے کے دوران تمام آلات سے لاگ ان کریں
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,پاس ورڈ کی توثیق
@@ -2424,6 +2448,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,مہینہ
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: شامل Reference: {{ reference_doctype }} {{ reference_name }} کو بھیجنے کے لئے دستاویز حوالہ
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,صرف دستاویز میں شامل صارف درج ہیں۔
DocType: DocField,Fetch From,سے لے لو
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,سیٹ اپ> فارم کو کسٹمائز کریں
apps/frappe/frappe/modules/utils.py,App not found,اپلی کیشن نہیں ملا
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},نہیں بنا سکتا ایک {0} ایک بچے کی دستاویز کے خلاف: {1}
DocType: Social Login Key,Social Login Key,سماجی لاگ ان کلید
@@ -2434,7 +2459,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,پیغ
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,سوشل ہوم
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},کے طور پر مقرر نہیں کیا جا سکتا کے بعد ڈالیں {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,بانٹیں {0} کے ساتھ
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ای میل اکاؤنٹ سیٹ اپ کے لئے آپ کا پاس ورڈ درج کریں:
DocType: Workflow State,hand-up,ہاتھ سے تیار
DocType: Blog Settings,Writers Introduction,مصنفین کا تعارف
DocType: Address,Phone,فون
@@ -2492,7 +2516,7 @@ DocType: Web Page,Insert Style,داخل انداز
DocType: Prepared Report,Error Message,خرابی کا پیغام۔
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,نئی رپورٹ کا نام
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,اختتام ہفتہ چھپائیں
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,خود کار طریقے سے بار بار چلنے والی دستاویزات تیار کرتا ہے۔
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,خود کار طریقے سے بار بار چلنے والی دستاویزات تیار کرتا ہے۔
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,ہے
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,معلومات نشانی
@@ -2500,7 +2524,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} ک
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",اس کرنسی کے لئے کس طرح فارمیٹ کیا جانا چاہئے؟ مقرر نہیں ہے تو، نظام ڈیفالٹس استعمال کریں گے
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,دستاویزات {0} جمع کروائیں؟
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,آپ لاگ ان اور بیک اپ تک رسائی حاصل کرنے کے قابل ہو جائے کرنے کے لئے سسٹم مینیجر کردار ہے کرنے کی ضرورت ہے.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","کیو زیڈ ٹرے ایپلیکیشن سے رابطہ کرنے میں خرابی…
آپ کو را پرنٹ کی خصوصیت استعمال کرنے کے ل Q ، QZ ٹرے ایپلی کیشن انسٹال اور چلانے کی ضرورت ہے۔
کیو زیڈ ٹرے کو ڈاؤن لوڈ اور انسٹال کرنے کے لئے یہاں کلک کریں ۔
را پرنٹنگ کے بارے میں مزید معلومات کے لئے یہاں کلک کریں ۔"
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,پرنٹر میپنگ۔
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,منسلک کرنے سے قبل بچا لو.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,کیا آپ تمام منسلک دستاویزات کو منسوخ کرنا چاہتے ہیں؟
@@ -2529,6 +2552,7 @@ DocType: Role Permission for Page and Report,Set Role For,کے لئے کردار
DocType: GCalendar Account,The name that will appear in Google Calendar,وہ نام جو Google کیلنڈر میں دکھائے گا
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} کے ساتھ براہ راست کمرے پہلے ہی موجود ہے.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,تازہ ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},براہ کرم ڈیش بورڈ چارٹ کے لئے مقرر کردہ فلٹر ویلیوز کی جانچ کریں: {}
DocType: Event,Starts on,شروع
DocType: System Settings,System Settings,نظام کی ترتیبات
DocType: GCalendar Settings,Google API Credentials,Google API کریڈٹیزس
@@ -2554,6 +2578,7 @@ DocType: Workflow State,ok-sign,OK-نشانی
apps/frappe/frappe/config/settings.py,Deleted Documents,حذف شدہ دستاویزات
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV کی شکل حساس ہے
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,ڈیسک ٹاپ شبیہ پہلے سے موجود ہے
+DocType: Event Consumer Document Type,Approval Status,منظوری کی حیثیت
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,بتائیں کہ سلائڈز کون سے ڈومینز میں دکھائ دینی چاہ.۔ اگر کچھ بھی مخصوص نہیں ہے تو سلائڈ کو تمام ڈومینز میں بطور ڈیفالٹ دکھایا جاتا ہے۔
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,نقل
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: قطعہ {2} میں فیلڈ {1} ڈیفالٹ کے بغیر پوشیدہ اور لازمی نہیں ہوسکتا ہے۔
@@ -2573,6 +2598,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,مدد مضامین
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,پروپوزل کی گذارش:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,آپ کی ادائیگی ناکام رہی ہے.
+DocType: Event Producer,Producer URL,پروڈیوسر یو آر ایل
DocType: Comment,Unshared,اشتراک ختم
DocType: Address,Karnataka,کرناٹک
apps/frappe/frappe/desk/moduleview.py,Module Not Found,ماڈیول نہیں ملا
@@ -2584,6 +2610,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,ماموریت مکمل
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},بلک میں ترمیم {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,رپورٹ ڈاؤن لوڈ کریں
+apps/frappe/frappe/model/workflow.py,Workflow Status,ورک فلو کی حیثیت
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,فعال نہیں
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,صرف ایڈمنسٹریٹر کو ہی ڈیش بورڈ چارٹ سورس بنانے کی اجازت ہے۔
DocType: About Us Settings,Settings for the About Us Page,ہمارے بارے میں صفحہ کے لئے ترتیبات
@@ -2641,6 +2668,7 @@ DocType: User Social Login,User Social Login,صارف سوشل لاگ ان
DocType: Contact,All,تمام
DocType: Email Queue,Recipient,وصول کنندہ
DocType: Webhook,Webhook Security,ویب ہک سیکیورٹی
+DocType: Event Sync Log,Producer Document Name,پروڈیوسر دستاویز کا نام
DocType: Communication,Has Attachment,منسلکہ ہے
DocType: Address,Sales User,سیلز صارف
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,ڈریگ اور ڈراپ کے آلے کی تعمیر اور پرنٹ دونوں فارمیٹس اپنی مرضی کے مطابق.
@@ -2674,6 +2702,7 @@ DocType: Address,Arunachal Pradesh,اروناچل پردیش
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,چائلڈ ٹیبلز کو دیگر دستاویزات میں بطور گرڈ دکھایا گیا ہے۔
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,سیٹ اپ آٹو ای میل
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,لئے Ctrl + نیچے
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,وہ سائٹ جس کی خریداری کے واقعات کے ل subs آپ سبسکرائب کرنا چاہتے ہیں۔
DocType: Chat Profile,Message Preview,پیغام پیش نظارہ
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,یہ ایک سب سے اوپر 10 عام پاسورڈ ہے.
DocType: User,User Defaults,صارف ڈیفالٹس
@@ -2706,6 +2735,7 @@ DocType: Dashboard Chart,Last Synced On,آخری موافقت پذیر
DocType: Comment,Comment Type,تبصرہ قسم
DocType: OAuth Client,OAuth Client,OAuth کلائنٹ
DocType: Assignment Rule,Users,صارفین
+DocType: Document Type Mapping,Local Document Type,مقامی دستاویز کی قسم
DocType: Address,Odisha,اڑیسہ
DocType: Report,Report Type,رپورٹ کی قسم
DocType: DocField,Signature,دستخط
@@ -2747,6 +2777,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} خود کو اس کام کو تفویض کیا: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,آپ کا ملک
DocType: Assignment Rule Day,Sunday,اتوار
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",صارفین کے پاس موجود دستاویزات کیلئے ایونٹ پروڈیوسر سائٹ پر تمام داخلوں ، تازہ کاریوں اور حذفوں کا ایک لاگ برقرار رکھتا ہے۔
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: فیلڈ کا نام {1} میں سے ایک نہیں ہوسکتا
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,اسٹینڈنگ۔
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,گرڈ نقطہ نظر میں
@@ -2892,7 +2923,6 @@ DocType: Web Page,Sidebar and Comments,سائڈبار اور تبصرے
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",آپ کو ایک دستاویز کے بعد اسے منسوخ اور محفوظ ترمیم جب، یہ پرانے تعداد کا ایک ورژن ہے کہ ایک نیا نمبر مل جائے گا.
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings",{0} دستاویز کو منسلک کرنے کی اجازت نہیں ہے، برائے مہربانی پرنٹ کی ترتیب میں {0} کیلئے پرنٹ کی اجازت دیں
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں ہے۔ براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے نیا ای میل اکاؤنٹ بنائیں
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},دستاویز پر {0} ملاحظہ کریں
DocType: Stripe Settings,Publishable Key,Publishable کلید
DocType: Stripe Settings,Publishable Key,Publishable کلید
@@ -2969,7 +2999,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,معلومات:
DocType: Custom Field,Permission Level,اجازت لیول
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: جمع کرائیں منسوخ، لکھیں بغیر ترمیم مقرر نہیں کر سکتے ہیں
DocType: List View Setting,Disable Count,غیر فعال گنتی۔
-DocType: Google Maps Settings,Client Key,کلائنٹ کلید
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,آپ ملحق کو خارج کرنا چاہتے ہیں اس بات کا یقین کر رہے ہیں؟
apps/frappe/frappe/__init__.py,Thank you,آپ کا شکریہ
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,محفوظ کر رہا ہے
@@ -3091,6 +3120,7 @@ DocType: Workflow Document State,Only Allow Edit For,صرف ترمیم کے لئ
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,گوگل ڈرائیو میں بیک اپ حاصل کرنا۔
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},لازمی میدان: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,تمھارا نام
+DocType: Event Producer Document Type,Event Producer Document Type,واقعہ پروڈیوسر دستاویز کی قسم
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,کنکشن کامیابی
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,سلائیڈ ٹائپ جاری کا ایک آن بورڈنگ سلائڈ پہلے سے موجود ہے۔
@@ -3159,6 +3189,7 @@ DocType: Address,Postal Code,ڈاک کا کوڈ
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,دوبارہ لنک مواصلات
DocType: Translation,Contributed,تعاون کیا۔
apps/frappe/frappe/config/customization.py,Form Customization,فارم حسب ضرورت۔
+DocType: Event Update Log,Event Update Log,واقعہ کی تازہ کاری لاگ
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,کوئی فعال سیشن نہیں
DocType: Web Form,Route to Success Link,کامیابی کے لنک پر روٹ
DocType: Onboarding Slide Field,Right,دائیں
@@ -3184,7 +3215,7 @@ DocType: Website Settings,Chat Operators,چیٹ آپریٹرز
DocType: S3 Backup Settings,ca-central-1,ca-مرکزی -1۔
DocType: Contact Us Settings,Pincode,خفیہ نمبر
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,کوئی خالی کالم فائل میں سے ہیں کہ براہ کرم یقینی بنائیں.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,اگر اس میں متعدد مراحل گزرے تو کسی دستاویز کے لائف سائیکل پر سنگ میل کا سراغ لگاتا ہے۔
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,اگر اس میں متعدد مراحل گزرے تو کسی دستاویز کے لائف سائیکل پر سنگ میل کا سراغ لگاتا ہے۔
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",فائلوں کا نام بدل دیا گیا اور کنٹرولرز میں کوڈ کو تبدیل کردیا گیا ، براہ کرم چیک کریں!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,آپ کے پروفائل میں ایک ای میل ایڈریس ہے کہ براہ کرم یقینی بنائیں
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,اگر آپ اس فارم میں غیر محفوظ کردہ تبدیلیاں ہیں. جاری رکھنے سے پہلے بچا لو.
@@ -3211,7 +3242,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API خفیہ کریں:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},منسوخ دستاویز منسلک نہیں کر سکتے ہیں: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,ایک معیاری رپورٹ کی تدوین نہیں ہوسکتی. نقل اور ایک نئی رپورٹ تشکیل مہربانی
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address",یہ آپ کی کمپنی ایڈریس ہے کے طور پر کمپنی، لازمی ہے
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}",مثال کے طور پر: آپ دستاویز ID شامل کرنا چاہتے ہیں تو، کا استعمال کرتے ہیں {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},کے لئے منتخب کریں ٹیبل کالم {0}
DocType: Custom Field,Options Help,اختیارات مدد
@@ -3219,7 +3249,6 @@ DocType: Footer Item,Group Label,گروپ لیبل
DocType: Kanban Board,Kanban Board,Kanban بورڈ
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,گوگل رابطے تشکیل دیئے گئے ہیں۔
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 ریکارڈ برآمد کیا جائے گا۔
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,صارف کے ساتھ کوئی ای میل اکاؤنٹ وابستہ نہیں ہے۔ براہ کرم صارف> ای میل ان باکس کے تحت ایک اکاؤنٹ شامل کریں۔
DocType: DocField,Report Hide,رپورٹ چھپائیں
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},کے لئے دستیاب نہیں ہیں درخت قول {0}
DocType: DocType,Restrict To Domain,DOMAIN تک محدود
@@ -3283,7 +3312,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: فیلڈ {1} قسم کا {2} لازمی نہیں ہوسکتا ہے۔
DocType: System Settings,In Days,دنوں میں
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,مس
+DocType: Event Producer Document Type,Has Mapping,میپنگ ہے
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,وضاحت براہ مہربانی
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,غلط فلٹر ویلیو
DocType: Comment,Bot,بوٹ
DocType: Help Article,Help Article,مدد آرٹیکل
DocType: Page,Page Name,پیج کا نام
@@ -3387,7 +3418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,پرنٹ کی شکل
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,ٹول گرڈ دیکھیں
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,اگلے ریکارڈ پر جائیں۔
-DocType: System Settings,Time Format,وقت کی ترتیب
+DocType: Country,Time Format,وقت کی ترتیب
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,غلط ادائیگی کے گیٹ وے کے اسناد
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,یہ کچھ غلطی رکھنے والی قطاروں کے ساتھ پیدا ٹیمپلیٹ فائل ہے. آپ کو اس فائل کو اصلاح اور درآمد کیلئے استعمال کرنا چاہئے.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,دستاویز کی قسم اور کردار پر اجازت مقرر کریں
@@ -3511,6 +3542,7 @@ apps/frappe/frappe/public/js/frappe/chat.js,Discard,رکھو
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 گھنٹہ پہلے
DocType: Website Settings,Home Page,ہوم پیج
DocType: Error Snapshot,Parent Error Snapshot,والدین خرابی سنیپشاٹ
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},نقشہ کالم {0} سے کھیتوں میں {1}
DocType: Access Log,Filters,فلٹرز
DocType: Workflow State,share-alt,حصہ ALT
apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},قطار {0} میں سے ایک ہونا چاہئے
@@ -3705,6 +3737,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,صارف نام کا استعمال کرتے ہوئے لاگ ان کی اجازت دیں
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,رپورٹ فعال
DocType: DocField,Display Depends On,ڈسپلے پر انحصار کرتا ہے
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پہلے
DocType: Social Login Key,API Endpoint,API اختتام پوائنٹ
DocType: Web Page,Insert Code,داخل کوڈ
DocType: Data Migration Run,Current Mapping Type,موجودہ نقشہ سازی کی قسم
@@ -3757,6 +3790,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,آ
apps/frappe/frappe/www/login.html,Or login with,یا کے ساتھ لاگ ان کریں
DocType: Error Snapshot,Locals,مقامی
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},{0} پر {1}: {2} کے ذریعے مواصلات
+DocType: Event Producer,Event Producer Document Types,واقعہ پروڈیوسر دستاویز کی اقسام
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے پہلے سے طے شدہ ای میل اکاؤنٹ مرتب کریں
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,گروپ منتخب کریں بذریعہ ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,مثال کے طور پر (55 + 434) / 4 یا = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} کی ضرورت ہے
@@ -3787,9 +3822,11 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have
DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID
DocType: Prepared Report,Report Start Time,شروع وقت کی اطلاع دیں
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,برآمد ڈیٹا
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,مطابقت پذیری کی حیثیت اور مطابقت پذیری کے ناکام ہونے کی صورت میں ریسسنک بٹن کے ساتھ کھائے جانے والے ہر پروگرام کا ایک لاگ ان کو برقرار رکھتا ہے۔
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,منتخب کالم
DocType: Translation,Source Text,ماخذ متن
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,یہ ایک پس منظر کی رپورٹ ہے۔ براہ کرم مناسب فلٹرز مرتب کریں اور پھر ایک نیا تیار کریں۔
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں ہے۔ براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے نیا ای میل اکاؤنٹ بنائیں
apps/frappe/frappe/www/login.py,Missing parameters for login,لاگ ان کے لئے لاپتہ پیرامیٹرز
DocType: Workflow State,folder-open,فولڈر کھولیں
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",ایک بار جمع کرانے کے بعد ، جمع کرانے والی دستاویزات کو تبدیل نہیں کیا جاسکتا۔ انہیں صرف منسوخ اور ترمیم کی جاسکتی ہے۔
@@ -3865,6 +3902,7 @@ DocType: Event,Send an email reminder in the morning,صبح میں ایک ای
DocType: Blog Post,Published On,پر شائع
DocType: Contact,Gender,صنفی
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,لازمی معلومات لاپتہ:
+DocType: Event Consumer,Event Subscriber,واقعہ سبسکرائبر
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,درخواست URL چیک کریں
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,صرف 200 کے اضافہ ایک درخواست میں اس کی اجازت
DocType: Footer Item,URL,URL
@@ -3877,6 +3915,7 @@ DocType: Auto Email Report,Half Yearly,چھماہی
DocType: Communication,Marked As Spam,سپیم کے طور پر نشان لگا دیا گیا
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},فائل URL کے ساتھ کچھ مسئلہ ہے: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,درخت
+DocType: Event Producer Document Type,Use Same Name,ایک ہی نام کا استعمال کریں
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,آپ اس رپورٹ کو پرنٹ کرنے کے لئے کی اجازت نہیں ہے
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,صارف کی اجازت
DocType: Workflow State,warning-sign,انتباہ سائن ان کریں
@@ -3886,6 +3925,7 @@ DocType: Workflow State,User,صارف
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",براؤزر ونڈو میں شو عنوان "اپسرگ - عنوان"
DocType: Payment Gateway,Gateway Settings,گیٹ وے کی ترتیبات
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,دستاویز کی قسم میں متن
+DocType: Event Sync Log,Event Sync Log,واقعہ کی مطابقت پذیری لاگ
apps/frappe/frappe/handler.py,Logged Out,لاگ آؤٹ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,مزید ...
DocType: System Settings,User can login using Email id or Mobile number,یوزر کے ای میل ID یا موبائل نمبر کا استعمال کرتے ہوئے میں لاگ ان کر سکتے ہیں
@@ -3925,12 +3965,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,اندر نہیں
DocType: Workflow State,star,ستارہ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,حب
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,اگر اس کی جانچ پڑتال کی گئی ہے تو دستاویزات کا وہی نام ہوگا جیسا کہ ایونٹ پروڈیوسر کی سائٹ پر ہے
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,اقدار کوما سے علیحدہ
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},قسم کرنسی کے لئے زیادہ سے زیادہ چوڑائی قطار میں 100px ہے {0}
apps/frappe/frappe/config/website.py,Content web page.,مواد ویب کے صفحے.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ایک نئے کردار میں شامل
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,ویب پیج ملاحظہ کریں
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,نئی تفویض
+DocType: Event Consumer Document Type,Approved,منظور
DocType: Google Contacts,Last Sync On,آخری مطابقت پذیری
DocType: Deleted Document,Deleted Document,حذف شدہ دستاویز
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,افوہ! کچھ غلط ہو گیا
@@ -3982,7 +4024,6 @@ DocType: DocField,Unique,منفرد
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} کو {1} پر سراہا گیا
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,جزوی کامیابی
DocType: Email Account,Service,سروس
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,سیٹ اپ> صارف
DocType: File,File Name,فائل کا نام
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),تلاش نہیں کیا {0} کے لئے {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},ریس: {0}
@@ -3994,11 +4035,10 @@ DocType: Calendar View,Calendar View,کیلنڈر دیکھیں
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,میں ترمیم کی شکل
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,مکمل رجسٹریشن
DocType: GCalendar Settings,Enable,فعال
-DocType: Google Maps Settings,Home Address,گھر کا پتہ
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),آپ کو صرف ایک بار میں 5000 ریکارڈز تک اپ لوڈ کر سکتے. (بعض صورتوں میں کم ہو سکتی ہے)
DocType: Report,"output in the form of `data = [columns, result]`",آؤٹ پٹ `ڈیٹا = [کالم ، نتیجہ]` کی شکل میں
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,قابل اطلاق دستاویز کی اقسام۔
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,صارف کے اسائنمنٹس کیلئے قواعد مرتب کریں۔
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,صارف کے اسائنمنٹس کیلئے قواعد مرتب کریں۔
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},کیلئے ناکافی اجازت {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},کیلئے ناکافی اجازت {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),رپورٹ نجات نہیں پائی تھی (غلطیاں تھیں)
diff --git a/frappe/translations/uz.csv b/frappe/translations/uz.csv
index d0c059dd03..c396ee14a8 100644
--- a/frappe/translations/uz.csv
+++ b/frappe/translations/uz.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Ushbu rol foydalanuvchi uchun foydalanuvchi ruxsatlarini yangilaydi
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},{0} nomini o'zgartirish
DocType: Workflow State,zoom-out,yiriklashtirish
-DocType: Data Import Beta,Import Options,Import parametrlari
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Uning namunasi ochiq bo'lganida {0} ochilmaydi
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,{0} jadvali bo'sh bo'lishi mumkin emas
DocType: SMS Parameter,Parameter,Parametr
@@ -82,7 +81,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,{0}
DocType: DocType,Is Published Field,Maydon e'lon qilinadi
DocType: GCalendar Settings,GCalendar Settings,GCalendar sozlamalari
DocType: Email Group,Email Group,E-pochta guruhi
-apps/frappe/frappe/__init__.py,Only for {},Faqat {} uchun
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Google Calendar - {0} hodisasini Google Taqvimidan o'chirib bo'lmadi, xato kodi {1}."
DocType: Event,Pulled from Google Calendar,Google Taqvimidan tortib olindi
DocType: Note,Seen By,Ko'rilgan
@@ -90,9 +88,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Bir nechta qo'
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Foydalanuvchi Foydalanuvchi Foydalanuvchi emas.
DocType: Energy Point Log,Reverted,Qaytdi
DocType: Success Action,First Success Message,Birinchi muvaffaqiyatli xabar
+DocType: Document Type Mapping,Document Type Mapping,Hujjat turini xaritasi
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Yo'q
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Noto'g'ri qiymat: {0} {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Joylar xususiyatlarini o'zgartirish (yashirish, o'qish, ruxsatnoma va h.k.)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Sizning tadbirlaringizni ishlatadigan sayt.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Qadrlang
DocType: Notification Settings,Document Share,Hujjatlar almashish
DocType: Workflow State,lock,qulflang
@@ -112,11 +112,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Kundalik
DocType: Workflow State,indent-right,indent-o'ng
DocType: Has Role,Has Role,Rolu bor
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Qayta urinish
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Serverda QR kodini saqlab qolish uchun sekundlarda. Min: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: {2} uchun {1} maydon turini indekslab bo'lmaydi
DocType: Dashboard Chart,Timespan,Timespan
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Veb bog'lanish
DocType: Deleted Document,Restored,Qayta tiklandi
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ Tray dasturiga ulanishda xato ...
Raw Print xususiyatidan foydalanish uchun sizga QZ Tray ilovasi o'rnatilishi va ishlashi kerak.
QZ Trayni yuklab olish va o'rnatish uchun shu erni bosing .
Xom bosma haqida ko'proq ma'lumot olish uchun bu erni bosing ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 daqiqa oldin
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Tizim boshqaruvchisidan tashqari, Foydalanuvchi ruxsati bilan o'rnatilgan rollar o'ng Hujjat turi uchun boshqa foydalanuvchilar uchun ruxsatlarni o'rnatishi mumkin."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Mavzuni sozlash
@@ -186,6 +188,7 @@ DocType: Email Account,UNSEEN,UNSEEN
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Fayl menejeri
DocType: Website Settings,"HTML Header, Robots and Redirects","HTML sarlavhasi, robotlar va qayta yo'naltirishlar"
DocType: GCalendar Account,Refresh Token,Qayta tiklash
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Tadbirlar prodyuseri saytiga ulanib bo‘lmadi. Biroz vaqtdan keyin qayta urinib ko'ring.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Ushbu sayt uchun kutilayotgan yoki joriy ishlar mavjud emas
DocType: Webhook,Doc Event,Doc faoliyati
@@ -208,6 +211,7 @@ DocType: Server Script,Script Manager,Skript menejeri
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Harakat yo'q
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Uchinchi tomon ilovalari
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Birinchi foydalanuvchi tizim boshqaruvchisiga aylanadi (uni keyinroq o'zgartirishingiz mumkin).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Siz hisobotingiz filtrlarini o'zgartirishga urinib ko'rishingiz mumkin.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Bugungi kunda voqealar yo'q
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Siz o'zingizga sharh ochib berolmaysiz
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType tanlangan Doc hodisasi uchun Submittable bo'lishi kerak
@@ -238,6 +242,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Siz ushbu hujjatga tegishli elektron pochta xabarlarini yuborishga ruxsat yo'q
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,"Iltimos, tartibida / guruhi uchun {0} dan atleast 1 ustunini tanlang"
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},{0}: {1} uchun ruxsat berilmagan. Cheklangan maydon: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Kompaniya bog'lanmagan
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Sandbox API yordamida to'lovingizni sinovdan o'tkazsangiz buni tekshirib ko'ring
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Siz standart veb-sayt mavzusini o'chirishingiz mumkin emas
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Birinchi {0} yaratish
@@ -258,7 +263,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},{0} yang
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Xuddi shu slayd buyurtmasi bilan {0} bortli slayd allaqachon mavjud
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Hisobotni o'chirib qo'yish
DocType: Translation,Contributed Translation Doctype Name,Hisoblangan tarjima hujjati nomi
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sozlash> Formani sozlash
DocType: PayPal Settings,Redirect To,Qaytish
DocType: Data Migration Mapping,Pull,Torting
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript formati: frappe.query_reports ['REPORTNAME'] = {}
@@ -271,6 +275,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Ruxsat berilmagan
DocType: DocShare,Internal record of document shares,Hujjat aktsiyalarining ichki qayd
DocType: Energy Point Settings,Review Levels,Darajalarni ko'rib chiqish
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sozlash> Foydalanuvchi ruxsati
DocType: Workflow State,Comment,Fikr
DocType: Data Migration Plan,Postprocess Method,Postpesess usuli
DocType: DocType Action,Action Type,Harakat turi
@@ -320,13 +325,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Dam
DocType: Workflow State,remove-circle,olib tashlash
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mening profilim
DocType: Help Article,Beginner,Boshlovchi
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Bu amalga faqat {} uchun ruxsat berilgan
DocType: Contact,Is Primary Contact,Birlamchi aloqa
+DocType: Event Consumer,Event Consumer,Hodisa iste'molchisi
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Sahifaning bosh qismiga qo'shiladigan Javascript.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Qo'shish / Yangilash
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Loyihaviy hujjatlarni chop etishga ruxsat berilmaydi
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Standartlarga asl holatini tiklash
DocType: Workflow,Transition Rules,O'tish qoidalari
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Oldindan ko‘rishda faqat birinchi {0} qator ko‘rsatilmoqda
apps/frappe/frappe/core/doctype/report/report.js,Example:,Misol:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Cheklovlar
DocType: Workflow,Defines workflow states and rules for a document.,Hujjat uchun ish oqimining qoidalarini va qoidalarini belgilaydi.
@@ -475,7 +481,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Till-i takrorlang
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Yangi
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Avval bularni yaratishingiz kerak:
-DocType: Google Maps Settings,Google Maps Settings,Google Xaritalar sozlamalari
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Yuklanmoqda ...
DocType: DocField,Password,Parol
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,"Tizimingiz yangilandi. Iltimos, bir necha daqiqadan keyin yana yangilang"
@@ -567,6 +572,7 @@ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy
DocType: Onboarding Slide,Onboarding Slide,Bortli slayd
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Parol noto'g'ri:
DocType: Print Settings,Send document web view link in email,Hujjat veb-versiyasini havolani elektron pochta orqali yuboring
+DocType: Event Consumer Document Type,Event Consumer Document Type,Hodisa iste'molchisi hujjat turi
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Avvalgi
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,O'tilganlik sanasi:
DocType: LDAP Settings,Require Trusted Certificate,Ishonchli sertifikatni talab qilish
@@ -642,6 +648,7 @@ DocType: Workflow State,volume-down,ovoz balandligi pastga
DocType: Onboarding Slide,Help Links,Yordam havolalari
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Ushbu IP-manzildan kirish taqiqlangan
DocType: Notification Settings,Enable Email Notifications,E-pochta bildirishnomalarini yoqish
+DocType: Document Type Field Mapping,Event Streaming,Voqealar oqimi
apps/frappe/frappe/desk/reportview.py,No Tags,Teglar yo'q
DocType: Email Account,Send Notification to,Bildirishnoma yuborish
DocType: DocField,Collapsible,Katlanabilir
@@ -658,11 +665,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Tomo
apps/frappe/frappe/database/database.py,No conditions provided,Hech qanday sharoit ta'minlanmagan
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y eksa maydonchalari
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,{0} bo'yicha tartiblash maydonida joriy maydon nomi bo'lishi kerak
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Birlamchi manzil shabloni topilmadi. Iltimos, sozlash> Bosib chiqarish va markalash> Manzil shablonidan yangisini yarating."
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Ko'proq
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Yangi yozuv yarating
DocType: Contact,Sales Manager,Savdo menedjeri
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Nomni o'zgartiring
DocType: Print Format,Format Data,Ma'lumotlarni formatlash
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} noto‘g‘ri hisobot formati. Hisobot formati quyidagilardan biriga ega bo'lishi kerak {1}
DocType: List Filter,Filter Name,Filtrni nomi
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Xuddi shunday
DocType: Assignment Rule,Automation,Avtomatlashtirish
@@ -681,6 +690,7 @@ DocType: User,Reset Password Key,Parol kalitini qayta tiklash
DocType: Dashboard Chart,All Time,Hamma vaqt
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0} uchun noqonuniy hujjat holati
DocType: Email Account,Enable Auto Reply,Avtomatik javob berish funksiyasini yoqish
+apps/frappe/frappe/desk/query_report.py,No data to export,Eksport qilish uchun ma’lumot yo‘q
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Ko'rilmagan
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Bitta bosib chiqarish formatiga bir nechta printer ulanib bo'lmadi.
DocType: Workflow State,zoom-in,yaqinlashtirish
@@ -831,6 +841,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Foydalanuv
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Birinchidan
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Tarjimalarni yangilang
DocType: Error Snapshot,Exception,Istisno
+DocType: Event Consumer,Event Consumer Document Types,Voqealar iste'molchisi hujjatlari turlari
DocType: Email Account,Use IMAP,IMAP-dan foydalaning
DocType: Activity Log,Activity Log,Faoliyat jurnali
DocType: View Log,Viewed By,Ko'rilgan
@@ -869,6 +880,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Jur
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Grafiklarni sozlash
DocType: User,Last IP,Oxirgi IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,"Iltimos, e-pochtangizga mavzu qo'shing"
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Xato operatsiyalar
DocType: Data Migration Connector,Data Migration Connector,Ma'lumotlarni uzatish ulagichi
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} qaytarildi {1}
DocType: Email Account,Track Email Status,Elektron pochta holatini kuzating
@@ -899,6 +911,7 @@ DocType: Email Queue,Attachments,Qo'shimchalar
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Ushbu hujjatga kirish uchun sizda ruxsat yo'q
DocType: Language,Language Name,Til nomi
DocType: Email Group Member,Email Group Member,E-pochta guruhi a'zosi
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Foydalanuvchi bilan bog'liq elektron pochta hisobi yo'q. Iltimos, foydalanuvchi> Elektron pochta qutisi ostida hisob qaydnomasini qo'shing."
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Hisobingiz qulflangan va {0} sekunddan so'ng davom etadi
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Foydalanuvchi ruxsati foydalanuvchilarni muayyan yozuvlarga cheklash uchun ishlatiladi.
DocType: Notification,Value Changed,Qiymati o'zgargan
@@ -990,6 +1003,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Jarayonni yakun
DocType: Help Article,Expert,Mutaxassis
DocType: Workflow State,circle-arrow-right,aylana-o'q-o'ng
DocType: Role Profile,Role Profile,Rolik profili
+DocType: Document Type Mapping,Remote Document Type,Masofadan hujjat turi
apps/frappe/frappe/permissions.py,Document Type is not importable,Hujjat turini import qilib bo‘lmaydi
DocType: LDAP Settings,LDAP Server Url,LDAP Server URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"{0} ochiq bo'lsa, misolni ochib bo'lmadi"
@@ -1074,7 +1088,7 @@ DocType: Web Form,Allow Print,Bosib chiqarishga ruxsat berish
DocType: Communication,Clicked,Tugatgan
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Bekor qilish
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} uchun ruxsat yo'q
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Iltimos, standart elektron pochta hisob qaydnomasini O'rnatish> Elektron pochta> Elektron pochta hisob qaydnomasini o'rnating"
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},{1} -dan faqat birinchi {0} qatorlar ko'rsatilmoqda.
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Jo'natish rejalashtirilmoqda
DocType: DocType,Track Seen,Kuzatib boring
DocType: Dropbox Settings,File Backup,Faylni zaxiralash
@@ -1144,6 +1158,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,tan
DocType: Data Export,Filter List,Filtr ro'yxati
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Voqealar konfiguratsiyasi
DocType: Email Account,Auto Reply Message,Avtomatik javob yozish
DocType: Data Migration Mapping,Condition,Vaziyat
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} soat oldin
@@ -1203,9 +1218,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Yuboruvchi s
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Fikr bildirish uchun kirish
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Ushbu satrning ostidagi ma'lumotlarni kiritishni boshlang
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},{0} uchun o'zgargan qiymatlar
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","Email identifikatori noyob bo'lishi kerak, Email qaydnomasi allaqachon mavjud \ {0} uchun"
DocType: Workflow State,retweet,retweet
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Taqqoslash uchun> 5, <10 yoki = 324 dan foydalaning. Diapazon uchun 5:10 dan foydalaning (5 va 10 orasidagi qiymatlar uchun)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Moslash ...
DocType: Print Format,Align Labels to the Right,Yorliqlarni o'ngga tekislang
DocType: Assignment Rule,Disabled,O'chirib qo'yildi
@@ -1253,8 +1267,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klaviatura yorliqlari
DocType: Post,Comments,Sharhlar
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Tasdiqlash
+DocType: Event Sync Log,Update Type,Yangilash turi
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Haqiqiylik tekshirilmoqda ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Hammasini ixchamlashtirish
+DocType: Event Producer,Last Update,So'nggi yangilanish
apps/frappe/frappe/www/login.html,Forgot Password?,Parolni unutdingizmi?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1295,6 +1311,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Jadval may
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Asoslangan ustunlar
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{1}, {2} dan {0} ni import qilish"
DocType: Workflow State,move,harakatlaning
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Ushbu sayt uchun voqea iste’molchisi yoki voqea iste’molchisini yaratish amalga oshmadi.
apps/frappe/frappe/model/document.py,Action Failed,Amal bajarilmadi
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Foydalanuvchi uchun
DocType: View Log,View log,Jurnalni ko'rish
@@ -1457,6 +1474,7 @@ DocType: DefaultValue,Key,Kalit
DocType: Address,Contacts,Kontaktlar
DocType: System Settings,Setup Complete,O'rnatish tugallandi
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Hujjatning barcha aktsiyalari haqida hisobot
+DocType: Event Consumer,Callback URL,Qayta terish URL manzili
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Import shablonlari .csv, .xlsx yoki .xls turida bo'lishi kerak"
apps/frappe/frappe/www/update-password.html,New Password,Yangi Parol
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Filtr {0} yo'q
@@ -1522,7 +1540,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,Muv
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; holatda ruxsat berilmaydi
DocType: Async Task,Async Task,Async vazifasi
DocType: Workflow State,picture,rasm
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,To'ldiring
+DocType: Scheduled Job Log,Complete,To'ldiring
DocType: DocType,Image Field,Rasm maydoni
DocType: Print Format,Custom HTML Help,Maxsus HTML yordami
DocType: LDAP Settings,Default Role on Creation,Yaratilishdagi odatiy rol
@@ -1548,6 +1566,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Qidiruv bo'yicha yordam
DocType: Milestone,Milestone Tracker,Milestone Tracker
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Ro'yxatdan o'tgan, lekin o'chirilgan"
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Manzilni kompaniya bilan bog'lash kerak. Quyidagi havolalar jadvaliga kompaniya uchun qator qo'shing.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Ushbu hujjat uchun Avtomatik takrorlash o'chirilgan.
DocType: DocType,Hide Copy,Nusxani yashirish
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Barcha rollarni tozalang
@@ -1586,6 +1605,7 @@ DocType: Bulk Update,Field,Yo'l
DocType: Communication,Received,Qabul qilingan
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",""Before_insert", "after_update" va hokazo (tanlangan DocTypega bog'liq) kabi joriy usullarni ishga tushirish"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1} qiymatining o'zgarishi
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},Elektron pochta hisob qaydnomasini sozlash uchun parolingizni kiriting: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Tizim menejerini ushbu foydalanuvchiga qo'shish
DocType: Chat Message,URLs,URL manzillari
DocType: Data Migration Run,Total Pages,Jami sahifalar
@@ -1593,7 +1613,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Rasm qo'shish
DocType: Workflow State,list-alt,ro'yxat-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Parol yangilandi
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sozlash> Foydalanuvchi ruxsati
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Kirishingizni tasdiqlash bo'yicha qadamlar
apps/frappe/frappe/utils/password.py,Password not found,Parol topilmadi
DocType: Webhook,Webhook Secret,Webhook siri
@@ -1609,8 +1628,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API sozlam
DocType: Report,Query Report,So'rov haqida hisobot
DocType: User,Set New Password,Yangi parolni o'rnating
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} uchun ruxsat berilmagan
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",% s joriy hisobot formati emas. Hisobot formati quyidagi% slaridan biri bo'lishi kerak
DocType: Chat Message,Chat,Chat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},{0} bilan belgilangan hujjatlar topilmadi
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP guruhini xaritalash
@@ -1645,7 +1662,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Parolingi
DocType: Dropbox Settings,Dropbox Access Secret,Dropboxga kirish maxfiyligi
DocType: Tag Link,Document Title,Hujjat nomi
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Majburiy)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yil oldin
DocType: Social Login Key,Social Login Provider,Ijtimoiy kirish provayder
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Boshqa izoh qo'shing
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Faylda hech qanday ma'lumot topilmadi. Yangi faylni ma'lumotlar bilan qayta joylang.
@@ -1692,6 +1708,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Yangi s
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 yil
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,{0} butunlay o'chirib tashlansinmi?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Xuddi shu fayl allaqachon qaydga qo'shilgan
+DocType: Event Sync Log,Synced,Sinxronlashtirildi
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,"{0} joriy ish oqimi holati emas. Iltimos, ishchi oqimni yangilang va qaytadan urinib ko'ring."
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} ball berdi
DocType: Workflow State,wrench,kaliti
@@ -1794,6 +1811,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,F
DocType: Web Form Field,Max Length,Maksimal uzunligi
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,xarita belgisi
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Ikki hujjat o'rtasidagi xaritalarni tuzish konfiguratsiyasi.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Muammo berish
DocType: Event,Repeat this Event,Ushbu tadbirni takrorlang
DocType: Address,Maintenance User,Xizmat foydalanuvchisi
@@ -1853,6 +1871,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,E-pochta manzilini tekshiring
DocType: Auto Repeat,Reference Document Type,Hujjatning turi
DocType: ToDo,Sender,Yuboruvchi
+DocType: Event Consumer,Incoming Change,Kiruvchi o'zgartirish
DocType: Google Drive,Backup Folder Name,Zaxira papka nomi
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,"{0} bildirishnomasini baholashda xatolik yuz berdi. Iltimos, shablonni tuzating."
DocType: GSuite Settings,Google Apps Script,Google Apps skripti
@@ -1915,9 +1934,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Chop eti
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,So'rovni tasdiqlash uchun quyidagi havolani bosing
DocType: Workflow State,align-left,align-left
DocType: Onboarding Slide,Action Settings,Harakat sozlamalari
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sozlash> Foydalanuvchi
DocType: User,Defaults,Standartlar
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Taqqoslash uchun> 5, <10 yoki = 324 dan foydalaning. Diapazon uchun 5:10 dan foydalaning (5 va 10 orasidagi qiymatlar uchun)."
DocType: Energy Point Log,Revert Of,Qaytarish
+DocType: Document Type Mapping,Field Mapping,Maydon xaritasi
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Mavjud bilan birlashtirilsin
DocType: User,Birth Date,Tug'ilgan sana
DocType: Communication Link,Link Title,Bog'lanish nomi
@@ -1945,6 +1965,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Tag link
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Zanjirning yaxlitligi
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Sinovda
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 Valyuta = [?] Fraktsiya Masalan, 1 AQSh dollari = 100 Cent"
DocType: Data Import,Partially Successful,Qisman muvaffaqiyatli
@@ -1954,6 +1975,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP guruh xaritalari
DocType: Chat Message Attachment,Chat Message Attachment,Tezkor xabar birikmasi
DocType: LDAP Settings,Path to CA Certs File,CA Certs fayliga yo'l
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Agar hujjat ishlab chiqaruvchi va iste'molchining oxirida turli xil maydon nomlariga ega bo'lsa, buni tekshiring va Xaritani o'rnating"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Barcha bog'lanish parametrlarini o'qishga ruxsat berish
DocType: DocType,Database Engine,Ma'lumotlar bazasi tizimi
@@ -2086,6 +2108,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Eslatma
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Xato hisoboti
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Ma'lumotlarni CSV / Excel formatida eksport qilish.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Hujjat turi maydonini xaritasi
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Global qidirish hujjatlarini sozlash.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Siz foydalanishingiz mumkin bo'lgan haqiqiylikni tekshirish dasturlari quyidagilardir:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} allaqachon mavjud. Boshqa nomni tanlang
@@ -2159,7 +2182,6 @@ DocType: Workflow State,Upload,Yuklash
DocType: User Permission,Advanced Control,Murakkab boshqaruv
DocType: System Settings,Date Format,Sana formati
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Nashr qilinmadi
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Birlamchi manzil shabloni topilmadi. Iltimos, sozlash> Bosib chiqarish va markalash> Manzil shablonidan yangisini yarating."
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Ish yuritish uchun harakatlar (masalan, Tasdiqlash, Bekor qilish)."
DocType: Data Import,Skip rows with errors,Xatlardagi satrlarni o'tkazib yuborish
DocType: Workflow State,flag,bayroq
@@ -2222,6 +2244,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Biror hujjat va davlatni o'zgartirishga tayinlangan roli uchun ruxsat berilgan davlatlarni anglatadi.
DocType: Data Migration Connector,Database Name,Ma'lumotlar bazasi nomi
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Yangilash formasini
+DocType: Event Producer,Event Producer,Tadbirlar prodyuseri
DocType: DocField,Select,Tanlang
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,To'liq jurnalni ko'rish
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Oddiy Python iborasi, masalan: status == 'Ochish' va == 'Bug' deb yozing."
@@ -2338,12 +2361,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Kirishni teksh
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Bunga qo'shish
DocType: Footer Item,Company,Kompaniya
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},O'rtacha {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Muvaffaqiyatli bitimlar
DocType: Scheduled Job Log,Scheduled,Rejalashtirilgan
DocType: User,Logout from all devices while changing Password,Parol o'zgartirilayotganda barcha qurilmalardan chiqish
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Parolni tasdiqlang
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Xatolar bor edi
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Google sozlamalarida Client ID va Client sirini kiriting.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Yoping
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","Elektron pochta identifikatori noyob bo'lishi kerak, {0} uchun elektron pochta hisob qaydnomasi allaqachon mavjud"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Docstatusni 0 dan 2 gacha o'zgartira olmaydi
DocType: File,Attached To Field,Tegishli maydonga
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Yangilash
@@ -2449,6 +2474,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Oy
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Hujjat havolasini yuborish uchun Reference: {{ reference_doctype }} {{ reference_name }} qo'shing
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Faqatgina hujjatda ishtirok etgan foydalanuvchilar ro'yxati keltirilgan
DocType: DocField,Fetch From,Fetch From
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sozlash> Formani sozlash
apps/frappe/frappe/modules/utils.py,App not found,Ilova topilmadi
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},{0} bolani hujjatiga qarshi yaratib bo'lmaydi: {1}
DocType: Social Login Key,Social Login Key,Ijtimoiy kirish usuli
@@ -2460,7 +2486,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Chat xa
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Ijtimoiy uy
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Qo'shib qo'yish so'ng {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Share bilan {0}
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-pochta hisobini sozlash uchun quyidagi parolni kiriting:
DocType: Workflow State,hand-up,topshirish
DocType: Blog Settings,Writers Introduction,Yozuvchilar kirish
DocType: Address,Phone,Telefon
@@ -2519,7 +2544,7 @@ DocType: Web Page,Insert Style,Uslubni kiriting
DocType: Prepared Report,Error Message,Xato xabari
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Yangi hisobot nomi
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Haftaning kunlarini yashirish
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Avtomatik ravishda takrorlanadigan hujjatlarni yaratadi.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Avtomatik ravishda takrorlanadigan hujjatlarni yaratadi.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Bu
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,info-belgisi
@@ -2527,7 +2552,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0} uch
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Ushbu pul qanday shakllantirilishi kerak? Agar sozlanmagan bo'lsa, tizimdagi standartlarni ishlatadi"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,{0} hujjatlarni yuborish kerakmi?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Zaxiraga ega bo'lish uchun siz tizimga kirishingiz va tizim boshqaruvchisi rolini bajarishingiz kerak.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","QZ Tray dasturiga ulanishda xato ...
Raw Print xususiyatidan foydalanish uchun sizga QZ Tray ilovasi o'rnatilishi va ishlashi kerak.
QZ Trayni yuklab olish va o'rnatish uchun shu erni bosing .
Xom bosma haqida ko'proq ma'lumot olish uchun bu erni bosing ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Printer xaritasi
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Iltimos, biriktirishdan oldin saqlang."
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Barcha bog'langan hujjatlarni bekor qilmoqchimisiz?
@@ -2557,6 +2581,7 @@ DocType: Role Permission for Page and Report,Set Role For,Rolni o'rnating
DocType: GCalendar Account,The name that will appear in Google Calendar,Google Taqvimda ko'rinadigan ism
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,{0} bilan to'g'ridan-to'g'ri xona mavjud.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Yangilash ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},"Iltimos, Dashboard Chart uchun filtr qiymatlarini tekshiring: {}"
DocType: Event,Starts on,Boshlanadi
DocType: System Settings,System Settings,Tizim sozlamalari
DocType: GCalendar Settings,Google API Credentials,Google API sertifikatlari
@@ -2581,6 +2606,7 @@ DocType: Workflow State,ok-sign,OK-belgisi
apps/frappe/frappe/config/settings.py,Deleted Documents,O'chirilgan hujjatlar
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV formati katta-kichikligi sezgir
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,Stol belgisi allaqachon mavjud
+DocType: Event Consumer Document Type,Approval Status,Tasdiqlash maqomi
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Slaydlar qanday domenlar ko'rsatilishini belgilang. Hech narsa ko'rsatilmagan bo'lsa, slayd barcha domenlarda sukut bo'yicha ko'rsatiladi."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Duplikat
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: {2} qatoridagi {1} maydonchasi odatiy holisiz yashirin va majburiy bo'lishi mumkin emas
@@ -2600,6 +2626,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Yordam Maqolalar
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Turi:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,To'lovingiz amalga oshmadi.
+DocType: Event Producer,Producer URL,Ishlab chiqaruvchining URL manzili
DocType: Comment,Unshared,Ajralmagan
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Module topilmadi
@@ -2611,6 +2638,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,Topshirish tugadi
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Ommaviy tahrir {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Hisobotni yuklab olish
+apps/frappe/frappe/model/workflow.py,Workflow Status,Ish oqimi holati
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Faol emas
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Faqatgina Administratorga Dashboard Chart manbalarini yaratishga ruxsat berilgan
DocType: About Us Settings,Settings for the About Us Page,Biz haqimizda haqida sozlamalar
@@ -2619,6 +2647,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,Cho
DocType: Notification Settings,Energy Points,Energiya punktlari
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Vaqt {0} formatda bo'lishi kerak: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,"masalan, pop.gmail.com / imap.gmail.com"
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}: takroriy hujjatni biriktirib bo'lmadi. Avtomatik takrorlash to'g'risida bildirishnoma elektron pochtasida hujjatlarni biriktirish uchun "Chop etish" sozlamalarida {1} -ni yoqing
DocType: User,Generate Keys,Kalitlarni yaratish
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Bu ma'lumotlaringizni butunlay yo'q qiladi.
DocType: DocType,View Settings,Sozlamalarni ko'rish
@@ -2669,6 +2698,7 @@ DocType: User Social Login,User Social Login,Foydalanuvchining ijtimoiy kirish
DocType: Contact,All,Hammasi
DocType: Email Queue,Recipient,Qabul qiluvchi
DocType: Webhook,Webhook Security,Veb xavfsizligi
+DocType: Event Sync Log,Producer Document Name,Ishlab chiqaruvchi hujjat nomi
DocType: Communication,Has Attachment,Attachaga ega
DocType: Address,Sales User,Savdo foydalanuvchisi
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Bosib chiqarish formatlarini yaratish va sozlash uchun asbobni sudrab olib tashlash.
@@ -2704,6 +2734,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Bolalar jadvallari boshqa DocTypes-da panjara sifatida ko'rsatilgan
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Avtomatik E-pochtani sozlash
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Kerakli hodisalarga obuna bo'lishni xohlagan sayt.
DocType: Chat Profile,Message Preview,Xabarni ko'rish
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Bu 10 ta umumiy parol.
DocType: User,User Defaults,Foydalanuvchi parametrlari
@@ -2736,6 +2767,7 @@ DocType: Dashboard Chart,Last Synced On,So‘nggi sinxronlash yoqilgan
DocType: Comment,Comment Type,Fikr turi
DocType: OAuth Client,OAuth Client,OAuth mijozi
DocType: Assignment Rule,Users,Foydalanuvchilar
+DocType: Document Type Mapping,Local Document Type,Mahalliy hujjat turi
DocType: Address,Odisha,Odisha
DocType: Report,Report Type,Hisobot turi
DocType: DocField,Signature,Imzo
@@ -2777,6 +2809,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} o'z vazifasini o'z zimmasiga olgan: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Mamlakatingiz
DocType: Assignment Rule Day,Sunday,yakshanba
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Iste'molchilarga ega bo'lgan hujjatlar uchun Event Producer saytida barcha qo'shimchalar, yangilanishlar va o'chirishlar jurnalini yuritadi."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Maydon nomi {1} dan biri bo'lolmaydi
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Tayanchlar
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,To'r ko'rinishida
@@ -2922,7 +2955,6 @@ DocType: Web Page,Sidebar and Comments,Yon panel va sharhlar
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Bekor qilgandan keyin hujjatni o'zgartirsangiz va uni saqlasangiz, eski raqam versiyasi bo'lgan yangi raqamni oladi."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","{0} hujjatni biriktirishga ruxsat berilmadi, iltimos Print Settings'da {0} uchun Chop etish uchun ruxsat berishni yoqing"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Elektron pochta qayd hisobi sozlanmadi. Iltimos, sozlash> Elektron pochta> Elektron pochta hisob qaydnomasidan yangi elektron pochta qayd yozuvini yarating"
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},{0} da hujjatni ko'ring
DocType: Stripe Settings,Publishable Key,Nashr etilgan kalit
apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Importni boshlang
@@ -2999,7 +3031,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Ma'lumot:
DocType: Custom Field,Permission Level,Ruxsat darajasi
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Yuborish, Bekor qilish, Yozmasdan o'zgartirish mumkin emas"
DocType: List View Setting,Disable Count,Hisobni o‘chirib qo‘yish
-DocType: Google Maps Settings,Client Key,Mijoz kalitlari
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Ilovani o'chirmoqchimisiz?
apps/frappe/frappe/__init__.py,Thank you,rahmat
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Saqlash
@@ -3125,6 +3156,7 @@ DocType: Workflow Document State,Only Allow Edit For,Faqat tahrirlashga ruxsat b
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Google Drive-ga zaxiralash
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},Majburiy maydon: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Ismingiz
+DocType: Event Producer Document Type,Event Producer Document Type,Tadbir ishlab chiqaruvchisi hujjat turi
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Ulanish muvaffaqiyati
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Slayd turidagi bortli slaydni davom ettirish allaqachon mavjud.
@@ -3195,6 +3227,7 @@ DocType: Address,Postal Code,Pochta Indeksi
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Aloqa aloqasi
DocType: Translation,Contributed,Hissa qo'shgan
apps/frappe/frappe/config/customization.py,Form Customization,Shaklni sozlash
+DocType: Event Update Log,Event Update Log,Voqealarni yangilash jurnali
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Faol sessiyalar yo'q
DocType: Web Form,Route to Success Link,Muvaffaqiyatga yo'nalish aloqasi
DocType: Onboarding Slide Field,Right,To'g'ri
@@ -3221,7 +3254,7 @@ DocType: Website Settings,Chat Operators,Chat operatorlari
DocType: S3 Backup Settings,ca-central-1,ca-markaziy-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,"Iltimos, faylda bo'sh ustunlar yo'qligiga ishonch hosil qiling."
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Hujjat bir necha bosqichlarni bosib o'tgan bo'lsa, uning hayotiy tsiklidagi bosqichlarni kuzatib boradi."
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,"Hujjat bir necha bosqichlarni bosib o'tgan bo'lsa, uning hayotiy tsiklidagi bosqichlarni kuzatib boradi."
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Fayllar nomini o'zgartiring va kontrolörlerde kodni o'zgartiring, iltimos tekshiring!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,"Iltimos, profilingiz elektron pochta manziliga ega ekanligiga ishonch hosil qiling"
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Ushbu shaklda saqlanmagan o'zgarishlar mavjud. Davom etishdan oldin saqlab qo'ying.
@@ -3248,7 +3281,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,API sirini saqlash:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Bekor qilingan hujjatni bog'lay olmadingiz: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,"Standart hisobotni tahrirlab bo'lmadi. Iltimos, takrorlang va yangi hisobot tuzing"
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address",Kompaniya sizning kompaniyangiz manzili bo'lgani uchun majburiydir
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Misol uchun: hujjat identifikatorini kiritish zarur bo'lsa, {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},{0} uchun jadval ustunlarini tanlang
DocType: Custom Field,Options Help,Tanlovlar yordami
@@ -3256,7 +3288,6 @@ DocType: Footer Item,Group Label,Guruh yorlig'i
DocType: Kanban Board,Kanban Board,Kanban kengashi
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontaktlar sozlandi.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 yozuv eksport qilinadi
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,"Foydalanuvchi bilan bog'liq elektron pochta hisobi yo'q. Iltimos, foydalanuvchi> Elektron pochta qutisi ostida hisob qaydnomasini qo'shing."
DocType: DocField,Report Hide,Hide hisoboti
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},{0} uchun daraxt ko'rinishi mavjud emas
DocType: DocType,Restrict To Domain,Domen uchun cheklov
@@ -3322,7 +3353,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: {2} turdagi {1} maydon majburiy emas
DocType: System Settings,In Days,Kunlarda
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Miss
+DocType: Event Producer Document Type,Has Mapping,Xaritaga ega
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,"Iltimos, ko'rsating"
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Noto‘g‘ri filtr qiymati
DocType: Comment,Bot,Bot
DocType: Help Article,Help Article,Yordam Maqola
DocType: Page,Page Name,Sahifa nomi
@@ -3430,7 +3463,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Bosib chiqarish formati
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Grid ko'rinishini almashtirish
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Keyingi yozuvga o'ting
-DocType: System Settings,Time Format,Vaqt formati
+DocType: Country,Time Format,Vaqt formati
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,To'lov shlyuzi hisob ma'lumotlari noto'g'ri
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Bu faqat ba'zi bir xatolarga ega bo'lgan qatorlar bilan yaratilgan shablon fayli. Ushbu faylni tuzatish va import qilish uchun ishlatishingiz kerak.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Hujjat turlari va rollarda ruxsatlarni o'rnatish
@@ -3752,6 +3785,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Foydalanuvchi nomidan foydalanib kirishga ruxsat berish
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Hisobotni yoqish
DocType: DocField,Display Depends On,Displey-ga bog'liq
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yil oldin
DocType: Social Login Key,API Endpoint,API Endpoint
DocType: Web Page,Insert Code,Kodni kiriting
DocType: Data Migration Run,Current Mapping Type,Joriy xaritalash turi
@@ -3805,6 +3839,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,E-p
apps/frappe/frappe/www/login.html,Or login with,Yoki bilan kiring
DocType: Error Snapshot,Locals,Mahalliy aholi
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},{1} da {0} orqali yuborilgan: {2}
+DocType: Event Producer,Event Producer Document Types,Tadbir ishlab chiqaruvchisi hujjat turlari
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Iltimos, standart elektron pochta hisob qaydnomasini O'rnatish> Elektron pochta> Elektron pochta hisob qaydnomasini o'rnating"
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Guruhni tanlang ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"Masalan, (55 + 434) / 4 yoki = Math.sin (Math.PI / 2) ..."
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} talab qilinadi
@@ -3836,9 +3872,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar sinxronlash identifikatori
DocType: Prepared Report,Report Start Time,Hisobotni boshlash vaqti
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Ma'lumotlarni eksport qilish
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Sinxronlash holati va sinxronlash muvaffaqiyatsiz bo'lgan taqdirda Resync tugmasi bilan birga iste'mol qilingan har bir hodisaning jurnalini yuritadi.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Ustunlar-ni tanlang
DocType: Translation,Source Text,Manba matni
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,"Bu orqa hisobot. Iltimos, mos filtrlarni o'rnating va keyin yangisini yarating."
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Elektron pochta qayd hisobi sozlanmadi. Iltimos, sozlash> Elektron pochta> Elektron pochta hisob qaydnomasidan yangi elektron pochta qayd yozuvini yarating"
apps/frappe/frappe/www/login.py,Missing parameters for login,Kirish uchun parametrlar yo'q
DocType: Workflow State,folder-open,papkani ochish
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Taqdim etilgandan so'ng, topshiriladigan hujjatlar o'zgartirilmaydi. Ular faqat bekor qilinishi va o'zgartirilishi mumkin."
@@ -3918,6 +3956,7 @@ DocType: Blog Post,Published On,Chop etildi
DocType: Contact,Gender,Jins
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Majburiy ma'lumot yo'q:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} sizning ballaringizni {1} ga qaytardi
+DocType: Event Consumer,Event Subscriber,Tadbir obunachisi
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,URL so'rovini tekshiring
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Bitta so'rovga faqat 200 ta qo'shimchalar ruxsat berilgan
DocType: Footer Item,URL,URL
@@ -3930,6 +3969,7 @@ DocType: Auto Email Report,Half Yearly,Yarim yillik
DocType: Communication,Marked As Spam,Spam sifatida belgilandi
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Fayl urlida muammo mavjud: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Daraxt
+DocType: Event Producer Document Type,Use Same Name,Xuddi shu nomdan foydalaning
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Ushbu hisobotni chop etishga ruxsat yo'q
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Foydalanuvchi ruxsati
DocType: Workflow State,warning-sign,ogohlantirish belgisi
@@ -3939,6 +3979,7 @@ DocType: Workflow State,User,Foydalanuvchi
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Brauzer oynasida "Prefiks - sarlavha"
DocType: Payment Gateway,Gateway Settings,Gateway sozlamalari
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,hujjat turidagi matn
+DocType: Event Sync Log,Event Sync Log,Voqealarni sinxronlash jurnali
apps/frappe/frappe/handler.py,Logged Out,Chiqdi
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Ko'proq...
DocType: System Settings,User can login using Email id or Mobile number,"E-mail identifikatoridan yoki mobil raqamidan foydalanib, foydalanuvchi login qilishi mumkin"
@@ -3978,12 +4019,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,In emas
DocType: Workflow State,star,yulduz
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Hub
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Agar bu belgilansa, hujjatlar Voqealar ishlab chiqaruvchisi saytidagi kabi nomga ega bo'ladi"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,qiymatlari vergul bilan ajralib turadi
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Valyuta uchun maksimal kenglik Valyuta ({0} qatorida 100px)
apps/frappe/frappe/config/website.py,Content web page.,Kontent veb-sahifasi.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Yangi rolni qo'shing
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Veb-sahifaga tashrif buyuring
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Yangi topshiriq
+DocType: Event Consumer Document Type,Approved,Tasdiqlandi
DocType: Google Contacts,Last Sync On,So'nggi sinxronlash yoqilgan
DocType: Deleted Document,Deleted Document,O'chirilgan hujjat
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Xato! Nimadir noto'g'ri bajarildi
@@ -4035,7 +4078,6 @@ DocType: DocField,Unique,Noyob
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} {1} da baholandi
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Qisman muvaffaqiyat
DocType: Email Account,Service,Xizmat
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sozlash> Foydalanuvchi
DocType: File,File Name,Fayl nomi
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),{0} ({1}) uchun {0} topilmadi
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0}
@@ -4047,11 +4089,10 @@ DocType: Calendar View,Calendar View,Taqvim versiyasi
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Formatni tahrirlash
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,To'liq ro'yxatga olish
DocType: GCalendar Settings,Enable,Yoqish
-DocType: Google Maps Settings,Home Address,Uy manzili
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Siz faqatgina bitta 5000 ta yozuvni yuklashingiz mumkin. (ayrim hollarda kamroq bo'lishi mumkin)
DocType: Report,"output in the form of `data = [columns, result]`","`ma'lumotlar = [ustunlar, natija]` ko'rinishidagi chiqish"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Qo'llaniladigan hujjatlar turlari
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Foydalanuvchi topshiriqlari uchun qoidalarni sozlang.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Foydalanuvchi topshiriqlari uchun qoidalarni sozlang.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0} uchun yetarli ruxsat yo'q
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Hisobot saqlanmadi (xatolar bor edi)
apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Sarlavha mazmunini o'zgartirib bo'lmaydi
diff --git a/frappe/translations/vi.csv b/frappe/translations/vi.csv
index 47c9b87bc4..a09a8304f8 100644
--- a/frappe/translations/vi.csv
+++ b/frappe/translations/vi.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,Vai trò này Quyền cập nhật người dùng cho một người sử dụng
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Đổi tên {0}
DocType: Workflow State,zoom-out,Thu nhỏ
-DocType: Data Import Beta,Import Options,Tùy chọn nhập
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Không thể mở {0} khi cá thể của nó là mở
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Bảng {0} không thể để trống
DocType: SMS Parameter,Parameter,Tham số
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,Hủ
DocType: DocType,Is Published Field,Được đăng Dòng
DocType: GCalendar Settings,GCalendar Settings,Cài đặt GCalendar
DocType: Email Group,Email Group,Email Nhóm
-apps/frappe/frappe/__init__.py,Only for {},Chỉ dành cho {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.","Lịch Google - Không thể xóa Sự kiện {0} khỏi Lịch Google, mã lỗi {1}."
DocType: Event,Pulled from Google Calendar,Kéo từ Lịch Google
DocType: Note,Seen By,Nhìn thấy bởi
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Thêm Phức Hợp
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,Không phải hình ảnh người dùng hợp lệ.
DocType: Energy Point Log,Reverted,Hoàn nguyên
DocType: Success Action,First Success Message,Thông điệp thành công đầu tiên
+DocType: Document Type Mapping,Document Type Mapping,Ánh xạ loại tài liệu
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,Không giống
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},Giá trị không đúng: {0} phải {1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Tính chất thay đổi lĩnh vực (ẩn, chỉ đọc, cho phép vv)"
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,Các trang web đang tiêu thụ sự kiện của bạn.
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Đánh giá
DocType: Notification Settings,Document Share,Chia sẻ tài liệu
DocType: Workflow State,lock,khóa
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,Đăng nhập
DocType: Workflow State,indent-right,thụt lề bên phải
DocType: Has Role,Has Role,có vai trò
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,Đồng bộ lại
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,Thời gian tính bằng giây để giữ lại hình ảnh mã QR trên máy chủ. Tối thiểu: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: Không thể lập chỉ mục Fieldtype {1} cho {2}
DocType: Dashboard Chart,Timespan,Thời gian
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,Web liên kết
DocType: Deleted Document,Restored,phục hồi
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Lỗi kết nối với Ứng dụng Khay QZ ...
Bạn cần cài đặt và chạy ứng dụng QZ Khay để sử dụng tính năng In thô.
Nhấn vào đây để tải xuống và cài đặt QZ Khay .
Nhấn vào đây để tìm hiểu thêm về In thô ."
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 phút trước
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Ngoài hệ thống quản lý, vai trò với Set Permissions tài phải có thể thiết lập quyền truy cập cho người dùng khác cho rằng Document Type."
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Cấu hình chủ đề
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,không thấy
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Quản lý tập tin
DocType: Website Settings,"HTML Header, Robots and Redirects","Tiêu đề HTML, Rô bốt và Chuyển hướng"
DocType: GCalendar Account,Refresh Token,Thông báo làm mới
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,Không thể kết nối với trang web của Nhà sản xuất sự kiện. Thử lại sau một thời gian.
DocType: Address,Goa,Goa
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,Không có công việc đang chờ xử lý hoặc hiện tại cho trang web này
DocType: Webhook,Doc Event,Sự kiện Doc
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,Quản lý tập lệnh
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,Không hoạt động
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,Ứng dụng của bên thứ ba
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,Người dùng đầu tiên sẽ trở thành quản lý hệ thống (bạn có thể thay đổi điều này sau).
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,Bạn có thể thử thay đổi các bộ lọc của báo cáo của bạn.
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,Không có sự kiện hôm nay
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,Bạn không thể đưa ra điểm đánh giá cho chính mình
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType phải được Cho phép chuyển tiếp cho sự kiện Doc đã chọn
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,Bạn không được phép gửi email liên quan đến tài liệu này
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,Vui lòng chọn ít nhất 1 cột từ {0} để sắp xếp/ nhóm
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},Không được phép cho {0}: {1}. Trường bị hạn chế: {2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,Công ty không liên kết
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Kiểm tra này nếu bạn đang thử nghiệm thanh toán của bạn bằng cách sử dụng API Sandbox
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,Bạn không được phép xóa Theme mặc định
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},Tạo {0} đầu tiên của bạn
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},Đang c
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,Một Slide Onboarding {0} với cùng thứ tự slide đã tồn tại
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,Disable Báo cáo
DocType: Translation,Contributed Translation Doctype Name,Tên tài liệu dịch thuật đóng góp
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Cài đặt> Tùy chỉnh biểu mẫu
DocType: PayPal Settings,Redirect To,Chuyển đến
DocType: Data Migration Mapping,Pull,Kéo
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Định dạng JavaScript: frappe.query_reports ['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,Không được phép
DocType: DocShare,Internal record of document shares,Bản ghi nội bộ cổ phần của tài liệu
DocType: Energy Point Settings,Review Levels,Xem lại cấp độ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Thiết lập> Quyền người dùng
DocType: Workflow State,Comment,Bình luận
DocType: Data Migration Plan,Postprocess Method,Phương pháp Postprocess
DocType: DocType Action,Action Type,Loại hành động
@@ -323,13 +328,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,Hi
DocType: Workflow State,remove-circle,loại bỏ vòng tròn
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Thông tin của tôi
DocType: Help Article,Beginner,Người bắt đầu
+apps/frappe/frappe/__init__.py,This action is only allowed for {},Hành động này chỉ được phép cho {}
DocType: Contact,Is Primary Contact,Là Liên hệ Chính
+DocType: Event Consumer,Event Consumer,Người tiêu dùng sự kiện
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript để nối thêm vào phần đầu của trang.
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,Thêm / Cập nhật
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Không được phép in dự thảo văn bản
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Đặt lại mặc định
DocType: Workflow,Transition Rules,Quy định chuyển tiếp
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Chỉ hiển thị các hàng {0} đầu tiên trong bản xem trước
apps/frappe/frappe/core/doctype/report/report.js,Example:,Ví dụ:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,Những hạn chế
DocType: Workflow,Defines workflow states and rules for a document.,Xác định trạng thái công việc và các quy tắc cho một tài liệu.
@@ -480,7 +486,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,Đến lặp lại
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,Mới
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,Bạn cần tạo những thứ này trước:
-DocType: Google Maps Settings,Google Maps Settings,Cài đặt Google Maps
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Đang tải...
DocType: DocField,Password,Mật khẩu
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,Hệ thống của bạn đang được cập nhật. Hãy làm mới trở lại sau một vài khoảnh khắc
@@ -572,6 +577,7 @@ DocType: System Settings,mm/dd/yyyy,dd / mm / yyyy
DocType: Onboarding Slide,Onboarding Slide,Trượt ván
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,Mật khẩu không hợp lệ:
DocType: Print Settings,Send document web view link in email,Gửi tài liệu liên kết xem web trong email
+DocType: Event Consumer Document Type,Event Consumer Document Type,Loại tài liệu tiêu dùng sự kiện
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,Trước
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,Lại:
DocType: LDAP Settings,Require Trusted Certificate,Yêu cầu chứng chỉ tin cậy
@@ -647,6 +653,7 @@ DocType: Workflow State,volume-down,giảm âm lượng
DocType: Onboarding Slide,Help Links,Liên kết trợ giúp
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Truy cập không được phép từ Địa chỉ IP này
DocType: Notification Settings,Enable Email Notifications,Bật thông báo email
+DocType: Document Type Field Mapping,Event Streaming,Truyền phát sự kiện
apps/frappe/frappe/desk/reportview.py,No Tags,không Thẻ
DocType: Email Account,Send Notification to,Gửi thông báo cho
DocType: DocField,Collapsible,Ráp
@@ -663,11 +670,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,Lọ
apps/frappe/frappe/database/database.py,No conditions provided,Không có điều kiện cung cấp
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Trục Y trục
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sắp xếp trường {0} phải là một trường tên hợp lệ
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Không tìm thấy mẫu địa chỉ mặc định. Vui lòng tạo một cái mới từ Cài đặt> In và Nhãn hiệu> Mẫu địa chỉ.
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,Nhiều Hơn
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,Tạo một bản ghi mới
DocType: Contact,Sales Manager,Quản lý bán hàng
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Đổi tên
DocType: Print Format,Format Data,Định dạng dữ liệu
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0} không phải là định dạng báo cáo hợp lệ. Định dạng báo cáo phải là một trong những {1} sau
DocType: List Filter,Filter Name,Tên bộ lọc
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Thích
DocType: Assignment Rule,Automation,Tự động hóa
@@ -686,6 +695,7 @@ DocType: User,Reset Password Key,Reset Password chính
DocType: Dashboard Chart,All Time,Mọi lúc
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},Trạng thái tài liệu bất hợp pháp cho {0}
DocType: Email Account,Enable Auto Reply,Enable Auto Reply
+apps/frappe/frappe/desk/query_report.py,No data to export,Không có dữ liệu để xuất
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,Không Nhìn Thấy
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,Không thể có nhiều máy in được ánh xạ tới một định dạng in.
DocType: Workflow State,zoom-in,Phóng to
@@ -838,6 +848,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,Thay đổ
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,Đầu tiên
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,Cập nhật bản dịch
DocType: Error Snapshot,Exception,Exception
+DocType: Event Consumer,Event Consumer Document Types,Các loại tài liệu tiêu dùng sự kiện
DocType: Email Account,Use IMAP,Sử dụng IMAP
DocType: Activity Log,Activity Log,Nhật ký hoạt động
DocType: View Log,Viewed By,Được xem bởi
@@ -877,6 +888,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,Thi
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Định cấu hình biểu đồ
DocType: User,Last IP,IP cuối cùng
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,Vui lòng thêm chủ đề vào email của bạn
+apps/frappe/frappe/model/workflow.py,Errored Transactions,Giao dịch bị xóa
DocType: Data Migration Connector,Data Migration Connector,Bộ kết nối chuyển dữ liệu
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} hoàn nguyên {1}
DocType: Email Account,Track Email Status,Theo dõi trạng thái email
@@ -908,6 +920,7 @@ DocType: Email Queue,Attachments,File đính kèm
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,Bạn không có quyền truy cập vào tài liệu này
DocType: Language,Language Name,Tên ngôn ngữ
DocType: Email Group Member,Email Group Member,Email Nhóm thành viên
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Không có tài khoản email liên quan đến Người dùng. Vui lòng thêm một tài khoản trong Người dùng> Hộp thư đến Email.
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,Tài khoản của bạn đã bị khóa và sẽ tiếp tục sau {0} giây
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Quyền người dùng được sử dụng để giới hạn người dùng đối với các bản ghi cụ thể.
DocType: Notification,Value Changed,Thay đổi giá trị
@@ -1000,6 +1013,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,Đề cập đ
DocType: Help Article,Expert,Chuyên gia
DocType: Workflow State,circle-arrow-right,vòng tròn mũi tên bên phải
DocType: Role Profile,Role Profile,Hồ sơ Vai trò
+DocType: Document Type Mapping,Remote Document Type,Loại tài liệu từ xa
apps/frappe/frappe/permissions.py,Document Type is not importable,Loại tài liệu không thể nhập được
DocType: LDAP Settings,LDAP Server Url,LDAP Server Url
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Không thể mở ví dụ khi nó {0} là mở
@@ -1085,7 +1099,7 @@ DocType: Web Form,Allow Print,cho phép In
DocType: Communication,Clicked,Clicked
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Hủy theo dõi
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Không có quyền tới '{0}' {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vui lòng thiết lập Tài khoản Email mặc định từ Cài đặt> Email> Tài khoản Email
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},Chỉ hiển thị các hàng {0} đầu tiên trong số {1}
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,Lên lịch gửi
DocType: DocType,Track Seen,đã xem theo dõi
DocType: Dropbox Settings,File Backup,Sao lưu tập tin
@@ -1156,6 +1170,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,Ch
DocType: Data Export,Filter List,Danh sách bộ lọc
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,HH: mm
+DocType: Event Sync Log,Event Configurations,Cấu hình sự kiện
DocType: Email Account,Auto Reply Message,Auto Reply tin nhắn
DocType: Data Migration Mapping,Condition,Điều kiện
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} giờ trước
@@ -1215,9 +1230,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,Luôn luôn
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,Đăng nhập để bình luận
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Bắt đầu nhập dữ liệu dưới dòng này
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},giá trị thay đổi cho {0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}","ID email phải là duy nhất, Tài khoản email đã tồn tại \ for {0}"
DocType: Workflow State,retweet,gõ tweet lại
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Để so sánh, sử dụng> 5, <10 hoặc = 324. Đối với phạm vi, sử dụng 5:10 (cho các giá trị trong khoảng từ 5 đến 10)."
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,Tùy chỉnh ...
DocType: Print Format,Align Labels to the Right,Căn chỉnh Nhãn ở bên phải
DocType: Assignment Rule,Disabled,Đã vô hiệu hóa
@@ -1266,8 +1280,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Các phím tắt bàn phím
DocType: Post,Comments,Thẻ chú thích
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,Xác nhận
+DocType: Event Sync Log,Update Type,Loại cập nhật
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,Xác thực ...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Thu gọn tất cả
+DocType: Event Producer,Last Update,Cập nhật cuối cùng
apps/frappe/frappe/www/login.html,Forgot Password?,Quên mật khẩu?
DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1308,6 +1324,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,bảng Dò
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Cột dựa trên
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Nhập {0} trong số {1}, {2}"
DocType: Workflow State,move,Di chuyển
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,Không thể tạo Người tiêu dùng sự kiện hoặc Người tiêu dùng sự kiện cho trang web hiện tại đã được đăng ký.
apps/frappe/frappe/model/document.py,Action Failed,thao tác thất bại
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Đối với tài
DocType: View Log,View log,Xem nhật kí
@@ -1471,6 +1488,7 @@ DocType: DefaultValue,Key,Chính
DocType: Address,Contacts,Danh bạ
DocType: System Settings,Setup Complete,thiết lập hoàn thành
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Báo cáo của tất cả các cổ phiếu tài liệu
+DocType: Event Consumer,Callback URL,gọi lại URL
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls","Mẫu nhập phải là loại .csv, .xlsx hoặc .xls"
apps/frappe/frappe/www/update-password.html,New Password,Mật khẩu mới
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Lọc {0} mất tích
@@ -1538,7 +1556,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,S
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; không được cho phép trong điều kiện
DocType: Async Task,Async Task,Async Nhiệm vụ
DocType: Workflow State,picture,tranh
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,Hoàn chỉnh
+DocType: Scheduled Job Log,Complete,Hoàn chỉnh
DocType: DocType,Image Field,hình ảnh Dòng
DocType: Print Format,Custom HTML Help,Tuỳ chỉnh HTML Help
DocType: LDAP Settings,Default Role on Creation,Vai trò mặc định đối với việc tạo
@@ -1564,6 +1582,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Giúp đỡ về Tìm kiếm
DocType: Milestone,Milestone Tracker,Theo dõi cột mốc
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Đăng ký nhưng bị loại
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,Địa chỉ cần được liên kết với một Công ty. Vui lòng thêm một hàng cho Công ty trong bảng Liên kết bên dưới.
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,Lặp lại tự động cho tài liệu này đã bị vô hiệu hóa.
DocType: DocType,Hide Copy,Ẩn sao chép
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,Xóa tất cả các vai trò
@@ -1602,6 +1621,7 @@ DocType: Bulk Update,Field,Cánh đồng
DocType: Communication,Received,Nhận được
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Sử dụng với các phương pháp có giá trị như ""before_insert"", ""after_update"", vv (sẽ phụ thuộc vào kiểu văn bản được chọn)"
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},giá trị thay đổi của {0} {1}
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},Thiết lập tài khoản email vui lòng nhập mật khẩu của bạn cho: {0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Thêm hệ thống quản lý để tài này phải có ít nhất một hệ thống quản lý
DocType: Chat Message,URLs,URL
DocType: Data Migration Run,Total Pages,Tổng số trang
@@ -1609,7 +1629,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,Hình ảnh đính kèm
DocType: Workflow State,list-alt,danh sách-alt
apps/frappe/frappe/www/update-password.html,Password Updated,Cập nhật mật khẩu
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Thiết lập> Quyền người dùng
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,Các bước để xác minh đăng nhập của bạn
apps/frappe/frappe/utils/password.py,Password not found,Mật khẩu không tìm thấy
DocType: Webhook,Webhook Secret,Bí mật webhook
@@ -1625,8 +1644,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Cài đặt API c
DocType: Report,Query Report,Báo cáo truy vấn
DocType: User,Set New Password,Set Password mới
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Không được phép cho {0}: {1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s không phải là một mẫu báo cáo hợp lệ. Mẫu báo cáo nên \ một trong những %s sau
DocType: Chat Message,Chat,Trò chuyện
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},Không tìm thấy tài liệu nào được gắn thẻ {0}
DocType: LDAP Group Mapping,LDAP Group Mapping,Ánh xạ nhóm LDAP
@@ -1662,7 +1679,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Nhập m
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox truy cập bí mật
DocType: Tag Link,Document Title,Tiêu đề tài liệu
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Bắt buộc)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} năm trước
DocType: Social Login Key,Social Login Provider,Nhà cung cấp đăng nhập xã hội
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Thêm bình luận khác
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Không tìm thấy dữ liệu trong tệp. Vui lòng đóng lại tệp mới bằng dữ liệu.
@@ -1710,6 +1726,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Chọn
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 năm
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,Xóa bỏ Vĩnh Viễn {0}?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,Cùng một tập tin đã được gắn liền với kỷ lục
+DocType: Event Sync Log,Synced,Đã đồng bộ hóa
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0} không phải là Trạng thái luồng công việc hợp lệ. Vui lòng cập nhật Quy trình làm việc của bạn và thử lại.
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,cho {0} điểm
DocType: Workflow State,wrench,cờ lê
@@ -1812,6 +1829,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,B
DocType: Web Form Field,Max Length,Độ dài tối đa
DocType: Print Format,Jinja,Jinja
DocType: Workflow State,map-marker,đánh dấu bản đồ
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,Cấu hình ánh xạ giữa hai loại tài liệu.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,Nộp cho quản trị
DocType: Event,Repeat this Event,Lặp lại sự kiện này
DocType: Address,Maintenance User,Bảo trì tài khoản
@@ -1871,6 +1889,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,Địa chỉ Email kiểm tra
DocType: Auto Repeat,Reference Document Type,Tài liệu tham chiếu Type
DocType: ToDo,Sender,Người gửi
+DocType: Event Consumer,Incoming Change,Thay đổi sắp tới
DocType: Google Drive,Backup Folder Name,Tên thư mục sao lưu
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,Lỗi khi đánh giá Thông báo {0}. Vui lòng sửa mẫu của bạn.
DocType: GSuite Settings,Google Apps Script,Bản thảo ứng dụng Google
@@ -1933,9 +1952,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,Tên đ
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,Nhấp vào liên kết dưới đây để phê duyệt yêu cầu
DocType: Workflow State,align-left,sắp xếp bên trái
DocType: Onboarding Slide,Action Settings,Cài đặt hành động
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Cài đặt> Người dùng
DocType: User,Defaults,Mặc định
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Để so sánh, sử dụng> 5, <10 hoặc = 324. Đối với phạm vi, sử dụng 5:10 (cho các giá trị trong khoảng từ 5 đến 10)."
DocType: Energy Point Log,Revert Of,Hoàn nguyên
+DocType: Document Type Mapping,Field Mapping,Bản đồ hiện trường
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Kết hợp với hiện tại
DocType: User,Birth Date,Ngày sinh
DocType: Communication Link,Link Title,Tiêu đề đường dẫn
@@ -1963,6 +1983,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,Liên kết thẻ
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,Tính toàn vẹn chuỗi
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,Trong thử nghiệm
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent","1 đơn vị tiền tệ = [?] phân số với ví dụ
1 USD = 100 Cent"
@@ -1973,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,Ánh xạ nhóm LDAP
DocType: Chat Message Attachment,Chat Message Attachment,Tin nhắn trò chuyện đính kèm
DocType: LDAP Settings,Path to CA Certs File,Đường dẫn đến tệp CA Certs
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,"Nếu tài liệu có các tên trường khác nhau ở cuối Nhà sản xuất và Người tiêu dùng, hãy kiểm tra điều này và thiết lập Ánh xạ"
DocType: Address,Manipur,Manipur
DocType: Web Form Field,Allow Read On All Link Options,Cho phép tùy chọn đọc trên tất cả liên kết
DocType: DocType,Database Engine,bộ máy cơ sở dữ liệu
@@ -2107,6 +2129,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,Ghi chú
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,Báo cáo lỗi
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,Xuất dữ liệu ở định dạng CSV / Excel.
+DocType: Document Type Field Mapping,Document Type Field Mapping,Ánh xạ trường loại tài liệu
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,Thiết lập tài liệu Tìm kiếm toàn cầu.
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Ứng dụng xác thực bạn có thể sử dụng là:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} đã tồn tại. Chọn tên khác
@@ -2182,7 +2205,6 @@ DocType: Workflow State,Upload,tải lên
DocType: User Permission,Advanced Control,Kiểm soát nâng cao
DocType: System Settings,Date Format,Định dạng ngày
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,Không đăng
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Không tìm thấy mẫu địa chỉ mặc định. Vui lòng tạo một cái mới từ Cài đặt> In và Nhãn hiệu> Mẫu địa chỉ.
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).","Thao tác cho chuỗi công việc (ví dụ: Phê duyệt, Hủy bỏ)."
DocType: Data Import,Skip rows with errors,Bỏ qua hàng có lỗi
DocType: Workflow State,flag,cờ
@@ -2246,6 +2268,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Đại diện cho tiểu bang cho phép trong một tài liệu và vai trò được giao để thay đổi trạng thái.
DocType: Data Migration Connector,Database Name,Tên cơ sở dữ liệu
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,Dạng làm mới
+DocType: Event Producer,Event Producer,Nhà sản xuất sự kiện
DocType: DocField,Select,Chọn
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,Xem nhật ký đầy đủ
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'","Biểu thức Python đơn giản, Ví dụ: status == 'Open' và gõ == 'Bug'"
@@ -2347,6 +2370,7 @@ DocType: DocType,User Cannot Search,Người sử dụng không thể tìm kiế
DocType: Communication Link,Communication Link,Liên kết truyền thông
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Định dạng đầu ra không hợp lệ
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Không thể {0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,Một {0} {1} định kỳ đã được tạo cho bạn thông qua Tự động lặp lại {2}.
DocType: Custom DocPerm,Apply this rule if the User is the Owner,Áp dụng quy tắc này nếu người dùng là chủ sở hữu
DocType: Global Search Settings,Global Search Settings,Cài đặt tìm kiếm toàn cầu
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Sẽ là ID đăng nhập của bạn
@@ -2364,12 +2388,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,Mã QR để X
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Thêm vào để làm
DocType: Footer Item,Company,Giỏ hàng Giá liệt kê
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Trung bình {0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,Giao dịch thành công
DocType: Scheduled Job Log,Scheduled,Dự kiến
DocType: User,Logout from all devices while changing Password,Đăng xuất khỏi tất cả thiết bị trong khi thay đổi Mật khẩu
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,Xác Nhận Mật Khẩu
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,Có một số lỗi
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,Nhập Id khách hàng và Bí mật khách hàng trong Cài đặt Google.
apps/frappe/frappe/core/doctype/communication/communication.js,Close,Đóng
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}","ID email phải là duy nhất, Tài khoản email đã tồn tại cho {0}"
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Không thể thay đổi docstatus 0-2
DocType: File,Attached To Field,Đã gắn vào trường
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Cập nhật
@@ -2476,6 +2502,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,Tháng
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Thêm Reference: {{ reference_doctype }} {{ reference_name }} để gửi tài liệu tham khảo
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,Chỉ người dùng liên quan đến tài liệu được liệt kê
DocType: DocField,Fetch From,Tìm nạp từ
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Cài đặt> Tùy chỉnh biểu mẫu
apps/frappe/frappe/modules/utils.py,App not found,Ứng dụng không tìm thấy
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},Không thể tạo một {0} đối với một tài liệu trẻ em: {1}
DocType: Social Login Key,Social Login Key,Khóa đăng nhập xã hội
@@ -2487,7 +2514,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,Các ti
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,Trang chủ xã hội
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},Chèn Sau khi không thể được thiết lập như là {0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,Chia sẻ {0} với
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Email Thiết lập tài khoản vui lòng nhập mật khẩu của bạn cho:
DocType: Workflow State,hand-up,tay lên
DocType: Blog Settings,Writers Introduction,Giới thiệu nhà văn
DocType: Address,Phone,Chuyển tệp
@@ -2546,7 +2572,7 @@ DocType: Web Page,Insert Style,Chèn phong cách
DocType: Prepared Report,Error Message,Thông báo lỗi
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Tên báo cáo mới
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,Ẩn các ngày cuối tuần
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,Tự động tạo tài liệu định kỳ.
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,Tự động tạo tài liệu định kỳ.
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,Là
DocType: Onboarding Slide,ERPNext,ERPNext
DocType: Workflow State,info-sign,thông tin-dấu
@@ -2554,7 +2580,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,Giá tr
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Loại tiền tệ này được định dạng ra sao ? Nếu không thiết lập, hệ thống sẽ quay về mặc định"
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,Gửi {0} tài liệu?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Bạn cần phải đăng nhập và có vai trò là System Manager để có thể truy cập vào các bản sao lưu.
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","Lỗi kết nối với Ứng dụng Khay QZ ...
Bạn cần cài đặt và chạy ứng dụng QZ Khay để sử dụng tính năng In thô.
Nhấn vào đây để tải xuống và cài đặt QZ Khay .
Nhấn vào đây để tìm hiểu thêm về In thô ."
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,Bản đồ máy in
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Hãy lưu trước khi đính kèm.
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,Bạn có muốn hủy bỏ tất cả các tài liệu liên kết?
@@ -2584,6 +2609,7 @@ DocType: Role Permission for Page and Report,Set Role For,Đặt Vai trò Đối
DocType: GCalendar Account,The name that will appear in Google Calendar,Tên sẽ xuất hiện trong Lịch Google
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,Phòng trực tiếp với {0} đã tồn tại.
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,Làm mới ...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},Vui lòng kiểm tra các giá trị bộ lọc được đặt cho Biểu đồ bảng điều khiển: {}
DocType: Event,Starts on,Bắt đầu vào
DocType: System Settings,System Settings,Cài đặt hệ thống
DocType: GCalendar Settings,Google API Credentials,Thông tin xác thực API của Google
@@ -2609,6 +2635,7 @@ DocType: Workflow State,ok-sign,ok-dấu
apps/frappe/frappe/config/settings.py,Deleted Documents,hồ sơ đã xóa
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,Định dạng CSV phân biệt chữ hoa chữ thường
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,biểu tượng màn hình chờ tồn tại sẵn
+DocType: Event Consumer Document Type,Approval Status,Tình trạng chính
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,"Chỉ định trong những gì tất cả các tên miền sẽ hiển thị. Nếu không có gì được chỉ định, slide được hiển thị trong tất cả các miền theo mặc định."
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,Bản sao
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}: Trường {1} trong hàng {2} không thể bị ẩn và bắt buộc mà không có mặc định
@@ -2628,6 +2655,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,Các điều khoản trợ giúp
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Loại:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,Thanh toán của bạn đã không thành công.
+DocType: Event Producer,Producer URL,URL nhà sản xuất
DocType: Comment,Unshared,Không thể được chia sẻ
DocType: Address,Karnataka,Karnataka
apps/frappe/frappe/desk/moduleview.py,Module Not Found,Không tìm thấy mô-đun
@@ -2639,6 +2667,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,phân Hoàn thành
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},Chỉnh sửa hàng loạt {0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Tải xuống báo cáo
+apps/frappe/frappe/model/workflow.py,Workflow Status,Tình trạng quy trình làm việc
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,Không hoạt động
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,Chỉ quản trị viên mới được phép tạo Nguồn biểu đồ bảng điều khiển
DocType: About Us Settings,Settings for the About Us Page,Cài đặt cho các Giới thiệu Trang
@@ -2648,6 +2677,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,In
DocType: Notification Settings,Energy Points,Điểm năng lượng
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},Thời gian {0} phải ở định dạng: {1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,ví dụ: pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings","{0}: Không thể đính kèm tài liệu định kỳ mới. Để bật tài liệu đính kèm trong email thông báo lặp lại tự động, hãy bật {1} trong Cài đặt in"
DocType: User,Generate Keys,Tạo khóa
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,Điều này sẽ xóa vĩnh viễn dữ liệu của bạn.
DocType: DocType,View Settings,Xem Cài đặt
@@ -2699,6 +2729,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,Tất cả
DocType: Email Queue,Recipient,Người nhận
DocType: Webhook,Webhook Security,Bảo mật webhook
+DocType: Event Sync Log,Producer Document Name,Tên tài liệu sản xuất
DocType: Communication,Has Attachment,có tập tin đính kèm
DocType: Address,Sales User,Bán tài khoản
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,Kéo và thả công cụ để xây dựng và tùy dạng Print.
@@ -2734,6 +2765,7 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,Bảng con được hiển thị dưới dạng lưới trong các DocTypes khác
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,Cài đặt tự động Email
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,Ctrl + Down
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,Trang web bạn muốn đăng ký để tiêu thụ các sự kiện.
DocType: Chat Profile,Message Preview,Xem trước tin nhắn
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,Đây là một trong top 10 mật khẩu phổ biến.
DocType: User,User Defaults,Mặc định người sử dụng
@@ -2766,6 +2798,7 @@ DocType: Dashboard Chart,Last Synced On,Đã đồng bộ hóa lần cuối
DocType: Comment,Comment Type,Comment Loại
DocType: OAuth Client,OAuth Client,OAuth khách hàng
DocType: Assignment Rule,Users,Người sử dụng
+DocType: Document Type Mapping,Local Document Type,Loại tài liệu địa phương
DocType: Address,Odisha,Odhisha
DocType: Report,Report Type,Loại báo cáo
DocType: DocField,Signature,Chữ ký
@@ -2808,6 +2841,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0} tự giao nhiệm vụ này: {1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,Quốc gia của bạn
DocType: Assignment Rule Day,Sunday,Chủ Nhật
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.","Duy trì Nhật ký của tất cả các chèn, cập nhật và xóa trên trang web của Nhà sản xuất sự kiện cho các tài liệu có người tiêu dùng."
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}: Tên trường không thể là một trong {1}
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,Bảng xếp hạng
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,Trong tầm nhìn mạng lưới
@@ -2955,7 +2989,6 @@ DocType: Web Page,Sidebar and Comments,sidebar và Bình luận
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Khi bạn sửa đổi một tài liệu sau khi Hủy bỏ và lưu nó, nó sẽ nhận được một số mới mà là một phiên bản của số cũ."
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings","Không được phép đính kèm tài liệu {0}, vui lòng bật Cho phép in cho {0} trong Cài đặt in"
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tài khoản email không được thiết lập. Vui lòng tạo Tài khoản Email mới từ Cài đặt> Email> Tài khoản Email
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Xem tài liệu tại {0}
DocType: Stripe Settings,Publishable Key,Phím có thể xuất bản được
DocType: Stripe Settings,Publishable Key,Phím có thể xuất bản được
@@ -3034,7 +3067,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,Thông tin:
DocType: Custom Field,Permission Level,Cấp phép
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Không thể thiết lập quyền Duyệt, Hủy bỏ, sửa đổi mà không chọn quyền ""Viết"""
DocType: List View Setting,Disable Count,Vô hiệu hóa Đếm
-DocType: Google Maps Settings,Client Key,Khóa Khách hàng
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,Bạn có chắc bạn muốn xóa các tập tin đính kèm?
apps/frappe/frappe/__init__.py,Thank you,Cảm ơn bạn
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,Tiết kiệm
@@ -3161,6 +3193,7 @@ DocType: Workflow Document State,Only Allow Edit For,Cho phép chỉ sửa Đố
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,Sao lưu lên Google Drive.
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},lĩnh vực bắt buộc: {0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,Tên của bạn
+DocType: Event Producer Document Type,Event Producer Document Type,Loại tài liệu của nhà sản xuất sự kiện
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,Kết nối thành công
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,Một Slide Slide trên tàu Loại tiếp tục đã tồn tại.
@@ -3232,6 +3265,7 @@ DocType: Address,Postal Code,Mã bưu chính
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,Truyền thông relink
DocType: Translation,Contributed,Đóng góp
apps/frappe/frappe/config/customization.py,Form Customization,Tùy chỉnh mẫu
+DocType: Event Update Log,Event Update Log,Nhật ký cập nhật sự kiện
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Không có Phiên tích cực
DocType: Web Form,Route to Success Link,Hướng đến liên kết thành công
DocType: Onboarding Slide Field,Right,Được rồi.
@@ -3258,7 +3292,7 @@ DocType: Website Settings,Chat Operators,Nhà điều hành trò chuyện
DocType: S3 Backup Settings,ca-central-1,ca-trung-1
DocType: Contact Us Settings,Pincode,Pincode
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,Hãy chắc chắn rằng không có cột trống trong tập tin.
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Theo dõi các mốc quan trọng trong vòng đời của một tài liệu nếu nó trải qua nhiều giai đoạn.
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,Theo dõi các mốc quan trọng trong vòng đời của một tài liệu nếu nó trải qua nhiều giai đoạn.
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!","Đổi tên tập tin và mã thay thế trong bộ điều khiển, vui lòng kiểm tra!"
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,Hãy đảm bảo rằng hồ sơ của bạn có một địa chỉ email
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Bạn có thay đổi chưa được lưu trong mẫu này. Xin vui lòng lưu trước khi tiếp tục.
@@ -3285,7 +3319,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,Lưu Bí mật API:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},Không thể liên kết tài liệu hủy: {0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,Không thể chỉnh sửa báo cáo chuẩn. Hãy lặp lại và tạo một báo cáo mới
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address","Công ty là bắt buộc, vì nó là địa chỉ công ty của bạn"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}","Ví dụ: Nếu bạn muốn bao gồm các ID tài liệu, sử dụng {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},Select Table Cột cho {0}
DocType: Custom Field,Options Help,Tùy chọn Trợ giúp
@@ -3293,7 +3326,6 @@ DocType: Footer Item,Group Label,nhóm Label
DocType: Kanban Board,Kanban Board,Kanban Board
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Danh bạ Google đã được định cấu hình.
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 bản ghi sẽ được xuất
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,Không có tài khoản email liên quan đến Người dùng. Vui lòng thêm một tài khoản trong Người dùng> Hộp thư đến Email.
DocType: DocField,Report Hide,Báo cáo Ẩn
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},cây không có sẵn cho {0}
DocType: DocType,Restrict To Domain,Hạn chế miền
@@ -3359,7 +3391,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}: Trường {1} loại {2} không thể bắt buộc
DocType: System Settings,In Days,Trong ngày
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,Bỏ qua
+DocType: Event Producer Document Type,Has Mapping,Có bản đồ
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,Vui lòng chỉ
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,Giá trị bộ lọc không hợp lệ
DocType: Comment,Bot,Máy
DocType: Help Article,Help Article,Điều khoản trợ giúp
DocType: Page,Page Name,Tên trang
@@ -3467,7 +3501,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,Định dạng in
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,Chuyển đổi Chế độ Xem Lưới
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,Tới bản ghi tiếp theo
-DocType: System Settings,Time Format,Định dạng thời gian
+DocType: Country,Time Format,Định dạng thời gian
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,chứng thư cổng thanh toán không hợp lệ
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,Đây là tệp mẫu được tạo chỉ với các hàng có lỗi. Bạn nên sử dụng tệp này để chỉnh sửa và nhập.
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,Set Quyền trên các loại tài liệu và vai trò
@@ -3804,6 +3838,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,Cho phép Đăng nhập bằng Tên Người dùng
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,Kích hoạt tính năng Report
DocType: DocField,Display Depends On,Hiện thị dựa trên
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} năm trước
DocType: Social Login Key,API Endpoint,Điểm cuối API
DocType: Web Page,Insert Code,Chèn Mã
DocType: Data Migration Run,Current Mapping Type,Loại bản đồ hiện tại
@@ -3857,6 +3892,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,Xá
apps/frappe/frappe/www/login.html,Or login with,Hoặc đăng nhập với
DocType: Error Snapshot,Locals,Người dân địa phương
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},Thông qua {0} trên {1}: {2}
+DocType: Event Producer,Event Producer Document Types,Các loại tài liệu của nhà sản xuất sự kiện
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vui lòng thiết lập Tài khoản Email mặc định từ Cài đặt> Email> Tài khoản Email
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,Chọn nhóm theo ...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ví dụ: (55 + 434) / 4 hoặc = Math.sin (Math.PI / 2) ...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0} được yêu cầu
@@ -3889,9 +3926,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,ID đồng bộ hoá GCalendar
DocType: Prepared Report,Report Start Time,Báo cáo thời gian bắt đầu
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Xuất dữ liệu
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,Duy trì nhật ký của mọi sự kiện được sử dụng cùng với trạng thái đồng bộ hóa và nút Resync trong trường hợp đồng bộ hóa không thành công.
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Select Columns
DocType: Translation,Source Text,Tiêu đề nguồn
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,Đây là một báo cáo nền. Vui lòng đặt các bộ lọc thích hợp và sau đó tạo một bộ lọc mới.
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tài khoản email không được thiết lập. Vui lòng tạo Tài khoản Email mới từ Cài đặt> Email> Tài khoản Email
apps/frappe/frappe/www/login.py,Missing parameters for login,Tham số thiếu để đăng nhập
DocType: Workflow State,folder-open,thư mục mở
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Sau khi gửi, tài liệu có thể gửi có thể được thay đổi. Họ chỉ có thể được hủy bỏ và sửa đổi."
@@ -3971,6 +4010,7 @@ DocType: Blog Post,Published On,Được công bố trên
DocType: Contact,Gender,Giới Tính
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Thông tin bắt buộc đang bị mất
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} hoàn nguyên điểm của bạn trên {1}
+DocType: Event Consumer,Event Subscriber,Thuê bao sự kiện
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,URL yêu cầu kiểm tra
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,Chỉ có 200 lần chèn được cho phép trong một yêu cầu
DocType: Footer Item,URL,URL
@@ -3983,6 +4023,7 @@ DocType: Auto Email Report,Half Yearly,Nửa năm
DocType: Communication,Marked As Spam,Đánh dấu là spam
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Có một số vấn đề với các url của tệp: {0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,Cây biểu thị
+DocType: Event Producer Document Type,Use Same Name,Sử dụng cùng tên
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,Bạn không được phép in báo cáo này
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,Quyền hạn người dùng
DocType: Workflow State,warning-sign,Dấu hiệu cảnh báo
@@ -3992,6 +4033,7 @@ DocType: Workflow State,User,Người dùng
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Hiển thị tiêu đề trong cửa sổ trình duyệt như "Prefix - title"
DocType: Payment Gateway,Gateway Settings,Cài đặt gateway
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,văn bản trong loại tài liệu
+DocType: Event Sync Log,Event Sync Log,Nhật ký đồng bộ hóa sự kiện
apps/frappe/frappe/handler.py,Logged Out,Đăng suất
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,Hơn...
DocType: System Settings,User can login using Email id or Mobile number,Người dùng có thể đăng nhập bằng cách sử dụng Email id hoặc Mobile number
@@ -4032,12 +4074,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Không chứa
DocType: Workflow State,star,ngôi sao
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,Trung tâm
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,"Nếu điều này được kiểm tra, các tài liệu sẽ có cùng tên như trên trang của Nhà sản xuất sự kiện"
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,các giá trị cách nhau bằng dấu phẩy
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Tối đa chiều rộng cho các loại tiền tệ là 100px trong hàng {0}
apps/frappe/frappe/config/website.py,Content web page.,Trang web nội dung.
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Thêm một vai trò mới
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,Truy cập trang web
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,Nhiệm vụ mới
+DocType: Event Consumer Document Type,Approved,Đã được phê duyệt
DocType: Google Contacts,Last Sync On,Đồng bộ lần cuối cùng
DocType: Deleted Document,Deleted Document,Tài liệu bị xóa
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Rất tiếc! Có gì đó không đúng
@@ -4090,7 +4134,6 @@ DocType: DocField,Unique,Độc nhất
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0} được đánh giá cao trên {1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,Một phần thành công
DocType: Email Account,Service,Dịch vụ
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Cài đặt> Người dùng
DocType: File,File Name,Tên tệp tin
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),Không tìm thấy {0} cho {0} ({1})
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Độ phân giải: {0}
@@ -4102,11 +4145,10 @@ DocType: Calendar View,Calendar View,Chế độ xem lịch
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,Sửa Format
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Hoàn tất đăng ký
DocType: GCalendar Settings,Enable,K.hoạt
-DocType: Google Maps Settings,Home Address,Địa chỉ nhà
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),Bạn chỉ có thể tải lên tối đa 5000 bản ghi trong một lệnh. (Có thể ít hơn trong một số trường hợp)
DocType: Report,"output in the form of `data = [columns, result]`","đầu ra ở dạng `data = [cột, kết quả]`"
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,Các loại tài liệu áp dụng
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,Thiết lập quy tắc cho bài tập của người dùng.
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,Thiết lập quy tắc cho bài tập của người dùng.
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Không đủ quyền cho {0}
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},Không đủ quyền cho {0}
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),Báo cáo không được lưu (có lỗi)
diff --git a/frappe/translations/zh.csv b/frappe/translations/zh.csv
index 30a4a673cd..395c9b634d 100644
--- a/frappe/translations/zh.csv
+++ b/frappe/translations/zh.csv
@@ -46,7 +46,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an err
DocType: Custom DocPerm,This role update User Permissions for a user,这个角色更新一个用户的用户权限
apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},重命名{0}
DocType: Workflow State,zoom-out,缩小
-DocType: Data Import Beta,Import Options,导入选项
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,无法打开{0} ,当它的实例已打开
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,表{0}不能为空
DocType: SMS Parameter,Parameter,参数
@@ -84,7 +83,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Cancel {0} documents?,取
DocType: DocType,Is Published Field,发布现场
DocType: GCalendar Settings,GCalendar Settings,GCalendar设置
DocType: Email Group,Email Group,电子邮件组
-apps/frappe/frappe/__init__.py,Only for {},仅适用于 {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Google日历 - 无法从Google日历中删除事件{0},错误代码为{1}。
DocType: Event,Pulled from Google Calendar,从Google日历中拉出
DocType: Note,Seen By,看到通过
@@ -92,9 +90,11 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,添加多个
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,不是有效的用户映像。
DocType: Energy Point Log,Reverted,回复
DocType: Success Action,First Success Message,第一个成功消息
+DocType: Document Type Mapping,Document Type Mapping,文件类型对应
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,不类似
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},值有错误,{0}必须是{1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",更改字段属性(隐藏,只读,权限等)
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,正在使用您的事件的站点。
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,欣赏
DocType: Notification Settings,Document Share,文件共享
DocType: Workflow State,lock,锁定
@@ -114,11 +114,13 @@ apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,Mark all a
DocType: Data Migration Run,Log,日志
DocType: Workflow State,indent-right,靠右缩进
DocType: Has Role,Has Role,有角色
+apps/frappe/frappe/event_streaming/doctype/event_sync_log/event_sync_log.js,Resync,重新同步
DocType: System Settings,Time in seconds to retain QR code image on server. Min:240,在服务器上保留QR码图像的秒数。最小: 240
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}:无法为{2}的字段类型{1}编制索引
DocType: Dashboard Chart,Timespan,时间跨度
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,网站链接
DocType: Deleted Document,Restored,恢复
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","连接到QZ托盘应用程序时出错...
您需要安装并运行QZ Tray应用程序,才能使用Raw Print功能。
单击此处下载并安装QZ托盘 。
单击此处以了解有关原始印刷的更多信息 。"
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1分钟前
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",除了系统管理员,有“设置用户权限”的角色可以为其他用户设置某文档类型的权限。
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,配置主题
@@ -189,6 +191,7 @@ DocType: Email Account,UNSEEN,反转已查看
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,文件管理器
DocType: Website Settings,"HTML Header, Robots and Redirects",HTML标头,机器人和重定向
DocType: GCalendar Account,Refresh Token,刷新令牌
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,无法连接到事件生产者站点。一段时间后重试。
DocType: Address,Goa,果阿
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,此站点没有待处理或当前作业
DocType: Webhook,Doc Event,文件事件
@@ -211,6 +214,7 @@ DocType: Server Script,Script Manager,脚本管理器
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,没有活动
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,第三方应用
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,第一个用户将成为系统管理员,您以后可以更改。
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,您可以尝试更改报告的过滤器。
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,今天没有活动
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,你不能给自己提供评论点
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType必须为所选Doc事件提交
@@ -241,6 +245,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,你不允许发送与此文档相关的电子邮件
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,请从{0}到排序/组选择至少 1列
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},不允许{0}:{1}。受限制的字段:{2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,公司未链接
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,检查这个,如果你正在测试使用沙盒API付款
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,你不允许删除标准的网站主题
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},创建您的第一个{0}
@@ -261,7 +266,6 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,Updating {0},更新{0
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,具有相同幻灯片顺序的入门幻灯片{0}已存在
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,禁用报告
DocType: Translation,Contributed Translation Doctype Name,贡献翻译文档类型名称
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,设置>自定义表格
DocType: PayPal Settings,Redirect To,重定向到
DocType: Data Migration Mapping,Pull,下拉
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript格式:frappe.query_reports ['REPORTNAME'] = {}
@@ -274,6 +278,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,不允许
DocType: DocShare,Internal record of document shares,文件分享的内部记录
DocType: Energy Point Settings,Review Levels,评论级别
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,设置>用户权限
DocType: Workflow State,Comment,评论
DocType: Data Migration Plan,Postprocess Method,后处理方法
DocType: DocType Action,Action Type,动作类型
@@ -324,13 +329,14 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,显
DocType: Workflow State,remove-circle,删除圈
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,我的简历
DocType: Help Article,Beginner,初学者
+apps/frappe/frappe/__init__.py,This action is only allowed for {},此操作仅适用于{}
DocType: Contact,Is Primary Contact,是否主要联络人
+DocType: Event Consumer,Event Consumer,活动消费者
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,附加到页面头部的Javascript。
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Update,添加/更新
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,不允许打印文件草案
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,重置为默认值
DocType: Workflow,Transition Rules,迁移规则
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,在预览中仅显示前{0}行
apps/frappe/frappe/core/doctype/report/report.js,Example:,例如:
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,限制条件
DocType: Workflow,Defines workflow states and rules for a document.,定义文档工作流状态和规则。
@@ -481,7 +487,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,重复直到
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,新建
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,您需要先创建这些:
-DocType: Google Maps Settings,Google Maps Settings,谷歌地图设置
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,载入中...
DocType: DocField,Password,密码
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,您的系统正在更新。请在一段时间后再次刷新
@@ -574,6 +579,7 @@ DocType: Onboarding Slide,Onboarding Slide,入门幻灯片
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,无效的密码:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,无效的密码:
DocType: Print Settings,Send document web view link in email,发送电子邮件文件Web视图链接
+DocType: Event Consumer Document Type,Event Consumer Document Type,事件使用者文档类型
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,以前
apps/frappe/frappe/email/doctype/email_account/email_account.py,Re:,回复:
DocType: LDAP Settings,Require Trusted Certificate,需要可信证书
@@ -649,6 +655,7 @@ DocType: Workflow State,volume-down,降低音量
DocType: Onboarding Slide,Help Links,帮助链接
apps/frappe/frappe/auth.py,Access not allowed from this IP Address,不允许从该IP地址访问
DocType: Notification Settings,Enable Email Notifications,启用电子邮件通知
+DocType: Document Type Field Mapping,Event Streaming,事件流
apps/frappe/frappe/desk/reportview.py,No Tags,没有标签
DocType: Email Account,Send Notification to,通知发送到
DocType: DocField,Collapsible,可折叠
@@ -665,11 +672,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,过
apps/frappe/frappe/database/database.py,No conditions provided,没有提供条件
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y轴字段
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,排序字段{0}必须是有效的字段名
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默认的地址模板。请从设置>打印和商标>地址模板中创建一个新地址。
apps/frappe/frappe/public/js/frappe/list/base_list.js,More,更多
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,创建一个新记录
DocType: Contact,Sales Manager,销售经理
apps/frappe/frappe/public/js/frappe/model/model.js,Rename,重命名
DocType: Print Format,Format Data,格式化数据
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0}不是有效的报告格式。报告格式应为以下{1}之一
DocType: List Filter,Filter Name,过滤器名称
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,Like
DocType: Assignment Rule,Automation,自动化
@@ -688,6 +697,7 @@ DocType: User,Reset Password Key,重设密码钥匙
DocType: Dashboard Chart,All Time,整天
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0}的非法文档状态
DocType: Email Account,Enable Auto Reply,启用自动回复
+apps/frappe/frappe/desk/query_report.py,No data to export,没有要导出的数据
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,未阅读
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,不能将多个打印机映射到单个打印格式。
DocType: Workflow State,zoom-in,放大
@@ -840,6 +850,7 @@ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,改变用
apps/frappe/frappe/public/js/frappe/form/grid_pagination.js,First,第一
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,更新翻译
DocType: Error Snapshot,Exception,例外
+DocType: Event Consumer,Event Consumer Document Types,事件消费者文档类型
DocType: Email Account,Use IMAP,使用IMAP
DocType: Activity Log,Activity Log,活动日志
DocType: View Log,Viewed By,由...观看
@@ -879,6 +890,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,为
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,配置图表
DocType: User,Last IP,最后登录IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,请在您的电子邮件中添加主题
+apps/frappe/frappe/model/workflow.py,Errored Transactions,错误交易
DocType: Data Migration Connector,Data Migration Connector,数据迁移连接器
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0}还原{1}
DocType: Email Account,Track Email Status,跟踪电子邮件状态
@@ -910,6 +922,7 @@ DocType: Email Queue,Attachments,附件
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,您没有访问此文件的权限
DocType: Language,Language Name,语言名称
DocType: Email Group Member,Email Group Member,电子邮件组成员
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,没有与该用户关联的电子邮件帐户。请在“用户”>“电子邮件收件箱”下添加一个帐户。
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,您的帐户已被锁定,并将在{0}秒后恢复
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,用户权限用于将用户限制到特定的记录。
DocType: Notification,Value Changed,值已更改
@@ -1001,6 +1014,7 @@ DocType: PayPal Settings,Mention transaction completion page URL,提及交易完
DocType: Help Article,Expert,专家
DocType: Workflow State,circle-arrow-right,圆圈箭头向右
DocType: Role Profile,Role Profile,角色配置文件
+DocType: Document Type Mapping,Remote Document Type,远端文件类型
apps/frappe/frappe/permissions.py,Document Type is not importable,凭证类型不可导入
DocType: LDAP Settings,LDAP Server Url,LDAP服务器URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,无法打开实例时,它的{0}是打开的
@@ -1086,7 +1100,7 @@ DocType: Web Form,Allow Print,允许打印
DocType: Communication,Clicked,已点击
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,取消关注
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},没有权限“{0}” {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认的电子邮件帐户
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},仅显示{1}中的前{0}行
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,已计划发送
DocType: DocType,Track Seen,让系统记录谁查看过
DocType: Dropbox Settings,File Backup,文件备份
@@ -1157,6 +1171,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,选
DocType: Data Export,Filter List,过滤器列表
DocType: Data Export,Excel,Excel
DocType: System Settings,HH:mm,高度:毫米
+DocType: Event Sync Log,Event Configurations,事件配置
DocType: Email Account,Auto Reply Message,自动回复留言
DocType: Data Migration Mapping,Condition,条件
apps/frappe/frappe/utils/data.py,{0} hours ago,{0} 小时前
@@ -1216,9 +1231,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,始终使用
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,登录发表评论
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,请在此线下开始输入数据
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},用于改变的值{0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}",电子邮件ID必须唯一,电子邮件帐户已存在\ {0}
DocType: Workflow State,retweet,转推
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",为了进行比较,请使用> 5,<10或= 324。对于范围,请使用5:10(对于5到10之间的值)。
apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Customize...,定制...
DocType: Print Format,Align Labels to the Right,将标签右对齐
DocType: Assignment Rule,Disabled,已禁用
@@ -1267,8 +1281,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,键盘快捷键
DocType: Post,Comments,评论
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,确认
+DocType: Event Sync Log,Update Type,更新类型
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,验证...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,全部收缩
+DocType: Event Producer,Last Update,最后更新
apps/frappe/frappe/www/login.html,Forgot Password?,忘了密码?
DocType: System Settings,yyyy-mm-dd,年-月-日
apps/frappe/frappe/desk/report/todo/todo.py,ID,ID
@@ -1309,6 +1325,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,表字段
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,基于列
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}",导入{1},{2}中的{0}
DocType: Workflow State,move,移动
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,无法创建事件使用者或当前站点的事件使用者已被注册。
apps/frappe/frappe/model/document.py,Action Failed,操作失败
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,对于用户
DocType: View Log,View log,查看日志
@@ -1472,6 +1489,7 @@ DocType: DefaultValue,Key,键值
DocType: Address,Contacts,往来
DocType: System Settings,Setup Complete,设置完成
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,所有的文件共享报告
+DocType: Event Consumer,Callback URL,回调网址
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",导入模板的类型应为.csv,.xlsx或.xls
apps/frappe/frappe/www/update-password.html,New Password,新密码
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,过滤器{0}丢失
@@ -1539,7 +1557,7 @@ apps/frappe/frappe/www/update-password.html,Success! You are good to go 👍,成
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,不满足条件
DocType: Async Task,Async Task,异步任务
DocType: Workflow State,picture,图片
-apps/frappe/frappe/public/js/frappe/ui/onboarding_dialog.js,Complete,完成
+DocType: Scheduled Job Log,Complete,完成
DocType: DocType,Image Field,图像字段
DocType: Print Format,Custom HTML Help,自定义HTML帮助
DocType: LDAP Settings,Default Role on Creation,创建时的默认角色
@@ -1565,6 +1583,7 @@ apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} L
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,搜索帮助
DocType: Milestone,Milestone Tracker,里程碑跟踪器
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,注册但被禁用
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,地址需要链接到公司。请在下面的链接表中为公司添加一行。
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,此文档的自动重复已被禁用。
DocType: DocType,Hide Copy,隐藏副本
apps/frappe/frappe/public/js/frappe/roles_editor.js,Clear all roles,清除所有角色
@@ -1603,6 +1622,7 @@ DocType: Bulk Update,Field,字段
DocType: Communication,Received,收到
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",在有效的方法如:“before_insert”,“after_update”触发(取决于所选的文档类型)
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1}的值已更改
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},电子邮件帐户设置,请输入您的密码:{0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,正在为此用户添加“系统管理员”角色,因为至少需要一个系统管理员
DocType: Chat Message,URLs,网址
DocType: Data Migration Run,Total Pages,总页数
@@ -1610,7 +1630,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,附加图片
DocType: Workflow State,list-alt,备选清单
apps/frappe/frappe/www/update-password.html,Password Updated,密码更新
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,设置>用户权限
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,验证您的登录的步骤
apps/frappe/frappe/utils/password.py,Password not found,密码未找到
DocType: Webhook,Webhook Secret,Webhook的秘密
@@ -1626,8 +1645,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API设置
DocType: Report,Query Report,查询报告
DocType: User,Set New Password,设置新密码
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},不允许{0}:{1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s 不是有效的报告格式. 报告格式应以 \ 开头然后才是 %s
DocType: Chat Message,Chat,聊天
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},找不到标有{0}的文档
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP组映射
@@ -1663,7 +1680,6 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,输入密
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox的密码
DocType: Tag Link,Document Title,文件名
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(必须)
-apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年之前
DocType: Social Login Key,Social Login Provider,社交登录提供商
apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,添加另一个评论
apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,在文件中找不到数据。请用数据重新附加新文件。
@@ -1711,6 +1727,7 @@ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","选择
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1年
apps/frappe/frappe/public/js/frappe/model/model.js,Permanently delete {0}?,永久删除{0} ?
apps/frappe/frappe/core/doctype/file/file.py,Same file has already been attached to the record,同一文件已被链接到此记录
+DocType: Event Sync Log,Synced,已同步
apps/frappe/frappe/model/workflow.py,{0} is not a valid Workflow State. Please update your Workflow and try again.,{0}不是有效的工作流程状态。请更新您的工作流程,然后重试。
apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,给了{0}分
DocType: Workflow State,wrench,wrench
@@ -1813,6 +1830,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,
DocType: Web Form Field,Max Length,最长长度
DocType: Print Format,Jinja,神社
DocType: Workflow State,map-marker,映射-记号
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,两个文档类型之间的映射配置。
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,提交问题
DocType: Event,Repeat this Event,重复此事件
DocType: Address,Maintenance User,维护用户
@@ -1872,6 +1890,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,测试电子邮件地址
DocType: Auto Repeat,Reference Document Type,参考文档类型
DocType: ToDo,Sender,发件人
+DocType: Event Consumer,Incoming Change,即将到来的变化
DocType: Google Drive,Backup Folder Name,备份文件夹名称
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,评估通知{0}时出错。请修复您的模板。
DocType: GSuite Settings,Google Apps Script,Google Apps脚本
@@ -1934,9 +1953,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,新的
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,单击下面的链接批准该请求
DocType: Workflow State,align-left,左对齐
DocType: Onboarding Slide,Action Settings,动作设定
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,设置>用户
DocType: User,Defaults,默认
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",为了进行比较,请使用> 5,<10或= 324。对于范围,请使用5:10(对于5到10之间的值)。
DocType: Energy Point Log,Revert Of,还原
+DocType: Document Type Mapping,Field Mapping,场图
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,与现有合并
DocType: User,Birth Date,出生日期
DocType: Communication Link,Link Title,链接名称
@@ -1964,6 +1984,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your conn
DocType: Tag Link,Tag Link,标签链接
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,链完整性
DocType: Data Export,CSV,CSV
+DocType: Event Consumer,In Test,测试中
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1货币单位= [?]小额单位。例如1美元= 100美分
DocType: Data Import,Partially Successful,部分成功
@@ -1973,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard %
DocType: LDAP Settings,LDAP Group Mappings,LDAP组映射
DocType: Chat Message Attachment,Chat Message Attachment,聊天消息附件
DocType: LDAP Settings,Path to CA Certs File,CA Certs文件的路径
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,如果文档在生产者端和消费者端具有不同的字段名称,请检查并设置映射
DocType: Address,Manipur,曼尼普尔邦
DocType: Web Form Field,Allow Read On All Link Options,允许读取所有链接选项
DocType: DocType,Database Engine,数据库引擎
@@ -2107,6 +2129,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,注
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,错误报告
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,以CSV / Excel格式导出数据。
+DocType: Document Type Field Mapping,Document Type Field Mapping,文档类型字段映射
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,设置全局搜索文档。
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,您可以使用的验证应用程序是:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0}已存在。选择其他名称
@@ -2182,7 +2205,6 @@ DocType: Workflow State,Upload,上传
DocType: User Permission,Advanced Control,高级控制
DocType: System Settings,Date Format,日期格式
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,未发布
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默认的地址模板。请从设置>打印和品牌>地址模板中创建一个新地址。
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",工作流操作(例如审批,取消) 。
DocType: Data Import,Skip rows with errors,跳过有错误的行
DocType: Workflow State,flag,标志
@@ -2246,6 +2268,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,代表一个文档和角色分配给改变国家允许的状态。
DocType: Data Migration Connector,Database Name,数据库名称
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,刷新表格
+DocType: Event Producer,Event Producer,活动制作人
DocType: DocField,Select,选择
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,查看完整日志
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",简单的Python表达式,例如:status =='Open'并输入=='Bug'
@@ -2347,6 +2370,7 @@ DocType: DocType,User Cannot Search,用户不能搜索
DocType: Communication Link,Communication Link,通讯链接
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,无效的输出格式
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},无法{0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,通过自动重复{2}为您创建了一个重复的{0} {1}。
DocType: Custom DocPerm,Apply this rule if the User is the Owner,应用此规则如果用户是所有者
DocType: Global Search Settings,Global Search Settings,全局搜索设置
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,将是您的登录ID
@@ -2364,12 +2388,14 @@ apps/frappe/frappe/www/qrcode.html,QR Code for Login Verification,用于登录
apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,添加到待办事项
DocType: Footer Item,Company,公司
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},平均值{0}
+apps/frappe/frappe/model/workflow.py,Successful Transactions,成功交易
DocType: Scheduled Job Log,Scheduled,已计划
DocType: User,Logout from all devices while changing Password,更改密码时从所有设备注销
apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,确认密码
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,曾有些错误发生
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,在Google设置中输入客户端ID和客户端密钥。
apps/frappe/frappe/core/doctype/communication/communication.js,Close,关闭
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",电子邮件ID必须是唯一的,{0}的电子邮件帐户已经存在
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,不能将文档状态由0改为2
DocType: File,Attached To Field,已附加到字段
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,更新
@@ -2477,6 +2503,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js,Month,月
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip:添加Reference: {{ reference_doctype }} {{ reference_name }}发送文档引用
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,仅列出文档中涉及的用户
DocType: DocField,Fetch From,取自
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,设置>自定义表格
apps/frappe/frappe/modules/utils.py,App not found,应用程序未找到
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},无法针对子文件创建{0}:{1}
DocType: Social Login Key,Social Login Key,社交登录密钥
@@ -2488,7 +2515,6 @@ apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,聊天
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,社会之家
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},在后边插入不能设置为{0}
apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,分享{0}
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,电子邮件帐户设置,请输入您的密码:
DocType: Workflow State,hand-up,hand-up
DocType: Blog Settings,Writers Introduction,作者简介
DocType: Address,Phone,电话
@@ -2547,7 +2573,7 @@ DocType: Web Page,Insert Style,插入样式
DocType: Prepared Report,Error Message,错误信息
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,新的报告名称
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,隐藏周末
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,自动生成定期文档。
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,自动生成定期文档。
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Is,是
DocType: Onboarding Slide,ERPNext,企业资源计划
DocType: Workflow State,info-sign,info-sign
@@ -2555,7 +2581,6 @@ apps/frappe/frappe/model/base_document.py,Value for {0} cannot be a list,{0}不
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",货币应该如何格式化?未设置将使用系统默认
apps/frappe/frappe/public/js/frappe/list/list_view.js,Submit {0} documents?,提交{0}文件?
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,您需要先登录,并具有系统管理员角色才能够访问备份。
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","连接到QZ托盘应用程序时出错...
您需要安装并运行QZ Tray应用程序,才能使用Raw Print功能。
单击此处下载并安装QZ托盘 。
单击此处以了解有关原始印刷的更多信息 。"
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,打印机映射
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,请加附件前保存。
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,您要取消所有链接的文档吗?
@@ -2585,6 +2610,7 @@ DocType: Role Permission for Page and Report,Set Role For,为...设置角色
DocType: GCalendar Account,The name that will appear in Google Calendar,将显示在Google日历中的名称
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,已存在{0}的直接房间。
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,正在刷新...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},请检查为仪表盘图表设置的过滤器值:{}
DocType: Event,Starts on,开始于
DocType: System Settings,System Settings,系统设置
DocType: GCalendar Settings,Google API Credentials,Google API凭证
@@ -2610,6 +2636,7 @@ DocType: Workflow State,ok-sign,ok-sign
apps/frappe/frappe/config/settings.py,Deleted Documents,已删除的文件
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV格式区分大小写
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,桌面图标已经存在
+DocType: Event Consumer Document Type,Approval Status,审批状态
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,指定幻灯片应显示在所有域中。如果未指定任何内容,则默认情况下,幻灯片会显示在所有域中。
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,复制
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}:行{2}中的字段{1}无法隐藏,并且在没有默认情况下是必需的
@@ -2629,6 +2656,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,帮助文章
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,类型:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,您的付款失败。
+DocType: Event Producer,Producer URL,生产者网址
DocType: Comment,Unshared,非共享
DocType: Address,Karnataka,卡纳塔克邦
apps/frappe/frappe/desk/moduleview.py,Module Not Found,模块未找到
@@ -2640,6 +2668,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,指派完成
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},批量编辑{0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,下载报告
+apps/frappe/frappe/model/workflow.py,Workflow Status,工作流程状态
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,非活动
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,仅允许管理员创建仪表板图表源
DocType: About Us Settings,Settings for the About Us Page,关于我们页面的设置
@@ -2649,6 +2678,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,打
DocType: Notification Settings,Energy Points,能量点
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},时间{0}必须采用以下格式:{1}
DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,例如pop.gmail.com / imap.gmail.com
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}:无法附加新的重复文件。要在自动重复通知电子邮件中附加文档,请在“打印设置”中启用{1}
DocType: User,Generate Keys,生成密钥
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,这将永久删除您的数据。
DocType: DocType,View Settings,视图设置
@@ -2700,6 +2730,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criti
DocType: Contact,All,所有
DocType: Email Queue,Recipient,收件人
DocType: Webhook,Webhook Security,Webhook安全
+DocType: Event Sync Log,Producer Document Name,生产者文件名称
DocType: Communication,Has Attachment,有附件
DocType: Address,Sales User,销售用户
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,拖放工具可以用来创建和定制打印格式。
@@ -2735,6 +2766,7 @@ DocType: Address,Arunachal Pradesh,阿鲁纳恰尔邦
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,子表在其他DocType中显示为网格
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,设置自动电子邮件
apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Down,按Ctrl +向下
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,您要订阅消费事件的站点。
DocType: Chat Profile,Message Preview,消息预览
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,这是一个前10名的常用密码。
DocType: User,User Defaults,用户默认
@@ -2767,6 +2799,7 @@ DocType: Dashboard Chart,Last Synced On,最后同步
DocType: Comment,Comment Type,评论类型
DocType: OAuth Client,OAuth Client,开放式验证客户端
DocType: Assignment Rule,Users,用户
+DocType: Document Type Mapping,Local Document Type,本地文件类型
DocType: Address,Odisha,奥里萨邦
DocType: Report,Report Type,报告类型
DocType: DocField,Signature,签名
@@ -2809,6 +2842,7 @@ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Ma
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0}自行分配此任务:{1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,你的国家
DocType: Assignment Rule Day,Sunday,星期天
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",在事件生产者网站上维护具有使用者的文档的所有插入,更新和删除的日志。
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}:字段名称不能是{1}之一
apps/frappe/frappe/templates/emails/energy_points_summary.html,Standings,排名
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,在网格视图
@@ -2956,7 +2990,6 @@ DocType: Web Page,Sidebar and Comments,边栏和评论
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",当你修订一个已取消和保存的文档时,文档会复制为一个副本。
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings",不允许附加{0}文档,请在打印设置中启用允许打印{0}
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建一个新的电子邮件帐户
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},请参阅{0}处的文档
DocType: Stripe Settings,Publishable Key,可发布密钥
DocType: Stripe Settings,Publishable Key,可发布密钥
@@ -3035,7 +3068,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,信息:
DocType: Custom Field,Permission Level,权限级别
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} :没有写入的情况下不能设置“提交”,“取消”,“修订”
DocType: List View Setting,Disable Count,禁用计数
-DocType: Google Maps Settings,Client Key,客户端密钥
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,您确定要删除的附件?
apps/frappe/frappe/__init__.py,Thank you,谢谢
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,保存
@@ -3162,6 +3194,7 @@ DocType: Workflow Document State,Only Allow Edit For,只允许编辑
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,备份到Google云端硬盘。
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},强制字段:{0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,您的姓名
+DocType: Event Producer Document Type,Event Producer Document Type,事件生产者文档类型
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,连接成功
DocType: DocType,InnoDB,InnoDB
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,幻灯片类型继续的上载幻灯片已存在。
@@ -3233,6 +3266,7 @@ DocType: Address,Postal Code,邮政编码
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,重新链接通讯
DocType: Translation,Contributed,供稿
apps/frappe/frappe/config/customization.py,Form Customization,表单自定义
+DocType: Event Update Log,Event Update Log,事件更新日志
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,没有活动会话
DocType: Web Form,Route to Success Link,通往成功链接的路线
DocType: Onboarding Slide Field,Right,右边
@@ -3259,7 +3293,7 @@ DocType: Website Settings,Chat Operators,聊天运营商
DocType: S3 Backup Settings,ca-central-1,CA-中央-1
DocType: Contact Us Settings,Pincode,PIN代码
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,请确保没有空列在文件中。
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,如果文档经历多个阶段,则跟踪文档生命周期中的里程碑。
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,如果文档经历多个阶段,则跟踪文档生命周期中的里程碑。
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",重命名文件并替换控制器中的代码,请检查!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,请确保您的个人资料有一个电子邮件地址,
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,本表单中存在未保存的修改,请先保存后继续使用。
@@ -3286,7 +3320,6 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,保存API密码:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},不能链接到已取消文件{0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,不能编辑标准的报告。请复制并创建一个新的报告
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address",公司是强制性的,因为它是你的公司地址
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,"For example: If you want to include the document ID, use {0}",例如:如果要包括文件ID,使用{0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},选择{0}的列
DocType: Custom Field,Options Help,选项帮助
@@ -3294,7 +3327,6 @@ DocType: Footer Item,Group Label,组标签
DocType: Kanban Board,Kanban Board,看板
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,已配置Google通讯录。
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,将导出1条记录
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,没有与该用户关联的电子邮件帐户。请在“用户”>“电子邮件收件箱”下添加一个帐户。
DocType: DocField,Report Hide,报告隐藏
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},不适用于树视图{0}
DocType: DocType,Restrict To Domain,限制域名
@@ -3360,7 +3392,9 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}:类型{2}的字段{1}不能是必需的
DocType: System Settings,In Days,在天
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Miss,小姐
+DocType: Event Producer Document Type,Has Mapping,有映射
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,请注明
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,无效的过滤器值
DocType: Comment,Bot,聊天机器人
DocType: Help Article,Help Article,帮助文章
DocType: Page,Page Name,网页名称
@@ -3468,7 +3502,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,打印格式
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,切换网格视图
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,转到下一条记录
-DocType: System Settings,Time Format,时间格式
+DocType: Country,Time Format,时间格式
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,无效的支付网关凭据
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,这是只是行有一些错误而生成的模板文件。您应该使用此文件进行更正和导入。
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,为文件类型和角色设置权限
@@ -3805,6 +3839,7 @@ DocType: Webhook,on_update_after_submit,on_update_after_submit
DocType: System Settings,Allow Login using User Name,允许使用用户名登录
apps/frappe/frappe/core/doctype/report/report.js,Enable Report,启用报告
DocType: DocField,Display Depends On,显示的内容取决于
+apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年之前
DocType: Social Login Key,API Endpoint,应用程序界面端点
DocType: Web Page,Insert Code,插入代码
DocType: Data Migration Run,Current Mapping Type,当前映射类型
@@ -3858,6 +3893,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,确
apps/frappe/frappe/www/login.html,Or login with,或用...登录
DocType: Error Snapshot,Locals,当地人
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},通过传达{0}在{1} {2}
+DocType: Event Producer,Event Producer Document Types,事件生产者文档类型
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认的电子邮件帐户
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,选择分组依据...
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,例如:(55 + 434)/ 4 =或Math.sin(Math.PI / 2)...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0}是必填项
@@ -3890,9 +3927,11 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} fi
DocType: Deleted Document,GCalendar Sync ID,GCalendar同步ID
DocType: Prepared Report,Report Start Time,报告开始时间
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,导出数据
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,保留所有消耗的事件以及同步状态和“重新同步”按钮的日志,以防同步失败。
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,选择列
DocType: Translation,Source Text,源文本
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,这是一份后台报告。请设置适当的过滤器,然后生成一个新过滤器。
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建一个新的电子邮件帐户
apps/frappe/frappe/www/login.py,Missing parameters for login,缺少参数登录
DocType: Workflow State,folder-open,文件夹-打开
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",提交后,无法更改可提交的文档。它们只能被取消和修改。
@@ -3972,6 +4011,7 @@ DocType: Blog Post,Published On,发表于
DocType: Contact,Gender,性别
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,强制性信息丢失:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0}在{1}上恢复了积分
+DocType: Event Consumer,Event Subscriber,事件订阅者
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,检查请求URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,一个请求只允许200个插入
DocType: Footer Item,URL,网址
@@ -3984,6 +4024,7 @@ DocType: Auto Email Report,Half Yearly,半年度
DocType: Communication,Marked As Spam,标记为垃圾邮件
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},有一些问题与文件的URL:{0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,树
+DocType: Event Producer Document Type,Use Same Name,使用相同的名称
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,您不允许打印此报告
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,用户权限
DocType: Workflow State,warning-sign,警告标识
@@ -3993,6 +4034,7 @@ DocType: Workflow State,User,用户
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",标题显示在浏览器窗口中的“前缀 - 标题”
DocType: Payment Gateway,Gateway Settings,网关设置
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,文件类型的文本
+DocType: Event Sync Log,Event Sync Log,事件同步日志
apps/frappe/frappe/handler.py,Logged Out,登出
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,More...,更多...
DocType: System Settings,User can login using Email id or Mobile number,用户可以使用电子邮件ID或手机号登录
@@ -4033,12 +4075,14 @@ apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers adde
apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,在不
DocType: Workflow State,star,star
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,集线器
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,如果选中此选项,则文档的名称将与事件生产者网站上的名称相同
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,用逗号分隔的值
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},行{0}中,货币类型的最大宽度是100像素
apps/frappe/frappe/config/website.py,Content web page.,内容的网页。
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,新建角色
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,访问网页
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,新作业
+DocType: Event Consumer Document Type,Approved,已批准
DocType: Google Contacts,Last Sync On,上次同步开启
DocType: Deleted Document,Deleted Document,删除的文档
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,糟糕!出错了
@@ -4091,7 +4135,6 @@ DocType: DocField,Unique,唯一
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0}赞赏{1}
apps/frappe/frappe/core/doctype/data_import/data_import_list.js,Partial Success,部分成功
DocType: Email Account,Service,服务
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,设置>用户
DocType: File,File Name,文件名
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),没有为{0} 找到{0}( {1} )
apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},分辨率:{0}
@@ -4103,11 +4146,10 @@ DocType: Calendar View,Calendar View,日历视图
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,编辑格式
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,完成注册
DocType: GCalendar Settings,Enable,启用
-DocType: Google Maps Settings,Home Address,主页地址
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),一次最多只能上传5000条记录(某些情况下可能更少)
DocType: Report,"output in the form of `data = [columns, result]`",以data = [columns,result]的形式输出
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,适用的文件类型
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,为用户分配设置规则。
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,为用户分配设置规则。
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}的权限不足
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}的权限不足
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),报告尚未保存(有错误)
diff --git a/frappe/translations/zh_tw.csv b/frappe/translations/zh_tw.csv
index 3ddce180d7..9702caab8e 100644
--- a/frappe/translations/zh_tw.csv
+++ b/frappe/translations/zh_tw.csv
@@ -43,7 +43,6 @@ DocType: Data Migration Run,Logs,日誌
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,儲存篩選條件時發生錯誤
DocType: Custom DocPerm,This role update User Permissions for a user,這個角色更新用戶權限的用戶
DocType: Workflow State,zoom-out,縮小
-DocType: Data Import Beta,Import Options,導入選項
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,無法打開{0} ,當它的實例是開放的
apps/frappe/frappe/model/document.py,Table {0} cannot be empty,表{0}不能為空
DocType: SMS Parameter,Parameter,參數
@@ -74,16 +73,17 @@ DocType: Assignment Rule,Automatically Assign Documents to Users,自動為用戶
DocType: DocType,Is Published Field,發布現場
DocType: GCalendar Settings,GCalendar Settings,GCalendar設置
DocType: Email Group,Email Group,電子郵件組
-apps/frappe/frappe/__init__.py,Only for {},僅適用於 {}
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}.",Google日曆 - 無法從Google日曆中刪除事件{0},錯誤代碼為{1}。
DocType: Event,Pulled from Google Calendar,從Google日曆中拉出
DocType: Note,Seen By,看到通過
apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,添加多個
apps/frappe/frappe/core/doctype/user/user.py,Not a valid User Image.,不是有效的用戶映像。
DocType: Success Action,First Success Message,第一個成功消息
+DocType: Document Type Mapping,Document Type Mapping,文件類型對應
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,不喜歡
apps/frappe/frappe/model/document.py,Incorrect value: {0} must be {1} {2},不正確的值:{0}必須是{1} {2}
apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",更改欄位屬性(隱藏,唯讀權限等)
+apps/frappe/frappe/config/automation.py,The site which is consuming your events.,正在使用您的事件的站點。
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,欣賞
DocType: Workflow State,lock,鎖
apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,設定「聯絡我們」的頁面。
@@ -105,6 +105,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} can
DocType: Dashboard Chart,Timespan,時間跨度
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Web Link,網站鏈接
DocType: Deleted Document,Restored,恢復
+apps/frappe/frappe/public/js/frappe/form/print.js,"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.","連接到QZ托盤應用程序時出錯...
您需要安裝並運行QZ Tray應用程序才能使用Raw Print功能。
單擊此處下載並安裝QZ托盤 。
單擊此處以了解有關原始印刷的更多信息 。"
apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1分鐘前
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.",除了系統管理器,用設置用戶權限的角色權可以為其他用戶的文件類型的權限。
apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,配置主題
@@ -168,6 +169,7 @@ DocType: DocField,Read Only Depends On,只讀取決於
apps/frappe/frappe/integrations/oauth2.py,Logged in as Guest or Administrator,登錄為來賓或管理員
DocType: Email Account,UNSEEN,看不見
DocType: Website Settings,"HTML Header, Robots and Redirects",HTML標頭,機器人和重定向
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to connect to the Event Producer site. Retry after some time.,無法連接到事件生產者站點。一段時間後重試。
apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or current jobs for this site,此站點沒有待處理或當前作業
DocType: Braintree Settings,Braintree Settings,Braintree設置
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,已成功創建{0}條記錄。
@@ -184,6 +186,7 @@ DocType: Server Script,Script Manager,腳本管理器
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No activity,沒有活動
apps/frappe/frappe/www/third_party_apps.html,Third Party Apps,第三方應用
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The first user will become the System Manager (you can change this later).,第一個用戶將成為系統管理器(你可以改變這個版本)。
+apps/frappe/frappe/desk/query_report.py,You can try changing the filters of your report.,您可以嘗試更改報告的過濾器。
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,No Events Today,今天沒有活動
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You cannot give review points to yourself,你不能給自己提供評論點
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,DocType must be Submittable for the selected Doc Event,DocType必須為所選Doc事件提交
@@ -212,6 +215,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Per
apps/frappe/frappe/public/js/frappe/views/communication.js,You are not allowed to send emails related to this document,你不被允許發送與此相關的文檔的電子郵件
apps/frappe/frappe/model/db_query.py,Please select atleast 1 column from {0} to sort/group,請選擇從{0}進行排序/組ATLEAST 1柱
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1}. Restricted field: {2},不允許{0}:{1}。受限制的字段:{2}
+apps/frappe/frappe/contacts/doctype/address/address.py,Company not Linked,公司未鏈接
DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,檢查這個,如果你正在測試使用沙盒API付款
apps/frappe/frappe/website/doctype/website_theme/website_theme.py,You are not allowed to delete a standard Website Theme,你不允許刪除標準的網站主題
apps/frappe/frappe/public/js/frappe/list/list_view.js,Create your first {0},創建您的第一個{0}
@@ -229,7 +233,6 @@ apps/frappe/frappe/core/doctype/communication/communication_list.js,Mark as Read
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide {0} with the same slide order already exists,具有相同幻燈片順序的入門幻燈片{0}已存在
apps/frappe/frappe/core/doctype/report/report.js,Disable Report,禁用報告
DocType: Translation,Contributed Translation Doctype Name,貢獻翻譯文檔類型名稱
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設置>自定義表格
DocType: Data Migration Mapping,Pull,拉
DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript的格式:frappe.query_reports ['REPORTNAME'] = {}
DocType: Workflow State,chevron-up,人字形-上
@@ -239,6 +242,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanent
apps/frappe/frappe/utils/oauth.py,Not Allowed,不允許
DocType: DocShare,Internal record of document shares,文件股內部記錄
DocType: Energy Point Settings,Review Levels,評論級別
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設置>用戶權限
DocType: Workflow State,Comment,評論
DocType: Data Migration Plan,Postprocess Method,後處理方法
DocType: DocType Action,Action Type,動作類型
@@ -282,12 +286,13 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Show Weekends,顯
DocType: Workflow State,remove-circle,刪除圈
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,我的簡歷
DocType: Help Article,Beginner,初學者
+apps/frappe/frappe/__init__.py,This action is only allowed for {},此操作僅適用於{}
DocType: Contact,Is Primary Contact,是主要聯絡人
+DocType: Event Consumer,Event Consumer,活動消費者
apps/frappe/frappe/config/website.py,Javascript to append to the head section of the page.,Javascript附加到頁面的head區塊。
apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,不允許打印文件草案
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,重置為預設值
DocType: Workflow,Transition Rules,過渡規則
-apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,在預覽中僅顯示前{0}行
apps/frappe/frappe/public/js/frappe/list/list_view.js,Restrictions,限制條件
DocType: Workflow,Defines workflow states and rules for a document.,定義文檔工作流狀態和規則。
DocType: Workflow State,Filter,過濾器
@@ -413,7 +418,6 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items
DocType: Event,Repeat Till,重複直到
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New,新增
apps/frappe/frappe/public/js/frappe/views/components/ModuleLinkItem.vue,You need to create these first: ,您需要先創建這些:
-DocType: Google Maps Settings,Google Maps Settings,谷歌地圖設置
apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,載入中...
DocType: DocField,Password,密碼
apps/frappe/frappe/utils/response.py,Your system is being updated. Please refresh again after a few moments,您的系統正在更新。請在一段時間後再次刷新
@@ -494,6 +498,7 @@ DocType: Onboarding Slide,Onboarding Slide,入門幻燈片
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,無效的密碼:
apps/frappe/frappe/core/doctype/user/user.py,Invalid Password: ,無效的密碼:
DocType: Print Settings,Send document web view link in email,發送電子郵件文件Web視圖鏈接
+DocType: Event Consumer Document Type,Event Consumer Document Type,事件使用者文檔類型
apps/frappe/frappe/public/js/frappe/ui/slides.js,Previous,上一筆
DocType: LDAP Settings,Require Trusted Certificate,需要可信證書
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} rows for {1},{0}的行{1}
@@ -569,9 +574,11 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Filter By,過
apps/frappe/frappe/database/database.py,No conditions provided,沒有提供條件
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Y Axis Fields,Y軸場
apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,排序字段{0}必須是有效的字段名
+apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默認的地址模板。請從設置>打印和商標>地址模板中創建一個新地址。
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,創建一個新記錄
DocType: Contact,Sales Manager,銷售經理
DocType: Print Format,Format Data,格式數據
+apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,{0} is not a valid report format. Report format should one of the following {1},{0}不是有效的報告格式。報告格式應為以下{1}之一
DocType: List Filter,Filter Name,過濾器名稱
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Like,包含
DocType: Assignment Rule,Automation,自動化
@@ -589,6 +596,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"Email Domain no
DocType: User,Reset Password Key,重設密碼鍵值
apps/frappe/frappe/model/workflow.py,Illegal Document Status for {0},{0}的非法文檔狀態
DocType: Email Account,Enable Auto Reply,啟用自動回复
+apps/frappe/frappe/desk/query_report.py,No data to export,沒有要導出的數據
apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,沒見過
apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,不能將多個打印機映射到單個打印格式。
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Reference DocType and Reference Name are required,參考的DocType和參考名稱是必需的
@@ -724,6 +732,7 @@ apps/frappe/frappe/email/queue.py,Unsubscribe,退訂
DocType: View Log,Reference Name,參考名稱
apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,改變用戶
apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Update Translations,更新翻譯
+DocType: Event Consumer,Event Consumer Document Types,事件消費者文檔類型
DocType: Activity Log,Activity Log,活動日誌
DocType: View Log,Viewed By,由...觀看
DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,單一類型只有一個記錄關聯的表。值被存儲在tabSingles
@@ -755,6 +764,7 @@ apps/frappe/frappe/config/settings.py,Set numbering series for transactions.,設
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,配置圖表
DocType: User,Last IP,最後一個IP
apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,請在您的電子郵件中添加主題
+apps/frappe/frappe/model/workflow.py,Errored Transactions,錯誤交易
DocType: Data Migration Connector,Data Migration Connector,數據遷移連接器
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0}還原{1}
DocType: Email Account,Track Email Status,跟踪電子郵件狀態
@@ -782,6 +792,7 @@ DocType: Print Settings,Server IP,服務器IP
apps/frappe/frappe/website/doctype/web_form/web_form.py,You don't have the permissions to access this document,您沒有訪問此文件的權限
DocType: Language,Language Name,語言名稱
DocType: Email Group Member,Email Group Member,電子郵件組成員
+apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,沒有與該用戶關聯的電子郵件帳戶。請在“用戶”>“電子郵件收件箱”下添加一個帳戶。
apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,您的帳戶已被鎖定,並將在{0}秒後恢復
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,用戶權限用於將用戶限製到特定的記錄。
DocType: Notification,Value Changed,更改的值
@@ -861,6 +872,7 @@ DocType: GCalendar Account,Authorization Code,授權碼
DocType: PayPal Settings,Mention transaction completion page URL,何況交易完成後頁面的網址
DocType: Help Article,Expert,專家
DocType: Workflow State,circle-arrow-right,圓圈箭頭向右
+DocType: Document Type Mapping,Remote Document Type,遠端文件類型
apps/frappe/frappe/permissions.py,Document Type is not importable,憑證類型不可導入
DocType: LDAP Settings,LDAP Server Url,LDAP服務器URL
apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,無法打開實例時,它的{0}是開放的
@@ -935,7 +947,7 @@ DocType: Web Form,Allow Print,允許打印
DocType: Communication,Clicked,點擊
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,取消關注
apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},沒有權限“{0}” {1}
-apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認的電子郵件帳戶
+apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows out of {1},僅顯示{1}中的前{0}行
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Scheduled to send,計劃送
DocType: DocType,Track Seen,軌道看
DocType: Dropbox Settings,File Backup,文件備份
@@ -1052,9 +1064,8 @@ DocType: Email Account,Always use Account's Email Address as Sender,始終使用
apps/frappe/frappe/templates/includes/comments/comments.html,Login to comment,登錄發表評論
apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,開始輸入數據低於此線
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0},用於改變的值{0}
-apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists \
- for {0}",電子郵件ID必須唯一,電子郵件帳戶已存在\ {0}
DocType: Workflow State,retweet,轉推
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",為了進行比較,請使用> 5,<10或= 324。對於範圍,請使用5:10(對於5到10之間的值)。
DocType: Print Format,Align Labels to the Right,將標籤對齊
DocType: Assignment Rule,Disabled,不使用
DocType: File,Uploaded To Dropbox,上傳到Dropbox
@@ -1099,8 +1110,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,"tag name..., e.g.
apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,鍵盤快捷鍵
DocType: Post,Comments,評論
apps/frappe/frappe/public/js/frappe/dom.js,Confirm,確認
+DocType: Event Sync Log,Update Type,更新類型
apps/frappe/frappe/public/js/frappe/desk.js,Authenticating...,驗證...
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,全部收縮
+DocType: Event Producer,Last Update,最後更新
apps/frappe/frappe/www/login.html,Forgot Password?,忘了密碼?
DocType: System Settings,yyyy-mm-dd,年 - 月 - 日
apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,服務器錯誤
@@ -1138,6 +1151,7 @@ DocType: LDAP Settings,Password for Base DN,密碼基礎DN
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,基於列
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}",導入{1},{2}中的{0}
DocType: Workflow State,move,舉
+apps/frappe/frappe/event_streaming/doctype/event_producer/event_producer.py,Failed to create an Event Consumer or an Event Consumer for the current site is already registered.,無法創建事件使用者或當前站點的事件使用者已被註冊。
apps/frappe/frappe/model/document.py,Action Failed,操作失敗
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,對於用戶
DocType: View Log,View log,查看日誌
@@ -1279,6 +1293,7 @@ DocType: DefaultValue,Key,關鍵
DocType: Address,Contacts,往來
DocType: System Settings,Setup Complete,安裝完成
apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,所有的文件共享報告
+DocType: Event Consumer,Callback URL,回調網址
apps/frappe/frappe/core/doctype/data_import/importer_new.py,"Import template should be of type .csv, .xlsx or .xls",導入模板的類型應為.csv,.xlsx或.xls
apps/frappe/frappe/www/update-password.html,New Password,新密碼
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,過濾器{0}丟失
@@ -1356,6 +1371,7 @@ DocType: Role,"If disabled, this role will be removed from all users.",如果禁
apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,轉到{0}列表
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,搜索幫助
apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,註冊但被禁用
+apps/frappe/frappe/contacts/doctype/address/address.py,Address needs to be linked to a Company. Please add a row for Company in the Links table below.,地址需要鏈接到公司。請在下面的鏈接表中為公司添加一行。
apps/frappe/frappe/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,此文檔的自動重複已被禁用。
DocType: DocType,Hide Copy,隱藏副本
apps/frappe/frappe/model/base_document.py,{0} must be unique,{0}必須是獨特的
@@ -1388,6 +1404,7 @@ DocType: Chat Token,Country,國家
apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print,附加文件列印
DocType: Bulk Update,Field,領域
DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",像“before_insert”,“after_update”等有效方法觸發(取決於所選的文檔類型)
+apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: {0},電子郵件帳戶設置,請輸入您的密碼:{0}
apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,至少要有一名系統管理員,將該用戶設定成系統管理員
DocType: Chat Message,URLs,網址
DocType: Data Migration Run,Total Pages,總頁數
@@ -1395,7 +1412,6 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has alrea
DocType: DocField,Attach Image,附上圖片
DocType: Workflow State,list-alt,列表ALT
apps/frappe/frappe/www/update-password.html,Password Updated,密碼更新
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設置>用戶權限
apps/frappe/frappe/www/qrcode.html,Steps to verify your login,驗證您的登錄的步驟
apps/frappe/frappe/utils/password.py,Password not found,密碼未找到
DocType: Data Migration Mapping,Page Length,頁面長度
@@ -1408,8 +1424,6 @@ apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API設置
DocType: Report,Query Report,查詢報表
DocType: User,Set New Password,設定新密碼
apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},不允許{0}:{1}
-apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,"%s is not a valid report format. Report format should \
- one of the following %s",%s不是一個有效的報告格式。報告格式應\下面%S之一
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,No documents found tagged with {0},找不到標有{0}的文檔
DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP組映射
DocType: Dashboard Chart,Chart Options,圖表選項
@@ -1568,6 +1582,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,數據遷移計
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Starting Frappé ...,開始Frappé...
DocType: Web Form Field,Max Length,最長長度
DocType: Workflow State,map-marker,地圖標記
+apps/frappe/frappe/config/automation.py,The mapping configuration between two doctypes.,兩個文檔類型之間的映射配置。
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Submit an Issue,提交問題
DocType: Event,Repeat this Event,重複此事件
DocType: Address,Maintenance User,維護用戶
@@ -1616,6 +1631,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Ce
DocType: Newsletter,Test Email Address,測試電子郵件地址
DocType: Auto Repeat,Reference Document Type,參考文檔類型
DocType: ToDo,Sender,寄件人
+DocType: Event Consumer,Incoming Change,即將到來的變化
DocType: Google Drive,Backup Folder Name,備份文件夾名稱
apps/frappe/frappe/email/doctype/notification/notification.py,Error while evaluating Notification {0}. Please fix your template.,評估通知{0}時出錯。請修復您的模板。
DocType: GSuite Settings,Google Apps Script,Google Apps腳本
@@ -1670,9 +1686,10 @@ apps/frappe/frappe/public/js/frappe/form/print.js,New Print Format Name,新的
apps/frappe/frappe/templates/emails/data_deletion_approval.html,Click on the link below to approve the request,單擊下面的鏈接批准該請求
DocType: Workflow State,align-left,靠左對齊
DocType: Onboarding Slide,Action Settings,動作設定
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設置>用戶
DocType: User,Defaults,預設
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",為了進行比較,請使用> 5,<10或= 324。對於範圍,請使用5:10(對於5到10之間的值)。
DocType: Energy Point Log,Revert Of,還原
+DocType: Document Type Mapping,Field Mapping,場圖
apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,合併與現有的
DocType: Communication Link,Link Title,鏈接標題
DocType: Address,Chandigarh,昌迪加爾
@@ -1696,12 +1713,14 @@ apps/frappe/frappe/utils/print_format.py,You need to install pycups to use this
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Your connection request to Google Calendar was successfully accepted,您的Google日曆連接請求已成功接受
DocType: Tag Link,Tag Link,標籤鏈接
apps/frappe/frappe/core/report/transaction_log_report/transaction_log_report.py,Chain Integrity,鏈完整性
+DocType: Event Consumer,In Test,測試中
DocType: Currency,"1 Currency = [?] Fraction
For e.g. 1 USD = 100 Cent",1 貨幣= [?] 如:1美元= 100美分
apps/frappe/frappe/core/doctype/user/user.py,"Too many users signed up recently, so the registration is disabled. Please try back in an hour",太多用戶簽約近日,所以報名無效。請嘗試一小時後回來
apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add New Permission Rule,添加新的權限規則
DocType: LDAP Settings,LDAP Group Mappings,LDAP組映射
DocType: LDAP Settings,Path to CA Certs File,CA Certs文件的路徑
+DocType: Event Producer Document Type,If the document has different field names on the Producer and Consumer's end check this and set up the Mapping,如果文檔在生產者和消費者端具有不同的字段名稱,請檢查並設置映射
DocType: Address,Manipur,曼尼普爾邦
DocType: Web Form Field,Allow Read On All Link Options,允許讀取所有鏈接選項
DocType: DocType,Database Engine,資料庫引擎
@@ -1816,6 +1835,7 @@ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Folder name should n
DocType: Note,Note,注釋
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,錯誤報告
apps/frappe/frappe/config/settings.py,Export Data in CSV / Excel format.,以CSV / Excel格式導出數據。
+DocType: Document Type Field Mapping,Document Type Field Mapping,文檔類型字段映射
apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Setting up Global Search documents.,設置全局搜索文檔。
apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,您可以使用的驗證應用程序是:
apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0}已存在。選擇其他名稱
@@ -1882,7 +1902,6 @@ DocType: Webhook,Webhook Headers,Webhook標題
DocType: Workflow State,Upload,上載
DocType: User Permission,Advanced Control,高級控制
apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js,Not Published,未發布
-apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默認的地址模板。請從設置>打印和商標>地址模板中創建一個新地址。
apps/frappe/frappe/config/settings.py,"Actions for workflow (e.g. Approve, Cancel).",流程的操作(如批准、取消)。
DocType: Data Import,Skip rows with errors,跳過有錯誤的行
DocType: Workflow State,flag,旗標
@@ -1935,6 +1954,7 @@ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Leve
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,代表一個文檔和角色分配給改變國家允許的狀態。
DocType: Data Migration Connector,Database Name,數據庫名稱
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,更新表格
+DocType: Event Producer,Event Producer,活動製作人
DocType: DocField,Select,選擇
apps/frappe/frappe/public/js/frappe/ui/notifications/notifications.js,View Full Log,查看完整日誌
DocType: Assignment Rule,"Simple Python Expression, Example: status == 'Open' and type == 'Bug'",簡單的Python表達式,例如:status =='Open'並輸入=='Bug'
@@ -2022,6 +2042,7 @@ DocType: DocType,User Cannot Search,無法搜尋使用者
DocType: Communication Link,Communication Link,通訊鏈接
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,無效的輸出格式
apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},無法{0} {1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,A recurring {0} {1} has been created for you via Auto Repeat {2}.,通過自動重複{2}為您創建了一個重複的{0} {1}。
DocType: Custom DocPerm,Apply this rule if the User is the Owner,應用此規則如果用戶是業主
DocType: Global Search Settings,Global Search Settings,全局搜索設置
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,將是您的登錄ID
@@ -2043,6 +2064,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify Password,確認密碼
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were errors,有錯誤
apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter Client Id and Client Secret in Google Settings.,在Google設置中輸入客戶端ID和客戶端密鑰。
apps/frappe/frappe/core/doctype/communication/communication.js,Close,關閉
+apps/frappe/frappe/email/doctype/email_account/email_account.py,"Email ID must be unique, Email Account already exists for {0}",電子郵件ID必須是唯一的,{0}的電子郵件帳戶已經存在
apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,不能改變docstatus 0-2
DocType: File,Attached To Field,附在田地上
DocType: Transaction Log,Transaction Hash,事務哈希
@@ -2142,6 +2164,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js,Socketio is not connected
DocType: Website Settings,Website Settings,網站設定
DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip:添加Reference: {{ reference_doctype }} {{ reference_name }}發送文檔引用
apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Only users involved in the document are listed,僅列出文檔中涉及的用戶
+apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設置>自定義表格
apps/frappe/frappe/modules/utils.py,App not found,未找到應用程式
apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},無法創建{0}針對兒童的文檔:{1}
DocType: Social Login Key,Social Login Key,社交登錄密鑰
@@ -2152,7 +2175,6 @@ DocType: Workflow State,pencil,鉛筆
apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,聊天訊息和其他通知。
apps/frappe/frappe/public/js/frappe/social/Home.vue,Social Home,社會之家
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Insert After cannot be set as {0},插入不能設定為後{0}
-apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,電子郵件帳戶設置,請輸入您的密碼:
DocType: Workflow State,hand-up,手向上
DocType: Blog Settings,Writers Introduction,作家簡介
DocType: Address,Phone,電話
@@ -2201,12 +2223,11 @@ DocType: Web Page,Insert Style,插入樣式
DocType: Prepared Report,Error Message,錯誤信息
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,新的報告名稱
apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Hide Weekends,隱藏週末
-apps/frappe/frappe/config/settings.py,Automatically generates recurring documents.,自動生成定期文檔。
+apps/frappe/frappe/config/automation.py,Automatically generates recurring documents.,自動生成定期文檔。
DocType: Onboarding Slide,ERPNext,企業資源計劃
DocType: Workflow State,info-sign,資訊符號
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",此貨幣使用何種格式?如果沒有設定,將使用系統預設值。
apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,您需要先登錄,並具有系統管理員角色才能夠訪問備份。
-apps/frappe/frappe/public/js/frappe/form/print.js,"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.","連接到QZ托盤應用程序時出錯...
您需要安裝並運行QZ Tray應用程序才能使用Raw Print功能。
單擊此處下載並安裝QZ托盤 。
單擊此處以了解有關原始印刷的更多信息 。"
apps/frappe/frappe/public/js/frappe/form/print.js,Printer Mapping,打印機映射
apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,請安裝前儲存。
apps/frappe/frappe/public/js/frappe/form/form.js,Do you want to cancel all linked documents?,您要取消所有鏈接的文檔嗎?
@@ -2234,6 +2255,7 @@ DocType: Role Permission for Page and Report,Set Role For,集角色
DocType: GCalendar Account,The name that will appear in Google Calendar,將顯示在Google日曆中的名稱
apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Direct room with {0} already exists.,已存在{0}的直接房間。
apps/frappe/frappe/core/doctype/user/user.js,Refreshing...,更新中...
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Please check the filter values set for Dashboard Chart: {},請檢查為儀錶盤圖表設置的過濾器值:{}
DocType: Event,Starts on,開始於
DocType: System Settings,System Settings,系統設置
DocType: GCalendar Settings,Google API Credentials,Google API憑證
@@ -2258,6 +2280,7 @@ DocType: Workflow State,ok-sign,OK符號
apps/frappe/frappe/config/settings.py,Deleted Documents,已刪除的文件
apps/frappe/frappe/public/js/frappe/form/grid.js,The CSV format is case sensitive,CSV格式區分大小寫
apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py,Desktop Icon already exists,桌面圖標已經存在
+DocType: Event Consumer Document Type,Approval Status,審批狀態
DocType: Onboarding Slide,Specify in what all domains should the slides show up. If nothing is specified the slide is shown in all domains by default.,指定幻燈片應顯示在所有域中。如果未指定任何內容,則默認情況下,幻燈片會顯示在所有域中。
apps/frappe/frappe/public/js/frappe/form/toolbar.js,Duplicate,複製
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} in row {2} cannot be hidden and mandatory without default,{0}:行{2}中的字段{1}無法隱藏,並且在沒有默認情況下是必需的
@@ -2277,6 +2300,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,Message not set
DocType: Help Category,Help Articles,幫助文章
apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,類型:
apps/frappe/frappe/templates/pages/integrations/payment-failed.html,Your payment has failed.,您的付款失敗。
+DocType: Event Producer,Producer URL,生產者網址
DocType: Address,Karnataka,卡納塔克邦
apps/frappe/frappe/desk/moduleview.py,Module Not Found,模塊未找到
apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}:{1}設置為狀態{2}
@@ -2286,6 +2310,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py,"You need to have ""Share""
DocType: Comment,Assignment Completed,轉讓完成
apps/frappe/frappe/public/js/frappe/form/grid.js,Bulk Edit {0},批量編輯{0}
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,下載報告
+apps/frappe/frappe/model/workflow.py,Workflow Status,工作流程狀態
apps/frappe/frappe/workflow/doctype/workflow/workflow_list.js,Not active,不活躍
apps/frappe/frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py,Only Administrator is allowed to create Dashboard Chart Sources,僅允許管理員創建儀表板圖表源
DocType: About Us Settings,Settings for the About Us Page,設置關於我們頁面
@@ -2294,6 +2319,7 @@ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,條紋
apps/frappe/frappe/public/js/frappe/form/print.js,Print Sent to the printer!,打印發送到打印機!
DocType: Notification Settings,Energy Points,能量點
apps/frappe/frappe/public/js/frappe/form/controls/time.js,Time {0} must be in format: {1},時間{0}必須採用以下格式:{1}
+apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,"{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings",{0}:無法附加新的定期文檔。要啟用自動重複通知電子郵件中的附加文檔,請在打印設置中啟用{1}
DocType: User,Generate Keys,生成密鑰
apps/frappe/frappe/templates/emails/delete_data_confirmation.html,This will permanently remove your data.,這將永久刪除您的數據。
DocType: DocType,View Settings,視圖設置
@@ -2337,6 +2363,7 @@ DocType: Auto Repeat,Preview Message,預覽消息
DocType: User Social Login,User Social Login,用戶社交登錄
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} criticized your work on {1} with {2} point,{0}以{2}點批評了您在{1}上的工作
DocType: Email Queue,Recipient,接受者
+DocType: Event Sync Log,Producer Document Name,生產者文件名稱
DocType: Address,Sales User,銷售用戶
apps/frappe/frappe/config/settings.py,Drag and Drop tool to build and customize Print Formats.,拖放工具來構建和定製列印格式。
apps/frappe/frappe/core/doctype/user/user.py,Temporarily Disabled,暫時禁用
@@ -2369,6 +2396,7 @@ DocType: Email Account,Attachment Limit (MB),附件限制(MB)
DocType: Address,Arunachal Pradesh,阿魯納恰爾邦
DocType: DocType,Child Tables are shown as a Grid in other DocTypes,子表在其他DocType中顯示為網格
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Email,設置自動電子郵件
+apps/frappe/frappe/config/automation.py,The site you want to subscribe to for consuming events.,您要訂閱消費事件的站點。
DocType: Chat Profile,Message Preview,消息預覽
apps/frappe/frappe/utils/password_strength.py,This is a top-10 common password.,這是一個前10名的通用密碼。
DocType: User,User Defaults,使用者預設
@@ -2399,6 +2427,7 @@ DocType: Dashboard Chart,Last Synced On,最後同步
DocType: Comment,Comment Type,註釋類型
DocType: OAuth Client,OAuth Client,OAuth客戶端
DocType: Assignment Rule,Users,用戶
+DocType: Document Type Mapping,Local Document Type,本地文件類型
DocType: Address,Odisha,奧里薩邦
DocType: Report,Report Type,報告類型
DocType: DocField,Signature,簽名
@@ -2435,6 +2464,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Googl
apps/frappe/frappe/templates/emails/administrator_logged_in.html,"Dear System Manager,",親愛的系統管理器,
apps/frappe/frappe/desk/doctype/todo/todo.py,{0} self assigned this task: {1},{0}自行分配此任務:{1}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Your Country,你的國家
+apps/frappe/frappe/config/automation.py,"Maintains a Log of all inserts, updates and deletions on Event Producer site for documents that have consumers.",在事件生產者網站上維護具有使用者的文檔的所有插入,更新和刪除的日誌。
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname cannot be one of {1},{0}:字段名稱不能是{1}之一
apps/frappe/frappe/core/doctype/doctype/doctype.js,In Grid View,在網格視圖
apps/frappe/frappe/desk/page/user_profile/user_profile.js,No More Activity,沒有更多的活動
@@ -2560,7 +2590,6 @@ DocType: Web Page,Sidebar and Comments,邊欄和評論
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",當您修改一個文件後,取消和保存,它會得到一個新的數字,是一個版本的舊號碼。
apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to attach {0} document,
please enable Allow Print For {0} in Print Settings",不允許附加{0}文檔,請在打印設置中啟用允許打印{0}
-apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建一個新的電子郵件帳戶
apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},請參閱{0}處的文檔
DocType: Stripe Settings,Publishable Key,可發布密鑰
DocType: Stripe Settings,Publishable Key,可發布密鑰
@@ -2629,7 +2658,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Info:,資訊:
DocType: Custom Field,Permission Level,權限級別
apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} :沒有寫入則無法設定提交,取消,修改
DocType: List View Setting,Disable Count,禁用計數
-DocType: Google Maps Settings,Client Key,客戶端密鑰
apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,Are you sure you want to delete the attachment?,您確定要刪除附件?
apps/frappe/frappe/__init__.py,Thank you,謝謝
apps/frappe/frappe/public/js/frappe/form/save.js,Saving,儲存中
@@ -2737,6 +2765,7 @@ DocType: Workflow Document State,Only Allow Edit For,只允許編輯
apps/frappe/frappe/integrations/doctype/google_drive/google_drive.js,Backing up to Google Drive.,備份到Google雲端硬盤。
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Mandatory field: {0},強制字段:{0}
apps/frappe/frappe/templates/includes/comments/comments.html,Your Name,你的名字
+DocType: Event Producer Document Type,Event Producer Document Type,事件生產者文檔類型
apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connection Success,連接成功
apps/frappe/frappe/desk/doctype/onboarding_slide/onboarding_slide.py,An Onboarding Slide of Slide Type Continue already exists.,幻燈片類型繼續的上載幻燈片已存在。
DocType: DocType,Default Sort Field,默認排序字段
@@ -2797,6 +2826,7 @@ DocType: Workflow State,resize-small,調整大小-小
DocType: Address,Postal Code,郵政編碼
apps/frappe/frappe/core/doctype/communication/communication.js,Relink Communication,重新鏈接通訊
apps/frappe/frappe/config/customization.py,Form Customization,表單自定義
+DocType: Event Update Log,Event Update Log,事件更新日誌
apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,沒有活動會話
DocType: Web Form,Route to Success Link,通往成功鏈接的路線
DocType: Onboarding Slide Field,Right,右邊
@@ -2820,7 +2850,7 @@ DocType: Workflow State,Edit,編輯
DocType: Website Settings,Chat Operators,聊天運營商
DocType: Contact Us Settings,Pincode,PIN代碼
apps/frappe/frappe/core/doctype/data_import/importer.py,Please make sure that there are no empty columns in the file.,請確保沒有空欄在文件中。
-apps/frappe/frappe/config/settings.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,如果文檔經歷多個階段,則跟踪文檔生命週期中的里程碑。
+apps/frappe/frappe/config/automation.py,Tracks milestones on the lifecycle of a document if it undergoes multiple stages.,如果文檔經歷多個階段,則跟踪文檔生命週期中的里程碑。
apps/frappe/frappe/core/doctype/doctype/doctype.py,"Renamed files and replaced code in controllers, please check!",重命名文件並替換控制器中的代碼,請檢查!
apps/frappe/frappe/utils/oauth.py,Please ensure that your profile has an email address,請確保您的個人資料有一個電子郵件地址,
apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,你在本表格未保存的更改。
@@ -2843,13 +2873,11 @@ apps/frappe/frappe/utils/response.py,You don't have permission to access this fi
apps/frappe/frappe/core/doctype/user/user.js,Save API Secret: ,保存API密碼:
apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},無法鏈接取消文件:{0}
apps/frappe/frappe/core/doctype/report/report.py,Cannot edit a standard report. Please duplicate and create a new report,不能編輯標準的報告。請複製並創建一個新的報告
-apps/frappe/frappe/contacts/doctype/address/address.py,"Company is mandatory, as it is your company address",公司是強制性的,因為它是你的公司地址
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Select Table Columns for {0},選擇表列{0}
DocType: Custom Field,Options Help,選項幫助
DocType: Footer Item,Group Label,組標籤
apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,已配置Google通訊錄。
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,將導出1條記錄
-apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No email account associated with the User. Please add an account under User > Email Inbox.,沒有與該用戶關聯的電子郵件帳戶。請在“用戶”>“電子郵件收件箱”下添加一個帳戶。
DocType: DocField,Report Hide,報告隱藏
apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},不適用於樹視圖{0}
DocType: Domain,Domain,網域
@@ -2905,6 +2933,7 @@ DocType: DocField,Fold,折
apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,標準列印格式不能被更新
apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field {1} of type {2} cannot be mandatory,{0}:類型{2}的字段{1}不能是必需的
apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,請註明
+apps/frappe/frappe/core/page/dashboard/dashboard.py,Invalid Filter Value,無效的過濾器值
DocType: Comment,Bot,博特
DocType: Help Article,Help Article,幫助文章
DocType: Page,Page Name,網頁名稱
@@ -2995,7 +3024,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Pe
DocType: Auto Repeat,Print Format,列印格式
apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Toggle Grid View,切換網格視圖
apps/frappe/frappe/public/js/frappe/form/form.js,Go to next record,轉到下一條記錄
-DocType: System Settings,Time Format,時間格式
+DocType: Country,Time Format,時間格式
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Invalid payment gateway credentials,無效的支付網關憑據
DocType: Data Import,This is the template file generated with only the rows having some error. You should use this file for correction and import.,這是只有有一些錯誤的行生成的模板文件。您應該使用此文件進行更正和導入。
apps/frappe/frappe/config/users_and_permissions.py,Set Permissions on Document Types and Roles,在文件類型和角色設置權限
@@ -3341,6 +3370,8 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Confirm Your Email,確
apps/frappe/frappe/www/login.html,Or login with,或登錄
DocType: Error Snapshot,Locals,當地人
apps/frappe/frappe/desk/page/activity/activity_row.html,Communicated via {0} on {1}: {2},通過傳達{0}在{1} {2}
+DocType: Event Producer,Event Producer Document Types,事件生產者文檔類型
+apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認的電子郵件帳戶
apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.html,Select Group By...,選擇分組依據...
apps/frappe/frappe/utils/csvutils.py,{0} is required,{0}是必需的
DocType: Newsletter,Send Attachements,發送附著物
@@ -3367,8 +3398,10 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have
apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,上傳{0}個文件
DocType: Prepared Report,Report Start Time,報告開始時間
apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,導出數據
+apps/frappe/frappe/config/automation.py,Maintains a log of every event consumed along with the status of the sync and a Resync button in case sync fails.,保留所有消耗的事件的日誌以及同步狀態和“重新同步”按鈕,以防同步失敗。
apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,選擇列
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This is a background report. Please set the appropriate filters and then generate a new one.,這是一份背景報告。請設置適當的過濾器,然後生成一個新過濾器。
+apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建一個新的電子郵件帳戶
apps/frappe/frappe/www/login.py,Missing parameters for login,缺少參數登錄
DocType: Workflow State,folder-open,文件夾打開
DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.",提交後,無法更改可提交的文檔。它們只能被取消和修改。
@@ -3439,6 +3472,7 @@ DocType: Blog Post,Published On,發表於
DocType: Contact,Gender,性別
apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,強制性信息丟失:
apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0}在{1}上恢復了積分
+DocType: Event Consumer,Event Subscriber,事件訂閱者
apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,檢查請求URL
apps/frappe/frappe/client.py,Only 200 inserts allowed in one request,只有200將允許一個請求
DocType: Footer Item,URL,網址
@@ -3450,6 +3484,7 @@ DocType: SMS Parameter,SMS Parameter,短信參數
DocType: Communication,Marked As Spam,標記為垃圾郵件
apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},有一些問題與文件的URL:{0}
apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Tree,樹
+DocType: Event Producer Document Type,Use Same Name,使用相同的名稱
apps/frappe/frappe/public/js/frappe/views/treeview.js,You are not allowed to print this report,您不允許打印此報告
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions,用戶權限
DocType: Workflow State,warning-sign,警告符號
@@ -3459,6 +3494,7 @@ DocType: Workflow State,User,使用者
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",標題顯示在瀏覽器窗口中的“前綴 - 標題”
DocType: Payment Gateway,Gateway Settings,網關設置
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,text in document type,在文件類型的文本
+DocType: Event Sync Log,Event Sync Log,事件同步日誌
DocType: System Settings,User can login using Email id or Mobile number,用戶可以使用電子郵件ID或手機號登錄
apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},標記為{0}
apps/frappe/frappe/model/rename_doc.py,Please select a new name to rename,請選擇一個新名稱進行重命名
@@ -3492,12 +3528,14 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Please save the
apps/frappe/frappe/email/doctype/email_group/email_group.py,{0} subscribers added,{0}用戶已新增
DocType: Workflow State,star,星號
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Hub,樞紐
+DocType: Event Producer Document Type,If this is checked the documents will have the same name as they have on the Event Producer's site,如果選中此選項,則文檔的名稱將與事件生產者網站上的名稱相同
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by commas,用逗號分隔的值
apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},{0}列內的貨幣類型的最大寬度為100px
apps/frappe/frappe/config/website.py,Content web page.,內容的網頁。
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,添加新角色
apps/frappe/frappe/website/doctype/website_route_meta/website_route_meta.js,Visit Web Page,訪問網頁
apps/frappe/frappe/desk/doctype/notification_log/notification_log.py,New Assignment,新作業
+DocType: Event Consumer Document Type,Approved,批准
DocType: Google Contacts,Last Sync On,上次同步開啟
DocType: Deleted Document,Deleted Document,刪除的文檔
apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,糟糕!出事了
@@ -3543,7 +3581,6 @@ DocType: Communication,Communication Type,通信類型
DocType: DocField,Unique,獨特
apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated on {1},{0}讚賞{1}
DocType: Email Account,Service,服務
-apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設置>用戶
apps/frappe/frappe/core/doctype/data_import/importer.py,Did not find {0} for {0} ({1}),沒有找到{0} {0} ( {1} )
apps/frappe/frappe/utils/bot.py,"Oops, you are not allowed to know that",哎呀,你不能知道
apps/frappe/frappe/public/js/frappe/ui/slides.js,Next,下一個
@@ -3553,11 +3590,10 @@ DocType: Calendar View,Calendar View,日曆視圖
apps/frappe/frappe/printing/doctype/print_format/print_format.js,Edit Format,編輯格式
apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,完成註冊
DocType: GCalendar Settings,Enable,啟用
-DocType: Google Maps Settings,Home Address,家庭地址
apps/frappe/frappe/core/doctype/data_export/exporter.py,You can only upload upto 5000 records in one go. (may be less in some cases),你一次只能上最多5000條記錄。 (在某些情況下可能更少)
DocType: Report,"output in the form of `data = [columns, result]`",以data = [columns,result]的形式輸出
apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Applicable Document Types,適用的文件類型
-apps/frappe/frappe/config/settings.py,Set up rules for user assignments.,為用戶分配設置規則。
+apps/frappe/frappe/config/automation.py,Set up rules for user assignments.,為用戶分配設置規則。
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}的權限不足
apps/frappe/frappe/model/document.py,Insufficient Permission for {0},{0}的權限不足
apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Report was not saved (there were errors),報告沒有被保存(有錯誤)
diff --git a/frappe/utils/background_jobs.py b/frappe/utils/background_jobs.py
index 65b2326733..03f063e058 100755
--- a/frappe/utils/background_jobs.py
+++ b/frappe/utils/background_jobs.py
@@ -8,6 +8,8 @@ import frappe
import os, socket, time
from frappe import _
from six import string_types
+from uuid import uuid4
+import frappe.monitor
# imports - third-party imports
@@ -93,6 +95,7 @@ def execute_job(site, method, event, job_name, kwargs, user=None, is_async=True,
else:
method_name = cstr(method.__name__)
+ frappe.monitor.start("job", method_name, kwargs)
try:
method(**kwargs)
@@ -127,6 +130,7 @@ def execute_job(site, method, event, job_name, kwargs, user=None, is_async=True,
frappe.db.commit()
finally:
+ frappe.monitor.stop()
if is_async:
frappe.destroy()
@@ -152,7 +156,8 @@ def get_worker_name(queue):
if queue:
# hostname.pid is the default worker name
- name = '{hostname}.{pid}.{queue}'.format(
+ name = '{uuid}.{hostname}.{pid}.{queue}'.format(
+ uuid=uuid4().hex,
hostname=socket.gethostname(),
pid=os.getpid(),
queue=queue)
diff --git a/frappe/utils/redis_wrapper.py b/frappe/utils/redis_wrapper.py
index 4af59bceb2..b0c0990e85 100644
--- a/frappe/utils/redis_wrapper.py
+++ b/frappe/utils/redis_wrapper.py
@@ -140,6 +140,12 @@ class RedisWrapper(redis.Redis):
def llen(self, key):
return super(RedisWrapper, self).llen(self.make_key(key))
+ def lrange(self, key, start, stop):
+ return super(RedisWrapper, self).lrange(self.make_key(key), start, stop)
+
+ def ltrim(self, key, start, stop):
+ return super(RedisWrapper, self).ltrim(self.make_key(key), start, stop)
+
def hset(self, name, key, value, shared=False):
if key is None:
return
diff --git a/frappe/utils/scheduler.py b/frappe/utils/scheduler.py
index 708bec887f..0a1eb555ad 100755
--- a/frappe/utils/scheduler.py
+++ b/frappe/utils/scheduler.py
@@ -24,7 +24,7 @@ def start_scheduler():
'''Run enqueue_events_for_all_sites every 2 minutes (default).
Specify scheduler_interval in seconds in common_site_config.json'''
- schedule.every(60).seconds.do(enqueue_events_for_all_sites)
+ schedule.every(frappe.get_conf().scheduler_tick_interval or 60).seconds.do(enqueue_events_for_all_sites)
while True:
schedule.run_pending()
diff --git a/frappe/website/desk_page/website/website.json b/frappe/website/desk_page/website/website.json
new file mode 100644
index 0000000000..cb49b590a7
--- /dev/null
+++ b/frappe/website/desk_page/website/website.json
@@ -0,0 +1,74 @@
+{
+ "cards": [
+ {
+ "icon": "fa fa-cog",
+ "links": "[\n {\n \"description\": \"Setup of top navigation bar, footer and logo.\",\n \"label\": \"Website Settings\",\n \"name\": \"Website Settings\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"description\": \"List of themes for Website.\",\n \"label\": \"Website Theme\",\n \"name\": \"Website Theme\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Javascript to append to the head section of the page.\",\n \"label\": \"Website Script\",\n \"name\": \"Website Script\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Settings for About Us Page.\",\n \"label\": \"About Us Settings\",\n \"name\": \"About Us Settings\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Settings for Contact Us Page.\",\n \"label\": \"Contact Us Settings\",\n \"name\": \"Contact Us Settings\",\n \"type\": \"doctype\"\n }\n]",
+ "title": "Setup"
+ },
+ {
+ "links": "[\n {\n \"description\": \"Single Post (article).\",\n \"label\": \"Blog Post\",\n \"name\": \"Blog Post\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"description\": \"A user who posts blogs.\",\n \"label\": \"Blogger\",\n \"name\": \"Blogger\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Categorize blog posts.\",\n \"label\": \"Blog Category\",\n \"name\": \"Blog Category\",\n \"type\": \"doctype\"\n }\n]",
+ "title": "Blog"
+ },
+ {
+ "icon": "fa fa-star",
+ "links": "[\n {\n \"description\": \"Content web page.\",\n \"label\": \"Web Page\",\n \"name\": \"Web Page\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"description\": \"User editable form on Website.\",\n \"label\": \"Web Form\",\n \"name\": \"Web Form\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n },\n {\n \"label\": \"Website Sidebar\",\n \"name\": \"Website Sidebar\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Embed image slideshows in website pages.\",\n \"label\": \"Website Slideshow\",\n \"name\": \"Website Slideshow\",\n \"type\": \"doctype\"\n },\n {\n \"description\": \"Add meta tags to your web pages\",\n \"label\": \"Website Route Meta\",\n \"name\": \"Website Route Meta\",\n \"type\": \"doctype\"\n }\n]",
+ "title": "Web Site"
+ },
+ {
+ "links": "[\n {\n \"label\": \"Portal Settings\",\n \"name\": \"Portal Settings\",\n \"onboard\": 1,\n \"type\": \"doctype\"\n }\n]",
+ "title": "Portal"
+ },
+ {
+ "links": "[\n {\n \"label\": \"Help Category\",\n \"name\": \"Help Category\",\n \"type\": \"doctype\"\n },\n {\n \"label\": \"Help Article\",\n \"name\": \"Help Article\",\n \"type\": \"doctype\"\n }\n]",
+ "title": "Knowledge Base"
+ }
+ ],
+ "category": "Modules",
+ "charts": [],
+ "creation": "2020-03-02 14:13:51.089373",
+ "developer_mode_only": 0,
+ "disable_user_customization": 0,
+ "docstatus": 0,
+ "doctype": "Desk Page",
+ "idx": 0,
+ "label": "Website",
+ "modified": "2020-03-05 11:27:26.219436",
+ "modified_by": "Administrator",
+ "module": "Website",
+ "name": "Website",
+ "owner": "Administrator",
+ "pin_to_bottom": 0,
+ "pin_to_top": 0,
+ "shortcuts": [
+ {
+ "color": "",
+ "format": "{} Published",
+ "is_query_report": 0,
+ "link_to": "Blog Post",
+ "stats_filter": "{\"published\":\"1\"}",
+ "type": "DocType"
+ },
+ {
+ "format": "{} Active",
+ "is_query_report": 0,
+ "link_to": "Blogger",
+ "stats_filter": "{\"disabled\": 0}",
+ "type": "DocType"
+ },
+ {
+ "is_query_report": 0,
+ "link_to": "Web Page",
+ "type": "DocType"
+ },
+ {
+ "is_query_report": 0,
+ "link_to": "Web Form",
+ "type": "DocType"
+ },
+ {
+ "is_query_report": 0,
+ "link_to": "Website Settings",
+ "type": "DocType"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py b/frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py
index 9a62b845e1..6eb381e7ce 100644
--- a/frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py
+++ b/frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py
@@ -8,6 +8,7 @@ import unittest
import json
from frappe.website.doctype.personal_data_download_request.personal_data_download_request import get_user_data
from frappe.contacts.doctype.contact.contact import get_contact_name
+from frappe.core.doctype.user.user import create_contact
class TestRequestPersonalData(unittest.TestCase):
def setUp(self):
@@ -51,7 +52,7 @@ class TestRequestPersonalData(unittest.TestCase):
def create_user_if_not_exists(email, first_name = None):
frappe.delete_doc_if_exists("User", email)
- frappe.get_doc({
+ user = frappe.get_doc({
"doctype": "User",
"user_type": "Website User",
"email": email,
@@ -59,3 +60,4 @@ def create_user_if_not_exists(email, first_name = None):
"first_name": first_name or email.split("@")[0],
"birth_date": frappe.utils.now_datetime()
}).insert(ignore_permissions=True)
+ create_contact(user=user)
diff --git a/frappe/website/doctype/website_theme/website_theme.py b/frappe/website/doctype/website_theme/website_theme.py
index 954891b4b1..f16fc90d79 100644
--- a/frappe/website/doctype/website_theme/website_theme.py
+++ b/frappe/website/doctype/website_theme/website_theme.py
@@ -78,8 +78,11 @@ class WebsiteTheme(Document):
def generate_theme_if_not_exist(self):
bench_path = frappe.utils.get_bench_path()
- theme_path = join_path(bench_path, 'sites', self.theme_url[1:])
- if not path_exists(theme_path):
+ if self.theme_url:
+ theme_path = join_path(bench_path, 'sites', self.theme_url[1:])
+ if not path_exists(theme_path):
+ self.generate_bootstrap_theme()
+ else:
self.generate_bootstrap_theme()
def set_as_default(self):
diff --git a/package.json b/package.json
index 66b1fe9f4f..e6635fada1 100644
--- a/package.json
+++ b/package.json
@@ -20,41 +20,41 @@
},
"homepage": "https://frappe.io",
"dependencies": {
- "ace-builds": "^1.4.1",
+ "ace-builds": "^1.4.8",
"air-datepicker": "http://github.com/frappe/air-datepicker",
- "awesomplete": "^1.1.2",
- "bootstrap": "^4.3.1",
- "cookie": "^0.3.1",
- "express": "^4.16.2",
+ "awesomplete": "^1.1.5",
+ "bootstrap": "^4.4.1",
+ "cookie": "^0.4.0",
+ "express": "^4.17.1",
"fast-deep-equal": "^2.0.1",
"frappe-charts": "^1.3.0",
"frappe-datatable": "^1.15.1",
"frappe-gantt": "^0.1.0",
- "fuse.js": "^3.2.0",
- "highlight.js": "^9.12.0",
+ "fuse.js": "^3.4.6",
+ "highlight.js": "^9.18.1",
"js-sha256": "^0.9.0",
"jsbarcode": "^3.9.0",
"moment": "^2.20.1",
- "moment-timezone": "^0.5.21",
+ "moment-timezone": "^0.5.28",
"quagga": "^0.12.1",
"quill": "2.0.0-dev.2",
"qz-tray": "^2.0.8",
"redis": "^2.8.0",
"showdown": "^1.9.1",
- "socket.io": "^2.0.4",
+ "socket.io": "^2.3.0",
"superagent": "^3.8.2",
"touch": "^3.1.0",
"vue": "^2.6.11",
"vue-router": "^2.0.0",
- "snyk": "^1.294.1"
+ "snyk": "^1.297.4"
},
"devDependencies": {
"babel-runtime": "^6.26.0",
"chalk": "^2.3.2",
"cypress": "^3.1.1",
"cypress-file-upload": "^3.1.0",
- "less": "^3.0.4",
- "node-sass": "^4.12.0",
+ "less": "^3.11.1",
+ "node-sass": "^4.13.1",
"rollup": "^1.2.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^8.3.0",
diff --git a/requirements.txt b/requirements.txt
index c02dedadbb..931f6b528d 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,5 +1,5 @@
Babel==2.6.0
-beautifulsoup4==4.8.1
+beautifulsoup4==4.8.2
bleach-whitelist==0.0.10
bleach==2.1.4
boto3==1.10.18
@@ -12,9 +12,9 @@ cryptography==2.8
dropbox==9.1.0
email-reply-parser==0.5.9
Faker==2.0.4
-frontmatter==3.0.5
+frontmatter==3.0.6
future==0.18.2
-GitPython==2.1.11
+GitPython==2.1.15
gitdb2==2.0.6;python_version<'3.4'
google-api-python-client==1.7.11
google-auth-httplib2==0.0.3
@@ -23,24 +23,24 @@ google-auth==1.7.1
googlemaps==3.1.1
gunicorn==19.10.0
html2text==2016.9.19
-ipython==5.8.0
+ipython==5.9.0
Jinja2==2.10.3
-markdown2==2.3.7
+markdown2==2.3.8
maxminddb-geolite2==2018.703
ndg-httpsclient==0.5.1
num2words==0.5.5
oauthlib==3.1.0
openpyxl==2.6.4
-passlib==1.7.1
+passlib==1.7.2
pdfkit==0.6.1
Pillow==6.2.2
premailer==3.6.1
psycopg2-binary==2.8.4
-pyasn1==0.4.7
-Pygments==2.2.0
+pyasn1==0.4.8
+Pygments==2.5.2
PyJWT==1.7.1
PyMySQL==0.9.3
-pyOpenSSL==19.0.0
+pyOpenSSL==19.1.0
pyotp==2.3.0
PyPDF2==1.26.0
pypng==0.0.20
@@ -51,16 +51,16 @@ PyYAML==5.1
rauth==0.7.3
redis>=3.0
requests-oauthlib==1.3.0
-requests==2.22.0
+requests==2.23.0
RestrictedPython==5.0
rq>=1.1.0
schedule==0.6.0
-semantic-version==2.8.2
-six==1.13.0
+semantic-version==2.8.4
+six==1.14.0
sqlparse==0.2.4
stripe==2.40.0
unittest-xml-reporting==2.5.2
-urllib3==1.25.7
+urllib3==1.25.8
watchdog==0.8.0
Werkzeug==0.16.1
xlrd==1.2.0
diff --git a/rollup/build.js b/rollup/build.js
index 46c0630b0e..ea1ac54c09 100644
--- a/rollup/build.js
+++ b/rollup/build.js
@@ -2,6 +2,7 @@ const fs = require('fs');
const path = require('path');
const chalk = require('chalk');
const rollup = require('rollup');
+const { execSync } = require('child_process');
const log = console.log; // eslint-disable-line
const {
@@ -26,18 +27,25 @@ create_build_file();
if (build_for_app) {
build_assets_for_app(build_for_app)
+ .then(() => {
+ run_build_command_for_app(build_for_app);
+ })
} else {
- build_assets_for_all_apps();
+ build_assets_for_all_apps()
+ .then(() => {
+ run_build_command_for_apps()
+ });
}
+
function build_assets_for_all_apps() {
- run_serially(
+ return run_serially(
apps_list.map(app => () => build_assets(app))
);
}
function build_assets_for_app(app) {
- build_assets(app)
+ return build_assets(app)
}
function build_assets(app) {
@@ -102,6 +110,26 @@ function create_build_file() {
touch(path.join(sites_path, '.build'), { force: true });
}
+function run_build_command_for_apps() {
+ let cwd = process.cwd();
+ apps_list.map(app => run_build_command_for_app(app))
+ process.chdir(cwd);
+}
+
+function run_build_command_for_app(app) {
+ if (app === 'frappe') return;
+ let root_app_path = path.resolve(get_app_path(app), '..');
+ let package_json = path.resolve(root_app_path, 'package.json');
+ if (fs.existsSync(package_json)) {
+ let package = require(package_json);
+ if (package.scripts && package.scripts.build) {
+ console.log('\nRunning build command for', chalk.bold(app));
+ process.chdir(root_app_path);
+ execSync('yarn build', { encoding: 'utf8', stdio: 'inherit' });
+ }
+ }
+}
+
function ensure_js_css_dirs() {
const paths = [
path.resolve(assets_path, 'js'),
diff --git a/yarn.lock b/yarn.lock
index 6c2afef3c1..6de2bd96b2 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -64,14 +64,14 @@
dependencies:
tslib "^1.9.3"
-"@snyk/cli-interface@2.3.1", "@snyk/cli-interface@^2.0.3":
+"@snyk/cli-interface@2.3.1":
version "2.3.1"
resolved "https://registry.yarnpkg.com/@snyk/cli-interface/-/cli-interface-2.3.1.tgz#73f2f4bd717b9f03f096ede3ff5830eb8d2f3716"
integrity sha512-JZvsmhDXSyjv1dkc12lPI3tNTNYlIaOiIQMYFg2RgqF3QmWjTyBUgRZcF7LoKyufHtS4dIudM6k1aHBpSaDrhw==
dependencies:
tslib "^1.9.3"
-"@snyk/cli-interface@2.3.2":
+"@snyk/cli-interface@2.3.2", "@snyk/cli-interface@^2.0.3":
version "2.3.2"
resolved "https://registry.yarnpkg.com/@snyk/cli-interface/-/cli-interface-2.3.2.tgz#e93afa82de15b912e657f1ba86f9d7963983e594"
integrity sha512-jmZyxVHqzYU1GfdnWCGdd68WY/lAzpPVyqalHazPj4tFJehrSfEFc82RMTYAMgXEJuvFRFIwhsvXh3sWUhIQmg==
@@ -378,18 +378,18 @@ abbrev@1, abbrev@^1.1.1:
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
-accepts@~1.3.4, accepts@~1.3.5:
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
- integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I=
+accepts@~1.3.4, accepts@~1.3.7:
+ version "1.3.7"
+ resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
+ integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
dependencies:
- mime-types "~2.1.18"
- negotiator "0.6.1"
+ mime-types "~2.1.24"
+ negotiator "0.6.2"
-ace-builds@^1.4.1:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/ace-builds/-/ace-builds-1.4.3.tgz#789c5e72226c01d9bbe1095c8aeea37afb57f41b"
- integrity sha512-T+e4DQRQR8ReNPOUryXWdXRX1NBTb9rB1y42IhnH4mmFe0NIIpAQVu8BQ9tgU2K3EGaPFZeG7E87OOjaXDP8PQ==
+ace-builds@^1.4.8:
+ version "1.4.8"
+ resolved "https://registry.yarnpkg.com/ace-builds/-/ace-builds-1.4.8.tgz#d14be41d30294a2a12581f0bcfee4b696481ffdd"
+ integrity sha512-8ZVAxwyCGAxQX8mOp9imSXH0hoSPkGfy8igJy+WO/7axL30saRhKgg1XPACSmxxPA7nfHVwM+ShWXT+vKsNuFg==
acorn@^5.2.1:
version "5.7.3"
@@ -629,10 +629,10 @@ atob@^2.1.1:
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-awesomplete@^1.1.2:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/awesomplete/-/awesomplete-1.1.4.tgz#cdfcbbb2391857ff3a3340b5b1ebde7701b355e6"
- integrity sha512-AgYrODNlVD3ZJ6Em54YesLnOSusuVCjoRAt0l5bi3L1Oiv5r5dkPdxVPJaG3/wnPlxRUmGcpGnK02VK7N02kCg==
+awesomplete@^1.1.5:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/awesomplete/-/awesomplete-1.1.5.tgz#1b2b5dd106d3955595619c03da472a1dc0faf0af"
+ integrity sha512-UFw1mPW8NaSECDSTC36HbAOTpF9JK2wBUJcNn4MSvlNtK7SZ9N72gB+ajHtA6D1abYXRcszZnBA4nHBwvFwzHw==
aws-sign2@~0.7.0:
version "0.7.0"
@@ -667,10 +667,10 @@ base64-arraybuffer@0.1.5:
resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8"
integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg=
-base64id@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6"
- integrity sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=
+base64id@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6"
+ integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==
base@^0.11.1:
version "0.11.2"
@@ -733,31 +733,31 @@ bluebird@^3.1.1:
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7"
integrity sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==
-body-parser@1.18.3:
- version "1.18.3"
- resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.3.tgz#5b292198ffdd553b3a0f20ded0592b956955c8b4"
- integrity sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=
+body-parser@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
+ integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
dependencies:
- bytes "3.0.0"
+ bytes "3.1.0"
content-type "~1.0.4"
debug "2.6.9"
depd "~1.1.2"
- http-errors "~1.6.3"
- iconv-lite "0.4.23"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
on-finished "~2.3.0"
- qs "6.5.2"
- raw-body "2.3.3"
- type-is "~1.6.16"
+ qs "6.7.0"
+ raw-body "2.4.0"
+ type-is "~1.6.17"
boolbase@^1.0.0, boolbase@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
-bootstrap@^4.3.1:
- version "4.3.1"
- resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.3.1.tgz#280ca8f610504d99d7b6b4bfc4b68cec601704ac"
- integrity sha512-rXqOmH1VilAt2DyPzluTi2blhk17bO7ef+zLLPlWvG494pDxcM234pJ8wTc/6R40UWizAIIMgxjvxZg5kmsbag==
+bootstrap@^4.4.1:
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.4.1.tgz#8582960eea0c5cd2bede84d8b0baf3789c3e8b01"
+ integrity sha512-tbx5cHubwE6e2ZG7nqM3g/FZ5PQEDMWmMGNrCUBVRPHXTJaH7CBDdsLeu3eCh3B1tzAxTnAbtmrzvWEvT2NNEA==
boxen@^1.3.0:
version "1.3.0"
@@ -832,11 +832,6 @@ builtin-modules@^3.0.0:
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.0.0.tgz#1e587d44b006620d90286cc7a9238bbc6129cab1"
integrity sha512-hMIeU4K2ilbXV6Uv93ZZ0Avg/M91RaKXucQ+4me2Do1txxBDyDZWCBa5bJSLqoNTRpXTLwEzIk1KmloenDDjhg==
-bytes@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
- integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
-
bytes@3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
@@ -1199,10 +1194,12 @@ consolidate@^0.15.1:
dependencies:
bluebird "^3.1.1"
-content-disposition@0.5.2:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
- integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ=
+content-disposition@0.5.3:
+ version "0.5.3"
+ resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
+ integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
+ dependencies:
+ safe-buffer "5.1.2"
content-type@~1.0.4:
version "1.0.4"
@@ -1214,11 +1211,16 @@ cookie-signature@1.0.6:
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
-cookie@0.3.1, cookie@^0.3.1:
+cookie@0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=
+cookie@0.4.0, cookie@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
+ integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
+
cookiejar@^2.1.0:
version "2.1.2"
resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.1.2.tgz#dd8a235530752f988f9a0844f3fc589e3111125c"
@@ -1791,15 +1793,15 @@ end-of-stream@^1.1.0, end-of-stream@^1.4.1:
dependencies:
once "^1.4.0"
-engine.io-client@~3.3.1:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.3.2.tgz#04e068798d75beda14375a264bb3d742d7bc33aa"
- integrity sha512-y0CPINnhMvPuwtqXfsGuWE8BB66+B6wTtCofQDRecMQPYX3MYUZXFNKDhdrSe3EVjgOu4V3rxdeqN/Tr91IgbQ==
+engine.io-client@~3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.4.0.tgz#82a642b42862a9b3f7a188f41776b2deab643700"
+ integrity sha512-a4J5QO2k99CM2a0b12IznnyQndoEvtA4UAldhGzKqnHf42I3Qs2W5SPnDvatZRcMaNZs4IevVicBPayxYt6FwA==
dependencies:
component-emitter "1.2.1"
component-inherit "0.0.3"
- debug "~3.1.0"
- engine.io-parser "~2.1.1"
+ debug "~4.1.0"
+ engine.io-parser "~2.2.0"
has-cors "1.1.0"
indexof "0.0.1"
parseqs "0.0.5"
@@ -1808,10 +1810,10 @@ engine.io-client@~3.3.1:
xmlhttprequest-ssl "~1.5.4"
yeast "0.1.2"
-engine.io-parser@~2.1.0, engine.io-parser@~2.1.1:
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.1.3.tgz#757ab970fbf2dfb32c7b74b033216d5739ef79a6"
- integrity sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA==
+engine.io-parser@~2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.2.0.tgz#312c4894f57d52a02b420868da7b5c1c84af80ed"
+ integrity sha512-6I3qD9iUxotsC5HEMuuGsKA0cXerGz+4uGcXQEkfBidgKf0amsjrrtwcbwK/nzpZBxclXlV7gGl9dgWvu4LF6w==
dependencies:
after "0.8.2"
arraybuffer.slice "~0.0.7"
@@ -1819,17 +1821,17 @@ engine.io-parser@~2.1.0, engine.io-parser@~2.1.1:
blob "0.0.5"
has-binary2 "~1.0.2"
-engine.io@~3.3.1:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.3.2.tgz#18cbc8b6f36e9461c5c0f81df2b830de16058a59"
- integrity sha512-AsaA9KG7cWPXWHp5FvHdDWY3AMWeZ8x+2pUVLcn71qE5AtAzgGbxuclOytygskw8XGmiQafTmnI9Bix3uihu2w==
+engine.io@~3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.4.0.tgz#3a962cc4535928c252759a00f98519cb46c53ff3"
+ integrity sha512-XCyYVWzcHnK5cMz7G4VTu2W7zJS7SM1QkcelghyIk/FmobWBtXE7fwhBusEKvCSqc3bMh8fNFMlUkCKTFRxH2w==
dependencies:
accepts "~1.3.4"
- base64id "1.0.0"
+ base64id "2.0.0"
cookie "0.3.1"
- debug "~3.1.0"
- engine.io-parser "~2.1.0"
- ws "~6.1.0"
+ debug "~4.1.0"
+ engine.io-parser "~2.2.0"
+ ws "^7.1.2"
entities@^1.1.1:
version "1.1.2"
@@ -2023,39 +2025,39 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2:
dependencies:
homedir-polyfill "^1.0.1"
-express@^4.16.2:
- version "4.16.4"
- resolved "https://registry.yarnpkg.com/express/-/express-4.16.4.tgz#fddef61926109e24c515ea97fd2f1bdbf62df12e"
- integrity sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==
+express@^4.17.1:
+ version "4.17.1"
+ resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
+ integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==
dependencies:
- accepts "~1.3.5"
+ accepts "~1.3.7"
array-flatten "1.1.1"
- body-parser "1.18.3"
- content-disposition "0.5.2"
+ body-parser "1.19.0"
+ content-disposition "0.5.3"
content-type "~1.0.4"
- cookie "0.3.1"
+ cookie "0.4.0"
cookie-signature "1.0.6"
debug "2.6.9"
depd "~1.1.2"
encodeurl "~1.0.2"
escape-html "~1.0.3"
etag "~1.8.1"
- finalhandler "1.1.1"
+ finalhandler "~1.1.2"
fresh "0.5.2"
merge-descriptors "1.0.1"
methods "~1.1.2"
on-finished "~2.3.0"
- parseurl "~1.3.2"
+ parseurl "~1.3.3"
path-to-regexp "0.1.7"
- proxy-addr "~2.0.4"
- qs "6.5.2"
- range-parser "~1.2.0"
+ proxy-addr "~2.0.5"
+ qs "6.7.0"
+ range-parser "~1.2.1"
safe-buffer "5.1.2"
- send "0.16.2"
- serve-static "1.13.2"
- setprototypeof "1.1.0"
- statuses "~1.4.0"
- type-is "~1.6.16"
+ send "0.17.1"
+ serve-static "1.14.1"
+ setprototypeof "1.1.1"
+ statuses "~1.5.0"
+ type-is "~1.6.18"
utils-merge "1.0.1"
vary "~1.1.2"
@@ -2189,17 +2191,17 @@ fill-range@^4.0.0:
repeat-string "^1.6.1"
to-regex-range "^2.1.0"
-finalhandler@1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105"
- integrity sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==
+finalhandler@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
+ integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
dependencies:
debug "2.6.9"
encodeurl "~1.0.2"
escape-html "~1.0.3"
on-finished "~2.3.0"
- parseurl "~1.3.2"
- statuses "~1.4.0"
+ parseurl "~1.3.3"
+ statuses "~1.5.0"
unpipe "~1.0.0"
find-up@^1.0.0:
@@ -2319,10 +2321,10 @@ function-bind@^1.1.1:
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-fuse.js@^3.2.0:
- version "3.4.2"
- resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.4.2.tgz#d7a638c436ecd7b9c4c0051478c09594eb956212"
- integrity sha512-WVbrm+cAxPtyMqdtL7cYhR7aZJPhtOfjNClPya8GKMVukKDYs7pEnPINeRVX1C9WmWgU8MdYGYbUPAP2AJXdoQ==
+fuse.js@^3.4.6:
+ version "3.4.6"
+ resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.4.6.tgz#545c3411fed88bf2e27c457cab6e73e7af697a45"
+ integrity sha512-H6aJY4UpLFwxj1+5nAvufom5b2BT2v45P1MkPvdGIK8fWjQx/7o6tTT1+ALV0yawQvbmvCF0ufl2et8eJ7v7Cg==
gauge@~2.7.3:
version "2.7.4"
@@ -2469,19 +2471,7 @@ glob@7.1.2:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@~7.1.1:
- version "7.1.3"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
- integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.0.4"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
-
-glob@^7.1.3:
+glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@~7.1.1:
version "7.1.6"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
@@ -2688,10 +2678,10 @@ hex-color-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
-highlight.js@^9.12.0:
- version "9.15.6"
- resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.15.6.tgz#72d4d8d779ec066af9a17cb14360c3def0aa57c4"
- integrity sha512-zozTAWM1D6sozHo8kqhfYgsac+B+q0PmsjXeyDrYIHHcBN0zTVT66+s2GW1GZv7DbyaROdLXKdabwS/WqPyIdQ==
+highlight.js@^9.18.1:
+ version "9.18.1"
+ resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.1.tgz#ed21aa001fe6252bb10a3d76d47573c6539fe13c"
+ integrity sha512-OrVKYz70LHsnCgmbXctv/bfuvntIKDz177h0Co37DQ5jamGZLVmoCVMtjMtNZY3X9DrCcKfklHPNeA0uPZhSJg==
homedir-polyfill@^1.0.1:
version "1.0.3"
@@ -2725,17 +2715,18 @@ html-comment-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7"
integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==
-http-errors@1.6.3, http-errors@~1.6.2, http-errors@~1.6.3:
- version "1.6.3"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
- integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=
+http-errors@1.7.2:
+ version "1.7.2"
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
+ integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
dependencies:
depd "~1.1.2"
inherits "2.0.3"
- setprototypeof "1.1.0"
- statuses ">= 1.4.0 < 2"
+ setprototypeof "1.1.1"
+ statuses ">= 1.5.0 < 2"
+ toidentifier "1.0.0"
-http-errors@1.7.3:
+http-errors@1.7.3, http-errors@~1.7.2:
version "1.7.3"
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
@@ -2776,13 +2767,6 @@ hyperlist@^1.0.0-beta:
resolved "https://registry.yarnpkg.com/hyperlist/-/hyperlist-1.0.0-beta.tgz#2cbbd77f4498c2ecc290b7f3c6745b3f0288247e"
integrity sha1-LLvXf0SYwuzCkLfzxnRbPwKIJH4=
-iconv-lite@0.4.23:
- version "0.4.23"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
- integrity sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==
- dependencies:
- safer-buffer ">= 2.1.2 < 3"
-
iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4:
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
@@ -2921,10 +2905,10 @@ ip@1.1.5, ip@^1.1.5:
resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=
-ipaddr.js@1.8.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.0.tgz#eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e"
- integrity sha1-6qM9bd16zo9/b+DJygRA5wZzix4=
+ipaddr.js@1.9.1:
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
+ integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
is-absolute-url@^2.0.0:
version "2.1.0"
@@ -3404,12 +3388,13 @@ lcid@^1.0.0:
dependencies:
invert-kv "^1.0.0"
-less@^3.0.4:
- version "3.9.0"
- resolved "https://registry.yarnpkg.com/less/-/less-3.9.0.tgz#b7511c43f37cf57dc87dffd9883ec121289b1474"
- integrity sha512-31CmtPEZraNUtuUREYjSqRkeETFdyEHSEPAGq4erDlUXtda7pzNmctdljdIagSb589d/qXGWiiP31R5JVf+v0w==
+less@^3.11.1:
+ version "3.11.1"
+ resolved "https://registry.yarnpkg.com/less/-/less-3.11.1.tgz#c6bf08e39e02404fe6b307a3dfffafdc55bd36e2"
+ integrity sha512-tlWX341RECuTOvoDIvtFqXsKj072hm3+9ymRBe76/mD6O5ZZecnlAOVDlWAleF2+aohFrxNidXhv2773f6kY7g==
dependencies:
clone "^2.1.2"
+ tslib "^1.10.0"
optionalDependencies:
errno "^0.1.1"
graceful-fs "^4.1.2"
@@ -3759,6 +3744,11 @@ mime-db@1.40.0:
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32"
integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==
+mime-db@1.43.0:
+ version "1.43.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58"
+ integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==
+
mime-db@~1.38.0:
version "1.38.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad"
@@ -3771,19 +3761,21 @@ mime-types@^2.0.1:
dependencies:
mime-db "1.40.0"
-mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.18, mime-types@~2.1.19:
+mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19:
version "2.1.22"
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd"
integrity sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==
dependencies:
mime-db "~1.38.0"
-mime@1.4.1:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
- integrity sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==
+mime-types@~2.1.24:
+ version "2.1.26"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06"
+ integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==
+ dependencies:
+ mime-db "1.43.0"
-mime@^1.4.1:
+mime@1.6.0, mime@^1.4.1:
version "1.6.0"
resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
@@ -3811,9 +3803,9 @@ minimist@1.2.0, minimist@^1.1.3, minimist@^1.2.0:
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
mixin-deep@^1.2.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
- integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
+ integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
dependencies:
for-in "^1.0.2"
is-extendable "^1.0.1"
@@ -3832,10 +3824,10 @@ mkdirp@0.5.0:
dependencies:
minimist "0.0.8"
-moment-timezone@^0.5.21:
- version "0.5.23"
- resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.23.tgz#7cbb00db2c14c71b19303cb47b0fb0a6d8651463"
- integrity sha512-WHFH85DkCfiNMDX5D3X7hpNH3/PUhjTGcD0U1SgfBGZxJ3qUmJh5FdvaFjcClxOvB3rzdfj4oRffbI38jEnC1w==
+moment-timezone@^0.5.28:
+ version "0.5.28"
+ resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.28.tgz#f093d789d091ed7b055d82aa81a82467f72e4338"
+ integrity sha512-TDJkZvAyKIVWg5EtVqRzU97w0Rb0YVbfpqyjgu6GwXCAohVRqwZjf4fOzDE6p1Ch98Sro/8hQQi65WDXW5STPw==
dependencies:
moment ">= 2.9.0"
@@ -3854,7 +3846,7 @@ ms@2.0.0:
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
-ms@^2.1.1:
+ms@2.1.1, ms@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
@@ -3917,16 +3909,7 @@ ndarray@^1.0.13, ndarray@^1.0.18:
iota-array "^1.0.0"
is-buffer "^1.0.2"
-needle@^2.2.4:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/needle/-/needle-2.3.2.tgz#3342dea100b7160960a450dc8c22160ac712a528"
- integrity sha512-DUzITvPVDUy6vczKKYTnWc/pBZ0EnjMJnQ3y+Jo5zfKFimJs7S3HFCxCRZYB9FUZcrzUQr3WsmvZgddMEIZv6w==
- dependencies:
- debug "^3.2.6"
- iconv-lite "^0.4.4"
- sax "^1.2.4"
-
-needle@^2.4.0:
+needle@^2.2.4, needle@^2.4.0:
version "2.4.0"
resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c"
integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==
@@ -3935,10 +3918,10 @@ needle@^2.4.0:
iconv-lite "^0.4.4"
sax "^1.2.4"
-negotiator@0.6.1:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
- integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=
+negotiator@0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
+ integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
netmask@^1.0.6:
version "1.0.6"
@@ -3980,10 +3963,10 @@ node-releases@^1.1.8:
dependencies:
semver "^5.3.0"
-node-sass@^4.12.0:
- version "4.12.0"
- resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.12.0.tgz#0914f531932380114a30cc5fa4fa63233a25f017"
- integrity sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ==
+node-sass@^4.13.1:
+ version "4.13.1"
+ resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.13.1.tgz#9db5689696bb2eec2c32b98bfea4c7a2e992d0a3"
+ integrity sha512-TTWFx+ZhyDx1Biiez2nB0L3YrCZ/8oHagaDalbuBSlqXgUPsdkUSzJsVxeDO9LtPB49+Fh3WQl3slABo6AotNw==
dependencies:
async-foreach "^0.1.3"
chalk "^1.1.1"
@@ -3992,7 +3975,7 @@ node-sass@^4.12.0:
get-stdin "^4.0.1"
glob "^7.0.3"
in-publish "^2.0.0"
- lodash "^4.17.11"
+ lodash "^4.17.15"
meow "^3.7.0"
mkdirp "^0.5.1"
nan "^2.13.2"
@@ -4367,10 +4350,10 @@ parseuri@0.0.5:
dependencies:
better-assert "~1.0.0"
-parseurl@~1.3.2:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
- integrity sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=
+parseurl@~1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+ integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
pascalcase@^0.1.1:
version "0.1.1"
@@ -4877,13 +4860,13 @@ protocols@^1.1.0, protocols@^1.4.0:
resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.7.tgz#95f788a4f0e979b291ffefcf5636ad113d037d32"
integrity sha512-Fx65lf9/YDn3hUX08XUc0J8rSux36rEsyiv21ZGUC1mOyeM3lTRpZLcrm8aAolzS4itwVfm7TAPyxC2E5zd6xg==
-proxy-addr@~2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.4.tgz#ecfc733bf22ff8c6f407fa275327b9ab67e48b93"
- integrity sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==
+proxy-addr@~2.0.5:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
+ integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==
dependencies:
forwarded "~0.1.2"
- ipaddr.js "1.8.0"
+ ipaddr.js "1.9.1"
proxy-agent@^3.1.1:
version "3.1.1"
@@ -4947,16 +4930,16 @@ q@^1.1.2:
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
-qs@6.5.2, qs@~6.5.1, qs@~6.5.2:
+qs@6.7.0, qs@^6.5.1:
+ version "6.7.0"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
+ integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
+
+qs@~6.5.1, qs@~6.5.2:
version "6.5.2"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
-qs@^6.5.1:
- version "6.6.0"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.6.0.tgz#a99c0f69a8d26bf7ef012f871cdabb0aee4424c2"
- integrity sha512-KIJqT9jQJDQx5h5uAVPimw6yVg2SekOKu959OCtktD3FjzbpvaPr8i4zzg07DOMz+igA4W/aNM7OV8H37pFYfA==
-
quagga@^0.12.1:
version "0.12.1"
resolved "https://registry.yarnpkg.com/quagga/-/quagga-0.12.1.tgz#6f48c56ed992dc5fdeb90dbee7069c2e1cdde8b7"
@@ -5006,19 +4989,19 @@ ramda@0.24.1:
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.24.1.tgz#c3b7755197f35b8dc3502228262c4c91ddb6b857"
integrity sha1-w7d1UZfzW43DUCIoJixMkd22uFc=
-range-parser@~1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
- integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=
+range-parser@~1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+ integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
-raw-body@2.3.3:
- version "2.3.3"
- resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3"
- integrity sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==
+raw-body@2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
+ integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
dependencies:
- bytes "3.0.0"
- http-errors "1.6.3"
- iconv-lite "0.4.23"
+ bytes "3.1.0"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
unpipe "1.0.0"
raw-body@^2.2.0:
@@ -5501,12 +5484,12 @@ rxjs@^6.4.0:
dependencies:
tslib "^1.9.0"
-safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-safe-buffer@~5.2.0:
+safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
@@ -5558,12 +5541,7 @@ semver-diff@^2.0.0:
dependencies:
semver "^5.0.3"
-"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0:
- version "5.6.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
- integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==
-
-semver@^5.0.3, semver@^5.1.0, semver@^5.5.1:
+"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.5.0, semver@^5.5.1:
version "5.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
@@ -5578,10 +5556,10 @@ semver@~5.3.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8=
-send@0.16.2:
- version "0.16.2"
- resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1"
- integrity sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==
+send@0.17.1:
+ version "0.17.1"
+ resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
+ integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
dependencies:
debug "2.6.9"
depd "~1.1.2"
@@ -5590,27 +5568,27 @@ send@0.16.2:
escape-html "~1.0.3"
etag "~1.8.1"
fresh "0.5.2"
- http-errors "~1.6.2"
- mime "1.4.1"
- ms "2.0.0"
+ http-errors "~1.7.2"
+ mime "1.6.0"
+ ms "2.1.1"
on-finished "~2.3.0"
- range-parser "~1.2.0"
- statuses "~1.4.0"
+ range-parser "~1.2.1"
+ statuses "~1.5.0"
serialize-javascript@^1.6.1:
version "1.7.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65"
integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==
-serve-static@1.13.2:
- version "1.13.2"
- resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1"
- integrity sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==
+serve-static@1.14.1:
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
+ integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
dependencies:
encodeurl "~1.0.2"
escape-html "~1.0.3"
- parseurl "~1.3.2"
- send "0.16.2"
+ parseurl "~1.3.3"
+ send "0.17.1"
set-blocking@^2.0.0, set-blocking@~2.0.0:
version "2.0.0"
@@ -5642,11 +5620,6 @@ set-value@^2.0.0:
is-plain-object "^2.0.3"
split-string "^3.0.1"
-setprototypeof@1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
- integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
-
setprototypeof@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
@@ -5732,10 +5705,10 @@ snyk-config@^2.2.1:
lodash "^4.17.15"
nconf "^0.10.0"
-snyk-docker-plugin@2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/snyk-docker-plugin/-/snyk-docker-plugin-2.2.0.tgz#eb15f4854c53d96f591b99b8c8574fbf7ba6014b"
- integrity sha512-adoerkNsYNNZFKnvtjJLJeEgjUf2js0hnG32aUJSRtbDN1Ejgbj88a0UYc90C+s2xZJaulJgImy9/5IsG5/omg==
+snyk-docker-plugin@2.2.2:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/snyk-docker-plugin/-/snyk-docker-plugin-2.2.2.tgz#55b740eea5ab8c154aea0c9532e77d2b6f1c5ab9"
+ integrity sha512-ufeACGqtypUJ3AV5+bQw/mZLo40MC9tVHdRxpBw95w0F0Oa1MT5DATQj/K8RHpkEy8X6rlMmnxH8swyryFgRhg==
dependencies:
debug "^4.1.1"
dockerfile-ast "0.0.19"
@@ -5919,10 +5892,10 @@ snyk-try-require@1.3.1, snyk-try-require@^1.1.1, snyk-try-require@^1.3.1:
lru-cache "^4.0.0"
then-fs "^2.0.0"
-snyk@^1.294.1:
- version "1.297.2"
- resolved "https://registry.yarnpkg.com/snyk/-/snyk-1.297.2.tgz#56d626ef9f7b21aa75362f94f438776fb8e32847"
- integrity sha512-iGM5JA2pNRkhqYg9EjnnYirvmSnoH3hY699Wy+mUUM9mhC7EhFrkH46Ct5QE/sXUDs7sLrN9Nzxo5L6RXKGBUA==
+snyk@^1.297.4:
+ version "1.297.4"
+ resolved "https://registry.yarnpkg.com/snyk/-/snyk-1.297.4.tgz#7a8886eaa19c3215e9bb617739b873865f0da31d"
+ integrity sha512-NPmBfVgyVsMI+wfulUh8eDoNRK2Gr+bVnqTWJ6aNhFED1NUfmFfNjYuDNs/6VxeljpHinVE3VskxzRkSAlE+pA==
dependencies:
"@snyk/cli-interface" "2.3.2"
"@snyk/configstore" "^3.2.0-rc1"
@@ -5949,7 +5922,7 @@ snyk@^1.294.1:
proxy-from-env "^1.0.0"
semver "^6.0.0"
snyk-config "^2.2.1"
- snyk-docker-plugin "2.2.0"
+ snyk-docker-plugin "2.2.2"
snyk-go-plugin "1.13.0"
snyk-gradle-plugin "3.2.5"
snyk-module "1.9.1"
@@ -5976,17 +5949,17 @@ socket.io-adapter@~1.1.0:
resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b"
integrity sha1-KoBeihTWNyEk3ZFZrUUC+MsH8Gs=
-socket.io-client@2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.2.0.tgz#84e73ee3c43d5020ccc1a258faeeb9aec2723af7"
- integrity sha512-56ZrkTDbdTLmBIyfFYesgOxsjcLnwAKoN4CiPyTVkMQj3zTUh0QAx3GbvIvLpFEOvQWu92yyWICxB0u7wkVbYA==
+socket.io-client@2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.3.0.tgz#14d5ba2e00b9bcd145ae443ab96b3f86cbcc1bb4"
+ integrity sha512-cEQQf24gET3rfhxZ2jJ5xzAOo/xhZwK+mOqtGRg5IowZsMgwvHwnf/mCRapAAkadhM26y+iydgwsXGObBB5ZdA==
dependencies:
backo2 "1.0.2"
base64-arraybuffer "0.1.5"
component-bind "1.0.0"
component-emitter "1.2.1"
- debug "~3.1.0"
- engine.io-client "~3.3.1"
+ debug "~4.1.0"
+ engine.io-client "~3.4.0"
has-binary2 "~1.0.2"
has-cors "1.1.0"
indexof "0.0.1"
@@ -6005,17 +5978,26 @@ socket.io-parser@~3.3.0:
debug "~3.1.0"
isarray "2.0.1"
-socket.io@^2.0.4:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.2.0.tgz#f0f633161ef6712c972b307598ecd08c9b1b4d5b"
- integrity sha512-wxXrIuZ8AILcn+f1B4ez4hJTPG24iNgxBBDaJfT6MsyOhVYiTXWexGoPkd87ktJG8kQEcL/NBvRi64+9k4Kc0w==
+socket.io-parser@~3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.4.0.tgz#370bb4a151df2f77ce3345ff55a7072cc6e9565a"
+ integrity sha512-/G/VOI+3DBp0+DJKW4KesGnQkQPFmUCbA/oO2QGT6CWxU7hLGWqU3tyuzeSK/dqcyeHsQg1vTe9jiZI8GU9SCQ==
+ dependencies:
+ component-emitter "1.2.1"
+ debug "~4.1.0"
+ isarray "2.0.1"
+
+socket.io@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.3.0.tgz#cd762ed6a4faeca59bc1f3e243c0969311eb73fb"
+ integrity sha512-2A892lrj0GcgR/9Qk81EaY2gYhCBxurV0PfmmESO6p27QPrUK1J3zdns+5QPqvUYK2q657nSj0guoIil9+7eFg==
dependencies:
debug "~4.1.0"
- engine.io "~3.3.1"
+ engine.io "~3.4.0"
has-binary2 "~1.0.2"
socket.io-adapter "~1.1.0"
- socket.io-client "2.2.0"
- socket.io-parser "~3.3.0"
+ socket.io-client "2.3.0"
+ socket.io-parser "~3.4.0"
socks-proxy-agent@^4.0.1:
version "4.0.2"
@@ -6049,7 +6031,7 @@ source-map-resolve@^0.5.0:
source-map-url "^0.4.0"
urix "^0.1.0"
-source-map-support@^0.5.11, source-map-support@^0.5.7:
+source-map-support@^0.5.11, source-map-support@^0.5.7, source-map-support@~0.5.10:
version "0.5.16"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042"
integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==
@@ -6057,14 +6039,6 @@ source-map-support@^0.5.11, source-map-support@^0.5.7:
buffer-from "^1.0.0"
source-map "^0.6.0"
-source-map-support@~0.5.10:
- version "0.5.12"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599"
- integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==
- dependencies:
- buffer-from "^1.0.0"
- source-map "^0.6.0"
-
source-map-url@^0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
@@ -6158,16 +6132,11 @@ static-extend@^0.1.1:
define-property "^0.2.5"
object-copy "^0.1.0"
-"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2":
+"statuses@>= 1.5.0 < 2", statuses@~1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
-statuses@~1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
- integrity sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==
-
stdout-stream@^1.4.0:
version "1.4.1"
resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de"
@@ -6573,13 +6542,13 @@ type-check@~0.3.2:
dependencies:
prelude-ls "~1.1.2"
-type-is@~1.6.16:
- version "1.6.16"
- resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194"
- integrity sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==
+type-is@~1.6.17, type-is@~1.6.18:
+ version "1.6.18"
+ resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
+ integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
dependencies:
media-typer "0.3.0"
- mime-types "~2.1.18"
+ mime-types "~2.1.24"
typedarray@^0.0.6:
version "0.0.6"
@@ -6714,16 +6683,11 @@ utils-merge@1.0.1:
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
-uuid@^3.0.1:
+uuid@^3.0.1, uuid@^3.1.0, uuid@^3.3.2:
version "3.4.0"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
-uuid@^3.1.0, uuid@^3.3.2:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
- integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
-
validate-npm-package-license@^3.0.1:
version "3.0.4"
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
@@ -6868,6 +6832,11 @@ write-file-atomic@^2.0.0:
imurmurhash "^0.1.4"
signal-exit "^3.0.2"
+ws@^7.1.2:
+ version "7.2.1"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.1.tgz#03ed52423cd744084b2cf42ed197c8b65a936b8e"
+ integrity sha512-sucePNSafamSKoOqoNfBd8V0StlkzJKL2ZAhGQinCfNQ+oacw+Pk7lcdAElecBF2VkLNZRiIb5Oi1Q5lVUVt2A==
+
ws@~6.1.0:
version "6.1.4"
resolved "https://registry.yarnpkg.com/ws/-/ws-6.1.4.tgz#5b5c8800afab925e94ccb29d153c8d02c1776ef9"