From 2553ba566438773b2aa0d5a310c621bb10bb31b7 Mon Sep 17 00:00:00 2001 From: prssanna Date: Thu, 22 Aug 2019 13:54:02 +0530 Subject: [PATCH 001/274] feat: add energy points to leaderboard --- frappe/desk/page/leaderboard/__init__.py | 0 frappe/desk/page/leaderboard/leaderboard.css | 54 +++ frappe/desk/page/leaderboard/leaderboard.js | 379 ++++++++++++++++++ frappe/desk/page/leaderboard/leaderboard.json | 19 + frappe/desk/page/leaderboard/leaderboard.py | 147 +++++++ frappe/hooks.py | 9 + .../energy_point_log/energy_point_log.py | 19 + 7 files changed, 627 insertions(+) create mode 100644 frappe/desk/page/leaderboard/__init__.py create mode 100644 frappe/desk/page/leaderboard/leaderboard.css create mode 100644 frappe/desk/page/leaderboard/leaderboard.js create mode 100644 frappe/desk/page/leaderboard/leaderboard.json create mode 100644 frappe/desk/page/leaderboard/leaderboard.py diff --git a/frappe/desk/page/leaderboard/__init__.py b/frappe/desk/page/leaderboard/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/frappe/desk/page/leaderboard/leaderboard.css b/frappe/desk/page/leaderboard/leaderboard.css new file mode 100644 index 0000000000..1f4fc5159a --- /dev/null +++ b/frappe/desk/page/leaderboard/leaderboard.css @@ -0,0 +1,54 @@ +.list-filters { + overflow-y: hidden; + padding: 5px +} + +.list-filter-item { + min-width: 150px; + float: left; + margin:5px; +} + +.list-item_content{ + flex: 1; + padding-right: 15px; + align-items: center; +} + +.select-time, .select-doctype, .select-filter, .select-sort { + background: #f0f4f7; +} + +.select-time:focus, .select-doctype:focus, .select-filter:focus, .select-sort:focus { + background: #f0f4f7; +} + +.header-btn-base{ + border:none; + outline:0; + vertical-align:middle; + overflow:hidden; + text-decoration:none; + color:inherit; + background-color:inherit; + cursor:pointer; + white-space:nowrap; +} + +.header-btn-grey,.header-btn-grey:hover{ + color:#000!important; + background-color:#bbb!important +} + +.header-btn-round{ + border-radius:4px +} + +.item-title-bold{ + font-weight: bold; +} + +/* +.header-btn-base:hover { + box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) +}*/ diff --git a/frappe/desk/page/leaderboard/leaderboard.js b/frappe/desk/page/leaderboard/leaderboard.js new file mode 100644 index 0000000000..f3b15c6a24 --- /dev/null +++ b/frappe/desk/page/leaderboard/leaderboard.js @@ -0,0 +1,379 @@ +frappe.pages["leaderboard"].on_page_load = function (wrapper) { + frappe.leaderboard = new frappe.Leaderboard(wrapper); + + $(wrapper).bind('show', ()=> { + //Get which leaderboard to show + let doctype = frappe.get_route()[1]; + frappe.leaderboard.show_leaderboard(doctype); + }); +} + + +// Add search if possible, add rank column, show users with 0 points, show names not email +frappe.Leaderboard = Class.extend({ + + init: function (parent) { + frappe.ui.make_app_page({ + parent: parent, + title: "Leaderboard", + single_column: false + }); + + this.parent = parent; + this.page = this.parent.page; + this.page.sidebar.html(``); + this.$sidebar_list = this.page.sidebar.find('ul'); + + // const list of doctypes + this.doctypes = ["Customer", "Item", "Supplier", "Sales Partner", "Sales Person", "Energy Point Log"]; + this.timespans = ["Week", "Month", "Quarter", "Year", "All Time"]; + this.filters = { + "Customer": ["total_sales_amount", "total_qty_sold", "outstanding_amount"], + "Item": ["total_sales_amount", "total_qty_sold", "total_purchase_amount", + "total_qty_purchased", "available_stock_qty", "available_stock_value"], + "Supplier": ["total_purchase_amount", "total_qty_purchased", "outstanding_amount"], + "Sales Partner": ["total_sales_amount", "total_commission"], + "Sales Person": ["total_sales_amount"], + "Energy Point Log": ["points"] + }; + + // for saving current selected filters + // TODO: revert to 0 index for doctype and timespan, and remove preset down + const _initial_doctype = this.doctypes[0]; + const _initial_timespan = this.timespans[0]; + const _initial_filter = this.filters[_initial_doctype]; + + this.options = { + selected_doctype: _initial_doctype, + selected_filter: _initial_filter, + selected_filter_item: _initial_filter[0], + selected_timespan: _initial_timespan, + }; + + this.message = null; + this.make(); + }, + + make: function () { + var me = this; + + this.$container = $(`
+
+
+
`).appendTo(this.page.main); + + this.$graph_area = this.$container.find('.leaderboard-graph'); + + this.doctypes.map(doctype => { + this.get_sidebar_item(doctype).appendTo(this.$sidebar_list); + }); + + this.setup_leaderboard_fields(); + + this.render_selected_doctype(); + + this.render_search_box(); + + // now get leaderboard + this.show_leaderboard(); + + }, + + setup_leaderboard_fields() { + var me = this; + this.company_select = this.page.add_field({ + fieldname: 'company', + label: __('Company'), + fieldtype: 'Link', + options: 'Company', + default: frappe.defaults.get_default('company'), + reqd: 1, + change: function() { + me.options.selected_company = this.value; + me.make_request(); + } + }); + this.timespan_select = this.page.add_select(__("Timespan"), + this.timespans.map(d => { + return {"label": __(d), value: d } + }) + ); + + this.type_select = this.page.add_select(__("Type"), + me.options.selected_filter.map(d => { + return {"label": __(frappe.model.unscrub(d)), value: d } + }) + ); + + this.timespan_select.on("change", function() { + me.options.selected_timespan = this.value; + me.make_request(); + }); + + this.type_select.on("change", function() { + me.options.selected_filter_item = this.value; + me.make_request(); + }); + }, + + render_selected_doctype() { + var me = this; + + this.$sidebar_list.on('click', 'li', function(e) { + let $li = $(this); + let doctype = $li.find('span').attr("doctype-value"); + + me.options.selected_company = frappe.defaults.get_default('company'); + me.options.selected_doctype = doctype; + me.options.selected_filter = me.filters[doctype]; + me.options.selected_filter_item = me.filters[doctype][0]; + + me.type_select.empty().add_options( + me.options.selected_filter.map(d => { + return {"label": __(frappe.model.unscrub(d)), value: d }; + }) + ); + + if(me.options.selected_doctype === 'Energy Point Log') { + $(me.parent).find('[data-original-title=Company]').hide(); + } else { + $(me.parent).find('[data-original-title=Company]').show(); + } + + me.$sidebar_list.find('li').removeClass('active'); + $li.addClass('active'); + + frappe.set_route('leaderboard', me.options.selected_doctype); + me.make_request(); + }); + }, + + render_search_box() { + var me = this; + + this.$search_box = + $(``); + + $(me.parent).find('.page-form').append(this.$search_box); + }, + + setup_search(list_items) { + var me = this; + let $search_input = this.$search_box.find('.leaderboard-search-input'); + this.$search_box.on('keyup', ()=> { + let text_filter = $search_input.val().toLowerCase(); + text_filter = text_filter.replace(/^\s+|\s+$/g, ''); + for (var i = 0; i < list_items.length; i++) { + let text = list_items.eq(i).find('.list-id').text().trim().toLowerCase(); + + if (text.includes(text_filter)) { + list_items.eq(i).css('display', ''); + } else { + list_items.eq(i).css('display', 'none'); + } + } + }); + }, + + show_leaderboard(doctype) { + var me = this; + + if (me.doctypes.includes(doctype)) { + me.options.selected_doctype = doctype; + me.$sidebar_list.find(`[doctype-value = '${me.options.selected_doctype}']`).trigger('click'); + } + + this.$search_box.find('.leaderboard-search-input').val(''); + frappe.set_route('leaderboard', me.options.selected_doctype); + }, + + make_request: function () { + var me = this; + + frappe.model.with_doctype(me.options.selected_doctype, function () { + me.get_leaderboard(me.get_leaderboard_data); + }); + }, + + get_leaderboard: function (notify) { + var me = this; + if(!me.options.selected_company) { + frappe.throw(__("Please select Company")); + } + frappe.call({ + method: "frappe.desk.page.leaderboard.leaderboard.get_leaderboard", + args: { + doctype: me.options.selected_doctype, + timespan: me.options.selected_timespan, + company: me.options.selected_company, + field: me.options.selected_filter_item, + }, + callback: function (r) { + let results = r.message || []; + + let graph_items = results.slice(0, 10); + + me.$graph_area.show().empty(); + let args = { + data: { + datasets: [ + { + values: graph_items.map(d => d.value) + } + ], + labels: graph_items.map(d => d.name) + }, + colors: ['light-green'], + format_tooltip_x: d => d[me.options.selected_filter_item], + type: 'bar', + height: 140 + }; + new frappe.Chart('.leaderboard-graph', args); + + notify(me, r); + } + }); + }, + + get_leaderboard_data: function (me, res) { + if (res && res.message.length) { + me.message = null; + me.$container.find(".leaderboard-list").html(me.render_list_view(res.message)); + me.setup_search($(me.parent).find('.list-item-container')); + } else { + me.$graph_area.hide(); + me.message = __("No items found."); + me.$container.find(".leaderboard-list").html(me.render_list_view()); + } + }, + + render_list_view: function (items = []) { + var me = this; + + var html = + `${me.render_message()} +
+ ${me.render_result(items)} +
`; + + return $(html); + }, + + render_result: function (items) { + var me = this; + + var html = + `${me.render_list_header()} + ${me.render_list_result(items)}`; + return html; + }, + + render_list_header: function () { + var me = this; + const _selected_filter = me.options.selected_filter + .map(i => frappe.model.unscrub(i)); + const fields = ['rank', 'name', me.options.selected_filter_item]; + + const html = + `
+
+ ${ + fields.map(filter => { + const col = frappe.model.unscrub(filter); + return ( + `
+ + ${col} + +
`); + }).join("") + } +
+
`; + return html; + }, + + render_list_result: function (items) { + var me = this; + + let _html = items.map((item, index) => { + const $value = $(me.get_item_html(item, index+1)); + const $item_container = $(`
`).append($value); + return $item_container[0].outerHTML; + }).join(""); + + let html = + `
+
+ ${_html} +
+
`; + + return html; + }, + + render_message: function () { + var me = this; + + let html = + `
+
+

No Item found

+
+
`; + + return html; + }, + + get_item_html: function (item, index) { + var me = this; + const company = me.options.selected_company; + const currency = frappe.get_doc(":Company", company).default_currency; + const fields = ['index', 'name', 'value']; + + const html = + `
+ ${ + fields.map(col => { + let val = col === 'index'? index: item[col]; + let link = me.options.selected_doctype === 'Energy Point Log' + ? `#user-profile/${item["name"]}` + : `#Form/${me.options.selected_doctype}/${item["name"]}`; + if (col == "name") { + val = me.options.selected_doctype === 'Energy Point Log' + ? frappe.user.full_name(val) + : val; + var formatted_value = ` ${val} ` + } else { + var value = me.options.selected_doctype !== 'Energy Point Log' && + me.options.selected_filter_item.indexOf('qty') == -1 && + col !== 'index' + ? format_currency(val, currency) + : val; + var formatted_value = `${value}` + } + + return ( + `
+ ${formatted_value} +
`); + }).join("") + } +
`; + + return html; + }, + + get_sidebar_item: function(item) { + return $(`
  • + + ${ __(item) } +
  • `); + } +}); diff --git a/frappe/desk/page/leaderboard/leaderboard.json b/frappe/desk/page/leaderboard/leaderboard.json new file mode 100644 index 0000000000..6aa3e0a46f --- /dev/null +++ b/frappe/desk/page/leaderboard/leaderboard.json @@ -0,0 +1,19 @@ +{ + "content": null, + "creation": "2017-06-06 02:54:24.785360", + "docstatus": 0, + "doctype": "Page", + "idx": 0, + "modified": "2017-09-12 14:05:26.422064", + "modified_by": "Administrator", + "module": "Desk", + "name": "leaderboard", + "owner": "Administrator", + "page_name": "leaderboard", + "roles": [], + "script": null, + "standard": "Yes", + "style": null, + "system_page": 0, + "title": "Leaderboard" +} \ No newline at end of file diff --git a/frappe/desk/page/leaderboard/leaderboard.py b/frappe/desk/page/leaderboard/leaderboard.py new file mode 100644 index 0000000000..01059620b0 --- /dev/null +++ b/frappe/desk/page/leaderboard/leaderboard.py @@ -0,0 +1,147 @@ +# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# MIT License. See license.txt + +from __future__ import unicode_literals, print_function +import frappe +from frappe.utils import add_to_date + +@frappe.whitelist() +def get_leaderboard(doctype, timespan, company, field): + """return top 10 items for that doctype based on conditions""" + from_date = get_from_date(timespan) + leaderboards = frappe.get_hooks('leaderboards') + method = leaderboards[doctype][0] + records = frappe.get_attr(method)(from_date, company, field) + + return records + +def get_all_customers(from_date, company, field): + if field == "outstanding_amount": + return frappe.db.sql(""" + select customer as name, sum(outstanding_amount) as value + FROM `tabSales Invoice` + where docstatus = 1 and posting_date >= %s and company = %s + group by customer + order by value DESC + limit 20 + """, (from_date, company), as_dict=1) + else: + if field == "total_sales_amount": + select_field = "sum(so_item.base_net_amount)" + elif field == "total_qty_sold": + select_field = "sum(so_item.stock_qty)" + + return frappe.db.sql(""" + select so.customer as name, {0} as value + FROM `tabSales Order` as so JOIN `tabSales Order Item` as so_item + ON so.name = so_item.parent + where so.docstatus = 1 and so.transaction_date >= %s and so.company = %s + group by so.customer + order by value DESC + limit 20 + """.format(select_field), (from_date, company), as_dict=1) + +def get_all_items(from_date, company, field): + if field in ("available_stock_qty", "available_stock_value"): + return frappe.db.sql(""" + select item_code as name, {0} as value + from tabBin + group by item_code + order by value desc + limit 20 + """.format("sum(actual_qty)" if field=="available_stock_qty" else "sum(stock_value)"), as_dict=1) + else: + if field == "total_sales_amount": + select_field = "sum(order_item.base_net_amount)" + select_doctype = "Sales Order" + elif field == "total_purchase_amount": + select_field = "sum(order_item.base_net_amount)" + select_doctype = "Purchase Order" + elif field == "total_qty_sold": + select_field = "sum(order_item.stock_qty)" + select_doctype = "Sales Order" + elif field == "total_qty_purchased": + select_field = "sum(order_item.stock_qty)" + select_doctype = "Purchase Order" + + return frappe.db.sql(""" + select order_item.item_code as name, {0} as value + from `tab{1}` sales_order join `tab{1} Item` as order_item + on sales_order.name = order_item.parent + where sales_order.docstatus = 1 + and sales_order.company = %s and sales_order.transaction_date >= %s + group by order_item.item_code + order by value desc + limit 20 + """.format(select_field, select_doctype), (company, from_date), as_dict=1) + +def get_all_suppliers(from_date, company, field): + if field == "outstanding_amount": + return frappe.db.sql(""" + select supplier as name, sum(outstanding_amount) as value + FROM `tabPurchase Invoice` + where docstatus = 1 and posting_date >= %s and company = %s + group by supplier + order by value DESC + limit 20""", (from_date, company), as_dict=1) + else: + if field == "total_purchase_amount": + select_field = "sum(purchase_order_item.base_net_amount)" + elif field == "total_qty_purchased": + select_field = "sum(purchase_order_item.stock_qty)" + + return frappe.db.sql(""" + select purchase_order.supplier as name, {0} as value + FROM `tabPurchase Order` as purchase_order LEFT JOIN `tabPurchase Order Item` + as purchase_order_item ON purchase_order.name = purchase_order_item.parent + where purchase_order.docstatus = 1 and purchase_order.modified >= %s + and purchase_order.company = %s + group by purchase_order.supplier + order by value DESC + limit 20""".format(select_field), (from_date, company), as_dict=1) + +def get_all_sales_partner(from_date, company, field): + if field == "total_sales_amount": + select_field = "sum(base_net_total)" + elif field == "total_commission": + select_field = "sum(total_commission)" + + return frappe.db.sql(""" + select sales_partner as name, {0} as value + from `tabSales Order` + where ifnull(sales_partner, '') != '' and docstatus = 1 + and transaction_date >= %s and company = %s + group by sales_partner + order by value DESC + limit 20 + """.format(select_field), (from_date, company), as_dict=1) + +def get_all_sales_person(from_date, company, field = None): + return frappe.db.sql(""" + select sales_team.sales_person as name, sum(sales_order.base_net_total) as value + from `tabSales Order` as sales_order join `tabSales Team` as sales_team + on sales_order.name = sales_team.parent and sales_team.parenttype = 'Sales Order' + where sales_order.docstatus = 1 + and sales_order.transaction_date >= %s + and sales_order.company = %s + group by sales_team.sales_person + order by value DESC + limit 20 + """, (from_date, company), as_dict=1) + +def get_from_date(selected_timespan): + """return string for ex:this week as date:string""" + days = months = years = 0 + if "month" == selected_timespan.lower(): + months = -1 + elif "quarter" == selected_timespan.lower(): + months = -3 + elif "year" == selected_timespan.lower(): + years = -1 + elif "week" == selected_timespan.lower(): + days = -7 + else: + return '' + + return add_to_date(None, years=years, months=months, days=days, + as_string=True, as_datetime=True) \ No newline at end of file diff --git a/frappe/hooks.py b/frappe/hooks.py index eb0d5bbe77..e5a2ed5f74 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -291,3 +291,12 @@ user_privacy_documents = [ }, ] + +leaderboards = { + 'Energy Point Log': 'frappe.social.doctype.energy_point_log.energy_point_log.get_leaderboard_data', + 'Customer': 'frappe.desk.page.leaderboard.leaderboard.get_all_customers', + 'Item': 'frappe.desk.page.leaderboard.leaderboard.get_all_items', + 'Supplier': 'frappe.desk.page.leaderboard.leaderboard.get_all_suppliers', + 'Sales Partner': 'frappe.desk.page.leaderboard.leaderboard.get_all_sales_partner', + 'Sales Person': 'frappe.desk.page.leaderboard.leaderboard.get_all_sales_person', +} diff --git a/frappe/social/doctype/energy_point_log/energy_point_log.py b/frappe/social/doctype/energy_point_log/energy_point_log.py index adff241413..3d7a074f58 100644 --- a/frappe/social/doctype/energy_point_log/energy_point_log.py +++ b/frappe/social/doctype/energy_point_log/energy_point_log.py @@ -284,3 +284,22 @@ def get_footer_message(timespan): else: return _("Stats based on last week's performance (from {0} to {1})") +def get_leaderboard_data(from_date, company = None, field = None): + energy_point_users = frappe.db.sql(""" + select user as name, sum(points) as value from + `tabEnergy Point Log` + where type!='Review' and creation >= %s + group by user + order by value DESC""", (from_date), as_dict = 1) + all_users = frappe.db.get_all('User', + filters = {'name': ['not in', ['Administrator', 'Guest']]}, + order_by = 'name ASC') + + all_users_list = list(map(lambda x: x['name'], all_users)) + energy_point_users_list = list(map(lambda x: x['name'], energy_point_users)) + for user in all_users_list: + if user not in energy_point_users_list: + energy_point_users.append({'name': user, 'value': 0}) + + return energy_point_users + From 9b34d7395a583882883960bbee3ee02a9dc5f904 Mon Sep 17 00:00:00 2001 From: prssanna Date: Mon, 2 Sep 2019 12:08:33 +0530 Subject: [PATCH 002/274] fix: fix column spacing --- frappe/desk/page/leaderboard/leaderboard.css | 4 +++ frappe/desk/page/leaderboard/leaderboard.js | 12 +++---- frappe/desk/page/leaderboard/leaderboard.json | 32 +++++++++---------- 3 files changed, 25 insertions(+), 23 deletions(-) diff --git a/frappe/desk/page/leaderboard/leaderboard.css b/frappe/desk/page/leaderboard/leaderboard.css index 1f4fc5159a..9c0abe7048 100644 --- a/frappe/desk/page/leaderboard/leaderboard.css +++ b/frappe/desk/page/leaderboard/leaderboard.css @@ -48,6 +48,10 @@ font-weight: bold; } +.rank { + max-width: 150px; +} + /* .header-btn-base:hover { box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) diff --git a/frappe/desk/page/leaderboard/leaderboard.js b/frappe/desk/page/leaderboard/leaderboard.js index f3b15c6a24..0899bd9ffe 100644 --- a/frappe/desk/page/leaderboard/leaderboard.js +++ b/frappe/desk/page/leaderboard/leaderboard.js @@ -8,8 +8,6 @@ frappe.pages["leaderboard"].on_page_load = function (wrapper) { }); } - -// Add search if possible, add rank column, show users with 0 points, show names not email frappe.Leaderboard = Class.extend({ init: function (parent) { @@ -284,7 +282,7 @@ frappe.Leaderboard = Class.extend({ const col = frappe.model.unscrub(filter); return ( `
    ${col} @@ -333,13 +331,13 @@ frappe.Leaderboard = Class.extend({ var me = this; const company = me.options.selected_company; const currency = frappe.get_doc(":Company", company).default_currency; - const fields = ['index', 'name', 'value']; + const fields = ['rank', 'name', 'value']; const html = `
    ${ fields.map(col => { - let val = col === 'index'? index: item[col]; + let val = col === 'rank'? index: item[col]; let link = me.options.selected_doctype === 'Energy Point Log' ? `#user-profile/${item["name"]}` : `#Form/${me.options.selected_doctype}/${item["name"]}`; @@ -352,14 +350,14 @@ frappe.Leaderboard = Class.extend({ } else { var value = me.options.selected_doctype !== 'Energy Point Log' && me.options.selected_filter_item.indexOf('qty') == -1 && - col !== 'index' + col !== 'rank' ? format_currency(val, currency) : val; var formatted_value = `${value}` } return ( - `
    ${formatted_value}
    `); diff --git a/frappe/desk/page/leaderboard/leaderboard.json b/frappe/desk/page/leaderboard/leaderboard.json index 6aa3e0a46f..2ef89e9e81 100644 --- a/frappe/desk/page/leaderboard/leaderboard.json +++ b/frappe/desk/page/leaderboard/leaderboard.json @@ -1,19 +1,19 @@ { - "content": null, - "creation": "2017-06-06 02:54:24.785360", - "docstatus": 0, - "doctype": "Page", - "idx": 0, - "modified": "2017-09-12 14:05:26.422064", - "modified_by": "Administrator", - "module": "Desk", - "name": "leaderboard", - "owner": "Administrator", - "page_name": "leaderboard", - "roles": [], - "script": null, - "standard": "Yes", - "style": null, - "system_page": 0, + "content": null, + "creation": "2017-06-06 02:54:24.785360", + "docstatus": 0, + "doctype": "Page", + "idx": 0, + "modified": "2019-09-02 11:45:58.467985", + "modified_by": "Administrator", + "module": "Desk", + "name": "leaderboard", + "owner": "Administrator", + "page_name": "leaderboard", + "roles": [], + "script": null, + "standard": "Yes", + "style": null, + "system_page": 0, "title": "Leaderboard" } \ No newline at end of file From 02f3b3f1b7036b36f862014c27c5be9b1f6e765b Mon Sep 17 00:00:00 2001 From: prssanna Date: Mon, 2 Sep 2019 23:47:07 +0530 Subject: [PATCH 003/274] fix: change leaderboard links --- frappe/desk/page/leaderboard/leaderboard.js | 2 +- frappe/desk/page/user_profile/user_profile_sidebar.html | 2 +- .../public/js/frappe/ui/toolbar/energy_points_notifications.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/desk/page/leaderboard/leaderboard.js b/frappe/desk/page/leaderboard/leaderboard.js index 0899bd9ffe..86238b11c3 100644 --- a/frappe/desk/page/leaderboard/leaderboard.js +++ b/frappe/desk/page/leaderboard/leaderboard.js @@ -37,7 +37,7 @@ frappe.Leaderboard = Class.extend({ // for saving current selected filters // TODO: revert to 0 index for doctype and timespan, and remove preset down - const _initial_doctype = this.doctypes[0]; + const _initial_doctype = frappe.get_route()[1] || this.doctypes[0]; const _initial_timespan = this.timespans[0]; const _initial_filter = this.filters[_initial_doctype]; diff --git a/frappe/desk/page/user_profile/user_profile_sidebar.html b/frappe/desk/page/user_profile/user_profile_sidebar.html index 02fb214d6e..570ef323c2 100644 --- a/frappe/desk/page/user_profile/user_profile_sidebar.html +++ b/frappe/desk/page/user_profile/user_profile_sidebar.html @@ -18,6 +18,6 @@
    \ No newline at end of file diff --git a/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js b/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js index 5b12f52322..5d166f41fd 100644 --- a/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js +++ b/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js @@ -103,7 +103,7 @@ frappe.ui.EnergyPointsNotifications = class { let header_html = `
  • ${__('Energy Points')} - +
  • `; let body_html = ''; let view_full_log_html = ''; From 9f0a4a6cb0a3ee4a4b0cd7099b56ed9ee84d0690 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Wed, 11 Sep 2019 20:12:57 +0530 Subject: [PATCH 004/274] fix: reintroduced mobile_no --- frappe/contacts/doctype/contact/contact.json | 11 ++++++-- .../doctype/contact_phone/contact_phone.json | 28 ++++++++++++------- .../addresses_and_contacts.py | 2 +- .../test_addresses_and_contacts.py | 2 +- frappe/hooks.py | 2 +- 5 files changed, 30 insertions(+), 15 deletions(-) diff --git a/frappe/contacts/doctype/contact/contact.json b/frappe/contacts/doctype/contact/contact.json index f700411e80..d4eb552e6e 100644 --- a/frappe/contacts/doctype/contact/contact.json +++ b/frappe/contacts/doctype/contact/contact.json @@ -20,6 +20,7 @@ "designation", "gender", "phone", + "mobile_no", "image", "sb_00", "email_ids", @@ -203,13 +204,19 @@ "fieldtype": "Table", "label": "Phone Nos", "options": "Contact Phone" + }, + { + "fieldname": "mobile_no", + "fieldtype": "Data", + "label": "Mobile No", + "read_only": 1 } ], "icon": "fa fa-user", "idx": 1, "image_field": "image", - "modified": "2019-08-09 10:23:00.486673", - "modified_by": "Administrator", + "modified": "2019-09-11 20:02:08.961211", + "modified_by": "himanshu@erpnext.com", "module": "Contacts", "name": "Contact", "name_case": "Title Case", diff --git a/frappe/contacts/doctype/contact_phone/contact_phone.json b/frappe/contacts/doctype/contact_phone/contact_phone.json index 971dedf3d2..4627f4e69d 100644 --- a/frappe/contacts/doctype/contact_phone/contact_phone.json +++ b/frappe/contacts/doctype/contact_phone/contact_phone.json @@ -5,26 +5,34 @@ "engine": "InnoDB", "field_order": [ "phone", - "is_primary" + "is_primary_phone", + "is_primary_mobile" ], "fields": [ - { - "default": "0", - "fieldname": "is_primary", - "fieldtype": "Check", - "in_list_view": 1, - "label": "Is Primary" - }, { "fieldname": "phone", "fieldtype": "Data", "in_list_view": 1, "label": "Phone" + }, + { + "default": "0", + "fieldname": "is_primary_phone", + "fieldtype": "Check", + "in_list_view": 1, + "label": "Is Primary Phone" + }, + { + "default": "0", + "fieldname": "is_primary_mobile", + "fieldtype": "Check", + "in_list_view": 1, + "label": "Is Primary Mobile" } ], "istable": 1, - "modified": "2019-08-05 11:40:59.104224", - "modified_by": "Administrator", + "modified": "2019-09-11 19:52:31.732427", + "modified_by": "himanshu@erpnext.com", "module": "Contacts", "name": "Contact Phone", "owner": "Administrator", diff --git a/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py b/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py index fb345a4384..ba0ecd41d1 100644 --- a/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py +++ b/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py @@ -7,7 +7,7 @@ import frappe from frappe import _ field_map = { - "Contact": ["first_name", "last_name", "address", "phone", "email_id", "is_primary_contact"], + "Contact": ["first_name", "last_name", "address", "phone", "mobile_no", "email_id", "is_primary_contact"], "Address": ["address_line1", "address_line2", "city", "state", "pincode", "country", "is_primary_address"] } diff --git a/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py b/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py index d87676e272..434d138a6c 100644 --- a/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py +++ b/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py @@ -103,7 +103,7 @@ class TestAddressesAndContacts(unittest.TestCase): create_linked_contact(links_list, d) report_data = get_data({"reference_doctype": "Test Custom Doctype"}) for idx, link in enumerate(links_list): - test_item = [link, 'test address line 1', 'test address line 2', 'Milan', None, None, 'Italy', 0, '_Test First Name', '_Test Last Name', '_Test Address-Billing', '+91 0000000000', 'test_contact@example.com', 1] + test_item = [link, 'test address line 1', 'test address line 2', 'Milan', None, None, 'Italy', 0, '_Test First Name', '_Test Last Name', '_Test Address-Billing', '+91 0000000000', None, 'test_contact@example.com', 1] self.assertListEqual(test_item, report_data[idx]) def tearDown(self): diff --git a/frappe/hooks.py b/frappe/hooks.py index eb0d5bbe77..6b37e54d11 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -261,7 +261,7 @@ user_privacy_documents = [ { 'doctype': 'Contact', 'match_field': 'email_id', - 'personal_fields': ['first_name', 'last_name', 'phone'], + 'personal_fields': ['first_name', 'last_name', 'phone', 'mobile_no'], }, { 'doctype': 'Contact Email', From a4967bfd740c563be5745175ba76533cf844b0e5 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 12 Sep 2019 00:17:15 +0530 Subject: [PATCH 005/274] fix: add validation for primary nos --- frappe/contacts/doctype/contact/contact.py | 44 +++++++++++++++---- .../doctype/contact_phone/contact_phone.json | 8 ++-- 2 files changed, 40 insertions(+), 12 deletions(-) diff --git a/frappe/contacts/doctype/contact/contact.py b/frappe/contacts/doctype/contact/contact.py index 085452988a..ceecb1f428 100644 --- a/frappe/contacts/doctype/contact/contact.py +++ b/frappe/contacts/doctype/contact/contact.py @@ -29,8 +29,9 @@ class Contact(Document): break def validate(self): - self.set_primary("email_id", "email_ids") - self.set_primary("phone", "phone_nos") + self.set_primary_email() + self.set_primary_phone_and_mobile_no("phone") + self.set_primary_phone_and_mobile_no("mobile_no") if self.email_id: self.email_id = self.email_id.strip() @@ -85,14 +86,41 @@ class Contact(Document): if autosave: self.save(ignore_permissions=True) - def set_primary(self, fieldname, child_table): - if len(self.get(child_table)) == 1: - self.get(child_table)[0].is_primary = 1 - setattr(self, fieldname, self.get(child_table)[0].get(fieldname)) + def set_primary_email(self): + primary_email = [email.email_id for email in self.email_ids if email.is_primary] + + if len(primary_email) > 1: + frappe.throw(_("Only one Email ID can be set as primary.")) + + if len(self.email_ids) == 1: + self.email_ids[0].is_primary = 1 + self.email_id = self.email_ids[0].email_id else: - for d in self.get(child_table): + for d in self.email_ids: if d.is_primary == 1: - setattr(self, fieldname, d.get(fieldname)) + self.email_id = d.email_id + break + + def set_primary_phone_and_mobile_no(self, fieldname): + field_name = "is_primary_" + fieldname + is_primary = [phone.phone for phone in self.phone_nos if phone.get(field_name)] + + if len(is_primary) > 1: + frappe.throw(_("Only one {0} can be set as primary.").format(frappe.bold(frappe.unscrub(fieldname)))) + + if len(self.phone_nos) == 1: + if self.phone_nos[0].phone == self.phone or self.phone_nos[0].phone == self.mobile_no: + return + + setattr(self.phone_nos[0], fieldname, 1) + setattr(self, fieldname, self.phone_nos[0].get("phone")) + else: + for d in self.phone_nos: + if d.get(field_name) == 1: + if d.phone == self.phone or d.phone == self.mobile_no: + frappe.throw(_("Same number {0} cannot be set for Phone and Mobile No.").format(frappe.bold(d.phone))) + + setattr(self, fieldname, d.phone) break def get_default_contact(doctype, name): diff --git a/frappe/contacts/doctype/contact_phone/contact_phone.json b/frappe/contacts/doctype/contact_phone/contact_phone.json index 4627f4e69d..248abfa9fe 100644 --- a/frappe/contacts/doctype/contact_phone/contact_phone.json +++ b/frappe/contacts/doctype/contact_phone/contact_phone.json @@ -6,7 +6,7 @@ "field_order": [ "phone", "is_primary_phone", - "is_primary_mobile" + "is_primary_mobile_no" ], "fields": [ { @@ -24,14 +24,14 @@ }, { "default": "0", - "fieldname": "is_primary_mobile", + "fieldname": "is_primary_mobile_no", "fieldtype": "Check", "in_list_view": 1, - "label": "Is Primary Mobile" + "label": "Is Primary Mobile No" } ], "istable": 1, - "modified": "2019-09-11 19:52:31.732427", + "modified": "2019-09-11 20:57:22.108260", "modified_by": "himanshu@erpnext.com", "module": "Contacts", "name": "Contact Phone", From a20f3fc4acfe060094c40301e90ea58a8c76e275 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 12 Sep 2019 00:29:09 +0530 Subject: [PATCH 006/274] fix: make user select one email and phone --- frappe/contacts/doctype/contact/contact.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/frappe/contacts/doctype/contact/contact.py b/frappe/contacts/doctype/contact/contact.py index ceecb1f428..b02c8c9076 100644 --- a/frappe/contacts/doctype/contact/contact.py +++ b/frappe/contacts/doctype/contact/contact.py @@ -87,10 +87,15 @@ class Contact(Document): self.save(ignore_permissions=True) def set_primary_email(self): + if not self.email_ids: + return + primary_email = [email.email_id for email in self.email_ids if email.is_primary] if len(primary_email) > 1: frappe.throw(_("Only one Email ID can be set as primary.")) + elif len(primary_email) == 0: + frappe.throw(_("Select primary {0}.").format(frappe.bold("Email"))) if len(self.email_ids) == 1: self.email_ids[0].is_primary = 1 @@ -102,11 +107,16 @@ class Contact(Document): break def set_primary_phone_and_mobile_no(self, fieldname): + if not self.phone_nos: + return + field_name = "is_primary_" + fieldname is_primary = [phone.phone for phone in self.phone_nos if phone.get(field_name)] if len(is_primary) > 1: frappe.throw(_("Only one {0} can be set as primary.").format(frappe.bold(frappe.unscrub(fieldname)))) + elif len(is_primary) == 0: + frappe.throw(_("Select primary {0}.").format(frappe.bold(frappe.scrub(fieldname)))) if len(self.phone_nos) == 1: if self.phone_nos[0].phone == self.phone or self.phone_nos[0].phone == self.mobile_no: From d1bdb554ff2deda6fcfc0b4115f57a2b13c92e45 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 12 Sep 2019 00:39:40 +0530 Subject: [PATCH 007/274] patch: set is_primary_mobile_no --- frappe/patches/v12_0/set_mobile_no.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 frappe/patches/v12_0/set_mobile_no.py diff --git a/frappe/patches/v12_0/set_mobile_no.py b/frappe/patches/v12_0/set_mobile_no.py new file mode 100644 index 0000000000..4f1f816cc8 --- /dev/null +++ b/frappe/patches/v12_0/set_mobile_no.py @@ -0,0 +1,7 @@ +import frappe + +def execute(): + frappe.reload_doc("contacts", "doctype", "contact_phone") + frappe.reload_doc("contacts", "doctype", "contact") + + frappe.db.sql("""UPDATE `tabContact Phone` SET is_primary_mobile_no='1' WHERE idx='2'""") \ No newline at end of file From 52b75fecd4061b8166aa6ef4c5ce182473373702 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 13 Sep 2019 11:50:03 +0530 Subject: [PATCH 008/274] fix: throw error when phone and mobile are same --- frappe/contacts/doctype/contact/contact.py | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/frappe/contacts/doctype/contact/contact.py b/frappe/contacts/doctype/contact/contact.py index b02c8c9076..c555d4abe5 100644 --- a/frappe/contacts/doctype/contact/contact.py +++ b/frappe/contacts/doctype/contact/contact.py @@ -90,12 +90,8 @@ class Contact(Document): if not self.email_ids: return - primary_email = [email.email_id for email in self.email_ids if email.is_primary] - - if len(primary_email) > 1: + if len([email.email_id for email in self.email_ids if email.is_primary]) > 1: frappe.throw(_("Only one Email ID can be set as primary.")) - elif len(primary_email) == 0: - frappe.throw(_("Select primary {0}.").format(frappe.bold("Email"))) if len(self.email_ids) == 1: self.email_ids[0].is_primary = 1 @@ -111,18 +107,15 @@ class Contact(Document): return field_name = "is_primary_" + fieldname - is_primary = [phone.phone for phone in self.phone_nos if phone.get(field_name)] - if len(is_primary) > 1: + if len([phone.phone for phone in self.phone_nos if phone.get(field_name)]) > 1: frappe.throw(_("Only one {0} can be set as primary.").format(frappe.bold(frappe.unscrub(fieldname)))) - elif len(is_primary) == 0: - frappe.throw(_("Select primary {0}.").format(frappe.bold(frappe.scrub(fieldname)))) if len(self.phone_nos) == 1: if self.phone_nos[0].phone == self.phone or self.phone_nos[0].phone == self.mobile_no: - return + frappe.throw(_("Same number {0} cannot be set for Phone and Mobile No.").format(frappe.bold(self.phone_nos[0].phone))) - setattr(self.phone_nos[0], fieldname, 1) + setattr(self.phone_nos[0], field_name, 1) setattr(self, fieldname, self.phone_nos[0].get("phone")) else: for d in self.phone_nos: From d0176106773d205788a6c939d934f39f10bba7d5 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sun, 15 Sep 2019 20:08:28 +0530 Subject: [PATCH 009/274] test: test cases for contacts --- frappe/contacts/doctype/contact/contact.py | 18 ++-- .../contacts/doctype/contact/test_contact.py | 84 ++++++++++++++++++- .../doctype/contact/test_records.json | 19 ----- .../google_contacts/google_contacts.py | 2 +- 4 files changed, 95 insertions(+), 28 deletions(-) delete mode 100644 frappe/contacts/doctype/contact/test_records.json diff --git a/frappe/contacts/doctype/contact/contact.py b/frappe/contacts/doctype/contact/contact.py index 9137025dd8..952d198004 100644 --- a/frappe/contacts/doctype/contact/contact.py +++ b/frappe/contacts/doctype/contact/contact.py @@ -80,10 +80,11 @@ class Contact(Document): if autosave: self.save(ignore_permissions=True) - def add_phone(self, phone, is_primary=0, autosave=False): + def add_phone(self, phone, is_primary_phone=0, is_primary_mobile_no=0, autosave=False): self.append("phone_nos", { "phone": phone, - "is_primary": is_primary + "is_primary_phone": is_primary_phone, + "is_primary_mobile_no": is_primary_mobile_no }) if autosave: @@ -93,8 +94,12 @@ class Contact(Document): if not self.email_ids: return - if len([email.email_id for email in self.email_ids if email.is_primary]) > 1: + primary_email = [email.email_id for email in self.email_ids if email.is_primary] + + if len(self.email_ids) > 1 and len(primary_email) > 1: frappe.throw(_("Only one Email ID can be set as primary.")) + elif len(self.email_ids) > 1 and len(primary_email) == 0: + frappe.throw(_("Set primary Email ID.")) if len(self.email_ids) == 1: self.email_ids[0].is_primary = 1 @@ -106,13 +111,16 @@ class Contact(Document): break def set_primary_phone_and_mobile_no(self, fieldname): - if not self.phone_nos: + if len(self.phone_nos) == 0: return field_name = "is_primary_" + fieldname + primary = [phone.phone for phone in self.phone_nos if phone.get(field_name)] - if len([phone.phone for phone in self.phone_nos if phone.get(field_name)]) > 1: + if len(self.phone_nos) > 1 and len(primary) > 1: frappe.throw(_("Only one {0} can be set as primary.").format(frappe.bold(frappe.unscrub(fieldname)))) + elif len(self.phone_nos) > 1 and len(primary) == 0: + frappe.throw(_("Set primary {0}").format(frappe.unscrub(fieldname))) if len(self.phone_nos) == 1: if self.phone_nos[0].phone == self.phone or self.phone_nos[0].phone == self.mobile_no: diff --git a/frappe/contacts/doctype/contact/test_contact.py b/frappe/contacts/doctype/contact/test_contact.py index 496ff68299..bac2503aef 100644 --- a/frappe/contacts/doctype/contact/test_contact.py +++ b/frappe/contacts/doctype/contact/test_contact.py @@ -5,8 +5,86 @@ from __future__ import unicode_literals import frappe import unittest - -test_records = frappe.get_test_records('Contact') +from frappe.exceptions import ValidationError class TestContact(unittest.TestCase): - pass + + def create_contact(self, name, salutation, emails=None, phones=None, save=True): + doc = frappe.get_doc({ + "doctype": "Contact", + "first_name": name, + "status": "Open", + "salutation": salutation + }) + if emails: + for d in emails: + doc.add_email(d.get("email"), d.get("is_primary")) + + if phones: + for d in phones: + doc.add_phone(d.get("phone"), d.get("is_primary_phone"), d.get("is_primary_mobile_no")) + + if save: + doc.insert() + + return doc + + def tearDown(self): + frappe.db.sql("delete from `tabContact`") + frappe.db.sql("delete from `tabContact Phone`") + frappe.db.sql("delete from `tabContact Email`") + + def test_check_default_email(self): + emails = [ + {"email": "test1@example.com", "is_primary": 0}, + {"email": "test2@example.com", "is_primary": 0}, + {"email": "test3@example.com", "is_primary": 0}, + {"email": "test4@example.com", "is_primary": 1}, + {"email": "test5@example.com", "is_primary": 0}, + ] + contact = self.create_contact("Email", "Mr", emails=emails) + + self.assertEqual(contact.email_id, "test4@example.com") + + def test_check_default_phone_and_mobile(self): + phones = [ + {"phone": "+91 0000000000", "is_primary_phone": 0, "is_primary_mobile_no": 0}, + {"phone": "+91 0000000001", "is_primary_phone": 0, "is_primary_mobile_no": 0}, + {"phone": "+91 0000000002", "is_primary_phone": 1, "is_primary_mobile_no": 0}, + {"phone": "+91 0000000003", "is_primary_phone": 0, "is_primary_mobile_no": 1}, + ] + contact = self.create_contact("Phone", "Mr", phones=phones) + + self.assertEqual(contact.phone, "+91 0000000002") + self.assertEqual(contact.mobile_no, "+91 0000000003") + + def test_same_phone_and_mobile(self): + phones = [ + {"phone": "+91 0000000000", "is_primary_phone": 1, "is_primary_mobile_no": 1}, + ] + contact = self.create_contact("Phone", "Mr", phones=phones, save=False) + self.assertRaises(ValidationError, contact.save) + + def test_no_primary_set(self): + emails = [ + {"email": "test1@example.com", "is_primary": 0}, + {"email": "test2@example.com", "is_primary": 0}, + {"email": "test3@example.com", "is_primary": 0}, + {"email": "test4@example.com", "is_primary": 0}, + {"email": "test5@example.com", "is_primary": 0}, + ] + phones = [ + {"phone": "+91 0000000000", "is_primary_phone": 0, "is_primary_mobile_no": 0}, + {"phone": "+91 0000000001", "is_primary_phone": 0, "is_primary_mobile_no": 0}, + {"phone": "+91 0000000002", "is_primary_phone": 0, "is_primary_mobile_no": 0}, + {"phone": "+91 0000000003", "is_primary_phone": 0, "is_primary_mobile_no": 0}, + ] + + contact_email = self.create_contact("Default", "Mr", emails=emails, phones=phones, save=False) + contact_phone = self.create_contact("Default", "Mr", emails=emails, phones=phones, save=False) + + # No default set for emails if many emails are passed as params + self.assertRaises(ValidationError, contact_email.save) + + # No default set for phones if many phones are passed as params + self.assertRaises(ValidationError, contact_phone.save) \ No newline at end of file diff --git a/frappe/contacts/doctype/contact/test_records.json b/frappe/contacts/doctype/contact/test_records.json deleted file mode 100644 index 8f4be113b4..0000000000 --- a/frappe/contacts/doctype/contact/test_records.json +++ /dev/null @@ -1,19 +0,0 @@ -[ - { - "doctype": "Contact", - "salutation": "Mr", - "email_id": "test_contact@example.com", - "first_name": "_Test Contact For _Test Customer", - "is_primary_contact": 1, - "phone": "+91 0000000000", - "status": "Open" - }, - { - "doctype": "Contact", - "email_id": "test_contact@example.com", - "first_name": "_Test Contact For _Test Supplier", - "is_primary_contact": 1, - "phone": "+91 0000000000", - "status": "Open" - } -] \ No newline at end of file diff --git a/frappe/integrations/doctype/google_contacts/google_contacts.py b/frappe/integrations/doctype/google_contacts/google_contacts.py index 738c097f63..8c6ab97017 100644 --- a/frappe/integrations/doctype/google_contacts/google_contacts.py +++ b/frappe/integrations/doctype/google_contacts/google_contacts.py @@ -187,7 +187,7 @@ def sync_contacts_from_google_contacts(g_contact): contact.add_email(email_id=email.get("value"), is_primary=1 if email.get("metadata").get("primary") else 0) for phone in connection.get("phoneNumbers", []): - contact.add_phone(phone=phone.get("value"), is_primary=1 if phone.get("metadata").get("primary") else 0) + contact.add_phone(phone=phone.get("value"), is_primary_phone=1 if phone.get("metadata").get("primary") else 0) contact.insert(ignore_permissions=True) From cc74ab39a04fa0d95dffe31080ea96abf690b0ee Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sun, 15 Sep 2019 20:38:17 +0530 Subject: [PATCH 010/274] test: fix test cases --- .../contacts/doctype/contact/test_contact.py | 48 +++++++++---------- .../test_addresses_and_contacts.py | 2 +- 2 files changed, 23 insertions(+), 27 deletions(-) diff --git a/frappe/contacts/doctype/contact/test_contact.py b/frappe/contacts/doctype/contact/test_contact.py index bac2503aef..82abec3b1e 100644 --- a/frappe/contacts/doctype/contact/test_contact.py +++ b/frappe/contacts/doctype/contact/test_contact.py @@ -9,31 +9,6 @@ from frappe.exceptions import ValidationError class TestContact(unittest.TestCase): - def create_contact(self, name, salutation, emails=None, phones=None, save=True): - doc = frappe.get_doc({ - "doctype": "Contact", - "first_name": name, - "status": "Open", - "salutation": salutation - }) - if emails: - for d in emails: - doc.add_email(d.get("email"), d.get("is_primary")) - - if phones: - for d in phones: - doc.add_phone(d.get("phone"), d.get("is_primary_phone"), d.get("is_primary_mobile_no")) - - if save: - doc.insert() - - return doc - - def tearDown(self): - frappe.db.sql("delete from `tabContact`") - frappe.db.sql("delete from `tabContact Phone`") - frappe.db.sql("delete from `tabContact Email`") - def test_check_default_email(self): emails = [ {"email": "test1@example.com", "is_primary": 0}, @@ -87,4 +62,25 @@ class TestContact(unittest.TestCase): self.assertRaises(ValidationError, contact_email.save) # No default set for phones if many phones are passed as params - self.assertRaises(ValidationError, contact_phone.save) \ No newline at end of file + self.assertRaises(ValidationError, contact_phone.save) + +def create_contact(name, salutation, emails=None, phones=None, save=True): + doc = frappe.get_doc({ + "doctype": "Contact", + "first_name": name, + "status": "Open", + "salutation": salutation + }) + + if emails: + for d in emails: + doc.add_email(d.get("email"), d.get("is_primary")) + + if phones: + for d in phones: + doc.add_phone(d.get("phone"), d.get("is_primary_phone"), d.get("is_primary_mobile_no")) + + if save: + doc.insert() + + return doc \ No newline at end of file diff --git a/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py b/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py index 434d138a6c..47e1c28e8b 100644 --- a/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py +++ b/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py @@ -83,7 +83,7 @@ def create_linked_contact(link_list, address): "status": "Open" }) contact.add_email("test_contact@example.com") - contact.add_phone("+91 0000000000") + contact.add_phone("+91 0000000000", is_primary_phone=True) for name in link_list: contact.append("links",{ From 7dba556b8c5b029ebe264d724a13a86dd18f6449 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Mon, 16 Sep 2019 10:19:40 +0530 Subject: [PATCH 011/274] test: fix test cases --- frappe/contacts/doctype/contact/test_contact.py | 10 +++++----- .../test_addresses_and_contacts.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frappe/contacts/doctype/contact/test_contact.py b/frappe/contacts/doctype/contact/test_contact.py index 82abec3b1e..d406f824a3 100644 --- a/frappe/contacts/doctype/contact/test_contact.py +++ b/frappe/contacts/doctype/contact/test_contact.py @@ -17,7 +17,7 @@ class TestContact(unittest.TestCase): {"email": "test4@example.com", "is_primary": 1}, {"email": "test5@example.com", "is_primary": 0}, ] - contact = self.create_contact("Email", "Mr", emails=emails) + contact = create_contact("Email", "Mr", emails=emails) self.assertEqual(contact.email_id, "test4@example.com") @@ -28,7 +28,7 @@ class TestContact(unittest.TestCase): {"phone": "+91 0000000002", "is_primary_phone": 1, "is_primary_mobile_no": 0}, {"phone": "+91 0000000003", "is_primary_phone": 0, "is_primary_mobile_no": 1}, ] - contact = self.create_contact("Phone", "Mr", phones=phones) + contact = create_contact("Phone", "Mr", phones=phones) self.assertEqual(contact.phone, "+91 0000000002") self.assertEqual(contact.mobile_no, "+91 0000000003") @@ -37,7 +37,7 @@ class TestContact(unittest.TestCase): phones = [ {"phone": "+91 0000000000", "is_primary_phone": 1, "is_primary_mobile_no": 1}, ] - contact = self.create_contact("Phone", "Mr", phones=phones, save=False) + contact = create_contact("Phone", "Mr", phones=phones, save=False) self.assertRaises(ValidationError, contact.save) def test_no_primary_set(self): @@ -55,8 +55,8 @@ class TestContact(unittest.TestCase): {"phone": "+91 0000000003", "is_primary_phone": 0, "is_primary_mobile_no": 0}, ] - contact_email = self.create_contact("Default", "Mr", emails=emails, phones=phones, save=False) - contact_phone = self.create_contact("Default", "Mr", emails=emails, phones=phones, save=False) + contact_email = create_contact("Default", "Mr", emails=emails, phones=phones, save=False) + contact_phone = create_contact("Default", "Mr", emails=emails, phones=phones, save=False) # No default set for emails if many emails are passed as params self.assertRaises(ValidationError, contact_email.save) diff --git a/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py b/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py index 47e1c28e8b..2db395102a 100644 --- a/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py +++ b/frappe/contacts/report/addresses_and_contacts/test_addresses_and_contacts.py @@ -82,7 +82,7 @@ def create_linked_contact(link_list, address): "address": address, "status": "Open" }) - contact.add_email("test_contact@example.com") + contact.add_email("test_contact@example.com", is_primary=True) contact.add_phone("+91 0000000000", is_primary_phone=True) for name in link_list: From 9d3b361da4ea812b412ca01a06334c0d6a34f3dc Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Wed, 18 Sep 2019 18:21:13 +0530 Subject: [PATCH 012/274] feat: Global Search with Priorities --- .../doctype/global_search_doctype/__init__.py | 0 .../global_search_doctype.json | 29 +++++++++++ .../global_search_doctype.py | 10 ++++ .../global_search_settings/__init__.py | 0 .../global_search_settings.js | 19 +++++++ .../global_search_settings.json | 39 ++++++++++++++ .../global_search_settings.py | 50 ++++++++++++++++++ .../test_global_search_settings.py | 10 ++++ .../page/setup_wizard/install_fixtures.py | 3 +- frappe/hooks.py | 15 ++++++ frappe/patches/v12_0/update_global_search.py | 7 +++ frappe/tests/test_global_search.py | 3 ++ frappe/utils/global_search.py | 52 ++++++++++++++----- 13 files changed, 223 insertions(+), 14 deletions(-) create mode 100644 frappe/desk/doctype/global_search_doctype/__init__.py create mode 100644 frappe/desk/doctype/global_search_doctype/global_search_doctype.json create mode 100644 frappe/desk/doctype/global_search_doctype/global_search_doctype.py create mode 100644 frappe/desk/doctype/global_search_settings/__init__.py create mode 100644 frappe/desk/doctype/global_search_settings/global_search_settings.js create mode 100644 frappe/desk/doctype/global_search_settings/global_search_settings.json create mode 100644 frappe/desk/doctype/global_search_settings/global_search_settings.py create mode 100644 frappe/desk/doctype/global_search_settings/test_global_search_settings.py create mode 100644 frappe/patches/v12_0/update_global_search.py diff --git a/frappe/desk/doctype/global_search_doctype/__init__.py b/frappe/desk/doctype/global_search_doctype/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/frappe/desk/doctype/global_search_doctype/global_search_doctype.json b/frappe/desk/doctype/global_search_doctype/global_search_doctype.json new file mode 100644 index 0000000000..648e8f1824 --- /dev/null +++ b/frappe/desk/doctype/global_search_doctype/global_search_doctype.json @@ -0,0 +1,29 @@ +{ + "creation": "2019-09-13 21:33:55.551941", + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "document_type" + ], + "fields": [ + { + "fieldname": "document_type", + "fieldtype": "Link", + "in_list_view": 1, + "label": "Document Type", + "options": "DocType" + } + ], + "istable": 1, + "modified": "2019-09-18 17:59:44.354052", + "modified_by": "Administrator", + "module": "Desk", + "name": "Global Search DocType", + "owner": "Administrator", + "permissions": [], + "quick_entry": 1, + "sort_field": "modified", + "sort_order": "DESC", + "track_changes": 1 +} \ No newline at end of file diff --git a/frappe/desk/doctype/global_search_doctype/global_search_doctype.py b/frappe/desk/doctype/global_search_doctype/global_search_doctype.py new file mode 100644 index 0000000000..4c9a948278 --- /dev/null +++ b/frappe/desk/doctype/global_search_doctype/global_search_doctype.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2019, Frappe Technologies and contributors +# For license information, please see license.txt + +from __future__ import unicode_literals +# import frappe +from frappe.model.document import Document + +class GlobalSearchDocType(Document): + pass diff --git a/frappe/desk/doctype/global_search_settings/__init__.py b/frappe/desk/doctype/global_search_settings/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/frappe/desk/doctype/global_search_settings/global_search_settings.js b/frappe/desk/doctype/global_search_settings/global_search_settings.js new file mode 100644 index 0000000000..97feb951d6 --- /dev/null +++ b/frappe/desk/doctype/global_search_settings/global_search_settings.js @@ -0,0 +1,19 @@ +// Copyright (c) 2019, Frappe Technologies and contributors +// For license information, please see license.txt + +frappe.ui.form.on('Global Search Settings', { + refresh: function(frm) { + frm.add_custom_button(__("Reset"), function () { + frappe.call({ + method: "frappe.desk.doctype.global_search_settings.global_search_settings.reset_global_search_settings_doctypes", + callback: function() { + frappe.show_alert({ + message: __("Global Search Document Types Reset."), + indicator: "green" + }); + frm.refresh(); + } + }); + }); + } +}); diff --git a/frappe/desk/doctype/global_search_settings/global_search_settings.json b/frappe/desk/doctype/global_search_settings/global_search_settings.json new file mode 100644 index 0000000000..e0b4b11d05 --- /dev/null +++ b/frappe/desk/doctype/global_search_settings/global_search_settings.json @@ -0,0 +1,39 @@ +{ + "creation": "2019-09-03 16:08:21.333698", + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "allowed_in_global_search" + ], + "fields": [ + { + "fieldname": "allowed_in_global_search", + "fieldtype": "Table", + "label": "Document Types", + "options": "Global Search DocType" + } + ], + "issingle": 1, + "modified": "2019-09-18 18:00:17.388486", + "modified_by": "Administrator", + "module": "Desk", + "name": "Global Search Settings", + "owner": "Administrator", + "permissions": [ + { + "create": 1, + "delete": 1, + "email": 1, + "print": 1, + "read": 1, + "role": "System Manager", + "share": 1, + "write": 1 + } + ], + "quick_entry": 1, + "sort_field": "modified", + "sort_order": "DESC", + "track_changes": 1 +} \ No newline at end of file diff --git a/frappe/desk/doctype/global_search_settings/global_search_settings.py b/frappe/desk/doctype/global_search_settings/global_search_settings.py new file mode 100644 index 0000000000..c8dc86fe9e --- /dev/null +++ b/frappe/desk/doctype/global_search_settings/global_search_settings.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2019, Frappe Technologies and contributors +# For license information, please see license.txt + +from __future__ import unicode_literals +import frappe +from frappe.model.document import Document +from frappe import _ + +class GlobalSearchSettings(Document): + + def validate(self): + core_dts = [] + for dt in self.allowed_in_global_search: + if frappe.get_meta(dt.document_type).module == "Core": + core_dts.append(dt.document_type) + + if core_dts: + core_dts = (", ".join([frappe.bold(dt) for dt in core_dts])) + frappe.throw(_("Core Modules {0} cannot be searched in Global Search.").format(core_dts)) + +def get_doctypes_for_global_search(): + doctypes = frappe.get_list("Global Search DocType", fields=["document_type"], order_by="idx ASC") + if not doctypes: + return [] + + return [d.document_type for d in doctypes] + +@frappe.whitelist() +def reset_global_search_settings_doctypes(): + update_global_search_doctypes() + +def update_global_search_doctypes(): + global_search_doctypes = frappe.get_hooks("global_search_doctypes") + allowed_in_global_search = [] + + for dt in global_search_doctypes: + if dt.get("index"): + allowed_in_global_search.insert(dt.get("index")-1, dt.get("doctype")) + continue + + allowed_in_global_search.append(dt.get("doctype")) + + global_search_settings = frappe.get_single("Global Search Settings") + global_search_settings.allowed_in_global_search = [] + for dt in allowed_in_global_search: + global_search_settings.append("allowed_in_global_search", { + "document_type": dt + }) + global_search_settings.save(ignore_permissions=True) \ No newline at end of file diff --git a/frappe/desk/doctype/global_search_settings/test_global_search_settings.py b/frappe/desk/doctype/global_search_settings/test_global_search_settings.py new file mode 100644 index 0000000000..a378695448 --- /dev/null +++ b/frappe/desk/doctype/global_search_settings/test_global_search_settings.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2019, Frappe Technologies and Contributors +# See license.txt +from __future__ import unicode_literals + +# import frappe +import unittest + +class TestGlobalSearchSettings(unittest.TestCase): + pass diff --git a/frappe/desk/page/setup_wizard/install_fixtures.py b/frappe/desk/page/setup_wizard/install_fixtures.py index 5da25932ca..bb598ab180 100644 --- a/frappe/desk/page/setup_wizard/install_fixtures.py +++ b/frappe/desk/page/setup_wizard/install_fixtures.py @@ -4,11 +4,12 @@ from __future__ import unicode_literals import frappe - from frappe import _ +from frappe.desk.doctype.global_search_settings.global_search_settings import update_global_search_doctypes def install(): update_genders_and_salutations() + update_global_search_doctypes() @frappe.whitelist() def update_genders_and_salutations(): diff --git a/frappe/hooks.py b/frappe/hooks.py index d2e8570644..21d753aca4 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -300,3 +300,18 @@ user_privacy_documents = [ }, ] + +global_search_doctypes = [ + {"doctype": "Contact"}, + {"doctype": "Address"}, + {"doctype": "Event"}, + {"doctype": "Note"}, + {"doctype": "Google Calendar"}, + {"doctype": "Auto Repeat"}, + {"doctype": "ToDo"}, + {"doctype": "Country"}, + {"doctype": "Currency"}, + {"doctype": "Newsletter"}, + {"doctype": "Contact Us Settings"}, + {"doctype": "Google Contacts"} +] \ No newline at end of file diff --git a/frappe/patches/v12_0/update_global_search.py b/frappe/patches/v12_0/update_global_search.py new file mode 100644 index 0000000000..8042a2ee68 --- /dev/null +++ b/frappe/patches/v12_0/update_global_search.py @@ -0,0 +1,7 @@ +import frappe +from frappe.desk.page.setup_wizard.install_fixtures import update_global_search_doctypes + +def execute(): + frappe.reload_doc("desk", "doctype", "global_search_doctype") + frappe.reload_doc("desk", "doctype", "global_search_settings") + update_global_search_doctypes() \ No newline at end of file diff --git a/frappe/tests/test_global_search.py b/frappe/tests/test_global_search.py index 940a424966..01067c85dd 100644 --- a/frappe/tests/test_global_search.py +++ b/frappe/tests/test_global_search.py @@ -7,10 +7,13 @@ import frappe from frappe.utils import global_search from frappe.test_runner import make_test_objects +from frappe.desk.page.setup_wizard.install_fixtures import update_global_search_doctypes + import frappe.utils class TestGlobalSearch(unittest.TestCase): def setUp(self): + update_global_search_doctypes() global_search.setup_global_search_table() self.assertTrue('__global_search' in frappe.db.get_tables()) doctype = "Event" diff --git a/frappe/utils/global_search.py b/frappe/utils/global_search.py index d30676ad53..b8e0bfa2a7 100644 --- a/frappe/utils/global_search.py +++ b/frappe/utils/global_search.py @@ -419,32 +419,48 @@ def search(text, start=0, limit=20, doctype=""): :param limit: number of results to return, default 20 :return: Array of result objects """ + from frappe.desk.doctype.global_search_settings.global_search_settings import get_doctypes_for_global_search + results = [] - texts = text.split('&') + texts = [t.strip() for t in text.split('&')] + priorities = get_doctypes_for_global_search() + allowed_doctypes = ",".join(["'{0}'".format(dt) for dt in priorities]) for text in texts: mariadb_conditions = '' postgres_conditions = '' + if doctype: mariadb_conditions = postgres_conditions = '`doctype` = {} AND '.format(frappe.db.escape(doctype)) - mariadb_conditions += 'MATCH(`content`) AGAINST ({} IN BOOLEAN MODE)'.format(frappe.db.escape('+' + text + '*')) - postgres_conditions += 'TO_TSVECTOR("content") @@ PLAINTO_TSQUERY({})'.format(frappe.db.escape(text)) + mariadb_text = frappe.db.escape('+' + text + '*') - common_query = '''SELECT `doctype`, `name`, `content` - FROM `__global_search` - WHERE {conditions} - LIMIT {limit} OFFSET {start}''' + mariadb_fields = '`doctype`, `name`, `content`, MATCH (`content`) AGAINST ({} IN BOOLEAN MODE) AS rank'.format(mariadb_text) + postgres_fields = '`doctype`, `name`, `content`, TO_TSVECTOR("content") @@ PLAINTO_TSQUERY({}) AS rank'.format(frappe.db.escape(text)) + + if allowed_doctypes: + mariadb_conditions += '`doctype` IN ({})'.format(allowed_doctypes) + postgres_conditions += '`doctype` IN ({})'.format(allowed_doctypes) + + common_query = """ + SELECT {fields} + FROM `__global_search` + WHERE {conditions} + ORDER BY rank DESC + LIMIT {limit} + OFFSET {start} + """ result = frappe.db.multisql({ - 'mariadb': common_query.format(conditions=mariadb_conditions, limit=limit, start=start), - 'postgres': common_query.format(conditions=postgres_conditions, limit=limit, start=start) + 'mariadb': common_query.format(fields=mariadb_fields, conditions=mariadb_conditions, limit=limit, start=start), + 'postgres': common_query.format(fields=postgres_fields, conditions=postgres_conditions, limit=limit, start=start) }, as_dict=True) tmp_result=[] for i in result: - if i in results or not results: - tmp_result.append(i) - results += tmp_result + if i.rank > 0.0: + if i in results or not results: + tmp_result.extend([i]) + results.extend(tmp_result) for r in results: try: @@ -453,7 +469,17 @@ def search(text, start=0, limit=20, doctype=""): except Exception: frappe.clear_messages() - return results + sorted_results = [] + + for priority in priorities: + tmp_result = [] + for r in results: + if r.doctype == priority: + tmp_result.extend([r]) + + sorted_results.extend(tmp_result) + + return sorted_results @frappe.whitelist(allow_guest=True) From b91a7ada2584a95d891810a68d487d6ddd37c085 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Wed, 18 Sep 2019 18:35:10 +0530 Subject: [PATCH 013/274] fix: add patch name in patches --- frappe/patches.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/patches.txt b/frappe/patches.txt index 5cdc089826..6095d5883a 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -250,3 +250,4 @@ frappe.patches.v12_0.rename_events_repeat_on frappe.patches.v12_0.fix_public_private_files frappe.patches.v12_0.move_email_and_phone_to_child_table frappe.patches.v12_0.delete_duplicate_indexes +frappe.patches.v12_0.update_global_search From c669167efb3546442d38eefe730e249e063f30bc Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Wed, 18 Sep 2019 18:43:43 +0530 Subject: [PATCH 014/274] fix: check if text exists --- frappe/utils/global_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/utils/global_search.py b/frappe/utils/global_search.py index b8e0bfa2a7..e4442f0816 100644 --- a/frappe/utils/global_search.py +++ b/frappe/utils/global_search.py @@ -422,7 +422,7 @@ def search(text, start=0, limit=20, doctype=""): from frappe.desk.doctype.global_search_settings.global_search_settings import get_doctypes_for_global_search results = [] - texts = [t.strip() for t in text.split('&')] + texts = [t.strip() for t in text.split('&') if t] priorities = get_doctypes_for_global_search() allowed_doctypes = ",".join(["'{0}'".format(dt) for dt in priorities]) for text in texts: From 7f904b4a79b19edb98ef103dc3f67d756a0a862c Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 19 Sep 2019 01:04:55 +0530 Subject: [PATCH 015/274] fix: use getfullargspec for type annotations --- frappe/__init__.py | 8 +++++++- frappe/desk/form/run_method.py | 9 ++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index 78e0cdb355..fd19492c48 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -1039,7 +1039,13 @@ def get_newargs(fn, kwargs): if hasattr(fn, 'fnargs'): fnargs = fn.fnargs else: - fnargs, varargs, varkw, defaults = inspect.getargspec(fn) + try: + fnargs, varargs, varkw, defaults = inspect.getargspec(fn) + except ValueError: + fnargs = inspect.getfullargspec(fn).args + varargs = inspect.getfullargspec(fn).varargs + varkw = inspect.getfullargspec(fn).varkw + defaults = inspect.getfullargspec(fn).defaults newargs = {} for a in kwargs: diff --git a/frappe/desk/form/run_method.py b/frappe/desk/form/run_method.py index 0a973c35ed..7952f3b68d 100644 --- a/frappe/desk/form/run_method.py +++ b/frappe/desk/form/run_method.py @@ -31,7 +31,14 @@ def runserverobj(method, docs=None, dt=None, dn=None, arg=None, args=None): except ValueError: args = args - fnargs, varargs, varkw, defaults = inspect.getargspec(getattr(doc, method)) + try: + fnargs, varargs, varkw, defaults = inspect.getargspec(getattr(doc, method)) + except ValueError: + fnargs = inspect.getfullargspec(getattr(doc, method)).args + varargs = inspect.getfullargspec(getattr(doc, method)).varargs + varkw = inspect.getfullargspec(getattr(doc, method)).varkw + defaults = inspect.getfullargspec(getattr(doc, method)).defaults + if not fnargs or (len(fnargs)==1 and fnargs[0]=="self"): r = doc.run_method(method) From 4a70dc99faa0f87ede80a2913bd3a89549cb7739 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 19 Sep 2019 11:08:07 +0530 Subject: [PATCH 016/274] fix: check ip restriction before resume --- frappe/auth.py | 46 +++++++++++++++++++++++----------------------- frappe/sessions.py | 3 ++- 2 files changed, 25 insertions(+), 24 deletions(-) diff --git a/frappe/auth.py b/frappe/auth.py index 3a58330e11..753d9b0bc8 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -138,7 +138,7 @@ class LoginManager: def post_login(self): self.run_trigger('on_login') - self.validate_ip_address() + validate_ip_address(self.user) self.validate_hour() self.get_user_info() self.make_session() @@ -271,28 +271,6 @@ class LoginManager: for method in frappe.get_hooks().get(event, []): frappe.call(frappe.get_attr(method), login_manager=self) - def validate_ip_address(self): - """check if IP Address is valid""" - user = frappe.get_doc("User", self.user) - ip_list = user.get_restricted_ip_list() - if not ip_list: - return - - bypass_restrict_ip_check = 0 - # check if two factor auth is enabled - enabled = int(frappe.get_system_settings('enable_two_factor_auth') or 0) - if enabled: - #check if bypass restrict ip is enabled for all users - bypass_restrict_ip_check = int(frappe.get_system_settings('bypass_restrict_ip_check_if_2fa_enabled') or 0) - if not bypass_restrict_ip_check: - #check if bypass restrict ip is enabled for login user - bypass_restrict_ip_check = int(frappe.db.get_value('User', self.user, 'bypass_restrict_ip_check_if_2fa_enabled') or 0) - for ip in ip_list: - if frappe.local.request_ip.startswith(ip) or bypass_restrict_ip_check: - return - - frappe.throw(_("Not allowed from this IP Address"), frappe.AuthenticationError) - def validate_hour(self): """check if user is logging in during restricted hours""" login_before = int(frappe.db.get_value('User', self.user, 'login_before', ignore=True) or 0) @@ -416,3 +394,25 @@ def check_consecutive_login_attempts(user, doc): .format(doc.allow_login_after_fail), frappe.SecurityException) else: delete_login_failed_cache(user) + +def validate_ip_address(user): + """check if IP Address is valid""" + user = frappe.get_doc("User", user) + ip_list = user.get_restricted_ip_list() + if not ip_list: + return + + bypass_restrict_ip_check = 0 + # check if two factor auth is enabled + enabled = int(frappe.get_system_settings('enable_two_factor_auth') or 0) + if enabled: + #check if bypass restrict ip is enabled for all users + bypass_restrict_ip_check = int(frappe.get_system_settings('bypass_restrict_ip_check_if_2fa_enabled') or 0) + if not bypass_restrict_ip_check: + #check if bypass restrict ip is enabled for login user + bypass_restrict_ip_check = int(frappe.db.get_value('User', user, 'bypass_restrict_ip_check_if_2fa_enabled') or 0) + for ip in ip_list: + if frappe.local.request_ip.startswith(ip) or bypass_restrict_ip_check: + return + + frappe.throw(_("Not allowed from this IP Address"), frappe.AuthenticationError) \ No newline at end of file diff --git a/frappe/sessions.py b/frappe/sessions.py index d16a8fbfd6..8b5900fe51 100644 --- a/frappe/sessions.py +++ b/frappe/sessions.py @@ -254,13 +254,14 @@ class Session: def resume(self): """non-login request: load a session""" import frappe - + from frappe.auth import validate_ip_address data = self.get_session_record() if data: # set language self.data.update({'data': data, 'user':data.user, 'sid': self.sid}) self.user = data.user + validate_ip_address(self.user) self.device = data.device else: self.start_as_guest() From 33a11c5b7c8151a7b46a43bcb39cca458e5219d3 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 19 Sep 2019 11:53:20 +0530 Subject: [PATCH 017/274] fix: test cases --- frappe/tests/test_twofactor.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/tests/test_twofactor.py b/frappe/tests/test_twofactor.py index 4064853dac..84b9560ec8 100644 --- a/frappe/tests/test_twofactor.py +++ b/frappe/tests/test_twofactor.py @@ -9,7 +9,7 @@ from frappe.tests import set_request from frappe.twofactor import (should_run_2fa, authenticate_for_2factor, get_cached_user_pass, two_factor_is_enabled_for_, confirm_otp_token, get_otpsecret_for_, get_verification_obj, render_string_template) - +from frappe.auth import validate_ip_address import time class TestTwoFactor(unittest.TestCase): @@ -140,18 +140,18 @@ class TestTwoFactor(unittest.TestCase): user.save() enable_2fa(bypass_restrict_ip_check=0) with self.assertRaises(frappe.AuthenticationError): - self.login_manager.validate_ip_address() + validate_ip_address() #2 enable_2fa(bypass_restrict_ip_check=1) - self.assertIsNone(self.login_manager.validate_ip_address()) + self.assertIsNone(validate_ip_address()) #3 user = frappe.get_doc('User', self.user) user.bypass_restrict_ip_check_if_2fa_enabled = 1 user.save() enable_2fa() - self.assertIsNone(self.login_manager.validate_ip_address()) + self.assertIsNone(validate_ip_address()) def create_http_request(): '''Get http request object.''' From 17461ef71b0c189073a378ebbaa016a7bbdb26f2 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 19 Sep 2019 12:00:24 +0530 Subject: [PATCH 018/274] fix: test cases --- frappe/tests/test_twofactor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/tests/test_twofactor.py b/frappe/tests/test_twofactor.py index 84b9560ec8..922f926434 100644 --- a/frappe/tests/test_twofactor.py +++ b/frappe/tests/test_twofactor.py @@ -140,18 +140,18 @@ class TestTwoFactor(unittest.TestCase): user.save() enable_2fa(bypass_restrict_ip_check=0) with self.assertRaises(frappe.AuthenticationError): - validate_ip_address() + validate_ip_address(self.user) #2 enable_2fa(bypass_restrict_ip_check=1) - self.assertIsNone(validate_ip_address()) + self.assertIsNone(validate_ip_address(self.user)) #3 user = frappe.get_doc('User', self.user) user.bypass_restrict_ip_check_if_2fa_enabled = 1 user.save() enable_2fa() - self.assertIsNone(validate_ip_address()) + self.assertIsNone(validate_ip_address(self.user)) def create_http_request(): '''Get http request object.''' From 6c9f56a226861b9661cb9fca9d4a46b1774e0d08 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 19 Sep 2019 14:03:22 +0530 Subject: [PATCH 019/274] fix: get value from doc --- frappe/auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/auth.py b/frappe/auth.py index 753d9b0bc8..dea95618ea 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -407,10 +407,10 @@ def validate_ip_address(user): enabled = int(frappe.get_system_settings('enable_two_factor_auth') or 0) if enabled: #check if bypass restrict ip is enabled for all users - bypass_restrict_ip_check = int(frappe.get_system_settings('bypass_restrict_ip_check_if_2fa_enabled') or 0) + bypass_restrict_ip_check = int(frappe.get_system_settings('bypass_restrict_ip_check_if_2fa_enabled')) or 0 if not bypass_restrict_ip_check: #check if bypass restrict ip is enabled for login user - bypass_restrict_ip_check = int(frappe.db.get_value('User', user, 'bypass_restrict_ip_check_if_2fa_enabled') or 0) + bypass_restrict_ip_check = user.bypass_restrict_ip_check_if_2fa_enabled or 0 for ip in ip_list: if frappe.local.request_ip.startswith(ip) or bypass_restrict_ip_check: return From 4b525f5f66f10d9d7d0567c5bd7180bdcaed511d Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Thu, 19 Sep 2019 17:06:57 +0530 Subject: [PATCH 020/274] fix: Add sensible doctypes for global search --- frappe/hooks.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index 21d753aca4..39694928d6 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -304,14 +304,16 @@ user_privacy_documents = [ global_search_doctypes = [ {"doctype": "Contact"}, {"doctype": "Address"}, - {"doctype": "Event"}, - {"doctype": "Note"}, - {"doctype": "Google Calendar"}, - {"doctype": "Auto Repeat"}, {"doctype": "ToDo"}, + {"doctype": "Note"}, + {"doctype": "Event"}, + {"doctype": "Blog Post"}, + {"doctype": "Dashboard"}, {"doctype": "Country"}, {"doctype": "Currency"}, {"doctype": "Newsletter"}, - {"doctype": "Contact Us Settings"}, - {"doctype": "Google Contacts"} -] \ No newline at end of file + {"doctype": "Letter Head"}, + {"doctype": "Workflow"}, + {"doctype": "Web Page"}, + {"doctype": "Web Form"} +] From ac1c242a142f9cd7a31de6447beef5a931732cde Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Thu, 19 Sep 2019 17:55:34 +0530 Subject: [PATCH 021/274] feat: Energy Points for assigned users on a document --- frappe/model/document.py | 12 +++++++++++ .../energy_point_rule/energy_point_rule.json | 11 +++++++++- .../energy_point_rule/energy_point_rule.py | 21 +++++++++++-------- 3 files changed, 34 insertions(+), 10 deletions(-) diff --git a/frappe/model/document.py b/frappe/model/document.py index fd1ffec483..45e63c7160 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -1232,6 +1232,18 @@ class Document(BaseDocument): frappe.bold(self.meta.get_label(from_date_field)), ), frappe.exceptions.InvalidDates) + def get_assigned_users(self): + assignments = frappe.get_all('ToDo', + fields=['owner'], + filters={ + 'reference_type': self.doctype, + 'reference_name': self.name, + 'status': ('!=', 'Cancelled'), + }) + + users = set([assignment.owner for assignment in assignments]) + return users + def execute_action(doctype, name, action, **kwargs): '''Execute an action on a document (called by background worker)''' doc = frappe.get_doc(doctype, name) diff --git a/frappe/social/doctype/energy_point_rule/energy_point_rule.json b/frappe/social/doctype/energy_point_rule/energy_point_rule.json index 7a599701dc..fc7cdd280c 100644 --- a/frappe/social/doctype/energy_point_rule/energy_point_rule.json +++ b/frappe/social/doctype/energy_point_rule/energy_point_rule.json @@ -12,6 +12,7 @@ "for_doc_event", "condition", "points", + "for_assigned_users", "user_field", "multiplier_field", "max_points" @@ -56,6 +57,7 @@ "reqd": 1 }, { + "depends_on": "eval:!doc.for_assigned_users || doc.for_doc_event==='New'", "description": "The user from this field will be rewarded points", "fieldname": "user_field", "fieldtype": "Select", @@ -84,9 +86,16 @@ "fieldtype": "Select", "label": "For Document Event", "options": "New\nSubmit\nCancel\nCustom" + }, + { + "default": "0", + "depends_on": "eval:doc.for_doc_event !=='New'", + "fieldname": "for_assigned_users", + "fieldtype": "Check", + "label": "Allot Points To Assigned Users" } ], - "modified": "2019-09-05 14:22:27.664645", + "modified": "2019-09-19 17:45:58.137148", "modified_by": "Administrator", "module": "Social", "name": "Energy Point Rule", diff --git a/frappe/social/doctype/energy_point_rule/energy_point_rule.py b/frappe/social/doctype/energy_point_rule/energy_point_rule.py index 1641e05f5e..9bd97dd281 100644 --- a/frappe/social/doctype/energy_point_rule/energy_point_rule.py +++ b/frappe/social/doctype/energy_point_rule/energy_point_rule.py @@ -31,21 +31,24 @@ class EnergyPointRule(Document): reference_doctype = doc.doctype reference_name = doc.name - user = doc.get(self.user_field) + users = [] + if self.for_assigned_users: + users = doc.get_assigned_users() + else: + users = [doc.get(self.user_field)] rule = self.name # incase of zero as result after roundoff if not points: return - # if user_field has no value - if not user or user == 'Administrator': return - try: - create_energy_points_log(reference_doctype, reference_name, { - 'points': points, - 'user': user, - 'rule': rule - }) + for user in users: + if not user or user == 'Administrator': continue + create_energy_points_log(reference_doctype, reference_name, { + 'points': points, + 'user': user, + 'rule': rule + }) except Exception as e: frappe.log_error(frappe.get_traceback(), 'apply_energy_point') From f3b7461498c9d9413616dfbf043b28603a242491 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 19 Sep 2019 18:19:33 +0530 Subject: [PATCH 022/274] fix: test fixes for same phone and mobile --- frappe/contacts/doctype/contact/contact.py | 57 +++++++------------ .../contacts/doctype/contact/test_contact.py | 2 +- 2 files changed, 22 insertions(+), 37 deletions(-) diff --git a/frappe/contacts/doctype/contact/contact.py b/frappe/contacts/doctype/contact/contact.py index c7f2de738e..75f2d56916 100644 --- a/frappe/contacts/doctype/contact/contact.py +++ b/frappe/contacts/doctype/contact/contact.py @@ -30,11 +30,9 @@ class Contact(Document): def validate(self): self.set_primary_email() - self.set_primary_phone_and_mobile_no("phone") - self.set_primary_phone_and_mobile_no("mobile_no") - - if self.email_id: - self.email_id = self.email_id.strip() + self.set_primary("phone") + self.set_primary("mobile_no") + self.check_if_primary_phone_and_mobile_no_same() self.set_user() @@ -94,48 +92,35 @@ class Contact(Document): if not self.email_ids: return - primary_email = [email.email_id for email in self.email_ids if email.is_primary] - - if len(self.email_ids) > 1 and len(primary_email) > 1: + if len([email.email_id for email in self.email_ids if email.is_primary]) > 1: frappe.throw(_("Only one Email ID can be set as primary.")) - elif len(self.email_ids) > 1 and len(primary_email) == 0: - frappe.throw(_("Set primary Email ID.")) - if len(self.email_ids) == 1: - self.email_ids[0].is_primary = 1 - self.email_id = self.email_ids[0].email_id - else: - for d in self.email_ids: - if d.is_primary == 1: - self.email_id = d.email_id - break + for d in self.email_ids: + if d.is_primary == 1: + self.email_id = d.email_id.strip() + break - def set_primary_phone_and_mobile_no(self, fieldname): + def set_primary(self, fieldname): + # Used to set primary mobile and phone no. if len(self.phone_nos) == 0: return field_name = "is_primary_" + fieldname - primary = [phone.phone for phone in self.phone_nos if phone.get(field_name)] - if len(self.phone_nos) > 1 and len(primary) > 1: - frappe.throw(_("Only one {0} can be set as primary.").format(frappe.bold(frappe.unscrub(fieldname)))) - elif len(self.phone_nos) > 1 and len(primary) == 0: - frappe.throw(_("Set primary {0}").format(frappe.unscrub(fieldname))) + is_primary = [phone.phone for phone in self.phone_nos if phone.get(field_name)] - if len(self.phone_nos) == 1: - if self.phone_nos[0].phone == self.phone or self.phone_nos[0].phone == self.mobile_no: - frappe.throw(_("Same number {0} cannot be set for Phone and Mobile No.").format(frappe.bold(self.phone_nos[0].phone))) + if len(is_primary) > 1: + frappe.throw(_("Only one {0} can be set as primary.").format(frappe.scrub(fieldname))) - setattr(self.phone_nos[0], field_name, 1) - setattr(self, fieldname, self.phone_nos[0].get("phone")) - else: - for d in self.phone_nos: - if d.get(field_name) == 1: - if d.phone == self.phone or d.phone == self.mobile_no: - frappe.throw(_("Same number {0} cannot be set for Phone and Mobile No.").format(frappe.bold(d.phone))) + for d in self.phone_nos: + if d.get(field_name) == 1: + setattr(self, fieldname, d.phone) + break - setattr(self, fieldname, d.phone) - break + def check_if_primary_phone_and_mobile_no_same(self): + if self.phone and self.mobile_no and self.phone == self.mobile_no: + number = frappe.bold(self.phone) + frappe.throw(_("Number {0} cannot be set as primary for Phone as well as Mobile No.").format(number)) def get_default_contact(doctype, name): '''Returns default contact for the given doctype, name''' diff --git a/frappe/contacts/doctype/contact/test_contact.py b/frappe/contacts/doctype/contact/test_contact.py index d406f824a3..2e6f9ad422 100644 --- a/frappe/contacts/doctype/contact/test_contact.py +++ b/frappe/contacts/doctype/contact/test_contact.py @@ -51,7 +51,7 @@ class TestContact(unittest.TestCase): phones = [ {"phone": "+91 0000000000", "is_primary_phone": 0, "is_primary_mobile_no": 0}, {"phone": "+91 0000000001", "is_primary_phone": 0, "is_primary_mobile_no": 0}, - {"phone": "+91 0000000002", "is_primary_phone": 0, "is_primary_mobile_no": 0}, + {"phone": "+91 0000000002", "is_primary_phone": 1, "is_primary_mobile_no": 1}, {"phone": "+91 0000000003", "is_primary_phone": 0, "is_primary_mobile_no": 0}, ] From 4da29d099b8e5b95bac32f70abb42da6dff3d1c4 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 19 Sep 2019 19:10:28 +0530 Subject: [PATCH 023/274] perf: reduce validate ip addr execution time --- frappe/app.py | 2 -- frappe/auth.py | 21 +++++++++++---------- frappe/core/doctype/user/user.py | 5 +---- 3 files changed, 12 insertions(+), 16 deletions(-) diff --git a/frappe/app.py b/frappe/app.py index f01bbb7404..3130923f30 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -51,8 +51,6 @@ def application(request): init_request(request) - frappe.recorder.record() - if frappe.local.form_dict.cmd: response = frappe.handler.handle() diff --git a/frappe/auth.py b/frappe/auth.py index dea95618ea..e1a0938478 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -47,6 +47,8 @@ class HTTPRequest: # set db self.connect() + frappe.recorder.record() + # login frappe.local.login_manager = LoginManager() @@ -397,22 +399,21 @@ def check_consecutive_login_attempts(user, doc): def validate_ip_address(user): """check if IP Address is valid""" - user = frappe.get_doc("User", user) + user = frappe.get_cached_doc("User", user) ip_list = user.get_restricted_ip_list() if not ip_list: return - bypass_restrict_ip_check = 0 + system_settings = frappe.get_cached_doc("System Settings") + bypass_restrict_ip_check = None + # check if two factor auth is enabled - enabled = int(frappe.get_system_settings('enable_two_factor_auth') or 0) - if enabled: - #check if bypass restrict ip is enabled for all users - bypass_restrict_ip_check = int(frappe.get_system_settings('bypass_restrict_ip_check_if_2fa_enabled')) or 0 - if not bypass_restrict_ip_check: - #check if bypass restrict ip is enabled for login user - bypass_restrict_ip_check = user.bypass_restrict_ip_check_if_2fa_enabled or 0 + if system_settings.enable_two_factor_auth and not system_settings.bypass_restrict_ip_check_if_2fa_enabled: + # check if bypass restrict ip is enabled for all users or check if bypass restrict ip is enabled for login user + bypass_restrict_ip_check = user.bypass_restrict_ip_check_if_2fa_enabled + for ip in ip_list: if frappe.local.request_ip.startswith(ip) or bypass_restrict_ip_check: return - frappe.throw(_("Not allowed from this IP Address"), frappe.AuthenticationError) \ No newline at end of file + frappe.throw(_("Access not allowed from this IP Address"), frappe.AuthenticationError) \ No newline at end of file diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index cd754aef3a..0b5c9b5667 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -502,10 +502,7 @@ class User(Document): if not self.restrict_ip: return - ip_list = self.restrict_ip.replace(",", "\n").split('\n') - ip_list = [i.strip() for i in ip_list] - - return ip_list + return [i.strip() for i in self.restrict_ip.split(",")] @frappe.whitelist() def get_timezones(): From 200767e0a3ad73912dc057aacf01550cf97611d1 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 19 Sep 2019 19:55:39 +0530 Subject: [PATCH 024/274] fix: get_doc while in test --- frappe/app.py | 1 - frappe/auth.py | 8 +++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/frappe/app.py b/frappe/app.py index 3130923f30..3be6c2b8fc 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -24,7 +24,6 @@ from frappe.middlewares import StaticDataMiddleware 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 local_manager = LocalManager([frappe.local]) diff --git a/frappe/auth.py b/frappe/auth.py index e1a0938478..c255adb941 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -18,7 +18,7 @@ from frappe.utils.password import check_password, delete_login_failed_cache from frappe.core.doctype.activity_log.activity_log import add_authentication_log from frappe.twofactor import (should_run_2fa, authenticate_for_2factor, confirm_otp_token, get_cached_user_pass) - +import frappe.recorder from six.moves.urllib.parse import quote @@ -400,11 +400,17 @@ def check_consecutive_login_attempts(user, doc): def validate_ip_address(user): """check if IP Address is valid""" user = frappe.get_cached_doc("User", user) + if frappe.flags.in_test: + user = frappe.get_doc("User", user) + ip_list = user.get_restricted_ip_list() if not ip_list: return system_settings = frappe.get_cached_doc("System Settings") + if frappe.flags.in_test: + system_settings = frappe.get_doc("System Settings") + bypass_restrict_ip_check = None # check if two factor auth is enabled From d12bbddf7443f1b4a0a33841a17de1e9f8b9cde8 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 20 Sep 2019 09:57:09 +0530 Subject: [PATCH 025/274] fix: check for duplicate entries --- .../global_search_settings.py | 14 ++++++++++++-- .../test_global_search_settings.py | 10 ---------- 2 files changed, 12 insertions(+), 12 deletions(-) delete mode 100644 frappe/desk/doctype/global_search_settings/test_global_search_settings.py diff --git a/frappe/desk/doctype/global_search_settings/global_search_settings.py b/frappe/desk/doctype/global_search_settings/global_search_settings.py index c8dc86fe9e..cf74bed924 100644 --- a/frappe/desk/doctype/global_search_settings/global_search_settings.py +++ b/frappe/desk/doctype/global_search_settings/global_search_settings.py @@ -10,15 +10,25 @@ from frappe import _ class GlobalSearchSettings(Document): def validate(self): - core_dts = [] + dts, core_dts, repeated_dts = [], [], [] + for dt in self.allowed_in_global_search: + if dt.document_type in dts: + repeated_dts.append(dt.document_type) + if frappe.get_meta(dt.document_type).module == "Core": core_dts.append(dt.document_type) + dts.append(dt.document_type) + if core_dts: core_dts = (", ".join([frappe.bold(dt) for dt in core_dts])) frappe.throw(_("Core Modules {0} cannot be searched in Global Search.").format(core_dts)) + if repeated_dts: + repeated_dts = (", ".join([frappe.bold(dt) for dt in repeated_dts])) + frappe.throw(_("Document Type {0} has been repeated.").format(repeated_dts)) + def get_doctypes_for_global_search(): doctypes = frappe.get_list("Global Search DocType", fields=["document_type"], order_by="idx ASC") if not doctypes: @@ -36,7 +46,7 @@ def update_global_search_doctypes(): for dt in global_search_doctypes: if dt.get("index"): - allowed_in_global_search.insert(dt.get("index")-1, dt.get("doctype")) + allowed_in_global_search.insert(dt.get("index"), dt.get("doctype")) continue allowed_in_global_search.append(dt.get("doctype")) diff --git a/frappe/desk/doctype/global_search_settings/test_global_search_settings.py b/frappe/desk/doctype/global_search_settings/test_global_search_settings.py deleted file mode 100644 index a378695448..0000000000 --- a/frappe/desk/doctype/global_search_settings/test_global_search_settings.py +++ /dev/null @@ -1,10 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright (c) 2019, Frappe Technologies and Contributors -# See license.txt -from __future__ import unicode_literals - -# import frappe -import unittest - -class TestGlobalSearchSettings(unittest.TestCase): - pass From c4d120273ba32c9bca147e9c969886e23c296ad6 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 20 Sep 2019 11:12:45 +0530 Subject: [PATCH 026/274] fix: priority for doctypes inglobal search --- .../global_search_settings/global_search_settings.py | 2 +- frappe/utils/global_search.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/frappe/desk/doctype/global_search_settings/global_search_settings.py b/frappe/desk/doctype/global_search_settings/global_search_settings.py index cf74bed924..497b793c5c 100644 --- a/frappe/desk/doctype/global_search_settings/global_search_settings.py +++ b/frappe/desk/doctype/global_search_settings/global_search_settings.py @@ -45,7 +45,7 @@ def update_global_search_doctypes(): allowed_in_global_search = [] for dt in global_search_doctypes: - if dt.get("index"): + if dt.get("index") is not None: allowed_in_global_search.insert(dt.get("index"), dt.get("doctype")) continue diff --git a/frappe/utils/global_search.py b/frappe/utils/global_search.py index e4442f0816..adad454deb 100644 --- a/frappe/utils/global_search.py +++ b/frappe/utils/global_search.py @@ -473,9 +473,13 @@ def search(text, start=0, limit=20, doctype=""): for priority in priorities: tmp_result = [] - for r in results: + if not results: + break + + for index, r in enumerate(results): if r.doctype == priority: tmp_result.extend([r]) + results.pop(index) sorted_results.extend(tmp_result) From b684ade868c9d5515e50d5386734545938ddd44f Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 20 Sep 2019 11:20:53 +0530 Subject: [PATCH 027/274] fix: restore debugging code --- frappe/app.py | 3 +++ frappe/auth.py | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frappe/app.py b/frappe/app.py index 3be6c2b8fc..f01bbb7404 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -24,6 +24,7 @@ from frappe.middlewares import StaticDataMiddleware 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 local_manager = LocalManager([frappe.local]) @@ -50,6 +51,8 @@ def application(request): init_request(request) + frappe.recorder.record() + if frappe.local.form_dict.cmd: response = frappe.handler.handle() diff --git a/frappe/auth.py b/frappe/auth.py index c255adb941..54b8b115b5 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -47,8 +47,6 @@ class HTTPRequest: # set db self.connect() - frappe.recorder.record() - # login frappe.local.login_manager = LoginManager() From 2da2026a9eb95545efc8cecd52aca77f73136fc8 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 20 Sep 2019 11:59:38 +0530 Subject: [PATCH 028/274] test: use get_doc when in_test --- frappe/auth.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/frappe/auth.py b/frappe/auth.py index 54b8b115b5..f2f1101545 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -397,18 +397,12 @@ def check_consecutive_login_attempts(user, doc): def validate_ip_address(user): """check if IP Address is valid""" - user = frappe.get_cached_doc("User", user) - if frappe.flags.in_test: - user = frappe.get_doc("User", user) - + user = frappe.get_cached_doc("User", user) if not frappe.flags.in_test else frappe.get_doc("User", user) ip_list = user.get_restricted_ip_list() if not ip_list: return - system_settings = frappe.get_cached_doc("System Settings") - if frappe.flags.in_test: - system_settings = frappe.get_doc("System Settings") - + system_settings = frappe.get_cached_doc("System Settings") if not frappe.flags.in_test else frappe.get_single("System Settings") bypass_restrict_ip_check = None # check if two factor auth is enabled From cc8953ad663979f620551e9bf7d00d4a2d2d6985 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 20 Sep 2019 14:00:40 +0530 Subject: [PATCH 029/274] tests: fix test cases --- .../doctype/contact/test_records.json | 39 +++++++++++++++++++ frappe/core/doctype/user/user.py | 4 +- .../test_personal_data_download_request.py | 3 ++ 3 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 frappe/contacts/doctype/contact/test_records.json diff --git a/frappe/contacts/doctype/contact/test_records.json b/frappe/contacts/doctype/contact/test_records.json new file mode 100644 index 0000000000..eb540ce4db --- /dev/null +++ b/frappe/contacts/doctype/contact/test_records.json @@ -0,0 +1,39 @@ +[ + { + "doctype": "Contact", + "salutation": "Mr", + "first_name": "_Test Contact For _Test Customer", + "is_primary_contact": 1, + "status": "Open", + "email_ids": [ + { + "email_id": "test_contact@example.com", + "is_primary": 1 + } + ], + "phone_nos": [ + { + "phone": "+91 0000000000", + "is_primary_phone": 1 + } + ] + }, + { + "doctype": "Contact", + "first_name": "_Test Contact For _Test Supplier", + "is_primary_contact": 1, + "status": "Open", + "email_ids": [ + { + "email_id": "test_contact@example.com", + "is_primary": 1 + } + ], + "phone_nos": [ + { + "phone": "+91 0000000000", + "is_primary_phone": 1 + } + ] + } +] \ No newline at end of file diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index cd754aef3a..157b7fe26d 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -1035,9 +1035,10 @@ def update_roles(role_profile): user.add_roles(*roles) 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 frappe.db.get_value("Contact", {"email_id": user.email}): + if not get_contact_name(user.email): contact = frappe.get_doc({ "doctype": "Contact", "first_name": user.first_name, @@ -1056,7 +1057,6 @@ def create_contact(user, ignore_links=False, ignore_mandatory=False): contact.add_phone(user.mobile_no) contact.insert(ignore_permissions=True, ignore_links=ignore_links, ignore_mandatory=ignore_mandatory) - @frappe.whitelist() def generate_keys(user): """ 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 64d4e45660..1965999042 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 @@ -13,6 +13,9 @@ class TestRequestPersonalData(unittest.TestCase): def setUp(self): create_user_if_not_exists(email='test_privacy@example.com') + def tearDown(self): + frappe.db.sql("""DELETE FROM `tabPersonal Data Download Request`""") + def test_user_data_creation(self): user_data = json.loads(get_user_data('test_privacy@example.com')) expected_data = {'Contact': frappe.get_all('Contact', {'email_id':'test_privacy@example.com'}, ["*"])} From a0a57f4a5d4712e348b5cc97daaa44bfa4e45435 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 20 Sep 2019 14:22:40 +0530 Subject: [PATCH 030/274] tests: fix tests --- .../test_personal_data_download_request.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 1965999042..50a144b4e0 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 @@ -7,7 +7,7 @@ import frappe 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 class TestRequestPersonalData(unittest.TestCase): def setUp(self): @@ -18,7 +18,8 @@ class TestRequestPersonalData(unittest.TestCase): def test_user_data_creation(self): user_data = json.loads(get_user_data('test_privacy@example.com')) - expected_data = {'Contact': frappe.get_all('Contact', {'email_id':'test_privacy@example.com'}, ["*"])} + contact_name = get_contact_name('test_privacy@example.com') + expected_data = {'Contact': frappe.get_all('Contact', contact_name, ["*"])} expected_data = json.loads(json.dumps(expected_data, default=str)) self.assertEqual({'Contact': user_data['Contact']}, expected_data) @@ -48,8 +49,7 @@ class TestRequestPersonalData(unittest.TestCase): frappe.db.sql("delete from `tabEmail Queue`") def create_user_if_not_exists(email, first_name = None): - if frappe.db.exists("User", email): - return + frappe.delete_doc_if_exists("User", email) frappe.get_doc({ "doctype": "User", From 1fdb70ddbad10b7c56c6c8424e54e63cb1406c06 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 20 Sep 2019 14:36:28 +0530 Subject: [PATCH 031/274] fix: orm query --- .../test_personal_data_download_request.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 50a144b4e0..9a62b845e1 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 @@ -19,7 +19,7 @@ class TestRequestPersonalData(unittest.TestCase): def test_user_data_creation(self): user_data = json.loads(get_user_data('test_privacy@example.com')) contact_name = get_contact_name('test_privacy@example.com') - expected_data = {'Contact': frappe.get_all('Contact', contact_name, ["*"])} + expected_data = {'Contact': frappe.get_all('Contact', {"name": contact_name}, ["*"])} expected_data = json.loads(json.dumps(expected_data, default=str)) self.assertEqual({'Contact': user_data['Contact']}, expected_data) From 7c075703a18bfb1cb45643d561ffa30385f8113b Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 20 Sep 2019 15:51:21 +0530 Subject: [PATCH 032/274] fix: codacy --- .../doctype/contact/test_records.json | 74 +++++++++---------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/frappe/contacts/doctype/contact/test_records.json b/frappe/contacts/doctype/contact/test_records.json index eb540ce4db..11c5329e93 100644 --- a/frappe/contacts/doctype/contact/test_records.json +++ b/frappe/contacts/doctype/contact/test_records.json @@ -1,39 +1,39 @@ [ - { - "doctype": "Contact", - "salutation": "Mr", - "first_name": "_Test Contact For _Test Customer", - "is_primary_contact": 1, - "status": "Open", - "email_ids": [ - { - "email_id": "test_contact@example.com", - "is_primary": 1 - } - ], - "phone_nos": [ - { - "phone": "+91 0000000000", - "is_primary_phone": 1 - } - ] - }, - { - "doctype": "Contact", - "first_name": "_Test Contact For _Test Supplier", - "is_primary_contact": 1, - "status": "Open", - "email_ids": [ - { - "email_id": "test_contact@example.com", - "is_primary": 1 - } - ], - "phone_nos": [ - { - "phone": "+91 0000000000", - "is_primary_phone": 1 - } - ] - } + { + "doctype": "Contact", + "salutation": "Mr", + "first_name": "_Test Contact For _Test Customer", + "is_primary_contact": 1, + "status": "Open", + "email_ids": [ + { + "email_id": "test_contact@example.com", + "is_primary": 1 + } + ], + "phone_nos": [ + { + "phone": "+91 0000000000", + "is_primary_phone": 1 + } + ] + }, + { + "doctype": "Contact", + "first_name": "_Test Contact For _Test Supplier", + "is_primary_contact": 1, + "status": "Open", + "email_ids": [ + { + "email_id": "test_contact@example.com", + "is_primary": 1 + } + ], + "phone_nos": [ + { + "phone": "+91 0000000000", + "is_primary_phone": 1 + } + ] + } ] \ No newline at end of file From cefd87b81abe6edab895ce07b7c6dd05d66a3fa7 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 20 Sep 2019 16:29:31 +0530 Subject: [PATCH 033/274] fix: add primary email --- frappe/core/doctype/user/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index 157b7fe26d..00620638bf 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -1048,7 +1048,7 @@ def create_contact(user, ignore_links=False, ignore_mandatory=False): }) if user.email: - contact.add_email(user.email) + contact.add_email(user.email, is_primary=True) if user.phone: contact.add_phone(user.phone) From 19ff2489f1f4e5fc57da72c57f13cac024cf96a0 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sat, 21 Sep 2019 17:25:56 +0530 Subject: [PATCH 034/274] feat: assignment rule days --- .../assignment_rule/assignment_rule.json | 15 +++++++++- .../assignment_rule/assignment_rule.py | 17 +++++++++++ .../doctype/assignment_rule_day/__init__.py | 0 .../assignment_rule_day.json | 28 +++++++++++++++++++ .../assignment_rule_day.py | 10 +++++++ 5 files changed, 69 insertions(+), 1 deletion(-) create mode 100644 frappe/automation/doctype/assignment_rule_day/__init__.py create mode 100644 frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json create mode 100644 frappe/automation/doctype/assignment_rule_day/assignment_rule_day.py diff --git a/frappe/automation/doctype/assignment_rule/assignment_rule.json b/frappe/automation/doctype/assignment_rule/assignment_rule.json index 799efefd04..e401881976 100644 --- a/frappe/automation/doctype/assignment_rule/assignment_rule.json +++ b/frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -18,6 +18,8 @@ "unassign_condition", "section_break_10", "close_condition", + "sb", + "assignment_day", "assign_to_users_section", "rule", "users", @@ -115,9 +117,20 @@ "fieldname": "close_condition", "fieldtype": "Code", "label": "Close Condition" + }, + { + "fieldname": "sb", + "fieldtype": "Section Break", + "label": "Assignment Days" + }, + { + "fieldname": "assignment_day", + "fieldtype": "Table", + "label": "Assignment Days", + "options": "Assignment Rule Day" } ], - "modified": "2019-09-10 14:45:53.657667", + "modified": "2019-09-21 16:54:10.370154", "modified_by": "Administrator", "module": "Automation", "name": "Assignment Rule", diff --git a/frappe/automation/doctype/assignment_rule/assignment_rule.py b/frappe/automation/doctype/assignment_rule/assignment_rule.py index f4c4a25830..0ba64b6595 100644 --- a/frappe/automation/doctype/assignment_rule/assignment_rule.py +++ b/frappe/automation/doctype/assignment_rule/assignment_rule.py @@ -118,6 +118,9 @@ class AssignmentRule(Document): return False + def get_assignment_days(self): + return [d.day for d in self.assignment_days] + def get_assignments(doc): return frappe.get_all('ToDo', fields = ['name', 'assignment_rule'], filters = dict( reference_type = doc.get('doctype'), @@ -175,12 +178,18 @@ def apply(doc, method=None, doctype=None, name=None): clear = True # are all assignments cleared new_apply = False # are new assignments applied + today = frappe.utils.get_weekday() + if assignments: # first unassign # use case, there are separate groups to be assigned for say L1 and L2, # so when the value switches from L1 to L2, L1 team must be unassigned, then L2 can be assigned. clear = False for assignment_rule in assignment_rule_docs: + assignment_rule_days = assignment_rule.get_assignment_days() + if assignment_rule_days and not today in assignment_rule_days: + continue + clear = assignment_rule.apply_unassign(doc, assignments) if clear: break @@ -188,6 +197,10 @@ def apply(doc, method=None, doctype=None, name=None): # apply rule only if there are no existing assignments if clear: for assignment_rule in assignment_rule_docs: + assignment_rule_days = assignment_rule.get_assignment_days() + if assignment_rule_days and not today in assignment_rule_days: + continue + new_apply = assignment_rule.apply_assign(doc) if new_apply: break @@ -196,6 +209,10 @@ def apply(doc, method=None, doctype=None, name=None): assignments = get_assignments(doc) if assignments: for assignment_rule in assignment_rule_docs: + assignment_rule_days = assignment_rule.get_assignment_days() + if assignment_rule_days and not today in assignment_rule_days: + continue + if not new_apply: reopen = reopen_closed_assignment(doc) if reopen: diff --git a/frappe/automation/doctype/assignment_rule_day/__init__.py b/frappe/automation/doctype/assignment_rule_day/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json b/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json new file mode 100644 index 0000000000..2a4187965c --- /dev/null +++ b/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json @@ -0,0 +1,28 @@ +{ + "creation": "2019-09-21 16:52:01.705351", + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "day" + ], + "fields": [ + { + "fieldname": "day", + "fieldtype": "Select", + "in_list_view": 1, + "label": "Day", + "options": "Monday\nTuesday\nWednesday\nThursday\nFriday\nSaturday\nSunday" + } + ], + "istable": 1, + "modified": "2019-09-21 16:55:09.376291", + "modified_by": "Administrator", + "module": "Automation", + "name": "Assignment Rule Day", + "owner": "Administrator", + "permissions": [], + "sort_field": "modified", + "sort_order": "DESC", + "track_changes": 1 +} \ No newline at end of file diff --git a/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.py b/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.py new file mode 100644 index 0000000000..27f9aa40e1 --- /dev/null +++ b/frappe/automation/doctype/assignment_rule_day/assignment_rule_day.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Copyright (c) 2019, Frappe Technologies and contributors +# For license information, please see license.txt + +from __future__ import unicode_literals +# import frappe +from frappe.model.document import Document + +class AssignmentRuleDay(Document): + pass From 71ec11e3eea80459bd0775e52bca5f18285511d7 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sat, 21 Sep 2019 17:42:38 +0530 Subject: [PATCH 035/274] chore: rename fieldname --- .../automation/doctype/assignment_rule/assignment_rule.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/automation/doctype/assignment_rule/assignment_rule.json b/frappe/automation/doctype/assignment_rule/assignment_rule.json index e401881976..c6c426f3be 100644 --- a/frappe/automation/doctype/assignment_rule/assignment_rule.json +++ b/frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -19,7 +19,7 @@ "section_break_10", "close_condition", "sb", - "assignment_day", + "assignment_days", "assign_to_users_section", "rule", "users", @@ -124,13 +124,13 @@ "label": "Assignment Days" }, { - "fieldname": "assignment_day", + "fieldname": "assignment_days", "fieldtype": "Table", "label": "Assignment Days", "options": "Assignment Rule Day" } ], - "modified": "2019-09-21 16:54:10.370154", + "modified": "2019-09-21 17:36:16.787602", "modified_by": "Administrator", "module": "Automation", "name": "Assignment Rule", From a8b53deb7553cf84c91908bec235c42c52d06cc0 Mon Sep 17 00:00:00 2001 From: ci2014 Date: Sat, 21 Sep 2019 15:41:54 +0200 Subject: [PATCH 036/274] Fix loop error in utils.py Property Setters got deleted on bench migrate and haven't been readded, because data was passed instead of d. Now it works. --- frappe/modules/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/modules/utils.py b/frappe/modules/utils.py index b06297023e..528ca6e88b 100644 --- a/frappe/modules/utils.py +++ b/frappe/modules/utils.py @@ -119,7 +119,7 @@ def sync_customizations_for_doctype(data, folder): custom_doctype, doctype_fieldname), doc_type) for d in data[key]: - _insert(data) + _insert(d) else: for d in data[key]: From 770f56f4ce53c0d4d65be16950758bb9e5eb56c0 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sat, 21 Sep 2019 20:53:20 +0530 Subject: [PATCH 037/274] fix: set column width --- frappe/contacts/doctype/contact_email/contact_email.json | 3 ++- frappe/contacts/doctype/contact_phone/contact_phone.json | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/frappe/contacts/doctype/contact_email/contact_email.json b/frappe/contacts/doctype/contact_email/contact_email.json index cfcc39ca8b..00b680e416 100644 --- a/frappe/contacts/doctype/contact_email/contact_email.json +++ b/frappe/contacts/doctype/contact_email/contact_email.json @@ -16,6 +16,7 @@ "options": "Email" }, { + "columns": 2, "default": "0", "fieldname": "is_primary", "fieldtype": "Check", @@ -24,7 +25,7 @@ } ], "istable": 1, - "modified": "2019-08-02 13:14:22.193463", + "modified": "2019-09-21 20:51:02.031722", "modified_by": "Administrator", "module": "Contacts", "name": "Contact Email", diff --git a/frappe/contacts/doctype/contact_phone/contact_phone.json b/frappe/contacts/doctype/contact_phone/contact_phone.json index 248abfa9fe..c0f171d62a 100644 --- a/frappe/contacts/doctype/contact_phone/contact_phone.json +++ b/frappe/contacts/doctype/contact_phone/contact_phone.json @@ -16,6 +16,7 @@ "label": "Phone" }, { + "columns": 2, "default": "0", "fieldname": "is_primary_phone", "fieldtype": "Check", @@ -23,6 +24,7 @@ "label": "Is Primary Phone" }, { + "columns": 2, "default": "0", "fieldname": "is_primary_mobile_no", "fieldtype": "Check", @@ -31,8 +33,8 @@ } ], "istable": 1, - "modified": "2019-09-11 20:57:22.108260", - "modified_by": "himanshu@erpnext.com", + "modified": "2019-09-21 20:46:06.177615", + "modified_by": "Administrator", "module": "Contacts", "name": "Contact Phone", "owner": "Administrator", From ab86a891286dbd2047ac6ce03a515b672081639f Mon Sep 17 00:00:00 2001 From: Raffael Meyer Date: Mon, 23 Sep 2019 02:02:42 -0500 Subject: [PATCH 038/274] fix(docstring): params docname and description (#8475) --- frappe/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index 8ea5148873..a3b04e8dc7 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -1409,8 +1409,9 @@ def publish_progress(*args, **kwargs): :param percent: Percent progress :param title: Title - :param doctype: Optional, for DocType - :param name: Optional, for Document name + :param doctype: Optional, for document type + :param docname: Optional, for document name + :param description: Optional description """ import frappe.realtime return frappe.realtime.publish_progress(*args, **kwargs) From b6ed895ed89c5b6d3569c9331e273aa38618287c Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 23 Sep 2019 12:33:14 +0530 Subject: [PATCH 039/274] =?UTF-8?q?fix(user):=20remove=20password=20update?= =?UTF-8?q?=20notification=20feature=20for=20secu=E2=80=A6=20(#8449)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frappe/core/doctype/user/user.json | 10 +--------- frappe/core/doctype/user/user.py | 8 -------- frappe/templates/emails/password_update.html | 4 ---- 3 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 frappe/templates/emails/password_update.html diff --git a/frappe/core/doctype/user/user.json b/frappe/core/doctype/user/user.json index 9376c8d0b5..b98935b4f3 100644 --- a/frappe/core/doctype/user/user.json +++ b/frappe/core/doctype/user/user.json @@ -38,7 +38,6 @@ "mute_sounds", "change_password", "new_password", - "send_password_update_notification", "logout_all_sessions", "reset_password_key", "last_password_reset_date", @@ -299,13 +298,6 @@ "label": "Set New Password", "no_copy": 1 }, - { - "default": "0", - "depends_on": "eval:!doc.__islocal", - "fieldname": "send_password_update_notification", - "fieldtype": "Check", - "label": "Send Password Update Notification" - }, { "default": "0", "fieldname": "logout_all_sessions", @@ -593,7 +585,7 @@ "idx": 413, "image_field": "user_image", "max_attachments": 5, - "modified": "2019-08-09 10:34:56.912283", + "modified": "2019-09-18 14:14:01.233124", "modified_by": "Administrator", "module": "Core", "name": "User", diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index cd754aef3a..dcbf3ee35a 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -153,10 +153,6 @@ class User(Document): if new_password and not self.flags.in_insert: _update_password(user=self.name, pwd=new_password, logout_all_sessions=self.logout_all_sessions) - if self.send_password_update_notification and self.enabled: - self.password_update_mail(new_password) - frappe.msgprint(_("New password emailed")) - def set_system_user(self): '''Set as System User if any of the given roles has desk_access''' if self.has_desk_access() or self.name == 'Administrator': @@ -250,10 +246,6 @@ class User(Document): self.send_login_mail(_("Password Reset"), "password_reset", {"link": link}, now=True) - def password_update_mail(self, password): - self.send_login_mail(_("Password Update"), - "password_update", {"new_password": password}, now=True) - def send_welcome_mail_to_user(self): from frappe.utils import get_url link = self.reset_password() diff --git a/frappe/templates/emails/password_update.html b/frappe/templates/emails/password_update.html deleted file mode 100644 index 7730526b4d..0000000000 --- a/frappe/templates/emails/password_update.html +++ /dev/null @@ -1,4 +0,0 @@ -

    {{_("Dear")}} {{ first_name }}{% if last_name %} {{ last_name}}{% endif %},

    -

    {{_("Your password has been updated. Here is your new password")}}: {{ new_password }}

    -

    {{_("Thank you")}},
    -{{ user_fullname }}

    \ No newline at end of file From 756d1faabb0b8cd0ea1ff900548dc67c6b48f5a3 Mon Sep 17 00:00:00 2001 From: Aditya Hase Date: Mon, 23 Sep 2019 13:05:01 +0530 Subject: [PATCH 040/274] Update auth.py --- frappe/auth.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frappe/auth.py b/frappe/auth.py index f2f1101545..25e64fdc12 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -18,7 +18,6 @@ from frappe.utils.password import check_password, delete_login_failed_cache from frappe.core.doctype.activity_log.activity_log import add_authentication_log from frappe.twofactor import (should_run_2fa, authenticate_for_2factor, confirm_otp_token, get_cached_user_pass) -import frappe.recorder from six.moves.urllib.parse import quote @@ -414,4 +413,4 @@ def validate_ip_address(user): if frappe.local.request_ip.startswith(ip) or bypass_restrict_ip_check: return - frappe.throw(_("Access not allowed from this IP Address"), frappe.AuthenticationError) \ No newline at end of file + frappe.throw(_("Access not allowed from this IP Address"), frappe.AuthenticationError) From 46eac3071f07583b9ba26a80eb665483e2766b05 Mon Sep 17 00:00:00 2001 From: Aditya Hase Date: Mon, 23 Sep 2019 13:05:19 +0530 Subject: [PATCH 041/274] Update auth.py --- frappe/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/auth.py b/frappe/auth.py index 25e64fdc12..82ff20aa43 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -18,6 +18,7 @@ from frappe.utils.password import check_password, delete_login_failed_cache from frappe.core.doctype.activity_log.activity_log import add_authentication_log from frappe.twofactor import (should_run_2fa, authenticate_for_2factor, confirm_otp_token, get_cached_user_pass) + from six.moves.urllib.parse import quote From 7fe35a2d3cd2b698374842503781fdaa354187d4 Mon Sep 17 00:00:00 2001 From: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> Date: Mon, 23 Sep 2019 15:54:46 +0530 Subject: [PATCH 042/274] fix: set default value in set_value as None to avoid error. ``` frappe.db.set_value('Call Log', log.name, { fieldname: doc.name, display_name_field: doc.get_title() }, update_modified=False) ``` this code should not fail if value is not pass because value is passed in the dict. --- frappe/database/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/database/database.py b/frappe/database/database.py index 412051c76f..a1b8d390a9 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -607,7 +607,7 @@ class Database(object): """Update multiple values. Alias for `set_value`.""" return self.set_value(*args, **kwargs) - def set_value(self, dt, dn, field, val, modified=None, modified_by=None, + def set_value(self, dt, dn, field, val=None, modified=None, modified_by=None, update_modified=True, debug=False): """Set a single value in the database, do not call the ORM triggers but update the modified timestamp (unless specified not to). From eee41cac3137ee4defa4b02c692c082d3bc4a3e4 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Mon, 23 Sep 2019 16:17:08 +0530 Subject: [PATCH 043/274] test: Add test for point allocation based on assignment --- .../energy_point_log/test_energy_point_log.py | 38 ++++++++++++++++++- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/frappe/social/doctype/energy_point_log/test_energy_point_log.py b/frappe/social/doctype/energy_point_log/test_energy_point_log.py index c44b3b14df..8aef5a3801 100644 --- a/frappe/social/doctype/energy_point_log/test_energy_point_log.py +++ b/frappe/social/doctype/energy_point_log/test_energy_point_log.py @@ -7,6 +7,7 @@ import frappe import unittest from .energy_point_log import get_energy_points as _get_energy_points, create_review_points_log, review from frappe.utils.testutils import add_custom_field, clear_custom_fields +from frappe.desk.form.assign_to import add as assign_to class TestEnergyPointLog(unittest.TestCase): def tearDown(self): @@ -185,7 +186,31 @@ class TestEnergyPointLog(unittest.TestCase): self.assertEquals(points_after_todo_creation, points_before_todo_creation + todo_point_rule.points) -def create_energy_point_rule_for_todo(multiplier_field=None, for_doc_event='Custom', max_points=None): + def test_point_allocation_for_assigned_users(self): + todo = create_a_todo() + + assign_users_to_todo(todo.name, ['test@example.com', 'test2@example.com']) + + test_user_before_points = get_points('test@example.com') + test2_user_before_points = get_points('test2@example.com') + + rule = create_energy_point_rule_for_todo(for_assigned_users=1) + + todo.status = 'Closed' + todo.save() + + test_user_after_points = get_points('test@example.com') + test2_user_after_points = get_points('test2@example.com') + + self.assertEquals(test_user_after_points, + test_user_before_points + rule.points) + + self.assertEquals(test2_user_after_points, + test2_user_before_points + rule.points) + + +def create_energy_point_rule_for_todo(multiplier_field=None, for_doc_event='Custom', + max_points=None, for_assigned_users=0): name = 'ToDo Closed' point_rule = frappe.db.get_all( 'Energy Point Rule', @@ -204,6 +229,7 @@ def create_energy_point_rule_for_todo(multiplier_field=None, for_doc_event='Cust 'condition': 'doc.status == "Closed"', 'for_doc_event': for_doc_event, 'user_field': 'owner', + 'for_assigned_users': for_assigned_users, 'multiplier_field': multiplier_field, 'max_points': max_points }).insert(ignore_permissions=1) @@ -216,4 +242,12 @@ def create_a_todo(): def get_points(user, point_type='energy_points'): - return _get_energy_points(user).get(point_type) or 0 \ No newline at end of file + return _get_energy_points(user).get(point_type) or 0 + +def assign_users_to_todo(todo_name, users): + for user in users: + assign_to({ + 'assign_to': user, + 'doctype': 'ToDo', + 'name': todo_name + }) \ No newline at end of file From b07b87392d7b82347245a70fb2ef2fb3860a19f5 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Mon, 23 Sep 2019 16:18:22 +0530 Subject: [PATCH 044/274] fix: Add field description and remove mandatory constraint --- .../doctype/energy_point_rule/energy_point_rule.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/social/doctype/energy_point_rule/energy_point_rule.json b/frappe/social/doctype/energy_point_rule/energy_point_rule.json index fc7cdd280c..43714cd5be 100644 --- a/frappe/social/doctype/energy_point_rule/energy_point_rule.json +++ b/frappe/social/doctype/energy_point_rule/energy_point_rule.json @@ -61,8 +61,7 @@ "description": "The user from this field will be rewarded points", "fieldname": "user_field", "fieldtype": "Select", - "label": "User Field", - "reqd": 1 + "label": "User Field" }, { "fieldname": "multiplier_field", @@ -71,7 +70,7 @@ }, { "depends_on": "eval:doc.multiplier_field", - "description": "Maximum points allowed after multiplying points with the multiplier value\n(Note: For no limit set value as 0)", + "description": "Maximum points allowed after multiplying points with the multiplier value\n(Note: For no limit leave this field empty or set 0)", "fieldname": "max_points", "fieldtype": "Int", "label": "Maximum Points" @@ -90,12 +89,13 @@ { "default": "0", "depends_on": "eval:doc.for_doc_event !=='New'", + "description": "Users assigned to the reference document will get points.", "fieldname": "for_assigned_users", "fieldtype": "Check", "label": "Allot Points To Assigned Users" } ], - "modified": "2019-09-19 17:45:58.137148", + "modified": "2019-09-20 11:26:26.101557", "modified_by": "Administrator", "module": "Social", "name": "Energy Point Rule", From 0d6b8072dfdeb59e2557afff4b6d6a3ff3ebcf73 Mon Sep 17 00:00:00 2001 From: Mangesh-Khairnar Date: Mon, 23 Sep 2019 16:36:35 +0530 Subject: [PATCH 045/274] fix: boilerplate creation --- frappe/modules/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/modules/utils.py b/frappe/modules/utils.py index b06297023e..44c986e80c 100644 --- a/frappe/modules/utils.py +++ b/frappe/modules/utils.py @@ -242,7 +242,7 @@ def make_boilerplate(template, doc, opts=None): base_class = 'Document' base_class_import = 'from frappe.model.document import Document' - if doc.is_tree: + if hasattr(doc, "is_tree"): base_class = 'NestedSet' base_class_import = 'from frappe.utils.nestedset import NestedSet' From 1f0edc80d8bfef021a8e937d84f5d73039cebe81 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Mon, 23 Sep 2019 21:20:51 +0530 Subject: [PATCH 046/274] chore: remove unnecessary code --- frappe/boot.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/frappe/boot.py b/frappe/boot.py index f9ce2ffc2e..d0fa0f2c71 100644 --- a/frappe/boot.py +++ b/frappe/boot.py @@ -193,9 +193,6 @@ def load_translations(bootinfo): for name in bootinfo.user.all_reports: messages[name] = frappe._(name) - for t in frappe.get_list("Translation", fields=["source_name", "target_name"]): - messages[t.source_name] = t.target_name - # only untranslated messages = {k:v for k, v in iteritems(messages) if k!=v} From 6682d5c07cc4a3a9c6d9ed65ea4b73fd1db0f9e3 Mon Sep 17 00:00:00 2001 From: Leandro Iannece Date: Mon, 23 Sep 2019 15:29:25 -0300 Subject: [PATCH 047/274] Fixed jinja templates and translation in login page --- frappe/www/login.html | 4 ++-- frappe/www/login.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/www/login.html b/frappe/www/login.html index 8c470ac6dd..48b30800b5 100644 --- a/frappe/www/login.html +++ b/frappe/www/login.html @@ -13,12 +13,12 @@ ` +
    `; } return ` ${log.row_indexes.join(', ')} diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.json b/frappe/core/doctype/data_import_beta/data_import_beta.json index ca953f23cb..4757a4b7da 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.json +++ b/frappe/core/doctype/data_import_beta/data_import_beta.json @@ -19,6 +19,8 @@ "template_warnings", "section_import_preview", "import_preview", + "import_warnings_section", + "import_warnings", "import_log_section", "import_log", "import_log_preview" @@ -125,10 +127,20 @@ "fieldname": "submit_after_import", "fieldtype": "Check", "label": "Submit After Import" + }, + { + "fieldname": "import_warnings_section", + "fieldtype": "Section Break", + "label": "Import Warnings" + }, + { + "fieldname": "import_warnings", + "fieldtype": "HTML", + "label": "Import Warnings" } ], "hide_toolbar": 1, - "modified": "2019-09-09 17:53:28.398802", + "modified": "2019-09-24 15:08:25.984923", "modified_by": "Administrator", "module": "Core", "name": "Data Import Beta", diff --git a/frappe/public/js/frappe/data_import/import_preview.js b/frappe/public/js/frappe/data_import/import_preview.js index 993f163a0c..7880a82966 100644 --- a/frappe/public/js/frappe/data_import/import_preview.js +++ b/frappe/public/js/frappe/data_import/import_preview.js @@ -13,14 +13,13 @@ const SVG_ICONS = { }; frappe.data_import.ImportPreview = class ImportPreview { - constructor({ wrapper, doctype, preview_data, import_log, warnings, events = {} }) { - frappe.import_preview = this; + constructor({ wrapper, doctype, preview_data, frm, import_log, events = {} }) { this.wrapper = wrapper; this.doctype = doctype; this.preview_data = preview_data; this.events = events; - this.warnings = warnings; this.import_log = import_log; + this.frm = frm; frappe.model.with_doctype(doctype, () => { this.refresh(); @@ -35,7 +34,6 @@ frappe.data_import.ImportPreview = class ImportPreview { this.make_wrapper(); this.prepare_columns(); this.prepare_data(); - this.render_warnings(this.warnings); this.render_datatable(); this.setup_styles(); this.add_actions(); @@ -44,18 +42,17 @@ frappe.data_import.ImportPreview = class ImportPreview { make_wrapper() { this.wrapper.html(`
    -
    -
    -
    - +
    +
    +
    +
    +
    +
    `); frappe.utils.bind_actions_with_class(this.wrapper, this); - this.$warnings = this.wrapper.find('.warnings'); this.$table_preview = this.wrapper.find('.table-preview'); } @@ -65,9 +62,14 @@ frappe.data_import.ImportPreview = class ImportPreview { let header_row_index = i - 1; if (df.skip_import) { let is_sr = df.label === 'Sr. No'; + let show_warnings_button = ``; let column_title = is_sr ? df.label - : `${df.header_title || `${__('Untitled Column')}`}`; + : ` + ${df.header_title || `${__('Untitled Column')}`} + ${!df.parent ? show_warnings_button : ''} + `; return { id: frappe.utils.get_random(6), name: df.label, @@ -123,20 +125,6 @@ frappe.data_import.ImportPreview = class ImportPreview { }); } - render_warnings(warnings) { - let html = ''; - if (warnings.length > 0) { - let warning_html = warnings - .map(warning => { - return `
  • ${warning}
  • `; - }) - .join(''); - - html = `
      ${warning_html}
    `; - } - this.$warnings.html(html); - } - render_datatable() { if (this.datatable) { this.datatable.destroy(); @@ -150,7 +138,7 @@ frappe.data_import.ImportPreview = class ImportPreview { this.datatable = new DataTable(this.$table_preview.get(0), { data: this.data, columns: this.columns, - layout: 'fixed', + layout: this.columns.length < 10 ? 'fluid' : 'fixed', cellHeight: 35, serialNoColumn: false, checkboxColumn: false, @@ -196,20 +184,42 @@ frappe.data_import.ImportPreview = class ImportPreview { } add_actions() { - let failures = this.import_log.filter(log => !log.success); - if (failures.length > 0) { - this.wrapper.find('.table-actions').append( - ` - `); - } + `; + }); + + this.wrapper.find('.table-actions').html(html); } export_errored_rows() { this.events.export_errored_rows(); } + show_warnings() { + this.events.show_warnings(); + } + show_column_mapper() { let column_picker_fields = new ColumnPickerFields({ doctype: this.doctype From 12f2d03a70f621ac30d12b2050c02349e7343e51 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Tue, 24 Sep 2019 16:42:19 +0530 Subject: [PATCH 164/274] fix: Scroll to warning box --- .../js/frappe/data_import/import_preview.js | 15 +++++++++++++-- frappe/public/js/frappe/utils/utils.js | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/data_import/import_preview.js b/frappe/public/js/frappe/data_import/import_preview.js index 7880a82966..866d3d9f69 100644 --- a/frappe/public/js/frappe/data_import/import_preview.js +++ b/frappe/public/js/frappe/data_import/import_preview.js @@ -57,13 +57,17 @@ frappe.data_import.ImportPreview = class ImportPreview { } prepare_columns() { - let column_width = 120; this.columns = this.fields.map((df, i) => { + let column_width = 120; let header_row_index = i - 1; if (df.skip_import) { let is_sr = df.label === 'Sr. No'; - let show_warnings_button = ``; + if (!df.parent) { + // increase column width for unidentified columns + column_width += 50 + } let column_title = is_sr ? df.label : ` @@ -220,6 +224,13 @@ frappe.data_import.ImportPreview = class ImportPreview { this.events.show_warnings(); } + show_column_warning(_, $target) { + let $warning = this.frm + .get_field('import_warnings').$wrapper + .find(`[data-col=${$target.data('col')}]`); + frappe.utils.scroll_to($warning, true, 30); + } + show_column_mapper() { let column_picker_fields = new ColumnPickerFields({ doctype: this.doctype diff --git a/frappe/public/js/frappe/utils/utils.js b/frappe/public/js/frappe/utils/utils.js index 6821e3d410..c8aa2e3beb 100644 --- a/frappe/public/js/frappe/utils/utils.js +++ b/frappe/public/js/frappe/utils/utils.js @@ -734,7 +734,7 @@ Object.assign(frappe.utils, { let $target = $(e.currentTarget); let action = $target.data('action'); let method = class_instance[action]; - method ? class_instance[action]() : null; + method ? class_instance[action](e, $target) : null; }); return $el; From 08214d2d63c9cb0dfddd2557a724a8dc391e8b84 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Tue, 24 Sep 2019 16:43:38 +0530 Subject: [PATCH 165/274] fix: Remove "Select mandatory without children" --- .../public/js/frappe/data_import/data_exporter.js | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/frappe/public/js/frappe/data_import/data_exporter.js b/frappe/public/js/frappe/data_import/data_exporter.js index 3c5c72fd93..c196acc025 100644 --- a/frappe/public/js/frappe/data_import/data_exporter.js +++ b/frappe/public/js/frappe/data_import/data_exporter.js @@ -143,9 +143,6 @@ frappe.data_import.DataExporter = class DataExporter { - @@ -191,18 +188,6 @@ frappe.data_import.DataExporter = class DataExporter { .trigger('change'); } - select_mandatory_without_children() { - let field = this.dialog.get_field(this.doctype); - let checkboxes = field.options - .filter(option => option.danger) - .map(option => option.$checkbox.find('input').get(0)); - - this.unselect_all(); - $(checkboxes) - .prop('checked', true) - .trigger('change'); - } - unselect_all() { this.dialog.$wrapper .find(':checkbox') From 1cccb33bada07b6d58e3f563a2fc9972ce020623 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 12:01:04 +0530 Subject: [PATCH 166/274] feat: Reload attached file --- .../js/frappe/data_import/data_exporter.js | 2 +- .../js/frappe/data_import/import_preview.js | 2 +- .../public/js/frappe/form/controls/attach.js | 23 +++++++++++++++---- frappe/public/js/frappe/utils/utils.js | 6 ++--- 4 files changed, 23 insertions(+), 10 deletions(-) diff --git a/frappe/public/js/frappe/data_import/data_exporter.js b/frappe/public/js/frappe/data_import/data_exporter.js index c196acc025..fd5fb980ea 100644 --- a/frappe/public/js/frappe/data_import/data_exporter.js +++ b/frappe/public/js/frappe/data_import/data_exporter.js @@ -148,7 +148,7 @@ frappe.data_import.DataExporter = class DataExporter {
    `); - frappe.utils.bind_actions_with_class($select_all_buttons, this); + frappe.utils.bind_actions_with_object($select_all_buttons, this); this.dialog .get_field('select_all_buttons') .$wrapper.html($select_all_buttons); diff --git a/frappe/public/js/frappe/data_import/import_preview.js b/frappe/public/js/frappe/data_import/import_preview.js index 866d3d9f69..8986c4260d 100644 --- a/frappe/public/js/frappe/data_import/import_preview.js +++ b/frappe/public/js/frappe/data_import/import_preview.js @@ -51,7 +51,7 @@ frappe.data_import.ImportPreview = class ImportPreview {
    `); - frappe.utils.bind_actions_with_class(this.wrapper, this); + frappe.utils.bind_actions_with_object(this.wrapper, this); this.$table_preview = this.wrapper.find('.table-preview'); } diff --git a/frappe/public/js/frappe/form/controls/attach.js b/frappe/public/js/frappe/form/controls/attach.js index ef9aa1e05c..7db843d5a0 100644 --- a/frappe/public/js/frappe/form/controls/attach.js +++ b/frappe/public/js/frappe/form/controls/attach.js @@ -13,7 +13,10 @@ frappe.ui.form.ControlAttach = frappe.ui.form.ControlData.extend({ - ${__('Clear')} +
    + ${__('Reload File')} + ${__('Clear')} +
    `) .prependTo(me.input_area) .toggle(false); @@ -21,9 +24,8 @@ frappe.ui.form.ControlAttach = frappe.ui.form.ControlData.extend({ this.set_input_attributes(); this.has_input = true; - this.$value.find(".clear-file").on("click", function() { - me.clear_attachment(); - }); + frappe.utils.bind_actions_with_object(this.$value, this); + this.toggle_reload_button(); }, clear_attachment: function() { var me = this; @@ -41,15 +43,21 @@ frappe.ui.form.ControlAttach = frappe.ui.form.ControlData.extend({ this.refresh(); } }, + reload_attachment() { + if (this.file_uploader) { + this.file_uploader.uploader.upload_files(); + } + }, on_attach_click() { this.set_upload_options(); - new frappe.ui.FileUploader(this.upload_options); + this.file_uploader = new frappe.ui.FileUploader(this.upload_options); }, set_upload_options() { let options = { allow_multiple: false, on_success: file => { this.on_upload_complete(file); + this.toggle_reload_button(); } }; @@ -95,4 +103,9 @@ frappe.ui.form.ControlAttach = frappe.ui.form.ControlData.extend({ } this.set_value(attachment.file_url); }, + + toggle_reload_button() { + this.$value.find('[data-action="reload_attachment"]') + .toggle(this.file_uploader && this.file_uploader.uploader.files.length > 0); + } }); diff --git a/frappe/public/js/frappe/utils/utils.js b/frappe/public/js/frappe/utils/utils.js index c8aa2e3beb..00b6f95f06 100644 --- a/frappe/public/js/frappe/utils/utils.js +++ b/frappe/public/js/frappe/utils/utils.js @@ -726,15 +726,15 @@ Object.assign(frappe.utils, { is_rtl() { return ["ar", "he", "fa"].includes(frappe.boot.lang); }, - bind_actions_with_class($el, class_instance) { + bind_actions_with_object($el, object) { // remove previously bound event $($el).off('click.class_actions'); // attach new event $($el).on('click.class_actions', '[data-action]', e => { let $target = $(e.currentTarget); let action = $target.data('action'); - let method = class_instance[action]; - method ? class_instance[action](e, $target) : null; + let method = object[action]; + method ? object[action](e, $target) : null; }); return $el; From 5c533dc90de4c41f720604677edecc8b9287caf3 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 12:46:06 +0530 Subject: [PATCH 167/274] fix: Filter styling --- .../js/frappe/ui/filters/edit_filter.html | 21 +++++++++---------- frappe/public/less/filters.less | 18 +++++++++------- 2 files changed, 21 insertions(+), 18 deletions(-) diff --git a/frappe/public/js/frappe/ui/filters/edit_filter.html b/frappe/public/js/frappe/ui/filters/edit_filter.html index 50b1e1b4e6..3908c63fa1 100644 --- a/frappe/public/js/frappe/ui/filters/edit_filter.html +++ b/frappe/public/js/frappe/ui/filters/edit_filter.html @@ -1,6 +1,6 @@
    -
    +
    - diff --git a/frappe/public/less/filters.less b/frappe/public/less/filters.less index 30894eea19..95580857e7 100644 --- a/frappe/public/less/filters.less +++ b/frappe/public/less/filters.less @@ -31,9 +31,17 @@ float: none; } -.filter-box { +.frappe-list .filter-box { border-bottom: 1px solid @border-color; - padding: 10px 15px 3px; + padding: 10px 15px; +} + +.filter-box { + .form-group { + @media (min-width: @screen-xs) { + margin-bottom: 0; + } + } .remove-filter { margin-top: 6px; @@ -41,11 +49,9 @@ } .filter-field { - padding-right: 15px; - width: calc(100% - 36px); - .frappe-control { position: relative; + margin-bottom: 0; } } } @@ -56,8 +62,6 @@ padding-right: 0px; } .filter-field { - width: 65% !important; - .frappe-control { position: relative; } From b33d202a7a228085945867a2b79933223480dd3b Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 12:46:42 +0530 Subject: [PATCH 168/274] fix: Download Template button --- .../doctype/data_import_beta/data_import_beta.js | 3 +-- .../data_import_beta/data_import_beta.json | 16 ++++++++-------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index 86cb540745..80bb3ea6fa 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -112,8 +112,7 @@ frappe.ui.form.on('Data Import Beta', { frm.save().then(() => frm.call('start_import')); }, - download_sample_file(frm) { - frappe.require('/assets/js/data_import_tools.min.js', () => { + download_template(frm) { new frappe.data_import.DataExporter(frm.doc.reference_doctype); }); }, diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.json b/frappe/core/doctype/data_import_beta/data_import_beta.json index 4757a4b7da..cdb6ee8cfc 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.json +++ b/frappe/core/doctype/data_import_beta/data_import_beta.json @@ -8,7 +8,7 @@ "field_order": [ "reference_doctype", "import_type", - "download_sample_file", + "download_template", "import_file", "column_break_5", "status", @@ -59,12 +59,6 @@ "fieldtype": "Section Break", "label": "Import Preview" }, - { - "depends_on": "reference_doctype", - "fieldname": "download_sample_file", - "fieldtype": "Button", - "label": "Download Sample File" - }, { "fieldname": "column_break_5", "fieldtype": "Column Break" @@ -137,10 +131,16 @@ "fieldname": "import_warnings", "fieldtype": "HTML", "label": "Import Warnings" + }, + { + "depends_on": "reference_doctype", + "fieldname": "download_template", + "fieldtype": "Button", + "label": "Download Template" } ], "hide_toolbar": 1, - "modified": "2019-09-24 15:08:25.984923", + "modified": "2019-09-25 12:41:46.836826", "modified_by": "Administrator", "module": "Core", "name": "Data Import Beta", From df3236a98a55861489b92660987b7f6a4fe7f9d2 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 12:47:04 +0530 Subject: [PATCH 169/274] fix: Set Export Type based on Import Type --- .../data_import_beta/data_import_beta.js | 19 +++++++++++++++++-- .../js/frappe/data_import/data_exporter.js | 11 +++++------ 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index 80bb3ea6fa..72ab7a7172 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -113,8 +113,23 @@ frappe.ui.form.on('Data Import Beta', { }, download_template(frm) { - new frappe.data_import.DataExporter(frm.doc.reference_doctype); - }); + if (frm.data_exporter) { + frm.data_exporter.dialog.show(); + set_export_records(); + } else { + frappe.require('/assets/js/data_import_tools.min.js', () => { + frm.data_exporter = new frappe.data_import.DataExporter(frm.doc.reference_doctype); + set_export_records(); + }); + } + + function set_export_records() { + if (frm.doc.import_type === 'Insert New Records') { + frm.data_exporter.dialog.set_value('export_records', 'blank_template'); + } else { + frm.data_exporter.dialog.set_value('export_records', 'all'); + } + } }, reference_doctype(frm) { diff --git a/frappe/public/js/frappe/data_import/data_exporter.js b/frappe/public/js/frappe/data_import/data_exporter.js index fd5fb980ea..8c49690b4d 100644 --- a/frappe/public/js/frappe/data_import/data_exporter.js +++ b/frappe/public/js/frappe/data_import/data_exporter.js @@ -3,7 +3,6 @@ frappe.provide('frappe.data_import'); frappe.data_import.DataExporter = class DataExporter { constructor(doctype) { - frappe.data_exporter = this; this.doctype = doctype; frappe.model.with_doctype(doctype, () => { this.make_dialog(); @@ -17,22 +16,22 @@ frappe.data_import.DataExporter = class DataExporter { { fieldtype: 'Select', fieldname: 'export_records', - label: __('Export Records'), + label: __('Export Type'), options: [ { - label: __('Export All Records'), + label: __('All Records'), value: 'all' }, { - label: __('Export Filtered Records'), + label: __('Filtered Records'), value: 'by_filter' }, { - label: __('Export Blank Template'), + label: __('Blank Template'), value: 'blank_template' } ], - default: 'all', + default: 'blank_template', change: () => { this.update_record_count_message(); } From 2fc34effb4ff4a1a81d9755dd7a2c061cdf6a644 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 12:56:44 +0530 Subject: [PATCH 170/274] fix: Show message when scheduler in inactive --- frappe/core/doctype/data_import_beta/data_import_beta.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.py b/frappe/core/doctype/data_import_beta/data_import_beta.py index 734c00d1f1..97959ed308 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.py +++ b/frappe/core/doctype/data_import_beta/data_import_beta.py @@ -9,6 +9,7 @@ from frappe.core.doctype.data_import.importer_new import Importer from frappe.core.doctype.data_import.exporter_new import Exporter from frappe.core.page.background_jobs.background_jobs import get_info from frappe.utils.background_jobs import enqueue +from frappe import _ class DataImportBeta(Document): @@ -28,6 +29,9 @@ class DataImportBeta(Document): return i.get_data_for_import_preview() def start_import(self): + if frappe.utils.scheduler.is_scheduler_inactive(): + frappe.throw(_("Scheduler is inactive. Cannot import data."), title=_("Error")) + enqueued_jobs = [d.get("job_name") for d in get_info()] if self.name not in enqueued_jobs: @@ -38,7 +42,6 @@ class DataImportBeta(Document): event="data_import", job_name=self.name, data_import=self.name, - now=True, ) def get_importer(self): @@ -103,7 +106,8 @@ def download_template( ) e.build_response() + @frappe.whitelist() def download_errored_template(data_import_name): - data_import = frappe.get_doc('Data Import Beta', data_import_name) + data_import = frappe.get_doc("Data Import Beta", data_import_name) data_import.export_errored_rows() From ebb111aaf897a6f77b25e2ec865cb67d25738ff3 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 14:11:21 +0530 Subject: [PATCH 171/274] fix: Set only once Document Type and Import Type --- frappe/core/doctype/data_import_beta/data_import_beta.js | 4 +--- .../core/doctype/data_import_beta/data_import_beta.json | 8 +++++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index 72ab7a7172..56d8d570a3 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -61,8 +61,6 @@ frappe.ui.form.on('Data Import Beta', { frm.trigger('toggle_submit_after_import'); if (frm.doc.import_log && frm.doc.import_log !== '[]') { - // set form as readonly - frm.fields.forEach(f => (f.df.read_only = 1)); frm.disable_save(); } @@ -321,7 +319,7 @@ frappe.ui.form.on('Data Import Beta', { if (log.success) { html = __('Successfully imported {0}', [ `${frappe.utils.get_form_link( - frm.doc.doctype, + frm.doc.reference_doctype, log.docname, true )}` diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.json b/frappe/core/doctype/data_import_beta/data_import_beta.json index cdb6ee8cfc..1994e55045 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.json +++ b/frappe/core/doctype/data_import_beta/data_import_beta.json @@ -32,7 +32,8 @@ "in_list_view": 1, "label": "Document Type", "options": "DocType", - "reqd": 1 + "reqd": 1, + "set_only_once": 1 }, { "fieldname": "import_type", @@ -40,7 +41,8 @@ "in_list_view": 1, "label": "Import Type", "options": "\nInsert New Records\nUpdate Existing Records", - "reqd": 1 + "reqd": 1, + "set_only_once": 1 }, { "depends_on": "eval:!doc.__islocal", @@ -140,7 +142,7 @@ } ], "hide_toolbar": 1, - "modified": "2019-09-25 12:41:46.836826", + "modified": "2019-09-25 13:03:25.463692", "modified_by": "Administrator", "module": "Core", "name": "Data Import Beta", From b024d0f89257a8ed8656cc8405b1d39b55768ced Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 14:56:37 +0530 Subject: [PATCH 172/274] fix: Check for mandatory fields --- .../core/doctype/data_import/importer_new.py | 71 +++++++++++-------- .../data_import_beta/data_import_beta.js | 2 +- 2 files changed, 41 insertions(+), 32 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 46d0b1df0f..354a649793 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -188,7 +188,10 @@ class Importer: if i in skip_import: field.skip_import = True warnings.append( - {"col": column_number, "message": _("Skipping column {0}").format(frappe.bold(header_title))} + { + "col": column_number, + "message": _("Skipping column {0}").format(frappe.bold(header_title)), + } ) elif header_title and not df: warnings.append( @@ -392,6 +395,8 @@ class Importer: self.data_import.db_set("template_warnings", json.dumps(warnings)) frappe.publish_realtime("data_import_refresh") return + else: + self.data_import.db_set("template_warnings", "") # setup import log if self.data_import.import_log: @@ -544,7 +549,11 @@ class Importer: frappe.bold(value), frappe.bold(df.options) ) validate_warnings.append( - {"row": row_number, "field": df.as_dict(convert_dates_to_str=True), "message": msg} + { + "row": row_number, + "field": df.as_dict(convert_dates_to_str=True), + "message": msg, + } ) if validate_warnings: @@ -553,23 +562,46 @@ class Importer: return True - def parse_doc(doctype, docfields, values, row_index): + def parse_doc(doctype, docfields, values, row_number): doc = {} for index, (df, value) in enumerate(zip(docfields, values)): if df.get("skip_import", False): continue if value in INVALID_VALUES: - if df.reqd: - mandatory_fields.append(frappe._dict(row_number=row_number, df=df)) - continue - else: - value = None + value = None if validate_value(value, df): doc[df.fieldname] = self.parse_value(value, df) + + check_mandatory_fields(doctype, doc, row_number) + return doc + def check_mandatory_fields(doctype, doc, row_number): + meta = frappe.get_meta(doctype) + fields = [df for df in meta.fields if df.reqd and doc.get(df.fieldname) in INVALID_VALUES] + + if not fields: + return + + if len(fields) == 1: + warnings.append( + { + "row": row_number, + "message": _("{0} is a mandatory field").format(fields[0].label), + } + ) + else: + fields_string = ", ".join([df.label for df in fields]) + warnings.append( + { + "row": row_number, + "message": _("{0} are mandatory fields").format(fields_string), + } + ) + + parsed_docs = {} for row_index, row in enumerate(rows): for doctype in doctypes: @@ -602,29 +634,6 @@ class Importer: table_field = table_dfs[0] doc[table_field.fieldname] = docs - if mandatory_fields: - df_by_row_number = {} - for d in mandatory_fields: - df_by_row_number.setdefault(d.row_number, []) - df_by_row_number[d.row_number].append(d.df) - - for row_number, fields in df_by_row_number.items(): - if len(fields) == 1: - warnings.append( - { - "row": row_number, - "message": _("{0} is a mandatory field").format(fields[0].label), - } - ) - else: - fields_string = ", ".join([df.label for df in fields]) - warnings.append( - { - "row": row_number, - "message": _("{0} are mandatory fields").format(fields_string), - } - ) - return doc, rows, data[len(rows) :], warnings def get_first_parent_column_index(self, fields): diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index 56d8d570a3..df29482404 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -270,7 +270,7 @@ frappe.ui.form.on('Data Import Beta', { if (w.field) { return `
  • ${w.field.label}: ${w.message}
  • `; } - return w.message; + return `
  • ${w.message}
  • `; }) .join(''); return ` From d2fe00717715cd0c377ee5afb077174cb2d108a3 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 15:05:07 +0530 Subject: [PATCH 173/274] fix(xls): Don't remove first row --- frappe/utils/xlsxutils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/utils/xlsxutils.py b/frappe/utils/xlsxutils.py index 9545722e9a..2814c5ff40 100644 --- a/frappe/utils/xlsxutils.py +++ b/frappe/utils/xlsxutils.py @@ -104,7 +104,6 @@ def read_xls_file_from_attached_file(content): rows = [] for i in range(sheet.nrows): rows.append(sheet.row_values(i)) - rows = rows[1:] return rows def build_xlsx_response(data, filename): From f86a5af7296ce4b7d3411e093905e1cdba1866a3 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 15:06:23 +0530 Subject: [PATCH 174/274] fix: Update attach immediately --- frappe/public/js/frappe/form/controls/attach.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/public/js/frappe/form/controls/attach.js b/frappe/public/js/frappe/form/controls/attach.js index 7db843d5a0..a34c57b38f 100644 --- a/frappe/public/js/frappe/form/controls/attach.js +++ b/frappe/public/js/frappe/form/controls/attach.js @@ -30,6 +30,8 @@ frappe.ui.form.ControlAttach = frappe.ui.form.ControlData.extend({ clear_attachment: function() { var me = this; if(this.frm) { + me.parse_validate_and_set_in_model(null); + me.refresh(); me.frm.attachments.remove_attachment_by_filename(me.value, function() { me.parse_validate_and_set_in_model(null); me.refresh(); From 7927f5c8c4b0e343007f563be0804edb273e1b7a Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 15:59:33 +0530 Subject: [PATCH 175/274] fix(progress): Always show green progress --- frappe/public/js/frappe/form/dashboard.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/frappe/public/js/frappe/form/dashboard.js b/frappe/public/js/frappe/form/dashboard.js index 67befa1441..3e9dacbd05 100644 --- a/frappe/public/js/frappe/form/dashboard.js +++ b/frappe/public/js/frappe/form/dashboard.js @@ -123,11 +123,7 @@ frappe.ui.form.Dashboard = Class.extend({ format_percent: function(title, percent) { var width = cint(percent) < 1 ? 1 : cint(percent); - var progress_class = ""; - if(width < 10) - progress_class = "progress-bar-danger"; - if(width > 99.9) - progress_class = "progress-bar-success"; + var progress_class = "progress-bar-success"; return [{ title: title, From cd961cb9ae213f84683d42cccb2625246b4ae456 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 16:01:05 +0530 Subject: [PATCH 176/274] fix: Validate template on attach --- frappe/core/doctype/data_import/importer_new.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 354a649793..35eb298ee5 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -56,6 +56,8 @@ class Importer: self.read_file(file_path) elif content: self.read_content(content, extension) + + self.validate_template_content() self.remove_empty_rows_and_columns() def read_file(self, file_path): @@ -81,6 +83,13 @@ class Importer: self.header_row = data[0] self.data = data[1:] + def validate_template_content(self): + column_count = len(self.header_row) + if any([len(row) != column_count and len(row) != 0 for row in self.data]): + frappe.throw( + _("Number of columns does not match with data"), title=_("Invalid Template") + ) + def remove_empty_rows_and_columns(self): self.row_index_map = [] removed_rows = [] From 3b7b0f24dc366ba63d182ed2cdbcfbb597be03c2 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 16:01:15 +0530 Subject: [PATCH 177/274] fix: Commit after every doc import --- .../core/doctype/data_import/importer_new.py | 57 +++++++++---------- .../data_import_beta/data_import_beta.py | 5 ++ 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 35eb298ee5..3d26f07033 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -382,6 +382,8 @@ class Importer: frappe.cache().hdel("lang", frappe.session.user) frappe.set_user_lang(frappe.session.user) + self.data_import.db_set("template_warnings", "") + # set flag frappe.flags.in_import = True @@ -404,8 +406,6 @@ class Importer: self.data_import.db_set("template_warnings", json.dumps(warnings)) frappe.publish_realtime("data_import_refresh") return - else: - self.data_import.db_set("template_warnings", "") # setup import log if self.data_import.import_log: @@ -425,8 +425,6 @@ class Importer: # start import print("Importing {0} rows...".format(len(data))) - # mark savepoint - frappe.db.sql("SAVEPOINT import") total_payload_count = len(payloads) batch_size = frappe.conf.data_import_batch_size or 1000 @@ -441,10 +439,11 @@ class Importer: if set(row_indexes).intersection(set(imported_rows)): print("Skipping imported rows", row_indexes) - frappe.publish_realtime( - "data_import_progress", - {"current": current_index, "total": total_payload_count, "skipping": True}, - ) + if total_payload_count > 5: + frappe.publish_realtime( + "data_import_progress", + {"current": current_index, "total": total_payload_count, "skipping": True}, + ) continue try: @@ -453,20 +452,24 @@ class Importer: doc = self.process_doc(doc) processing_time = timeit.default_timer() - start eta = self.get_eta(current_index, total_payload_count, processing_time) - frappe.publish_realtime( - "data_import_progress", - { - "current": current_index, - "total": total_payload_count, - "docname": doc.name, - "success": True, - "row_indexes": row_indexes, - "eta": eta, - }, - ) + + if total_payload_count > 5: + frappe.publish_realtime( + "data_import_progress", + { + "current": current_index, + "total": total_payload_count, + "docname": doc.name, + "success": True, + "row_indexes": row_indexes, + "eta": eta, + }, + ) import_log.append( frappe._dict(success=True, docname=doc.name, row_indexes=row_indexes) ) + # commit after every successful import + frappe.db.commit() except Exception as e: import_log.append( @@ -479,12 +482,6 @@ class Importer: ) frappe.clear_messages() - # rollback to savepoint if something went wrong - # frappe.db.sql('ROLLBACK TO SAVEPOINT import') - - # release savepoint if everything is ok - frappe.db.sql("RELEASE SAVEPOINT import") - # set status failures = [l for l in import_log if l.get("success") == False] if len(failures) == total_payload_count: @@ -589,7 +586,9 @@ class Importer: def check_mandatory_fields(doctype, doc, row_number): meta = frappe.get_meta(doctype) - fields = [df for df in meta.fields if df.reqd and doc.get(df.fieldname) in INVALID_VALUES] + fields = [ + df for df in meta.fields if df.reqd and doc.get(df.fieldname) in INVALID_VALUES + ] if not fields: return @@ -604,13 +603,9 @@ class Importer: else: fields_string = ", ".join([df.label for df in fields]) warnings.append( - { - "row": row_number, - "message": _("{0} are mandatory fields").format(fields_string), - } + {"row": row_number, "message": _("{0} are mandatory fields").format(fields_string)} ) - parsed_docs = {} for row_index, row in enumerate(rows): for doctype in doctypes: diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.py b/frappe/core/doctype/data_import_beta/data_import_beta.py index 97959ed308..1efe794e0a 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.py +++ b/frappe/core/doctype/data_import_beta/data_import_beta.py @@ -21,6 +21,10 @@ class DataImportBeta(Document): self.template_options = "" self.template_warnings = "" + if self.import_file: + # validate template + i = self.get_importer() + def get_preview_from_template(self): if not self.import_file: return @@ -42,6 +46,7 @@ class DataImportBeta(Document): event="data_import", job_name=self.name, data_import=self.name, + # now=True ) def get_importer(self): From 23d6e27f80e1c56c957b5fb709eaec8fb00f5b88 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 16:27:07 +0530 Subject: [PATCH 178/274] fix: Option to export 5 records --- frappe/core/doctype/data_import/exporter_new.py | 4 +++- frappe/core/doctype/data_import_beta/data_import_beta.py | 1 + frappe/public/js/frappe/data_import/data_exporter.js | 7 ++++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/data_import/exporter_new.py b/frappe/core/doctype/data_import/exporter_new.py index d4224b08d4..fec813610d 100644 --- a/frappe/core/doctype/data_import/exporter_new.py +++ b/frappe/core/doctype/data_import/exporter_new.py @@ -17,6 +17,7 @@ class Exporter: export_fields=None, export_data=False, export_filters=None, + export_page_length=None, file_type="CSV", ): """ @@ -31,6 +32,7 @@ class Exporter: self.meta = frappe.get_meta(doctype) self.export_fields = export_fields self.export_filters = export_filters + self.export_page_length = export_page_length self.file_type = file_type # this will contain the csv content @@ -133,7 +135,7 @@ class Exporter: self.doctype, filters=filters, fields=fields, - limit_page_length=None, + limit_page_length=self.export_page_length, order_by=order_by, as_list=1, ) diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.py b/frappe/core/doctype/data_import_beta/data_import_beta.py index 1efe794e0a..76fc608b42 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.py +++ b/frappe/core/doctype/data_import_beta/data_import_beta.py @@ -108,6 +108,7 @@ def download_template( export_data=export_data, export_filters=export_filters, file_type=file_type, + export_page_length=5 if export_records == "5_records" else None, ) e.build_response() diff --git a/frappe/public/js/frappe/data_import/data_exporter.js b/frappe/public/js/frappe/data_import/data_exporter.js index 8c49690b4d..39055aed7c 100644 --- a/frappe/public/js/frappe/data_import/data_exporter.js +++ b/frappe/public/js/frappe/data_import/data_exporter.js @@ -26,6 +26,10 @@ frappe.data_import.DataExporter = class DataExporter { label: __('Filtered Records'), value: 'by_filter' }, + { + label: __('5 Records'), + value: '5_records' + }, { label: __('Blank Template'), value: 'blank_template' @@ -202,7 +206,8 @@ frappe.data_import.DataExporter = class DataExporter { frappe.db.count(this.doctype, { filters: this.get_filters() }), - blank_template: () => Promise.resolve(0) + blank_template: () => Promise.resolve(0), + '5_records': () => Promise.resolve(5) }; count_method[export_records]().then(value => { From 5e8a56b44430be2b702ff240cad542f1aa1bf5bc Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 22:55:44 +0530 Subject: [PATCH 179/274] fix: Rollback on exception --- frappe/core/doctype/data_import/importer_new.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 3d26f07033..3f078f71cc 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -481,6 +481,8 @@ class Importer: ) ) frappe.clear_messages() + # rollback if exception + frappe.db.rollback() # set status failures = [l for l in import_log if l.get("success") == False] From 44028ce23a73ab78bb79de3e95efa066c7e50e94 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 25 Sep 2019 23:31:08 +0530 Subject: [PATCH 180/274] fix(test_runner): Load file if exists --- frappe/test_runner.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/frappe/test_runner.py b/frappe/test_runner.py index cde743643f..76140e442c 100644 --- a/frappe/test_runner.py +++ b/frappe/test_runner.py @@ -250,10 +250,11 @@ def _add_test(app, path, filename, verbose, test_suite=None, ui_tests=False): if os.path.basename(os.path.dirname(path))=="doctype": txt_file = os.path.join(path, filename[5:].replace(".py", ".json")) - with open(txt_file, 'r') as f: - doc = json.loads(f.read()) - doctype = doc["name"] - make_test_records(doctype, verbose) + if os.path.exists(txt_file): + with open(txt_file, 'r') as f: + doc = json.loads(f.read()) + doctype = doc["name"] + make_test_records(doctype, verbose) test_suite.addTest(unittest.TestLoader().loadTestsFromModule(module)) @@ -417,4 +418,4 @@ def get_test_record_log(): else: frappe.flags.test_record_log = [] - return frappe.flags.test_record_log \ No newline at end of file + return frappe.flags.test_record_log From a71f8f95b82b635a18380dd0895f108e4a1a5d79 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Thu, 26 Sep 2019 02:03:22 +0530 Subject: [PATCH 181/274] fix: Show template warnings --- .../core/doctype/data_import_beta/data_import_beta.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index df29482404..631f645b9c 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -242,14 +242,14 @@ frappe.ui.form.on('Data Import Beta', { }, show_import_warnings(frm, preview_data) { - frm.toggle_display('import_warnings_section', - preview_data.warnings && preview_data.warnings.length); - if (!preview_data) { + let warnings = JSON.parse(frm.doc.template_warnings || '[]'); + warnings = warnings.concat(preview_data.warnings || []); + + frm.toggle_display('import_warnings_section', warnings.length > 0); + if (warnings.length === 0) { frm.get_field('import_warnings').$wrapper.html(''); return; } - let warnings = JSON.parse(frm.doc.template_warnings || '[]'); - warnings = warnings.concat(preview_data.warnings || []); // group warnings by row let warnings_by_row = {}; From 056ad75bc2127008e114e1f0a312a83211c3dc11 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Thu, 26 Sep 2019 02:03:50 +0530 Subject: [PATCH 182/274] fix: Automatically create Link field dependencies --- .../core/doctype/data_import/importer_new.py | 61 ++++++++++++++----- 1 file changed, 47 insertions(+), 14 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 3f078f71cc..2674ae24d0 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -541,34 +541,30 @@ class Importer: return [i for i, df in enumerate(fields) if df.parent == doctype] def validate_value(value, df): - validate_warnings = [] - if df.fieldtype == "Select" and value not in df.get_select_options(): options_string = ", ".join([frappe.bold(d) for d in df.get_select_options()]) msg = _("Value must be one of {0}").format(options_string) - validate_warnings.append( + warnings.append( {"row": row_number, "field": df.as_dict(convert_dates_to_str=True), "message": msg} ) + return False elif df.fieldtype == "Link": - missing_link_values = self.get_missing_link_field_values(df.options) - if value in missing_link_values: - msg = _("Value {0} missing for Document Type {1}").format( + d = self.get_missing_link_field_values(df.options) + if value in d.missing_values and not d.one_mandatory: + msg = _("Value {0} missing for {1}").format( frappe.bold(value), frappe.bold(df.options) ) - validate_warnings.append( + warnings.append( { "row": row_number, "field": df.as_dict(convert_dates_to_str=True), "message": msg, } ) + return value - if validate_warnings: - warnings.extend(validate_warnings) - return False - - return True + return value def parse_doc(doctype, docfields, values, row_number): doc = {} @@ -663,6 +659,7 @@ class Importer: return self.update_record(doc) def insert_record(self, doc): + self.create_missing_linked_records(doc) # name shouldn't be set when inserting a new record doc.update({"doctype": self.doctype, "name": None}) new_doc = frappe.get_doc(doc) @@ -671,6 +668,37 @@ class Importer: new_doc.submit() return new_doc + def create_missing_linked_records(self, doc): + """ + Finds fields that are of type Link, and creates the corresponding + document automatically if it has only one mandatory field + """ + link_values = [] + def get_link_fields(doc, doctype): + for fieldname, value in doc.items(): + meta = frappe.get_meta(doctype) + df = meta.get_field(fieldname) + if df.fieldtype == 'Link': + link_values.append([df.options, value]) + elif df.fieldtype in table_fields: + for row in value: + get_link_fields(row, df.options) + get_link_fields(doc, self.doctype) + + for link_doctype, link_value in link_values: + d = self.missing_link_values.get(link_doctype) + if d.one_mandatory and link_value in d.missing_values: + meta = frappe.get_meta(link_doctype) + # find the autoname field + if meta.autoname and meta.autoname.startswith("field:"): + autoname_field = meta.autoname[len("field:") :] + else: + autoname_field = "name" + new_doc = frappe.new_doc(link_doctype) + new_doc.set(autoname_field, link_value) + new_doc.insert() + d.missing_values.remove(link_value) + def update_record(self, doc): id_fieldname = self.get_id_fieldname() id_value = doc[id_fieldname] @@ -706,7 +734,7 @@ class Importer: build_csv_response(rows, self.doctype) def get_missing_link_field_values(self, doctype): - return self.missing_link_values.get(doctype, []) + return self.missing_link_values.get(doctype, {}) def prepare_missing_link_field_values(self, fields, data): link_column_indexes = [i for i, df in enumerate(fields) if df.fieldtype == "Link"] @@ -728,7 +756,12 @@ class Importer: doctype = df.options missing_values = [value for value in values if not frappe.db.exists(doctype, value)] - self.missing_link_values[doctype] = missing_values + if self.missing_link_values.get(doctype): + self.missing_link_values[doctype].missing_values += missing_values + else: + self.missing_link_values[doctype] = frappe._dict( + missing_values=missing_values, one_mandatory=has_one_mandatory_field(doctype), df=df + ) def get_id_fieldname(self): autoname = self.meta.autoname From addc20cde4c1275427f3b6fdd12f9e1a1e2d9f4c Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sat, 28 Sep 2019 13:35:47 +0530 Subject: [PATCH 183/274] fix: Update datatable --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 7a5ccfe3e4..f2cc7b1cca 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "express": "^4.16.2", "fast-deep-equal": "^2.0.1", "frappe-charts": "^1.3.0", - "frappe-datatable": "^1.13.5", + "frappe-datatable": "^1.14.0", "frappe-gantt": "^0.1.0", "fuse.js": "^3.2.0", "highlight.js": "^9.12.0", diff --git a/yarn.lock b/yarn.lock index 3752d00516..0838f3f255 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1770,10 +1770,10 @@ frappe-charts@^1.3.0: resolved "https://registry.yarnpkg.com/frappe-charts/-/frappe-charts-1.3.0.tgz#9ed033fa64833906bba16554187fa2f8a3a54ef6" integrity sha512-hdLv4fOIVgIL5eV9KYlsQaEpxkcJvuEVVDJewJL8PG0ySPy5EEiG5KZGL2uj7YegVWbtsqJ4Oq/74mjgQoMdag== -frappe-datatable@^1.13.5: - version "1.13.5" - resolved "https://registry.yarnpkg.com/frappe-datatable/-/frappe-datatable-1.13.5.tgz#6f507fe7a84c22b1eab6b08e7b6fccbcdf7bb936" - integrity sha512-k3Y8ScfxSD6Kj3Ch98kY2EWBnHUm0oPuPZonkslq4w5689iUhduy/ZynmLgOYDVjXXajBZG3oh5ycnx1gCwY5Q== +frappe-datatable@^1.14.0: + version "1.14.0" + resolved "https://registry.yarnpkg.com/frappe-datatable/-/frappe-datatable-1.14.0.tgz#8e5a0f61764fd634ae01f6767ce055b04ec5c3e1" + integrity sha512-rxePE/UpYFnWzAFIpiLrVGFHxh+fIbpDI98gAZfraZOgO4Dz6qDcJMaeSKDosQ1Zq6imt15KyKoaePXNpsCVfg== dependencies: hyperlist "^1.0.0-beta" lodash "^4.17.5" From d5c6a69e232b2237a5961559d41641a4608e9fa2 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sat, 28 Sep 2019 13:46:49 +0530 Subject: [PATCH 184/274] fix: Select "Don't Import" to skip a column - Remove separate skip_column structure - Simpler Map Columns dialog --- .../core/doctype/data_import/importer_new.py | 9 ++- .../data_import_beta/data_import_beta.js | 26 ------- .../data_import_beta/data_import_beta.py | 4 +- .../js/frappe/data_import/import_preview.js | 69 ++++++++----------- frappe/public/less/form.less | 8 +++ 5 files changed, 41 insertions(+), 75 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 2674ae24d0..3cf798663a 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -27,7 +27,7 @@ class Importer: def __init__(self, doctype, data_import=None, file_path=None, content=None): self.doctype = doctype self.template_options = frappe._dict( - {"remap_column": {}, "skip_import": [], "edited_rows": []} + {"remap_column": {}, "edited_rows": []} ) if data_import: @@ -164,7 +164,6 @@ class Importer: def parse_fields_from_header_row(self): remap_column = self.template_options.remap_column - skip_import = self.template_options.skip_import fields = [] warnings = [] @@ -173,8 +172,8 @@ class Importer: for i, header_title in enumerate(self.header_row): header_row_index = str(i) column_number = str(i + 1) - if remap_column.get(header_row_index): - fieldname = remap_column.get(header_row_index) + fieldname = remap_column.get(header_row_index) + if fieldname and fieldname != "Don't Import": df = df_by_labels_and_fieldnames.get(fieldname) warnings.append( { @@ -194,7 +193,7 @@ class Importer: field.header_title = header_title field.skip_import = False - if i in skip_import: + if fieldname == "Don't Import": field.skip_import = True warnings.append( { diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index 631f645b9c..3fe21a2ae6 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -197,36 +197,10 @@ frappe.ui.form.on('Data Import Beta', { let template_options = JSON.parse(frm.doc.template_options || '{}'); template_options.remap_column = template_options.remap_column || {}; Object.assign(template_options.remap_column, changed_map); - - // if the column is remapped, remove it from skip_import - if (template_options.skip_import) { - template_options.skip_import = template_options.skip_import.filter( - d => !Object.keys(template_options.remap_column).includes(cstr(d)) - ); - } frm.set_value('template_options', JSON.stringify(template_options)); frm.save().then(() => frm.trigger('import_file')); }, - skip_import(header_row_index) { - let template_options = JSON.parse(frm.doc.template_options || '{}'); - template_options.skip_import = template_options.skip_import || []; - if (!template_options.skip_import.includes(header_row_index)) { - template_options.skip_import.push(header_row_index); - } - // if column is being skipped, remove it from remap_column - if ( - template_options.remap_column && - template_options.remap_column[header_row_index] - ) { - delete template_options.remap_column[header_row_index]; - } - frm.set_value('template_options', JSON.stringify(template_options)); - frm.save().then(() => { - frm.trigger('import_file'); - }); - }, - export_errored_rows() { open_url_post('/api/method/frappe.core.doctype.data_import_beta.data_import_beta.download_errored_template', { data_import_name: frm.doc.name diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.py b/frappe/core/doctype/data_import_beta/data_import_beta.py index 76fc608b42..e169ee06ac 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.py +++ b/frappe/core/doctype/data_import_beta/data_import_beta.py @@ -34,7 +34,7 @@ class DataImportBeta(Document): def start_import(self): if frappe.utils.scheduler.is_scheduler_inactive(): - frappe.throw(_("Scheduler is inactive. Cannot import data."), title=_("Error")) + frappe.throw(_("Scheduler is inactive. Cannot import data."), title=_("Scheduler Inactive")) enqueued_jobs = [d.get("job_name") for d in get_info()] @@ -46,7 +46,7 @@ class DataImportBeta(Document): event="data_import", job_name=self.name, data_import=self.name, - # now=True + now=True ) def get_importer(self): diff --git a/frappe/public/js/frappe/data_import/import_preview.js b/frappe/public/js/frappe/data_import/import_preview.js index 8986c4260d..feb67d55c9 100644 --- a/frappe/public/js/frappe/data_import/import_preview.js +++ b/frappe/public/js/frappe/data_import/import_preview.js @@ -249,31 +249,27 @@ frappe.data_import.ImportPreview = class ImportPreview { } return [ { - label: __('Column {0}', [i]), + label: '', fieldtype: 'Data', default: df.header_title, fieldname: `Column ${i}`, read_only: 1 }, - { - fieldtype: 'Button', - label: 'Skip Column', - fieldname: 'skip_' + i, - click: () => { - let header_row_index = i - 1; - this.events.skip_import(header_row_index); - } - }, { fieldtype: 'Column Break' }, { fieldtype: 'Autocomplete', fieldname: i, - label: __('Select field'), + label: '', max_items: Infinity, - options: column_picker_fields.get_fields_as_options(), - default: fieldname, + options: [ + { + label: __("Don't Import"), + value: "Don't Import" + } + ].concat(column_picker_fields.get_fields_as_options()), + default: fieldname || "Don't Import", change() { changed.push(i); } @@ -285,8 +281,24 @@ frappe.data_import.ImportPreview = class ImportPreview { }); // flatten the array fields = fields.reduce((acc, curr) => [...acc, ...curr]); + let file_name = (this.frm.doc.import_file || '').split('/').pop(); + fields = [ + { + fieldtype: 'HTML', + fieldname: 'heading', + options: ` +
    + ${__('Map columns from {0} to fields in {1}', [file_name.bold(), this.doctype.bold()])} +
    + ` + }, + { + fieldtype: 'Section Break' + } + ].concat(fields); + let dialog = new frappe.ui.Dialog({ - title: __('Column Mapper'), + title: __('Map Columns'), fields, primary_action: (values) => { let changed_map = {}; @@ -300,37 +312,10 @@ frappe.data_import.ImportPreview = class ImportPreview { dialog.hide(); } }); + dialog.$body.addClass('map-columns'); dialog.show(); } - remap_column(col) { - let column_picker_fields = new ColumnPickerFields({ - doctype: this.doctype - }); - let dialog = new frappe.ui.Dialog({ - title: __('Remap Column: {0}', [col.name]), - fields: [ - { - fieldtype: 'Autocomplete', - fieldname: 'fieldname', - label: __('Select field'), - max_items: Infinity, - options: column_picker_fields.get_fields_as_options() - } - ], - primary_action: ({ fieldname }) => { - if (!fieldname) return; - this.events.remap_column(col.header_row_index, fieldname); - dialog.hide(); - } - }); - dialog.show(); - } - - skip_import(col) { - this.events.skip_import(col.header_row_index); - } - is_row_imported(row) { let serial_no = row[0].content; return this.import_log.find(log => { diff --git a/frappe/public/less/form.less b/frappe/public/less/form.less index fb8b9c3d49..77fe4b8f17 100644 --- a/frappe/public/less/form.less +++ b/frappe/public/less/form.less @@ -984,3 +984,11 @@ body[data-route^="Form/Communication"] textarea[data-fieldname="subject"] { .followed-by-label{ margin-top: 30px; } + +.map-columns .form-section { + padding: 0 7px 7px; +} + +.map-columns .form-section:first-child { + padding-top: 7px; +} From 13df26eaab230ca5cda3cf91b6d9ba661df63789 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sat, 28 Sep 2019 23:56:55 +0530 Subject: [PATCH 185/274] fix: Show 10 rows in preview --- .../core/doctype/data_import/importer_new.py | 10 +++---- .../data_import_beta/data_import_beta.js | 4 --- .../data_import_beta/data_import_beta.json | 17 ++++------- .../js/frappe/data_import/import_preview.js | 28 +++++++++---------- 4 files changed, 22 insertions(+), 37 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 3cf798663a..f9c919387c 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -20,14 +20,14 @@ from frappe.exceptions import ValidationError, MandatoryError from frappe.model import display_fieldtypes, no_value_fields, table_fields INVALID_VALUES = ["", None] -MAX_ROWS_IN_PREVIEW = 500 +MAX_ROWS_IN_PREVIEW = 10 class Importer: def __init__(self, doctype, data_import=None, file_path=None, content=None): self.doctype = doctype self.template_options = frappe._dict( - {"remap_column": {}, "edited_rows": []} + {"remap_column": {}} ) if data_import: @@ -144,8 +144,9 @@ class Importer: out.fields = fields if len(out.data) > MAX_ROWS_IN_PREVIEW: - out.data = [] + out.data = out.data[:MAX_ROWS_IN_PREVIEW] out.max_rows_exceeded = True + out.max_rows_in_preview = MAX_ROWS_IN_PREVIEW return out def get_parsed_data_from_template(self): @@ -153,9 +154,6 @@ class Importer: formats, formats_warnings = self.parse_formats_from_first_10_rows() fields, data = self.add_serial_no_column(fields, self.data) - if self.template_options.edited_rows: - data = self.template_options.edited_rows - warnings = fields_warnings + formats_warnings return frappe._dict( diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index 3fe21a2ae6..03086f1a1a 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -103,10 +103,6 @@ frappe.ui.form.on('Data Import Beta', { }, start_import(frm) { - let csv_array = frm.import_preview.get_rows_as_csv_array(); - let template_options = JSON.parse(frm.doc.template_options || '{}'); - template_options.edited_rows = csv_array; - frm.set_value('template_options', JSON.stringify(template_options)); frm.save().then(() => frm.call('start_import')); }, diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.json b/frappe/core/doctype/data_import_beta/data_import_beta.json index 1994e55045..1c2be4ada0 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.json +++ b/frappe/core/doctype/data_import_beta/data_import_beta.json @@ -12,14 +12,13 @@ "import_file", "column_break_5", "status", - "submit_after_import", "section_break_7", - "date_format", + "submit_after_import", "template_options", - "template_warnings", "section_import_preview", "import_preview", "import_warnings_section", + "template_warnings", "import_warnings", "import_log_section", "import_log", @@ -59,7 +58,7 @@ { "fieldname": "section_import_preview", "fieldtype": "Section Break", - "label": "Import Preview" + "label": "Preview" }, { "fieldname": "column_break_5", @@ -70,15 +69,8 @@ "depends_on": "eval:!doc.__islocal", "fieldname": "section_break_7", "fieldtype": "Section Break", - "hidden": 1, "label": "Import Options" }, - { - "fieldname": "date_format", - "fieldtype": "Select", - "label": "Date Format", - "options": "\nYYYY-MM-DD\nDD-MM-YYYY\nMM-DD-YYYY\nYYYY/MM/DD\nDD/MM/YYYY\nMM/DD/YYYY\nMM/DD/YY\nDD/MM/YY\nYYYY.MM.DD\nDD.MM.YYYY\nMM.DD.YYYY" - }, { "fieldname": "template_options", "fieldtype": "Code", @@ -115,6 +107,7 @@ { "fieldname": "template_warnings", "fieldtype": "Code", + "hidden": 1, "label": "Template Warnings", "options": "JSON" }, @@ -127,7 +120,7 @@ { "fieldname": "import_warnings_section", "fieldtype": "Section Break", - "label": "Import Warnings" + "label": "Warnings" }, { "fieldname": "import_warnings", diff --git a/frappe/public/js/frappe/data_import/import_preview.js b/frappe/public/js/frappe/data_import/import_preview.js index feb67d55c9..fd512172db 100644 --- a/frappe/public/js/frappe/data_import/import_preview.js +++ b/frappe/public/js/frappe/data_import/import_preview.js @@ -30,7 +30,6 @@ frappe.data_import.ImportPreview = class ImportPreview { this.header_row = this.preview_data.header_row; this.fields = this.preview_data.fields; this.data = this.preview_data.data; - this.max_rows_exceeded = this.preview_data.max_rows_exceeded; this.make_wrapper(); this.prepare_columns(); this.prepare_data(); @@ -47,6 +46,7 @@ frappe.data_import.ImportPreview = class ImportPreview {
    +
    @@ -110,7 +110,7 @@ frappe.data_import.ImportPreview = class ImportPreview { name: column_title, content: `${df.header_title || df.label}`, df: df, - editable: true, + editable: false, align: 'left', header_row_index, width: column_width @@ -134,11 +134,6 @@ frappe.data_import.ImportPreview = class ImportPreview { this.datatable.destroy(); } - let no_data_message = this.max_rows_exceeded - ? __('Cannot load preview for more than 500 rows. You can still remap or skip columns.') - : __('No Data'); - no_data_message = `${no_data_message}`; - this.datatable = new DataTable(this.$table_preview.get(0), { data: this.data, columns: this.columns, @@ -146,10 +141,19 @@ frappe.data_import.ImportPreview = class ImportPreview { cellHeight: 35, serialNoColumn: false, checkboxColumn: false, - pasteFromClipboard: true, - noDataMessage: no_data_message + noDataMessage: __('No Data'), + disableReorderColumn: true }); + let { max_rows_exceeded, max_rows_in_preview } = this.preview_data; + if (max_rows_exceeded) { + this.wrapper.find('.table-message').html(` +
    + ${__('Showing only first {0} rows in preview', [max_rows_in_preview])} +
    + `); + } + if (this.data.length === 0) { this.datatable.style.setStyle('.dt-scrollable', { height: 'auto' @@ -161,12 +165,6 @@ frappe.data_import.ImportPreview = class ImportPreview { }); } - get_rows_as_csv_array() { - return this.datatable.getRows().map(row => { - return row.map(cell => cell.content); - }); - } - setup_styles() { // import success checkbox this.datatable.style.setStyle(`svg.import-success`, { From 4116e17bb3a57da4719097527346213321568429 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sun, 29 Sep 2019 00:25:03 +0530 Subject: [PATCH 186/274] fix: Mute emails in during import --- frappe/core/doctype/data_import/importer_new.py | 4 +++- .../core/doctype/data_import_beta/data_import_beta.json | 9 ++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index f9c919387c..934c7b8727 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -381,8 +381,9 @@ class Importer: self.data_import.db_set("template_warnings", "") - # set flag + # set flags frappe.flags.in_import = True + frappe.flags.mute_emails = self.data_import.mute_emails out = self.get_parsed_data_from_template() fields = out["fields"] @@ -494,6 +495,7 @@ class Importer: self.data_import.db_set("import_log", json.dumps(import_log)) frappe.flags.in_import = False + frappe.flags.mute_emails = False frappe.publish_realtime("data_import_refresh") def get_payloads_for_import(self, fields, data): diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.json b/frappe/core/doctype/data_import_beta/data_import_beta.json index 1c2be4ada0..30f730589a 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.json +++ b/frappe/core/doctype/data_import_beta/data_import_beta.json @@ -14,6 +14,7 @@ "status", "section_break_7", "submit_after_import", + "mute_emails", "template_options", "section_import_preview", "import_preview", @@ -132,10 +133,16 @@ "fieldname": "download_template", "fieldtype": "Button", "label": "Download Template" + }, + { + "default": "0", + "fieldname": "mute_emails", + "fieldtype": "Check", + "label": "Don't Send Emails" } ], "hide_toolbar": 1, - "modified": "2019-09-25 13:03:25.463692", + "modified": "2019-09-28 13:54:35.061730", "modified_by": "Administrator", "module": "Core", "name": "Data Import Beta", From 779084991ee95ef210ca76910cce2e6ebf0b2ccc Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sun, 29 Sep 2019 19:16:12 +0530 Subject: [PATCH 187/274] refactor - Parse template and build self.rows and self.columns - Store header_row data in columns along with df and skip_import - Use self.columns and self.rows without passing them explicitly - Remove the ability to edit rows - Show only first 10 rows as preview - Build doc with default values set - Show Dashboard progress when coming back from another view - Better ETA Message inspired from Apple - Action buttons "Export Errored Rows" and "Go to DocType List" - Import status "Imported x out of y records" - Success / Failure column in import log --- .../core/doctype/data_import/importer_new.py | 273 +++++++++--------- .../data_import_beta/data_import_beta.js | 124 +++++--- .../data_import_beta/data_import_beta.py | 34 +-- .../js/frappe/data_import/import_preview.js | 75 ++--- frappe/public/js/frappe/form/dashboard.js | 9 +- 5 files changed, 264 insertions(+), 251 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 934c7b8727..ca56dce16a 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -26,9 +26,7 @@ MAX_ROWS_IN_PREVIEW = 10 class Importer: def __init__(self, doctype, data_import=None, file_path=None, content=None): self.doctype = doctype - self.template_options = frappe._dict( - {"remap_column": {}} - ) + self.template_options = frappe._dict({"remap_column": {}}) if data_import: self.data_import = data_import @@ -42,9 +40,14 @@ class Importer: self.data = None # used to store date formats guessed from data rows per column self._guessed_date_formats = {} + # used to store eta during import self.last_eta = 0 + # used to collect warnings during template parsing + # and show them to user + self.warnings = [] self.meta = frappe.get_meta(doctype) self.prepare_content(file_path, content) + self.parse_data_from_template() def prepare_content(self, file_path, content): if self.data_import: @@ -128,91 +131,89 @@ class Importer: self.header_row = header_row def get_data_for_import_preview(self): - out = self.get_parsed_data_from_template() - - # prepare fields - fields = [] - for df in out.fields: - header_title = df.header_title - skip_import = df.skip_import - if isinstance(df, DocField): - field = df.as_dict() - else: - field = df - field.update({"header_title": header_title, "skip_import": skip_import}) - fields.append(field) - out.fields = fields - + out = frappe._dict() + out.data = list(self.rows) + out.columns = self.columns + out.warnings = self.warnings if len(out.data) > MAX_ROWS_IN_PREVIEW: out.data = out.data[:MAX_ROWS_IN_PREVIEW] out.max_rows_exceeded = True out.max_rows_in_preview = MAX_ROWS_IN_PREVIEW return out - def get_parsed_data_from_template(self): - fields, fields_warnings = self.parse_fields_from_header_row() - formats, formats_warnings = self.parse_formats_from_first_10_rows() - fields, data = self.add_serial_no_column(fields, self.data) + def parse_data_from_template(self): + columns = self.parse_columns_from_header_row() + columns, data = self.add_serial_no_column(columns, self.data) - warnings = fields_warnings + formats_warnings + self.columns = columns + self.rows = data - return frappe._dict( - header_row=self.header_row, fields=fields, data=data, warnings=warnings - ) - - def parse_fields_from_header_row(self): + def parse_columns_from_header_row(self): remap_column = self.template_options.remap_column - fields = [] - warnings = [] + columns = [] df_by_labels_and_fieldnames = self.build_fields_dict_for_column_matching() for i, header_title in enumerate(self.header_row): header_row_index = str(i) column_number = str(i + 1) + skip_import = False fieldname = remap_column.get(header_row_index) + if fieldname and fieldname != "Don't Import": df = df_by_labels_and_fieldnames.get(fieldname) - warnings.append( + self.warnings.append( { "col": column_number, "message": _("Mapping column {0} to field {1}").format( frappe.bold(header_title or "Untitled Column"), frappe.bold(df.label) ), + "type": "info", } ) else: df = df_by_labels_and_fieldnames.get(header_title) if not df: - field = frappe._dict(header_title=header_title, skip_import=True) + skip_import = True else: - field = df - field.header_title = header_title - field.skip_import = False + skip_import = False if fieldname == "Don't Import": - field.skip_import = True - warnings.append( + skip_import = True + self.warnings.append( { "col": column_number, "message": _("Skipping column {0}").format(frappe.bold(header_title)), + "type": "info", } ) elif header_title and not df: - warnings.append( + self.warnings.append( { "col": column_number, "message": _("Cannot match column {0} with any field").format( frappe.bold(header_title) ), + "type": "info", } ) elif not header_title and not df: - warnings.append({"col": column_number, "message": _("Skipping Untitled Column")}) - fields.append(field) + self.warnings.append( + {"col": column_number, "message": _("Skipping Untitled Column"), "type": "info"} + ) - return fields, warnings + columns.append( + frappe._dict( + df=df, + skip_import=skip_import, + header_title=header_title, + column_number=column_number, + index=i, + ) + ) + + return columns def build_fields_dict_for_column_matching(self): """ @@ -301,30 +302,20 @@ class Importer: out.append(df) return out - def parse_formats_from_first_10_rows(self): - """ - Returns a list of column descriptors for columns that might need parsing. - For e.g if it is a Date column return the Date format - [ - [['Data']], - [['Date', '%m/%d/%y']], - [['Currency', '#,###.##']], - ... - ] - """ - formats = [] - return formats, [] + def add_serial_no_column(self, columns, data): + columns_with_serial_no = [ + frappe._dict({"header_title": "Sr. No", "skip_import": True}) + ] + columns - def add_serial_no_column(self, fields, data): - fields_with_serial_no = [ - frappe._dict({"label": "Sr. No", "skip_import": True, "parent": None}) - ] + fields + # update index for each column + for i, col in enumerate(columns_with_serial_no): + col.index = i data_with_serial_no = [] for i, row in enumerate(data): data_with_serial_no.append([self.row_index_map[i] + 1] + row) - return fields_with_serial_no, data_with_serial_no + return columns_with_serial_no, data_with_serial_no def parse_value(self, value, df): # convert boolean values to 0 or 1 @@ -385,24 +376,19 @@ class Importer: frappe.flags.in_import = True frappe.flags.mute_emails = self.data_import.mute_emails - out = self.get_parsed_data_from_template() - fields = out["fields"] - data = out["data"] - warnings = [] - # prepare a map for missing link field values - self.prepare_missing_link_field_values(fields, data) + self.prepare_missing_link_field_values() - # parse import data - payloads = self.get_payloads_for_import(fields, data) - - # collect warnings - for payload in payloads: - warnings += payload.warnings + # parse docs from rows + payloads = self.get_payloads_for_import() + # dont import if there are non-ignorable warnings + warnings = [w for w in self.warnings if w.get("type") != "info"] if warnings: self.data_import.db_set("template_warnings", json.dumps(warnings)) - frappe.publish_realtime("data_import_refresh") + frappe.publish_realtime( + "data_import_refresh", {"data_import": self.data_import.name} + ) return # setup import log @@ -422,7 +408,7 @@ class Importer: imported_rows += log.row_indexes # start import - print("Importing {0} rows...".format(len(data))) + print("Importing {0} rows...".format(len(self.rows))) total_payload_count = len(payloads) batch_size = frappe.conf.data_import_batch_size or 1000 @@ -440,7 +426,12 @@ class Importer: if total_payload_count > 5: frappe.publish_realtime( "data_import_progress", - {"current": current_index, "total": total_payload_count, "skipping": True}, + { + "current": current_index, + "total": total_payload_count, + "skipping": True, + "data_import": self.data_import.name, + }, ) continue @@ -458,6 +449,7 @@ class Importer: "current": current_index, "total": total_payload_count, "docname": doc.name, + "data_import": self.data_import.name, "success": True, "row_indexes": row_indexes, "eta": eta, @@ -496,24 +488,25 @@ class Importer: frappe.flags.in_import = False frappe.flags.mute_emails = False - frappe.publish_realtime("data_import_refresh") + frappe.publish_realtime("data_import_refresh", {"data_import": self.data_import.name}) - def get_payloads_for_import(self, fields, data): + def get_payloads_for_import(self): payloads = [] + # make a copy + data = list(self.rows) while data: - doc, rows, data, warnings = self.parse_next_row_for_import(fields, data) - payloads.append(frappe._dict(doc=doc, rows=rows, warnings=warnings)) + doc, rows, data = self.parse_next_row_for_import(data) + payloads.append(frappe._dict(doc=doc, rows=rows)) return payloads - def parse_next_row_for_import(self, fields, data): + def parse_next_row_for_import(self, data): """ Parses rows that make up a doc. A doc maybe built from a single row or multiple rows. - Returns the doc, rows, data without the rows and warnings. + Returns the doc, rows, and data without the rows. """ doc = {} - warnings = [] mandatory_fields = [] - doctypes = set([df.parent for df in fields if df.parent]) + doctypes = set([col.df.parent for col in self.columns if col.df and col.df.parent]) # first row is included by default first_row = data[0] @@ -524,7 +517,7 @@ class Importer: # subsequent rows either dont have any parent value set # or have the same value as the parent # we include a row if either of conditions match - parent_column_index = self.get_first_parent_column_index(fields) + parent_column_index = self.get_first_parent_column_index() parent_value = first_row[parent_column_index] data_without_first_row = data[1:] for d in data_without_first_row: @@ -537,16 +530,26 @@ class Importer: rows.append(d) def get_column_indexes(doctype): - return [i for i, df in enumerate(fields) if df.parent == doctype] + return [ + col.index + for col in self.columns + if not col.skip_import and col.df and col.df.parent == doctype + ] def validate_value(value, df): - if df.fieldtype == "Select" and value not in df.get_select_options(): - options_string = ", ".join([frappe.bold(d) for d in df.get_select_options()]) - msg = _("Value must be one of {0}").format(options_string) - warnings.append( - {"row": row_number, "field": df.as_dict(convert_dates_to_str=True), "message": msg} - ) - return False + if df.fieldtype == "Select": + select_options = df.get_select_options() + if select_options and value not in select_options: + options_string = ", ".join([frappe.bold(d) for d in select_options]) + msg = _("Value must be one of {0}").format(options_string) + self.warnings.append( + { + "row": row_number, + "field": df.as_dict(convert_dates_to_str=True), + "message": msg, + } + ) + return False elif df.fieldtype == "Link": d = self.get_missing_link_field_values(df.options) @@ -554,7 +557,7 @@ class Importer: msg = _("Value {0} missing for {1}").format( frappe.bold(value), frappe.bold(df.options) ) - warnings.append( + self.warnings.append( { "row": row_number, "field": df.as_dict(convert_dates_to_str=True), @@ -566,19 +569,21 @@ class Importer: return value def parse_doc(doctype, docfields, values, row_number): - doc = {} - for index, (df, value) in enumerate(zip(docfields, values)): - if df.get("skip_import", False): - continue + # new_doc returns a dict with default values set + doc = frappe.new_doc(doctype, as_dict=True) + # remove standard fields and __islocal + for key in frappe.model.default_fields + ('__islocal',): + doc.pop(key, None) + for index, (df, value) in enumerate(zip(docfields, values)): if value in INVALID_VALUES: value = None - if validate_value(value, df): + value = validate_value(value, df) + if value: doc[df.fieldname] = self.parse_value(value, df) check_mandatory_fields(doctype, doc, row_number) - return doc def check_mandatory_fields(doctype, doc, row_number): @@ -591,7 +596,7 @@ class Importer: return if len(fields) == 1: - warnings.append( + self.warnings.append( { "row": row_number, "message": _("{0} is a mandatory field").format(fields[0].label), @@ -599,7 +604,7 @@ class Importer: ) else: fields_string = ", ".join([df.label for df in fields]) - warnings.append( + self.warnings.append( {"row": row_number, "message": _("{0} are mandatory fields").format(fields_string)} ) @@ -619,7 +624,8 @@ class Importer: # skip values if all of them are empty continue - docfields = [fields[i] for i in column_indexes] + columns = [self.columns[i] for i in column_indexes] + docfields = [col.df for col in columns] doc = parse_doc(doctype, docfields, values, row_number) parsed_docs[doctype] = parsed_docs.get(doctype, []) parsed_docs[doctype].append(doc) @@ -635,17 +641,17 @@ class Importer: table_field = table_dfs[0] doc[table_field.fieldname] = docs - return doc, rows, data[len(rows) :], warnings + return doc, rows, data[len(rows) :] - def get_first_parent_column_index(self, fields): + def get_first_parent_column_index(self): """ Returns the first column's index which must be one of the parent columns """ # find a parent column parent_column_index = -1 - for i, df in enumerate(fields): - if not df.get("skip_import", False) and df.parent == self.doctype: - parent_column_index = i + for col in self.columns: + if not col.skip_import and col.df and col.df.parent == self.doctype: + parent_column_index = col.index break return parent_column_index @@ -659,9 +665,11 @@ class Importer: def insert_record(self, doc): self.create_missing_linked_records(doc) + + new_doc = frappe.new_doc(self.doctype) + new_doc.update(doc) # name shouldn't be set when inserting a new record - doc.update({"doctype": self.doctype, "name": None}) - new_doc = frappe.get_doc(doc) + new_doc.set("name", None) new_doc.insert() if self.meta.is_submittable and self.data_import.submit_after_import: new_doc.submit() @@ -673,15 +681,17 @@ class Importer: document automatically if it has only one mandatory field """ link_values = [] + def get_link_fields(doc, doctype): for fieldname, value in doc.items(): meta = frappe.get_meta(doctype) df = meta.get_field(fieldname) - if df.fieldtype == 'Link': + if df.fieldtype == "Link": link_values.append([df.options, value]) elif df.fieldtype in table_fields: for row in value: get_link_fields(row, df.options) + get_link_fields(doc, self.doctype) for link_doctype, link_value in link_values: @@ -701,7 +711,7 @@ class Importer: def update_record(self, doc): id_fieldname = self.get_id_fieldname() id_value = doc[id_fieldname] - existing_doc = frappe.get_doc(self.doctype, {id_fieldname: id_value}) + existing_doc = frappe.get_doc(self.doctype, id_value) existing_doc.flags.via_data_import = self.data_import.name existing_doc.update(doc) existing_doc.save() @@ -723,43 +733,37 @@ class Importer: row_indexes = list(set(row_indexes)) row_indexes.sort() - out = self.get_parsed_data_from_template() - header_row = out["header_row"] - data = out["data"] - + header_row = [col.header_title for col in self.columns[1:]] rows = [header_row] - rows += [row[1:] for row in data if row[0] in row_indexes] + rows += [row[1:] for row in self.rows if row[0] in row_indexes] build_csv_response(rows, self.doctype) def get_missing_link_field_values(self, doctype): return self.missing_link_values.get(doctype, {}) - def prepare_missing_link_field_values(self, fields, data): - link_column_indexes = [i for i, df in enumerate(fields) if df.fieldtype == "Link"] - - def has_one_mandatory_field(doctype): - meta = frappe.get_meta(doctype) - # get mandatory fields with default not set - mandatory_fields = [df for df in meta.fields if df.reqd and not df.default] - mandatory_fields_count = len(mandatory_fields) - if meta.autoname and meta.autoname.lower() == "prompt": - mandatory_fields_count += 1 - return mandatory_fields_count == 1 + def prepare_missing_link_field_values(self): + columns = self.columns + rows = self.rows + link_column_indexes = [ + col.index for col in columns if col.df and col.df.fieldtype == "Link" + ] self.missing_link_values = {} for index in link_column_indexes: - df = fields[index] - column_values = [row[index] for row in data] + col = columns[index] + column_values = [row[index] for row in rows] values = set([v for v in column_values if v not in INVALID_VALUES]) - doctype = df.options + doctype = col.df.options missing_values = [value for value in values if not frappe.db.exists(doctype, value)] if self.missing_link_values.get(doctype): self.missing_link_values[doctype].missing_values += missing_values else: self.missing_link_values[doctype] = frappe._dict( - missing_values=missing_values, one_mandatory=has_one_mandatory_field(doctype), df=df + missing_values=missing_values, + one_mandatory=self.has_one_mandatory_field(doctype), + df=col.df, ) def get_id_fieldname(self): @@ -778,6 +782,15 @@ class Importer: self.last_eta = eta return self.last_eta + def has_one_mandatory_field(self, doctype): + meta = frappe.get_meta(doctype) + # get mandatory fields with default not set + mandatory_fields = [df for df in meta.fields if df.reqd and not df.default] + mandatory_fields_count = len(mandatory_fields) + if meta.autoname and meta.autoname.lower() == "prompt": + mandatory_fields_count += 1 + return mandatory_fields_count == 1 + DATE_FORMATS = [ r"%d-%m-%Y", diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index 03086f1a1a..f2ff1eb11b 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -3,31 +3,40 @@ frappe.ui.form.on('Data Import Beta', { setup(frm) { - frappe.realtime.on('data_import_refresh', () => { + frappe.realtime.on('data_import_refresh', ({ data_import }) => { + if (data_import !== frm.doc.name) return; frappe.model.clear_doc('Data Import Beta', frm.doc.name); frappe.model.with_doc('Data Import Beta', frm.doc.name).then(() => { frm.refresh(); }); }); frappe.realtime.on('data_import_progress', data => { + if (data.data_import !== frm.doc.name) { + return; + } let percent = Math.floor((data.current * 100) / data.total); + let seconds = Math.floor(data.eta); + let minutes = Math.floor(data.eta / 60); let eta_message = - data.eta < 60 - ? __('ETA {0} seconds', [Math.floor(data.eta)]) - : __('ETA {0} minutes', [Math.floor(data.eta / 60)]); + seconds < 60 + ? __('About {0} seconds remaining', [seconds]) + : minutes === 1 + ? __('About {0} minute remaining', [minutes]) + : __('About {0} minutes remaining', [minutes]); + let message; if (data.success) { - let message_args = [data.docname, data.current, data.total]; + let message_args = [data.current, data.total, eta_message]; message = frm.doc.import_type === 'Insert New Records' - ? __('Importing {0} ({1} of {2})', message_args) - : __('Updating {0} ({1} of {2})', message_args); + ? __('Importing {0} of {1}, {2}', message_args) + : __('Updating {0} of {1}, {2}', message_args); } if (data.skipping) { - message = __('Skipping ({1} of {2})', [data.current, data.total]); + message = __('Skipping {0} of {1}, {2}', [data.current, data.total, eta_message]); } frm.dashboard.show_progress(__('Import Progress'), percent, message); - frm.page.set_indicator(eta_message, 'orange'); + frm.page.set_indicator(__('In Progress'), 'orange'); // hide progress when complete if (data.current === data.total) { @@ -59,14 +68,19 @@ frappe.ui.form.on('Data Import Beta', { frm.trigger('show_import_log'); frm.trigger('show_import_warnings'); frm.trigger('toggle_submit_after_import'); + frm.trigger('show_import_status'); - if (frm.doc.import_log && frm.doc.import_log !== '[]') { - frm.disable_save(); + if (frm.doc.status === 'Partial Success') { + frm.add_custom_button(__('Export Errored Rows'), + () => frm.trigger('export_errored_rows')); } - if (frm.doc.status === 'Success') { - frm.events.show_success_message(frm); - } else { + if (frm.doc.status.includes('Success')) { + frm.add_custom_button(__('Go to {0} List', [frm.doc.reference_doctype]), + () => frappe.set_route('List', frm.doc.reference_doctype)); + } + + if (frm.doc.status !== 'Success') { if (!frm.is_new() && frm.doc.import_file) { let label = frm.doc.status === 'Pending' ? __('Start Import') : __('Retry'); frm.page.set_primary_action(label, () => frm.events.start_import(frm)); @@ -74,30 +88,40 @@ frappe.ui.form.on('Data Import Beta', { frm.page.set_primary_action(__('Save'), () => frm.save()); } } - frm.page.set_indicator( - __(frm.doc.status), - frm.doc.status === 'Success' ? 'green' : 'grey' - ); }, - - show_success_message(frm) { + show_import_status(frm) { let import_log = JSON.parse(frm.doc.import_log || '[]'); let successful_records = import_log.filter(log => log.success); - let link = ` - ${__('{0} List', [frm.doc.reference_doctype])} - `; - let message_args = [successful_records.length, link]; + let failed_records = import_log.filter(log => !log.success); + if (successful_records.length === 0) return; + let message; - if (frm.doc.import_type === 'Insert New Records') { - message = - successful_records.length > 1 - ? __('Successfully imported {0} records. Go to {1}', message_args) - : __('Successfully imported {0} record. Go to {1}', message_args); + if (failed_records.length === 0) { + let message_args = [successful_records.length]; + if (frm.doc.import_type === 'Insert New Records') { + message = + successful_records.length > 1 + ? __('Successfully imported {0} records.', message_args) + : __('Successfully imported {0} record.', message_args); + } else { + message = + successful_records.length > 1 + ? __('Successfully updated {0} records.', message_args) + : __('Successfully updated {0} record.', message_args); + } } else { - message = - successful_records.length > 1 - ? __('Successfully updated {0} records. Go to {1}', message_args) - : __('Successfully updated {0} record. Go to {1}', message_args); + let message_args = [successful_records.length, import_log.length]; + if (frm.doc.import_type === 'Insert New Records') { + message = + successful_records.length > 1 + ? __('Successfully imported {0} records out of {1}.', message_args) + : __('Successfully imported {0} record out of {1}.', message_args); + } else { + message = + successful_records.length > 1 + ? __('Successfully updated {0} records out of {1}.', message_args) + : __('Successfully updated {0} record out of {1}.', message_args); + } } frm.dashboard.set_headline(message); }, @@ -196,21 +220,17 @@ frappe.ui.form.on('Data Import Beta', { frm.set_value('template_options', JSON.stringify(template_options)); frm.save().then(() => frm.trigger('import_file')); }, - - export_errored_rows() { - open_url_post('/api/method/frappe.core.doctype.data_import_beta.data_import_beta.download_errored_template', { - data_import_name: frm.doc.name - }); - }, - - show_warnings() { - frm.scroll_to_field('import_warnings'); - } } }); }); }, + export_errored_rows(frm) { + open_url_post('/api/method/frappe.core.doctype.data_import_beta.data_import_beta.download_errored_template', { + data_import_name: frm.doc.name + }); + }, + show_import_warnings(frm, preview_data) { let warnings = JSON.parse(frm.doc.template_warnings || '[]'); warnings = warnings.concat(preview_data.warnings || []); @@ -299,13 +319,13 @@ frappe.ui.form.on('Data Import Beta', { .map(JSON.parse) .map(m => { let title = m.title ? `${m.title}` : ''; - let message = m.message ? `

    ${m.message}

    ` : ''; + let message = m.message ? `
    ${m.message}
    ` : ''; return title + message; }) .join(''); let id = frappe.dom.get_unique_id(); html = `${messages} -
    @@ -314,9 +334,16 @@ frappe.ui.form.on('Data Import Beta', {
    `; } + let indicator_color = log.success ? 'green' : 'red'; + let title = log.success ? __('Success') : __('Failure'); return ` ${log.row_indexes.join(', ')} - ${html} + +
    ${title}
    + + + ${html} + `; }) .join(''); @@ -324,8 +351,9 @@ frappe.ui.form.on('Data Import Beta', { frm.get_field('import_log_preview').$wrapper.html(` - - + + + ${rows}
    ${__('Row Number')}${__('Message')}${__('Row Number')}${__('Status')}${__('Message')}
    diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.py b/frappe/core/doctype/data_import_beta/data_import_beta.py index e169ee06ac..705013d9c5 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.py +++ b/frappe/core/doctype/data_import_beta/data_import_beta.py @@ -34,7 +34,9 @@ class DataImportBeta(Document): def start_import(self): if frappe.utils.scheduler.is_scheduler_inactive(): - frappe.throw(_("Scheduler is inactive. Cannot import data."), title=_("Scheduler Inactive")) + frappe.throw( + _("Scheduler is inactive. Cannot import data."), title=_("Scheduler Inactive") + ) enqueued_jobs = [d.get("job_name") for d in get_info()] @@ -46,37 +48,15 @@ class DataImportBeta(Document): event="data_import", job_name=self.name, data_import=self.name, - now=True + now=True, ) - def get_importer(self): - return Importer(self.reference_doctype, data_import=self) - - def create_missing_link_values(self, missing_link_values): - docs = [] - for d in missing_link_values: - d = frappe._dict(d) - if not d.has_one_mandatory_field: - continue - - doctype = d.doctype - values = d.missing_values - meta = frappe.get_meta(doctype) - # find the autoname field - if meta.autoname and meta.autoname.startswith("field:"): - autoname_field = meta.autoname[len("field:") :] - else: - autoname_field = "name" - - for value in values: - new_doc = frappe.new_doc(doctype) - new_doc.set(autoname_field, value) - docs.append(new_doc.insert()) - return docs - def export_errored_rows(self): return self.get_importer().export_errored_rows() + def get_importer(self): + return Importer(self.reference_doctype, data_import=self) + def start_import(data_import): """This method runs in background job""" diff --git a/frappe/public/js/frappe/data_import/import_preview.js b/frappe/public/js/frappe/data_import/import_preview.js index fd512172db..89efb2c69e 100644 --- a/frappe/public/js/frappe/data_import/import_preview.js +++ b/frappe/public/js/frappe/data_import/import_preview.js @@ -27,8 +27,6 @@ frappe.data_import.ImportPreview = class ImportPreview { } refresh() { - this.header_row = this.preview_data.header_row; - this.fields = this.preview_data.fields; this.data = this.preview_data.data; this.make_wrapper(); this.prepare_columns(); @@ -57,62 +55,52 @@ frappe.data_import.ImportPreview = class ImportPreview { } prepare_columns() { - this.columns = this.fields.map((df, i) => { + this.columns = this.preview_data.columns.map((col, i) => { + let df = col.df; let column_width = 120; - let header_row_index = i - 1; - if (df.skip_import) { - let is_sr = df.label === 'Sr. No'; + if (col.header_title === 'Sr. No') { + return { + id: 'srno', + name: 'Sr. No', + content: 'Sr. No', + editable: false, + focusable: false, + align: 'left', + width: 60 + } + } + + if (col.skip_import) { let show_warnings_button = ``; - if (!df.parent) { + if (!col.df) { // increase column width for unidentified columns column_width += 50 } - let column_title = is_sr - ? df.label - : ` - ${df.header_title || `${__('Untitled Column')}`} - ${!df.parent ? show_warnings_button : ''} - `; + let column_title = ` + ${col.header_title || `${__('Untitled Column')}`} + ${!col.df ? show_warnings_button : ''} + `; return { id: frappe.utils.get_random(6), - name: df.label, + name: col.header_title || df.label, content: column_title, skip_import: true, editable: false, focusable: false, align: 'left', - header_row_index, - width: is_sr ? 60 : column_width, - format: (value, row, column, data) => { - let html = `
    ${value}
    `; - if (is_sr && this.is_row_imported(row)) { - html = ` -
    ${SVG_ICONS['checkbox-circle-line'] + - html}
    - `; - } - return html; - } + width: column_width, + format: value => `
    ${value}
    ` }; } - let column_title = df.label; - if (this.doctype !== df.parent) { - column_title = `${df.label} (${df.parent})`; - } - let meta = frappe.get_meta(this.doctype); - if (meta.autoname === `field:${df.fieldname}`) { - column_title = `ID (${df.label})`; - } return { id: df.fieldname, - name: column_title, - content: `${df.header_title || df.label}`, + name: col.header_title, + content: `${col.header_title || df.label}`, df: df, editable: false, align: 'left', - header_row_index, width: column_width }; }); @@ -215,11 +203,11 @@ frappe.data_import.ImportPreview = class ImportPreview { } export_errored_rows() { - this.events.export_errored_rows(); + this.frm.trigger('export_errored_rows'); } show_warnings() { - this.events.show_warnings(); + this.frm.scroll_to_field('import_warnings'); } show_column_warning(_, $target) { @@ -234,11 +222,12 @@ frappe.data_import.ImportPreview = class ImportPreview { doctype: this.doctype }); let changed = []; - let fields = this.fields.map((df, i) => { - if (df.label === 'Sr. No') return []; + let fields = this.preview_data.columns.map((col, i) => { + let df = col.df; + if (col.header_title === 'Sr. No') return []; let fieldname; - if (df.skip_import) { + if (!df) { fieldname = null; } else { fieldname = df.parent === this.doctype @@ -249,7 +238,7 @@ frappe.data_import.ImportPreview = class ImportPreview { { label: '', fieldtype: 'Data', - default: df.header_title, + default: col.header_title, fieldname: `Column ${i}`, read_only: 1 }, diff --git a/frappe/public/js/frappe/form/dashboard.js b/frappe/public/js/frappe/form/dashboard.js index 3e9dacbd05..153bbadc07 100644 --- a/frappe/public/js/frappe/form/dashboard.js +++ b/frappe/public/js/frappe/form/dashboard.js @@ -92,11 +92,14 @@ frappe.ui.form.Dashboard = Class.extend({ show_progress: function(title, percent, message) { this._progress_map = this._progress_map || {}; - if (!this._progress_map[title]) { - const progress_chart = this.add_progress(title, percent, message); + let progress_chart = this._progress_map[title]; + // create a new progress chart if it doesnt exist + // or the previous one got detached from the DOM + if (!progress_chart || progress_chart.parent().length == 0) { + progress_chart = this.add_progress(title, percent, message); this._progress_map[title] = progress_chart; } - let progress_chart = this._progress_map[title]; + if (!$.isArray(percent)) { percent = this.format_percent(title, percent); } From 9f9a1ecba388bf973d5a605083e6021aa2ff0aa2 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sun, 29 Sep 2019 19:20:41 +0530 Subject: [PATCH 188/274] fix: Run in background if not in developer_mode or not in_test --- frappe/core/doctype/data_import_beta/data_import_beta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.py b/frappe/core/doctype/data_import_beta/data_import_beta.py index 705013d9c5..0edbdaa766 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.py +++ b/frappe/core/doctype/data_import_beta/data_import_beta.py @@ -48,7 +48,7 @@ class DataImportBeta(Document): event="data_import", job_name=self.name, data_import=self.name, - now=True, + now=frappe.conf.developer_mode or frappe.flags.in_test, ) def export_errored_rows(self): From c917dda03ae18053842fbedad3595c627cba36d3 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sun, 29 Sep 2019 19:29:54 +0530 Subject: [PATCH 189/274] fix: Skip invalid link values --- frappe/core/doctype/data_import/importer_new.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index ca56dce16a..9612cc1ffb 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -686,7 +686,7 @@ class Importer: for fieldname, value in doc.items(): meta = frappe.get_meta(doctype) df = meta.get_field(fieldname) - if df.fieldtype == "Link": + if df.fieldtype == "Link" and value not in INVALID_VALUES: link_values.append([df.options, value]) elif df.fieldtype in table_fields: for row in value: @@ -696,7 +696,7 @@ class Importer: for link_doctype, link_value in link_values: d = self.missing_link_values.get(link_doctype) - if d.one_mandatory and link_value in d.missing_values: + if d and d.one_mandatory and link_value in d.missing_values: meta = frappe.get_meta(link_doctype) # find the autoname field if meta.autoname and meta.autoname.startswith("field:"): From 63c4991ef938f9df384424102ff294664bf65234 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sun, 29 Sep 2019 19:30:06 +0530 Subject: [PATCH 190/274] fix: Refresh import preview on form change --- frappe/core/doctype/data_import_beta/data_import_beta.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index f2ff1eb11b..ca8b472df5 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -198,7 +198,7 @@ frappe.ui.form.on('Data Import Beta', { show_import_preview(frm, preview_data) { let import_log = JSON.parse(frm.doc.import_log || '[]'); - if (frm.import_preview) { + if (frm.import_preview && frm.import_preview.doctype === frm.doc.reference_doctype) { frm.import_preview.preview_data = preview_data; frm.import_preview.import_log = import_log; frm.import_preview.refresh(); From 928ce50206b184ee6e63967f9bf7981c2c6c0156 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Sun, 29 Sep 2019 22:38:48 +0530 Subject: [PATCH 191/274] style: fix errors reported by codacy --- .../core/doctype/data_import/exporter_new.py | 2 +- .../core/doctype/data_import/importer_new.py | 33 ++++++++++--------- .../data_import_beta/data_import_beta.py | 2 +- .../data_import_beta/data_import_beta_list.js | 2 +- .../js/frappe/data_import/data_exporter.js | 2 +- .../js/frappe/data_import/import_preview.js | 13 ++------ .../public/js/frappe/form/footer/timeline.js | 12 +++---- 7 files changed, 29 insertions(+), 37 deletions(-) diff --git a/frappe/core/doctype/data_import/exporter_new.py b/frappe/core/doctype/data_import/exporter_new.py index fec813610d..ca451f6704 100644 --- a/frappe/core/doctype/data_import/exporter_new.py +++ b/frappe/core/doctype/data_import/exporter_new.py @@ -3,7 +3,6 @@ # MIT License. See license.txt import frappe -from frappe import _ from frappe.model import display_fieldtypes, no_value_fields, table_fields from frappe.utils.csvutils import build_csv_response from frappe.utils.xlsxutils import build_xlsx_response @@ -209,6 +208,7 @@ class Exporter: return data + # pylint: disable=R0201 def remove_empty_rows(self, data): return [row for row in data if any(v not in INVALID_VALUES for v in row)] diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 9612cc1ffb..5ed89bddc8 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -3,26 +3,23 @@ # MIT License. See license.txt import io -import csv import json import timeit import frappe from datetime import datetime from frappe import _ -from frappe.core.doctype.docfield.docfield import DocField -from frappe.utils import cint, flt, DATE_FORMAT, DATETIME_FORMAT +from frappe.utils import cint, flt from frappe.utils.csvutils import read_csv_content from frappe.utils.xlsxutils import ( read_xlsx_file_from_attached_file, read_xls_file_from_attached_file, ) -from frappe.exceptions import ValidationError, MandatoryError -from frappe.model import display_fieldtypes, no_value_fields, table_fields +from frappe.model import no_value_fields, table_fields INVALID_VALUES = ["", None] MAX_ROWS_IN_PREVIEW = 10 - +# pylint: disable=R0201 class Importer: def __init__(self, doctype, data_import=None, file_path=None, content=None): self.doctype = doctype @@ -355,9 +352,10 @@ class Importer: if column_index == -1: self._guessed_date_formats[fieldname] = None - column_values = map(lambda x: x[column_index], self.data[:PARSE_ROW_COUNT]) - column_values = filter(lambda x: bool(x), column_values) - date_formats = list(map(lambda x: guess_date_format(x), column_values)) + date_values = [ + row[column_index] for row in self.data[:PARSE_ROW_COUNT] if row[column_index] + ] + date_formats = [guess_date_format(d) for d in date_values] if not date_formats: return max_occurred_date_format = max(set(date_formats), key=date_formats.count) @@ -461,7 +459,7 @@ class Importer: # commit after every successful import frappe.db.commit() - except Exception as e: + except Exception: import_log.append( frappe._dict( success=False, @@ -505,7 +503,6 @@ class Importer: Returns the doc, rows, and data without the rows. """ doc = {} - mandatory_fields = [] doctypes = set([col.df.parent for col in self.columns if col.df and col.df.parent]) # first row is included by default @@ -572,10 +569,10 @@ class Importer: # new_doc returns a dict with default values set doc = frappe.new_doc(doctype, as_dict=True) # remove standard fields and __islocal - for key in frappe.model.default_fields + ('__islocal',): + for key in frappe.model.default_fields + ("__islocal",): doc.pop(key, None) - for index, (df, value) in enumerate(zip(docfields, values)): + for df, value in zip(docfields, values): if value in INVALID_VALUES: value = None @@ -609,7 +606,7 @@ class Importer: ) parsed_docs = {} - for row_index, row in enumerate(rows): + for row in rows: for doctype in doctypes: if doctype == self.doctype and parsed_docs.get(doctype): # if parent doc is already parsed from the first row @@ -839,7 +836,9 @@ def guess_date_format(date_string): for f in DATE_FORMATS: try: - parsed_date = datetime.strptime(_date, f) + # if date is parsed without any exception + # capture the date format + datetime.strptime(_date, f) date_format = f break except ValueError: @@ -848,7 +847,9 @@ def guess_date_format(date_string): if _time: for f in TIME_FORMATS: try: - parsed_time = datetime.strptime(_time, f) + # if time is parsed without any exception + # capture the time format + datetime.strptime(_time, f) time_format = f break except ValueError: diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.py b/frappe/core/doctype/data_import_beta/data_import_beta.py index 0edbdaa766..bbe89bdef8 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.py +++ b/frappe/core/doctype/data_import_beta/data_import_beta.py @@ -23,7 +23,7 @@ class DataImportBeta(Document): if self.import_file: # validate template - i = self.get_importer() + self.get_importer() def get_preview_from_template(self): if not self.import_file: diff --git a/frappe/core/doctype/data_import_beta/data_import_beta_list.js b/frappe/core/doctype/data_import_beta/data_import_beta_list.js index b7674b432d..d36a8024ad 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta_list.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta_list.js @@ -4,7 +4,7 @@ frappe.listview_settings['Data Import Beta'] = { "Pending": "orange", "Partial Success": "orange", "Success": "green", - } + }; return [__(doc.status), colors[doc.status], "status,=," + doc.status]; }, formatters: { diff --git a/frappe/public/js/frappe/data_import/data_exporter.js b/frappe/public/js/frappe/data_import/data_exporter.js index 39055aed7c..66c9929c59 100644 --- a/frappe/public/js/frappe/data_import/data_exporter.js +++ b/frappe/public/js/frappe/data_import/data_exporter.js @@ -130,7 +130,7 @@ frappe.data_import.DataExporter = class DataExporter { this.filter_group = new frappe.ui.FilterGroup({ parent: this.dialog.get_field('filter_area').$wrapper, doctype: this.doctype, - on_change: e => { + on_change: () => { this.update_record_count_message(); } }); diff --git a/frappe/public/js/frappe/data_import/import_preview.js b/frappe/public/js/frappe/data_import/import_preview.js index 89efb2c69e..f068ce857c 100644 --- a/frappe/public/js/frappe/data_import/import_preview.js +++ b/frappe/public/js/frappe/data_import/import_preview.js @@ -3,15 +3,6 @@ import ColumnPickerFields from './column_picker_fields'; frappe.provide('frappe.data_import'); -const SVG_ICONS = { - 'checkbox-circle-line': ` - - - - - ` -}; - frappe.data_import.ImportPreview = class ImportPreview { constructor({ wrapper, doctype, preview_data, frm, import_log, events = {} }) { this.wrapper = wrapper; @@ -67,7 +58,7 @@ frappe.data_import.ImportPreview = class ImportPreview { focusable: false, align: 'left', width: 60 - } + }; } if (col.skip_import) { @@ -75,7 +66,7 @@ frappe.data_import.ImportPreview = class ImportPreview { `; if (!col.df) { // increase column width for unidentified columns - column_width += 50 + column_width += 50; } let column_title = ` ${col.header_title || `${__('Untitled Column')}`} diff --git a/frappe/public/js/frappe/form/footer/timeline.js b/frappe/public/js/frappe/form/footer/timeline.js index 96481136b4..24f60c7e2c 100644 --- a/frappe/public/js/frappe/form/footer/timeline.js +++ b/frappe/public/js/frappe/form/footer/timeline.js @@ -579,11 +579,11 @@ frappe.ui.form.Timeline = class Timeline { ); // value changed in parent - if(data.changed && data.changed.length) { + if (data.changed && data.changed.length) { var parts = []; data.changed.every(function(p) { - if(p[0]==='docstatus') { - if(p[2]==1) { + if (p[0]==='docstatus') { + if (p[2]==1) { let message = data.data_import ? __('submitted this document {0}', [data_import_link]) : __('submitted this document'); @@ -623,7 +623,7 @@ frappe.ui.form.Timeline = class Timeline { } // value changed in table field - if(data.row_changed && data.row_changed.length) { + if (data.row_changed && data.row_changed.length) { var parts = [], count = 0; data.row_changed.every(function(row) { row[3].every(function(p) { @@ -652,9 +652,9 @@ frappe.ui.form.Timeline = class Timeline { if(parts.length) { let message; if (data.data_import) { - message = __("changed values for {0} {1}", [parts.join(', '), data_import_link]) + message = __("changed values for {0} {1}", [parts.join(', '), data_import_link]); } else { - message = __("changed values for {0}", [parts.join(', ')]) + message = __("changed values for {0}", [parts.join(', ')]); } out.push(me.get_version_comment(version, message)); } From da8ad36cde89997bb1815aaccd5d9f91afc81dd4 Mon Sep 17 00:00:00 2001 From: prssanna Date: Mon, 30 Sep 2019 11:13:07 +0530 Subject: [PATCH 192/274] fix: call leaderboard methods directly from config --- frappe/desk/leaderboard.py | 1 + frappe/desk/page/leaderboard/leaderboard.js | 82 ++++++++++++--------- frappe/desk/page/leaderboard/leaderboard.py | 29 +------- 3 files changed, 50 insertions(+), 62 deletions(-) diff --git a/frappe/desk/leaderboard.py b/frappe/desk/leaderboard.py index 4a87b6a5d1..61c7b8c7a8 100644 --- a/frappe/desk/leaderboard.py +++ b/frappe/desk/leaderboard.py @@ -13,6 +13,7 @@ def get_leaderboards(): } return leaderboards +@frappe.whitelist() def get_energy_point_leaderboard(from_date, company = None, field = None, limit = None): energy_point_users = frappe.db.get_all('Energy Point Log', fields = ['user as name', 'sum(points) as value'], diff --git a/frappe/desk/page/leaderboard/leaderboard.js b/frappe/desk/page/leaderboard/leaderboard.js index d5c5f12150..2d70bc1c4e 100644 --- a/frappe/desk/page/leaderboard/leaderboard.js +++ b/frappe/desk/page/leaderboard/leaderboard.js @@ -203,41 +203,38 @@ class Leaderboard { if (!this.options.selected_company) { frappe.throw(__("Please select Company")); } - - frappe.call({ - method: "frappe.desk.page.leaderboard.leaderboard.get_leaderboards", - args: { - leaderboard_config: this.leaderboard_config, - doctype: this.options.selected_doctype, - timespan: this.options.selected_timespan, - company: this.options.selected_company, - field: this.options.selected_filter_item, - limit: this.leaderboard_limit, - }, - callback: (r) => { - let results = r.message || []; - - let graph_items = results.slice(0, 10); - - this.$graph_area.show().empty(); - let args = { - data: { - datasets: [ - { - values: graph_items.map(d => d.value) - } - ], - labels: graph_items.map(d => d.name) - }, - colors: ["light-green"], - format_tooltip_x: d => d[this.options.selected_filter_item], - type: "bar", - height: 140 - }; - new frappe.Chart(".leaderboard-graph", args); - - notify(this, r); + frappe.call( + this.leaderboard_config[this.options.selected_doctype].method, + { + 'from_date': this.get_from_date(), + 'timespan': this.options.selected_timespan, + 'company': this.options.selected_company, + 'field': this.options.selected_filter_item, + 'limit': this.leaderboard_limit, } + ).then(r => { + let results = r.message || []; + + let graph_items = results.slice(0, 10); + + this.$graph_area.show().empty(); + let args = { + data: { + datasets: [ + { + values: graph_items.map(d => d.value) + } + ], + labels: graph_items.map(d => d.name) + }, + colors: ["light-green"], + format_tooltip_x: d => d[this.options.selected_filter_item], + type: "bar", + height: 140 + }; + new frappe.Chart(".leaderboard-graph", args); + + notify(this, r); }); } @@ -359,4 +356,21 @@ class Leaderboard { ${ __(item) } `); } + + get_from_date() { + let timespan = this.options.selected_timespan.toLowerCase(); + let current_date = frappe.datetime.now_date(); + let date = ''; + if (timespan === "month") { + date = frappe.datetime.add_months(current_date, -1); + } else if (timespan === "quarter") { + date = frappe.datetime.add_months(current_date, -3); + } else if (timespan === "year") { + date = frappe.datetime.add_months(current_date, -12); + } else if (timespan === "week") { + date = frappe.datetime.add_days(current_date, -7); + } + return date; + } + } diff --git a/frappe/desk/page/leaderboard/leaderboard.py b/frappe/desk/page/leaderboard/leaderboard.py index ad8b31ac4a..7bb078f14e 100644 --- a/frappe/desk/page/leaderboard/leaderboard.py +++ b/frappe/desk/page/leaderboard/leaderboard.py @@ -13,31 +13,4 @@ def get_leaderboard_config(): for hook in leaderboard_hooks: leaderboard_config.update(frappe.get_attr(hook)()) - return leaderboard_config - -@frappe.whitelist() -def get_leaderboards(leaderboard_config, doctype, timespan, company, field, limit): - limit = frappe.parse_json(limit) - leaderboard_config = frappe.parse_json(leaderboard_config) - from_date = get_from_date(timespan) - method = leaderboard_config[doctype]['method'] - records = frappe.get_attr(method)(from_date, company, field, limit) - - return records - -def get_from_date(selected_timespan): - """return string for ex:this week as date:string""" - days = months = years = 0 - if "month" == selected_timespan.lower(): - months = -1 - elif "quarter" == selected_timespan.lower(): - months = -3 - elif "year" == selected_timespan.lower(): - years = -1 - elif "week" == selected_timespan.lower(): - days = -7 - else: - return '' - - return add_to_date(None, years=years, months=months, days=days, - as_string=True, as_datetime=True) \ No newline at end of file + return leaderboard_config \ No newline at end of file From 8e088cb990d67fd5a0b3826a85ae58ef89c44767 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Mon, 30 Sep 2019 11:40:40 +0530 Subject: [PATCH 193/274] fix(minor): count fix --- frappe/core/doctype/user_permission/user_permission.py | 2 +- frappe/desk/listview.py | 2 +- frappe/desk/page/setup_wizard/setup_wizard.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/core/doctype/user_permission/user_permission.py b/frappe/core/doctype/user_permission/user_permission.py index 763fd16c50..49e7fec278 100644 --- a/frappe/core/doctype/user_permission/user_permission.py +++ b/frappe/core/doctype/user_permission/user_permission.py @@ -66,7 +66,7 @@ def get_user_permissions(user=None): if not user: user = frappe.session.user - if user == "Administrator": + if not user or user == "Administrator": return {} cached_user_permissions = frappe.cache().hget("user_permissions", user) diff --git a/frappe/desk/listview.py b/frappe/desk/listview.py index f4927dd098..3dc795191a 100644 --- a/frappe/desk/listview.py +++ b/frappe/desk/listview.py @@ -49,7 +49,7 @@ def get_group_by_count(doctype, current_filters, field): return frappe.db.get_list(doctype, filters=current_filters, group_by=field, - fields=['count(*) as count', field + ' as name'], + fields=['count(*) as count', '`{}` as name'.format(field)], order_by='count desc', limit=50, ) diff --git a/frappe/desk/page/setup_wizard/setup_wizard.py b/frappe/desk/page/setup_wizard/setup_wizard.py index a18d4df9c4..a13b6c7a8d 100755 --- a/frappe/desk/page/setup_wizard/setup_wizard.py +++ b/frappe/desk/page/setup_wizard/setup_wizard.py @@ -54,7 +54,7 @@ def setup_complete(args): # Setup complete: do not throw an exception, let the user continue to desk if cint(frappe.db.get_single_value('System Settings', 'setup_complete')): - return + return {'status': 'ok'} args = parse_args(args) From a38aca52c0df8854619729191201f5d7c7867b12 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 30 Sep 2019 12:45:54 +0530 Subject: [PATCH 194/274] fix: Freeze Start Import button on click --- frappe/core/doctype/data_import_beta/data_import_beta.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/frappe/core/doctype/data_import_beta/data_import_beta.js b/frappe/core/doctype/data_import_beta/data_import_beta.js index ca8b472df5..2eb0bdc498 100644 --- a/frappe/core/doctype/data_import_beta/data_import_beta.js +++ b/frappe/core/doctype/data_import_beta/data_import_beta.js @@ -127,11 +127,15 @@ frappe.ui.form.on('Data Import Beta', { }, start_import(frm) { - frm.save().then(() => frm.call('start_import')); + frm.call({ + doc: frm.doc, + method: 'start_import', + btn: frm.page.btn_primary + }); }, download_template(frm) { - if (frm.data_exporter) { + if (frm.data_exporter && frm.data_exporter.doctype === frm.doc.reference_doctype) { frm.data_exporter.dialog.show(); set_export_records(); } else { From 258fea55f000d8c2d31cf51e872835dd7e8389eb Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Mon, 30 Sep 2019 13:07:50 +0530 Subject: [PATCH 195/274] style: Fix Codacy --- frappe/desk/page/leaderboard/leaderboard.js | 6 +++--- frappe/desk/page/leaderboard/leaderboard.py | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/frappe/desk/page/leaderboard/leaderboard.js b/frappe/desk/page/leaderboard/leaderboard.js index 2d70bc1c4e..3e4c36add0 100644 --- a/frappe/desk/page/leaderboard/leaderboard.js +++ b/frappe/desk/page/leaderboard/leaderboard.js @@ -30,7 +30,7 @@ class Leaderboard { this.filters = {}; this.leaderboard_limit = 20; - frappe.xcall("frappe.desk.page.leaderboard.leaderboard.get_leaderboard_config").then( config => { + frappe.xcall("frappe.desk.page.leaderboard.leaderboard.get_leaderboard_config").then(config => { this.leaderboard_config = config; for (let doctype in this.leaderboard_config) { this.doctypes.push(doctype); @@ -331,11 +331,11 @@ class Leaderboard { })); const link = `#Form/${this.options.selected_doctype}/${item.name}`; - const name_html = item.formatted_name ? + const name_html = item.formatted_name ? `${item.formatted_name}` : ` ${item.name} `; const html = - `
    + `
    ${index}
    diff --git a/frappe/desk/page/leaderboard/leaderboard.py b/frappe/desk/page/leaderboard/leaderboard.py index 7bb078f14e..819e7fe9d1 100644 --- a/frappe/desk/page/leaderboard/leaderboard.py +++ b/frappe/desk/page/leaderboard/leaderboard.py @@ -3,8 +3,6 @@ from __future__ import unicode_literals, print_function import frappe -from frappe.utils import add_to_date - @frappe.whitelist() def get_leaderboard_config(): From b4e616c0defd0bcc45501866a85f642028163f67 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Mon, 30 Sep 2019 13:21:03 +0530 Subject: [PATCH 196/274] fix: Rename "Energy Point Log" with "User" Because it's user's leaderboard --- frappe/desk/leaderboard.py | 2 +- frappe/desk/page/user_profile/user_profile_sidebar.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/desk/leaderboard.py b/frappe/desk/leaderboard.py index 61c7b8c7a8..129b9015dd 100644 --- a/frappe/desk/leaderboard.py +++ b/frappe/desk/leaderboard.py @@ -5,7 +5,7 @@ from frappe.utils import get_fullname def get_leaderboards(): leaderboards = { - 'Energy Point Log': { + 'User': { 'fields': ['points'], 'method': 'frappe.desk.leaderboard.get_energy_point_leaderboard', 'company_disabled': 1 diff --git a/frappe/desk/page/user_profile/user_profile_sidebar.html b/frappe/desk/page/user_profile/user_profile_sidebar.html index 570ef323c2..77dae5edd0 100644 --- a/frappe/desk/page/user_profile/user_profile_sidebar.html +++ b/frappe/desk/page/user_profile/user_profile_sidebar.html @@ -18,6 +18,6 @@
    \ No newline at end of file From 0f2f907922147e92d61f757928d74a4c48b0b357 Mon Sep 17 00:00:00 2001 From: Rucha Mahabal Date: Mon, 30 Sep 2019 13:21:26 +0530 Subject: [PATCH 197/274] fix: webhook data --- frappe/integrations/doctype/webhook/webhook.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/integrations/doctype/webhook/webhook.js b/frappe/integrations/doctype/webhook/webhook.js index b6a758d271..74ffb1a7eb 100644 --- a/frappe/integrations/doctype/webhook/webhook.js +++ b/frappe/integrations/doctype/webhook/webhook.js @@ -8,11 +8,11 @@ frappe.webhook = { // get doctype fields let fields = $.map(frappe.get_doc("DocType", frm.doc.webhook_doctype).fields, (d) => { if (frappe.model.no_value_type.includes(d.fieldtype) || frappe.model.table_fields.includes(d.fieldtype)) { - return { label: d.label + ' (' + d.fieldtype + ')', value: d.fieldname }; + return null; } else if (d.fieldtype === 'Currency' || d.fieldtype === 'Float') { return { label: d.label, value: d.fieldname }; } else { - return null; + return { label: d.label + ' (' + d.fieldtype + ')', value: d.fieldname }; } }); From d87f60b1773cd79c952b20ac9cd9359c8c62f4ef Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 30 Sep 2019 13:36:31 +0530 Subject: [PATCH 198/274] fix: Child row parsing logic if the row is blank, it's a child row doc if the row has same values as parent row, it's a child row doc if any of those conditions dont match, it's the next doc --- .../core/doctype/data_import/importer_new.py | 31 ++++++++++++------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 5ed89bddc8..0e18888195 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -512,19 +512,28 @@ class Importer: # if there are child doctypes, find the subsequent rows if len(doctypes) > 1: # subsequent rows either dont have any parent value set - # or have the same value as the parent + # or have the same value as the parent row # we include a row if either of conditions match - parent_column_index = self.get_first_parent_column_index() - parent_value = first_row[parent_column_index] + parent_column_indexes = [ + col.index + for col in self.columns + if not col.skip_import and col.df and col.df.parent == self.doctype + ] + parent_row_values = [first_row[i] for i in parent_column_indexes] + data_without_first_row = data[1:] - for d in data_without_first_row: - value = d[parent_column_index] - # if value is blank then it's a child row - # if value is same as parent value it's a child row - # if value is different than the parent value, it's the next doc - if value not in INVALID_VALUES and value != parent_value: - break - rows.append(d) + for row in data_without_first_row: + row_values = [row[i] for i in parent_column_indexes] + # if the row is blank, it's a child row doc + if all([v in INVALID_VALUES for v in row_values]): + rows.append(row) + continue + # if the row has same values as parent row, it's a child row doc + if row_values == parent_row_values: + rows.append(row) + continue + # if any of those conditions dont match, it's the next doc + break def get_column_indexes(doctype): return [ From 660a1d43d2a97c64efd802ee24f7487a76321cc0 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 30 Sep 2019 13:38:41 +0530 Subject: [PATCH 199/274] fix: Commonify autoname_field code --- .../core/doctype/data_import/importer_new.py | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 0e18888195..8f45e72924 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -265,15 +265,12 @@ class Importer: # if autoname is based on field # add an entry for "ID (Autoname Field)" - autoname = self.meta.autoname - if autoname and autoname.startswith("field:"): - fieldname = autoname[len("field:") :] - autoname_field = self.meta.get_field(fieldname) - if autoname_field: - out["ID ({})".format(autoname_field.label)] = autoname_field - # ID field should also map to the autoname field - out["ID"] = autoname_field - out["name"] = autoname_field + autoname_field = self.get_autoname_field(self.doctype) + if autoname_field: + out["ID ({})".format(autoname_field.label)] = autoname_field + # ID field should also map to the autoname field + out["ID"] = autoname_field + out["name"] = autoname_field return out @@ -692,6 +689,8 @@ class Importer: for fieldname, value in doc.items(): meta = frappe.get_meta(doctype) df = meta.get_field(fieldname) + if not df: + continue if df.fieldtype == "Link" and value not in INVALID_VALUES: link_values.append([df.options, value]) elif df.fieldtype in table_fields: @@ -705,12 +704,10 @@ class Importer: if d and d.one_mandatory and link_value in d.missing_values: meta = frappe.get_meta(link_doctype) # find the autoname field - if meta.autoname and meta.autoname.startswith("field:"): - autoname_field = meta.autoname[len("field:") :] - else: - autoname_field = "name" + autoname_field = self.get_autoname_field(link_doctype) + name_field = autoname_field.fieldname if autoname_field else "name" new_doc = frappe.new_doc(link_doctype) - new_doc.set(autoname_field, link_value) + new_doc.set(name_field, link_value) new_doc.insert() d.missing_values.remove(link_value) @@ -773,12 +770,9 @@ class Importer: ) def get_id_fieldname(self): - autoname = self.meta.autoname - if autoname and autoname.startswith("field:"): - fieldname = autoname[len("field:") :] - autoname_field = self.meta.get_field(fieldname) - if autoname_field: - return autoname_field.fieldname + autoname_field = self.get_autoname_field(self.doctype) + if autoname_field: + return autoname_field.fieldname return "name" def get_eta(self, current, total, processing_time): @@ -797,6 +791,12 @@ class Importer: mandatory_fields_count += 1 return mandatory_fields_count == 1 + def get_autoname_field(self, doctype): + meta = frappe.get_meta(doctype) + if meta.autoname and meta.autoname.startswith("field:"): + fieldname = meta.autoname[len("field:") :] + return meta.get_field(fieldname) + DATE_FORMATS = [ r"%d-%m-%Y", From b382be67d53305638fd483e9df2ae52bd5a9d83b Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 30 Sep 2019 13:39:43 +0530 Subject: [PATCH 200/274] feat: data-import command Use the new Data Import from the command line ``` bench --site sitename data-import --doctype Item --file /path/to/csvfile.csv ``` --- frappe/commands/utils.py | 28 ++++ .../core/doctype/data_import/importer_new.py | 139 +++++++++++++----- 2 files changed, 133 insertions(+), 34 deletions(-) diff --git a/frappe/commands/utils.py b/frappe/commands/utils.py index b0f70132c1..9a408430e7 100644 --- a/frappe/commands/utils.py +++ b/frappe/commands/utils.py @@ -293,6 +293,33 @@ def import_csv(context, path, only_insert=False, submit_after_import=False, igno frappe.destroy() + +@click.command('data-import') +@click.option('--file', 'file_path', type=click.Path(), required=True, help="Path to import file (.csv, .xlsx)") +@click.option('--doctype', type=str, required=True) +@click.option('--type', 'import_type', type=click.Choice(['Insert', 'Update'], case_sensitive=False), default='Insert', help="Insert New Records or Update Existing Records") +@click.option('--submit-after-import', default=False, is_flag=True, help='Submit document after importing it') +@click.option('--mute-emails', default=True, is_flag=True, help='Mute emails during import') +@pass_context +def data_import(context, file_path, doctype, import_type=None, submit_after_import=False, mute_emails=True): + "Import documents in bulk from CSV or XLSX using data import" + from frappe.core.doctype.data_import.importer_new import Importer + site = get_site(context) + + frappe.init(site=site) + frappe.connect() + + data_import = frappe.new_doc('Data Import Beta') + data_import.submit_after_import = submit_after_import + data_import.mute_emails = mute_emails + data_import.import_type = 'Insert New Records' if import_type.lower() == 'insert' else 'Update Existing Records' + + i = Importer(doctype=doctype, file_path=file_path, data_import=data_import, console=True) + i.import_data() + + frappe.destroy() + + @click.command('bulk-rename') @click.argument('doctype') @click.argument('path') @@ -715,6 +742,7 @@ commands = [ export_json, get_version, import_csv, + data_import, import_doc, make_app, mysql, diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 8f45e72924..8828d9b620 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -3,12 +3,13 @@ # MIT License. See license.txt import io +import os import json import timeit import frappe from datetime import datetime from frappe import _ -from frappe.utils import cint, flt +from frappe.utils import cint, flt, update_progress_bar from frappe.utils.csvutils import read_csv_content from frappe.utils.xlsxutils import ( read_xlsx_file_from_attached_file, @@ -21,9 +22,12 @@ MAX_ROWS_IN_PREVIEW = 10 # pylint: disable=R0201 class Importer: - def __init__(self, doctype, data_import=None, file_path=None, content=None): + def __init__( + self, doctype, data_import=None, file_path=None, content=None, console=False + ): self.doctype = doctype self.template_options = frappe._dict({"remap_column": {}}) + self.console = console if data_import: self.data_import = data_import @@ -47,14 +51,15 @@ class Importer: self.parse_data_from_template() def prepare_content(self, file_path, content): - if self.data_import: + if self.data_import and self.data_import.import_file: file_doc = frappe.get_doc("File", {"file_url": self.data_import.import_file}) content = file_doc.get_content() extension = file_doc.file_name.split(".")[1] if file_path: - self.read_file(file_path) - elif content: + content, extension = self.read_file(file_path) + + if content: self.read_content(content, extension) self.validate_template_content() @@ -67,10 +72,7 @@ class Importer: with io.open(file_path, mode="rb") as f: file_content = f.read() - if extn == "csv": - data = read_csv_content(file_content) - self.header_row = data[0] - self.data = data[1:] + return file_content, extn def read_content(self, content, extension): if extension == "csv": @@ -365,7 +367,8 @@ class Importer: frappe.cache().hdel("lang", frappe.session.user) frappe.set_user_lang(frappe.session.user) - self.data_import.db_set("template_warnings", "") + if not self.console: + self.data_import.db_set("template_warnings", "") # set flags frappe.flags.in_import = True @@ -380,10 +383,13 @@ class Importer: # dont import if there are non-ignorable warnings warnings = [w for w in self.warnings if w.get("type") != "info"] if warnings: - self.data_import.db_set("template_warnings", json.dumps(warnings)) - frappe.publish_realtime( - "data_import_refresh", {"data_import": self.data_import.name} - ) + if self.console: + self.print_grouped_warnings(warnings) + else: + self.data_import.db_set("template_warnings", json.dumps(warnings)) + frappe.publish_realtime( + "data_import_refresh", {"data_import": self.data_import.name} + ) return # setup import log @@ -403,8 +409,6 @@ class Importer: imported_rows += log.row_indexes # start import - print("Importing {0} rows...".format(len(self.rows))) - total_payload_count = len(payloads) batch_size = frappe.conf.data_import_batch_size or 1000 @@ -431,7 +435,6 @@ class Importer: continue try: - print("Importing", doc) start = timeit.default_timer() doc = self.process_doc(doc) processing_time = timeit.default_timer() - start @@ -450,6 +453,12 @@ class Importer: "eta": eta, }, ) + if self.console: + update_progress_bar( + "Importing {0} records".format(total_payload_count), + current_index, + total_payload_count, + ) import_log.append( frappe._dict(success=True, docname=doc.name, row_indexes=row_indexes) ) @@ -478,8 +487,11 @@ class Importer: else: status = "Success" - self.data_import.db_set("status", status) - self.data_import.db_set("import_log", json.dumps(import_log)) + if self.console: + self.print_import_log(import_log) + else: + self.data_import.db_set("status", status) + self.data_import.db_set("import_log", json.dumps(import_log)) frappe.flags.in_import = False frappe.flags.mute_emails = False @@ -499,7 +511,6 @@ class Importer: Parses rows that make up a doc. A doc maybe built from a single row or multiple rows. Returns the doc, rows, and data without the rows. """ - doc = {} doctypes = set([col.df.parent for col in self.columns if col.df and col.df.parent]) # first row is included by default @@ -590,9 +601,14 @@ class Importer: return doc def check_mandatory_fields(doctype, doc, row_number): + # check if mandatory fields are set (except table fields) meta = frappe.get_meta(doctype) fields = [ - df for df in meta.fields if df.reqd and doc.get(df.fieldname) in INVALID_VALUES + df + for df in meta.fields + if df.fieldtype not in table_fields + and df.reqd + and doc.get(df.fieldname) in INVALID_VALUES ] if not fields: @@ -633,9 +649,11 @@ class Importer: parsed_docs[doctype] = parsed_docs.get(doctype, []) parsed_docs[doctype].append(doc) + # build the doc with children + doc = {} for doctype, docs in parsed_docs.items(): if doctype == self.doctype: - doc = docs[0] + doc.update(docs[0]) else: table_dfs = self.meta.get( "fields", {"options": doctype, "fieldtype": ["in", table_fields]} @@ -644,19 +662,31 @@ class Importer: table_field = table_dfs[0] doc[table_field.fieldname] = docs - return doc, rows, data[len(rows) :] + # check if there is atleast one row for mandatory table fields + mandatory_table_fields = [ + df + for df in self.meta.fields + if df.fieldtype in table_fields and df.reqd and len(doc.get(df.fieldname, [])) == 0 + ] + if len(mandatory_table_fields) == 1: + self.warnings.append( + { + "row": first_row[0], + "message": _("There should be atleast one row for {0} table").format( + mandatory_table_fields[0].label + ), + } + ) + elif mandatory_table_fields: + fields_string = ", ".join([df.label for df in mandatory_table_fields]) + self.warnings.append( + { + "row": first_row[0], + "message": _("There should be atleast one row for the following tables: {0}").format(fields_string), + } + ) - def get_first_parent_column_index(self): - """ - Returns the first column's index which must be one of the parent columns - """ - # find a parent column - parent_column_index = -1 - for col in self.columns: - if not col.skip_import and col.df and col.df.parent == self.doctype: - parent_column_index = col.index - break - return parent_column_index + return doc, rows, data[len(rows) :] def process_doc(self, doc): import_type = self.data_import.import_type @@ -797,6 +827,47 @@ class Importer: fieldname = meta.autoname[len("field:") :] return meta.get_field(fieldname) + def print_grouped_warnings(self, warnings): + warnings_by_row = {} + other_warnings = [] + for w in warnings: + if w.get("row"): + warnings_by_row.setdefault(w.get("row"), []).append(w) + else: + other_warnings.append(w) + + for row_number, warnings in warnings_by_row.items(): + print("Row {0}".format(row_number)) + for w in warnings: + print(w.get("message")) + + for w in other_warnings: + print(w.get("message")) + + def print_import_log(self, import_log): + failed_records = [l for l in import_log if not l.success] + successful_records = [l for l in import_log if l.success] + + if successful_records: + print( + "Successfully imported {1} records out of {1}".format( + len(successful_records), len(import_log) + ) + ) + + if failed_records: + print("Failed to import {0} records".format(len(failed_records))) + file_name = '{0}_import_on_{1}.txt'.format(self.doctype, frappe.utils.now()) + print('Check {0} for errors'.format(os.path.join('sites', file_name))) + text = "" + for w in failed_records: + text += "Row Indexes: {0}\n".format(str(w.get('row_indexes', []))) + text += "Messages:\n{0}\n".format('\n'.join(w.get('messages', []))) + text += "Traceback:\n{0}\n\n".format(w.get('exception')) + + with open(file_name, 'w') as f: + f.write(text) + DATE_FORMATS = [ r"%d-%m-%Y", From ff1ef65e946c0108c6b6147c7ee3fe991065dc7a Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Mon, 30 Sep 2019 14:33:36 +0530 Subject: [PATCH 201/274] fix: rename filters for contact --- frappe/contacts/address_and_contact.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/contacts/address_and_contact.py b/frappe/contacts/address_and_contact.py index 64d94dab4e..5a004f153b 100644 --- a/frappe/contacts/address_and_contact.py +++ b/frappe/contacts/address_and_contact.py @@ -47,7 +47,8 @@ def load_address_and_contact(doc, key=None): contact["phone_nos"] = frappe.get_list("Contact Phone", filters={ "parenttype": "Contact", "parent": contact.name, - "is_primary": 0 + "is_primary_phone": 0, + "is_primary_mobile_no": 0 }, fields=["phone"]) if contact.address: From e2f4c076c7ae37658ebfda08cc83c974f3249107 Mon Sep 17 00:00:00 2001 From: "Chinmay D. Pai" Date: Mon, 30 Sep 2019 15:32:11 +0530 Subject: [PATCH 202/274] fix(notifications): do not send emails if no recipients notifications triggered through hooks have no checks for recipients, if no recipients exist, sending mails shouldn't be attempted Signed-off-by: Chinmay D. Pai --- frappe/email/doctype/notification/notification.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index f8d3002a2c..6ae4243775 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -143,6 +143,8 @@ def get_context(context): attachments = self.get_attachment(doc) recipients, cc, bcc = self.get_list_of_recipients(doc, context) + if not recipients: + return sender = None if self.sender and self.sender_email: sender = formataddr((self.sender, self.sender_email)) From cd16373b53ca43d2bc36904eb88f6ab57d63eea7 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Mon, 30 Sep 2019 18:12:37 +0530 Subject: [PATCH 203/274] patch: move to new tag structure --- frappe/patches.txt | 1 + frappe/patches/v12_0/global_tags.py | 46 +++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 frappe/patches/v12_0/global_tags.py diff --git a/frappe/patches.txt b/frappe/patches.txt index d86a8109c1..fd729dfeb9 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -252,3 +252,4 @@ frappe.patches.v12_0.move_email_and_phone_to_child_table frappe.patches.v12_0.delete_duplicate_indexes frappe.patches.v12_0.set_default_incoming_email_port frappe.patches.v12_0.update_global_search +frappe.patches.v12_0.global_tags diff --git a/frappe/patches/v12_0/global_tags.py b/frappe/patches/v12_0/global_tags.py new file mode 100644 index 0000000000..b3bd15745c --- /dev/null +++ b/frappe/patches/v12_0/global_tags.py @@ -0,0 +1,46 @@ +import frappe + +def execute(): + frappe.delete_doc_if_exists("DocType", "Tag Category") + frappe.delete_doc_if_exists("DocType", "Tag Doc Category") + + frappe.reload_doc("desk", "doctype", "tag") + + tag_list = [] + tag_links = [] + time = frappe.utils.get_datetime() + + for doctype in frappe.get_list("DocType", filters={"istable": 0, "issingle": 0}): + for dt_tags in frappe.db.sql("select `name`, `_user_tags` from `tab{0}`".format(doctype.name), as_dict=True): + tags = dt_tags.get("_user_tags").split(",") if dt_tags.get("_user_tags") else None + if not tags: + continue + + for tag in tags: + if not tag: + continue + + tag_list.append(tag.strip()) + + tag_link_name = frappe.generate_hash(dt_tags.name + tag.strip(), 10), + tag_links.append((tag_link_name, doctype.name, dt_tags.name, tag.strip(), time, time, 'Administrator')) + + + temp_list = [] + for count, value in enumerate(set(tag_list)): + temp_list.append((value, time, time, 'Administrator')) + + if count and (count%1000 == 0 or count == len(tag_list)-1): + frappe.db.sql(""" + INSERT INTO `tabTag` (`name`, `creation`, `modified`, `modified_by`) VALUES {} + """.format(", ".join(['%s'] * len(temp_list))), tuple(temp_list)) + temp_list = [] + + for count, value in enumerate(set(tag_links)): + temp_list.append(value) + + if count and (count%1000 == 0 or count == len(tag_links)-1): + frappe.db.sql(""" + INSERT INTO `tabTag Link` (`name`, `dt`, `dn`, `tag`, `creation`, `modified`, `modified_by`) VALUES {} + """.format(", ".join(['%s'] * len(temp_list))), tuple(temp_list)) + temp_list = [] \ No newline at end of file From 30595889bde957f3888c27377ad358b340008b21 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Mon, 30 Sep 2019 18:39:56 +0530 Subject: [PATCH 204/274] fix: rename patch file --- frappe/patches/v12_0/{global_tags.py => setup_global_tags.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename frappe/patches/v12_0/{global_tags.py => setup_global_tags.py} (100%) diff --git a/frappe/patches/v12_0/global_tags.py b/frappe/patches/v12_0/setup_global_tags.py similarity index 100% rename from frappe/patches/v12_0/global_tags.py rename to frappe/patches/v12_0/setup_global_tags.py From 4277da02ebdc8344035c8567cb8b22b79d6b1499 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 30 Sep 2019 19:17:27 +0530 Subject: [PATCH 205/274] test: Make tests pass --- .../core/doctype/data_import/importer_new.py | 6 +++ .../doctype/data_import/test_importer_new.py | 49 ++++++++++++++----- 2 files changed, 43 insertions(+), 12 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index 8828d9b620..f5ca47abc8 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -51,6 +51,7 @@ class Importer: self.parse_data_from_template() def prepare_content(self, file_path, content): + extension = None if self.data_import and self.data_import.import_file: file_doc = frappe.get_doc("File", {"file_url": self.data_import.import_file}) content = file_doc.get_content() @@ -59,6 +60,9 @@ class Importer: if file_path: content, extension = self.read_file(file_path) + if not extension: + extension = "csv" + if content: self.read_content(content, extension) @@ -497,6 +501,8 @@ class Importer: frappe.flags.mute_emails = False frappe.publish_realtime("data_import_refresh", {"data_import": self.data_import.name}) + return import_log + def get_payloads_for_import(self): payloads = [] # make a copy diff --git a/frappe/core/doctype/data_import/test_importer_new.py b/frappe/core/doctype/data_import/test_importer_new.py index 396cac577a..d6349daa55 100644 --- a/frappe/core/doctype/data_import/test_importer_new.py +++ b/frappe/core/doctype/data_import/test_importer_new.py @@ -29,25 +29,50 @@ est phasellus sit amet,5/20/2019,52,True,invalid value class TestImporter(unittest.TestCase): def test_should_skip_empty_rows(self): - i = Importer('Web Page', content=content_empty_rows) - i.import_data() - self.assertEqual(len(i.skipped_rows), 1) + i = self.get_importer('Web Page', content=content_empty_rows) + payloads = i.get_payloads_for_import() + row_to_be_imported = [] + for p in payloads: + row_to_be_imported += [row[0] for row in p.rows] + self.assertEqual(len(row_to_be_imported), 2) def test_should_throw_if_mandatory_is_missing(self): - i = Importer('Web Page', content=content_mandatory_missing) - self.assertRaises(frappe.MandatoryError, i.import_data) + i = self.get_importer('Web Page', content=content_mandatory_missing) + i.import_data() + warning = i.warnings[0] + self.assertTrue('Title is a mandatory field' in warning['message']) def test_should_convert_value_based_on_fieldtype(self): - i = Importer('Web Page', content=content_convert_value) - doc = i.parse_data_for_import(i.data[0], 0) + i = self.get_importer('Web Page', content=content_convert_value) + payloads = i.get_payloads_for_import() + doc = payloads[0].doc - self.assertEqual(type(doc.show_title), int) - self.assertEqual(type(doc.idx), int) - self.assertEqual(type(doc.start_date), datetime.datetime) + self.assertEqual(type(doc['show_title']), int) + self.assertEqual(type(doc['idx']), int) + self.assertEqual(type(doc['start_date']), datetime.datetime) def test_should_ignore_invalid_columns(self): - i = Importer('Web Page', content=content_invalid_column) - doc = i.parse_data_for_import(i.data[0], 0) + i = self.get_importer('Web Page', content=content_invalid_column) + payloads = i.get_payloads_for_import() + doc = payloads[0].doc self.assertTrue('invalid_column' not in doc) self.assertTrue('title' in doc) + + def test_should_import_valid_template(self): + title = 'est phasellus sit amet {0}'.format(frappe.utils.random_string(8)) + content_valid_content = '''title,start_date,idx,show_title +{0},5/20/2019,52,1'''.format(title) + i = self.get_importer('Web Page', content=content_valid_content) + import_log = i.import_data() + log = import_log[0] + self.assertTrue(log.success) + doc = frappe.get_doc('Web Page', { 'title': title }) + self.assertEqual(frappe.utils.get_datetime_str(doc.start_date), + frappe.utils.get_datetime_str('2019-05-20')) + + def get_importer(self, doctype, content): + data_import = frappe.new_doc('Data Import Beta') + data_import.import_type = 'Insert New Records' + i = Importer(doctype, content=content, data_import=data_import) + return i From 15c48079df90bb21da5f82ee6a9dd9a2143978d0 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 30 Sep 2019 19:32:21 +0530 Subject: [PATCH 206/274] tests: Make exporter tests pass --- frappe/core/doctype/data_import/exporter_new.py | 5 +++-- frappe/core/doctype/data_import/test_exporter_new.py | 8 +++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/frappe/core/doctype/data_import/exporter_new.py b/frappe/core/doctype/data_import/exporter_new.py index ca451f6704..21f5fc4bd2 100644 --- a/frappe/core/doctype/data_import/exporter_new.py +++ b/frappe/core/doctype/data_import/exporter_new.py @@ -95,11 +95,12 @@ class Exporter: if self.export_fields == "Mandatory": fields = [df for df in fields if df.reqd] + if self.export_fields == "All": + fields = list(fields) + elif isinstance(self.export_fields, dict): whitelist = self.export_fields.get(doctype, []) fields = [df for df in fields if df.fieldname in whitelist] - else: - fields = [df for df in fields if df.reqd or df.in_list_view or df.bold] name_field = frappe._dict( { diff --git a/frappe/core/doctype/data_import/test_exporter_new.py b/frappe/core/doctype/data_import/test_exporter_new.py index 32cd7a6a46..dee5af543c 100644 --- a/frappe/core/doctype/data_import/test_exporter_new.py +++ b/frappe/core/doctype/data_import/test_exporter_new.py @@ -13,7 +13,7 @@ class TestExporter(unittest.TestCase): e = Exporter('Web Page', export_fields='Mandatory') csv_array = e.get_csv_array() header_row = csv_array[0] - self.assertEqual(header_row, ['ID (name)', 'Title (title)']) + self.assertEqual(header_row, ['ID', 'Title']) def test_exports_all_fields(self): @@ -24,11 +24,13 @@ class TestExporter(unittest.TestCase): def test_exports_selected_fields(self): - export_fields = ['title', 'route', 'published'] + export_fields = { + 'Web Page': ['title', 'route', 'published'] + } e = Exporter('Web Page', export_fields=export_fields) csv_array = e.get_csv_array() header = csv_array[0] - self.assertEqual(header, ['Title (title)', 'Route (route)', 'Published (published)']) + self.assertEqual(header, ['ID', 'Title', 'Route', 'Published']) def test_exports_data(self): From d3b3d0c38d770bf930956b50426af03c267954ea Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 30 Sep 2019 20:08:28 +0530 Subject: [PATCH 207/274] style: Fix codacy errors --- frappe/core/doctype/data_import/importer_new.py | 3 +-- frappe/public/js/frappe/data_import/data_exporter.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/frappe/core/doctype/data_import/importer_new.py b/frappe/core/doctype/data_import/importer_new.py index f5ca47abc8..6fccbc89ef 100644 --- a/frappe/core/doctype/data_import/importer_new.py +++ b/frappe/core/doctype/data_import/importer_new.py @@ -738,7 +738,6 @@ class Importer: for link_doctype, link_value in link_values: d = self.missing_link_values.get(link_doctype) if d and d.one_mandatory and link_value in d.missing_values: - meta = frappe.get_meta(link_doctype) # find the autoname field autoname_field = self.get_autoname_field(link_doctype) name_field = autoname_field.fieldname if autoname_field else "name" @@ -856,7 +855,7 @@ class Importer: if successful_records: print( - "Successfully imported {1} records out of {1}".format( + "Successfully imported {0} records out of {1}".format( len(successful_records), len(import_log) ) ) diff --git a/frappe/public/js/frappe/data_import/data_exporter.js b/frappe/public/js/frappe/data_import/data_exporter.js index 66c9929c59..d0bf794df6 100644 --- a/frappe/public/js/frappe/data_import/data_exporter.js +++ b/frappe/public/js/frappe/data_import/data_exporter.js @@ -212,7 +212,7 @@ frappe.data_import.DataExporter = class DataExporter { count_method[export_records]().then(value => { let message = ''; - value = parseInt(value); + value = parseInt(value, 10); if (value === 0) { message = __('No records will be exported'); } else if (value === 1) { From 502db9fbc58044a5fe8c3b0356a6f956f1901411 Mon Sep 17 00:00:00 2001 From: frappe Date: Tue, 1 Oct 2019 11:44:42 +0000 Subject: [PATCH 208/274] feat: Updated translation --- frappe/translations/af.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/am.csv | 152 ++++++++++++++++++++++++-------- frappe/translations/ar.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/bg.csv | 155 +++++++++++++++++++++++++-------- frappe/translations/bn.csv | 140 ++++++++++++++++++++++-------- frappe/translations/bs.csv | 153 ++++++++++++++++++++++++-------- frappe/translations/ca.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/cs.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/da.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/de.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/el.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/es.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/es_pe.csv | 5 +- frappe/translations/et.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/fa.csv | 125 ++++++++++++++++++-------- frappe/translations/fi.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/fr.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/gu.csv | 145 +++++++++++++++++++++++-------- frappe/translations/he.csv | 25 ++---- frappe/translations/hi.csv | 157 +++++++++++++++++++++++++-------- frappe/translations/hr.csv | 154 ++++++++++++++++++++++++-------- frappe/translations/hu.csv | 154 ++++++++++++++++++++++++-------- frappe/translations/id.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/is.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/it.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/ja.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/km.csv | 144 +++++++++++++++++++++++------- frappe/translations/kn.csv | 137 +++++++++++++++++++++-------- frappe/translations/ko.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/ku.csv | 131 ++++++++++++++++++++-------- frappe/translations/lo.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/lt.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/lv.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/mk.csv | 122 +++++++++++++++++++------- frappe/translations/ml.csv | 135 +++++++++++++++++++++-------- frappe/translations/mr.csv | 144 ++++++++++++++++++++++-------- frappe/translations/ms.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/my.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/nl.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/no.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/pl.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/ps.csv | 146 ++++++++++++++++++++++++------- frappe/translations/pt.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/pt_br.csv | 19 ++-- frappe/translations/ro.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/ru.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/si.csv | 134 ++++++++++++++++++++-------- frappe/translations/sk.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/sl.csv | 154 ++++++++++++++++++++++++-------- frappe/translations/sq.csv | 128 +++++++++++++++++++-------- frappe/translations/sr.csv | 153 ++++++++++++++++++++++++-------- frappe/translations/sr_sp.csv | 9 +- frappe/translations/sv.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/sw.csv | 149 ++++++++++++++++++++++++------- frappe/translations/ta.csv | 140 ++++++++++++++++++++++-------- frappe/translations/te.csv | 136 +++++++++++++++++++++-------- frappe/translations/th.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/tr.csv | 159 ++++++++++++++++++++++++++-------- frappe/translations/uk.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/ur.csv | 138 +++++++++++++++++++++-------- frappe/translations/uz.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/vi.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/zh.csv | 156 +++++++++++++++++++++++++-------- frappe/translations/zh_tw.csv | 134 +++++++++++++++++++++------- 64 files changed, 7013 insertions(+), 2068 deletions(-) diff --git a/frappe/translations/af.csv b/frappe/translations/af.csv index 22323f44e7..069a3b5dc2 100644 --- a/frappe/translations/af.csv +++ b/frappe/translations/af.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Nuwe () vrystellings vir die volgende programme is beskikbaar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Kies asseblief 'n Bedrag veld. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Laai invoerlêer ... DocType: Assignment Rule,Last User,Laaste gebruiker apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","'N Nuwe taak, {0}, is aan jou toegewys deur {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sessie standaard is gestoor +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Herlaai lêer DocType: Email Queue,Email Queue records.,E-pos waglys rekords. DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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,Hierdie rol werk gebruikers toestemmings op vir 'n gebruiker apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Hernoem {0} DocType: Workflow State,zoom-out,zoom-out +DocType: Data Import Beta,Import Options,Invoeropsies apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Kan nie {0} oopmaak as sy instansie oop is nie apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabel {0} kan nie leeg wees nie DocType: SMS Parameter,Parameter,parameter @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,maandelikse DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktiveer Inkomende apps/frappe/frappe/core/doctype/version/version_view.html,Danger,gevaar -apps/frappe/frappe/www/login.py,Email Address,E-pos adres +DocType: Address,Email Address,E-pos adres DocType: Workflow State,th-large,ste-groot DocType: Communication,Unread Notification Sent,Ongelees kennisgewing gestuur apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Uitvoer nie toegelaat nie. Jy benodig {0} rol om te eksporteer. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakopsies, soos "Verkoopsvraag, Ondersteuningsvraag" ens. Elk op 'n nuwe reël of geskei deur kommas." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Voeg 'n merker by apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret -DocType: Data Migration Run,Insert,insetsel +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,insetsel apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Laat Google Drive toe apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Kies {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Voer asseblief basiese URL in @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuut g 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.","Afgesien van Stelselbestuurder, kan rolle met Set User Permissions reg permitte vir ander gebruikers vir daardie dokumenttipe stel." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Stel tema op DocType: Company History,Company History,Maatskappygeskiedenis -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,herstel +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,herstel DocType: Workflow State,volume-up,volume-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks roep API-versoeke in webprogramme +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Wys terugsporing DocType: DocType,Default Print Format,Standaarddrukformaat DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Geen: Einde van Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} veld kan nie as uniek in {1} gestel word nie, aangesien daar nie-unieke bestaande waardes is" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentsoorte +DocType: Global Search Settings,Document Types,Dokumentsoorte DocType: Address,Jammu and Kashmir,Jammu en Kasjmir DocType: Workflow,Workflow State Field,Workflow State Field -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opstel> Gebruiker DocType: Language,Guest,gaste DocType: DocType,Title Field,Titel Veld DocType: Error Log,Error Log,Fout Teken @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Herhalings soos "abcabcabc" is net effens harder om te raai as "abc" DocType: Notification,Channel,kanaal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","As u dink dat dit ongemagtig is, verander asseblief die Administrateur wagwoord." +DocType: Data Import Beta,Data Import Beta,Beta vir data-invoer apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} is verpligtend DocType: Assignment Rule,Assignment Rules,Opdragreëls DocType: Workflow State,eject,verwyder @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Werkstroom Aksie Naam apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kan nie saamgevoeg word nie DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nie 'n zip-lêer nie +DocType: Global Search DocType,Global Search DocType,Global Search DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
    New {{ doc.doctype }} #{{ doc.name }}
    ","Om dinamiese vak by te voeg, gebruik jinja-tags soos
     New {{ doc.doctype }} #{{ doc.name }} 
    " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,jy DocType: Braintree Settings,Braintree Settings,Braintree instellings +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} rekords is suksesvol gemaak. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Stoor filter DocType: Print Format,Helvetica,helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Kan nie {0} uitvee nie @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Voer die URL-parameter in apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Herhaal outomaties vir hierdie dokument apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Bekyk verslag in jou blaaier apps/frappe/frappe/config/desk.py,Event and other calendars.,Gebeurtenis en ander kalenders. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 ry verpligtend) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Alle velde is nodig om die kommentaar in te dien. DocType: Custom Script,Adds a client custom script to a DocType,Voeg 'n kliënt se eie skrif by tot 'n DocType DocType: Print Settings,Printer Name,Drukker naam @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Grootmaat Update DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Laat gas toe om te sien apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} moet nie dieselfde wees as {1} -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).","Ter vergelyking, gebruik> 5, <10 of = 324. Gebruik reekse 5:10 (vir waardes tussen 5 en 10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Vee {0} items permanent uit? apps/frappe/frappe/utils/oauth.py,Not Allowed,Nie toegelaat nie @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,vertoning DocType: Email Group,Total Subscribers,Totale inskrywers apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Ry nommer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","As 'n rol nie toegang op vlak 0 het nie, is hoër vlakke betekenisloos." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Stoor as DocType: Comment,Seen,gesien @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Nie toegelaat om konsepdokumente te druk nie apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Herstel na verstek DocType: Workflow,Transition Rules,Oorgangsreëls +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Wys slegs die eerste {0} rye in voorskou apps/frappe/frappe/core/doctype/report/report.js,Example:,voorbeeld: DocType: Workflow,Defines workflow states and rules for a document.,Definieer werkstroom state en reëls vir 'n dokument. DocType: Workflow State,Filter,filter @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,gesluit DocType: Blog Settings,Blog Title,Blog Titel apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standaard rolle kan nie gedeaktiveer word nie apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Klets Type +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kaartkolomme DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,nuusbrief apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Kan nie subnavraag gebruik in volgorde deur @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Voeg 'n kolom by apps/frappe/frappe/www/contact.html,Your email address,Jou eposadres DocType: Desktop Icon,Module,module +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} rekords van {1} suksesvol opgedateer. DocType: Notification,Send Alert On,Stuur Alert Aan DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Pas etiket aan, druk verberg, standaard ens." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Rits lêers uit ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Gebruiker {0} kan nie uitgevee word nie DocType: System Settings,Currency Precision,Geld Precisie apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Nog 'n transaksie blokkeer hierdie een. Probeer asseblief oor 'n paar sekondes. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Maak filters skoon DocType: Test Runner,App,app apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Die aanhangsels kon nie korrek gekoppel word aan die nuwe dokument nie DocType: Chat Message Attachment,Attachment,Attachment @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Kan nie e-po apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - Kon nie gebeurtenis {0} in Google Kalender opdateer nie, foutkode {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Soek of tik 'n opdrag DocType: Activity Log,Timeline Name,Tydlyn Naam +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Slegs een {0} kan as primêr gestel word. DocType: Email Account,e.g. smtp.gmail.com,bv. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Voeg 'n nuwe reël by DocType: Contact,Sales Master Manager,Verkope Meester Bestuurder @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP-middelnaamveld apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Voer {0} van {1} in DocType: GCalendar Account,Allow GCalendar Access,Laat GCalendar-toegang toe -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} is 'n verpligte veld +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} is 'n verpligte veld apps/frappe/frappe/templates/includes/login/login.js,Login token required,Login token vereis apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Maandelikse ranglys: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Kies verskeie lysitems @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Kan nie verbind nie: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,'N Woord op sigself is maklik om te raai. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Outo-opdrag het misluk: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Soek... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Kies asseblief Maatskappy apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Samevoeging is slegs moontlik tussen groep-tot-groep- of bladknoop-na-bladnoot apps/frappe/frappe/utils/file_manager.py,Added {0},Bygevoeg {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Geen ooreenstemmende rekords. Soek iets nuuts @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,OAuth-kliënt-ID DocType: Auto Repeat,Subject,Onderwerp apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Terug na die lessenaar DocType: Web Form,Amount Based On Field,Bedrag gebaseer op veld -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel asb. Standaard-e-posrekening op vanaf Opstel> E-pos> E-posrekening apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Gebruiker is verpligtend vir Deel DocType: DocField,Hidden,verborge DocType: Web Form,Allow Incomplete Forms,Laat onvolledige vorms toe @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} en {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Begin 'n gesprek. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Voeg altyd "Konsep" -opskrif by vir die druk van konsepdokumente apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Fout in kennisgewing: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar (s) gelede DocType: Data Migration Run,Current Mapping Start,Huidige kaarte begin apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-pos is gemerk as strooipos DocType: Comment,Website Manager,Webwerf Bestuurder @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Gebruik van subnavraag of funksie is beperk apps/frappe/frappe/config/customization.py,Add your own translations,Voeg jou eie vertalings by DocType: Country,Country Name,Land Naam +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Leë sjabloon DocType: About Us Team Member,About Us Team Member,Oor Ons Spanlid apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Toestemmings word ingestel op rolle en dokumenttipes (genoem DocTypes) deur regte soos Lees, Skryf, Skep, Skrap, Inskryf, Kanselleer, Verander, Verslag, Invoer, Uitvoer, Druk, E-pos en Gebruiker Toestemmings in te stel." DocType: Event,Wednesday,Woensdag @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Webwerf Tema Beeld Link DocType: Web Form,Sidebar Items,Zijbalk Items DocType: Web Form,Show as Grid,Wys as rooster apps/frappe/frappe/installer.py,App {0} already installed,Program {0} reeds geïnstalleer +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Gebruikers wat aan die verwysingsdokument toegewys is, sal punte kry." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Geen voorskou nie DocType: Workflow State,exclamation-sign,uitroep-teken apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,{0} lêers is uitgesit @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Dae voor apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Daaglikse gebeure moet op dieselfde dag eindig. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Wysig ... DocType: Workflow State,volume-down,volume-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Toegang word nie vanaf hierdie IP-adres toegelaat nie apps/frappe/frappe/desk/reportview.py,No Tags,Geen etikette DocType: Email Account,Send Notification to,Stuur kennisgewing aan DocType: DocField,Collapsible,opvoubare @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Ontwikkelaar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Geskep apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} in ry {1} kan nie beide URL- en kinderitems hê nie +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Daar moet ten minste een ry wees vir die volgende tabelle: {0} DocType: Print Format,Default Print Language,Standaard druktaal apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Voorouers Van apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Wortel {0} kan nie uitgevee word nie @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,host +DocType: Data Import Beta,Import File,Voer lêer in apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolom {0} bestaan reeds. DocType: ToDo,High,hoë apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nuwe gebeurtenis @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Stuur kennisgewings vir e-pos apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nie in ontwikkelaar af nie apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Lêer Friends is gereed -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maksimum punte toegelaat na vermenigvuldiging van punte met die vermenigvuldigerwaarde (Let wel: Vir geen limiet gestel waarde as 0) DocType: DocField,In Global Search,In Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,streepje-links @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Gebruiker '{0}' het reeds die rol '{1}' DocType: System Settings,Two Factor Authentication method,Twee faktor verifikasie metode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Stel eers die naam en stoor die rekord. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Rekords apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Gedeel met {0} apps/frappe/frappe/email/queue.py,Unsubscribe,bedank DocType: View Log,Reference Name,Verwysingsnaam @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Data Migrasie Connect apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} teruggestel {1} DocType: Email Account,Track Email Status,Track e-pos status DocType: Note,Notify Users On Every Login,Stel gebruikers in kennis van elke inskrywing +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Kan kolom {0} nie met enige veld ooreenstem nie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} rekords suksesvol opgedateer. DocType: PayPal Settings,API Password,API wagwoord apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Tik die python module of kies connector tipe apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Veldnaam nie vir Aangepaste veld gestel nie @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Gebruikers toestemmings word gebruik om gebruikers te beperk tot spesifieke rekords. DocType: Notification,Value Changed,Waarde verander apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplikaat naam {0} {1} -DocType: Email Queue,Retry,weer probeer +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,weer probeer +DocType: Contact Phone,Number,aantal DocType: Web Form Field,Web Form Field,Web vorm veld apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Jy het 'n nuwe boodskap van: +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).","Ter vergelyking, gebruik> 5, <10 of = 324. Gebruik reekse 5:10 (vir waardes tussen 5 en 10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML wysig apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Voer asseblief Aanstuur-URL in apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Bekyk eienskappe (via apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik op 'n lêer om dit te kies. DocType: Note Seen By,Note Seen By,Nota Gesien Deur apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Probeer 'n langer sleutelbordpatroon met meer draaie gebruik -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,leader +,LeaderBoard,leader DocType: DocType,Default Sort Order,Standaard sorteervolgorde DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-pos antwoordhulp @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,sent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Stel e-pos saam apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","State vir werkstroom (bv. Konsep, Goedgekeur, Kanselleer)." DocType: Print Settings,Allow Print for Draft,Laat Print for draft toe +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 met verbinding met die QZ-lade-toepassing ...

    Om die Raw Print-funksie te gebruik, moet u QZ Tray-program geïnstalleer en loop.

    Klik hier om QZ Tray af te laai en te installeer .
    Klik hier vir meer inligting oor rou drukwerk ." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Stel Hoeveelheid apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Dien hierdie dokument in om te bevestig DocType: Contact,Unsubscribed,uitgeteken @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organisasie-eenheid vir geb ,Transaction Log Report,Transaksie Log Verslag DocType: Custom DocPerm,Custom DocPerm,Aangepaste DocPerm DocType: Newsletter,Send Unsubscribe Link,Stuur Teken Teken uit +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Daar is 'n paar gekoppelde rekords wat geskep moet word voordat ons u lêer kan invoer. Wil u die volgende ontbrekende rekords outomaties skep? DocType: Access Log,Method,metode DocType: Report,Script Report,Skrifverslag DocType: OAuth Authorization Code,Scopes,bestekke @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Suksesvol opgelaai apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Jy is verbind aan die internet. DocType: Social Login Key,Enable Social Login,Aktiveer sosiale aanmelding +DocType: Data Import Beta,Warnings,waarskuwings DocType: Communication,Event,gebeurtenis apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",Op {0} het {1} geskryf: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Kan nie standaard veld uitvee nie. Jy kan dit wegsteek as jy wil @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Voeg hier DocType: Kanban Board Column,Blue,Blou apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Alle aanpassings sal verwyder word. Bevestig asseblief. DocType: Page,Page HTML,Bladsy HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Uitvoer van foutiewe rye apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Groepnaam kan nie leeg wees nie. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Verdere nodes kan slegs geskep word onder 'Groep'-tipe nodusse DocType: SMS Parameter,Header,kop @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Versoek uitgeskakel apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Aktiveer / deaktiveer domeine DocType: Role Permission for Page and Report,Allow Roles,Laat rolle toe +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} rekords is suksesvol vanaf {1} ingevoer. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Eenvoudige Python-uitdrukking, voorbeeld: status in ("ongeldig")" DocType: User,Last Active,Laaste Aktief DocType: Email Account,SMTP Settings for outgoing emails,SMTP-instellings vir uitgaande e-posse apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,kies 'n DocType: Data Export,Filter List,Filter Lys DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Jou wagwoord is opgedateer. Hier is jou nuwe wagwoord DocType: Email Account,Auto Reply Message,Outo-antwoordboodskap DocType: Data Migration Mapping,Condition,toestand apps/frappe/frappe/utils/data.py,{0} hours ago,{0} uur gelede @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Gebruikers-ID DocType: Communication,Sent,gestuur DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,administrasie DocType: User,Simultaneous Sessions,Gelyktydige Sessies DocType: Social Login Key,Client Credentials,Kliënt geloofsbriewe @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},{0} opg apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,meester DocType: DocType,User Cannot Create,Gebruiker kan nie skep nie apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Suksesvol gedoen -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Vouer {0} bestaan nie apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox toegang is goedgekeur! DocType: Customize Form,Enter Form Type,Vul vormtipe in DocType: Google Drive,Authorize Google Drive Access,Magtig toegang tot Google Drive @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Geen rekords gemerk. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Verwyder veld apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Jy is nie aan die internet gekoppel nie. Probeer weer iewers. -DocType: User,Send Password Update Notification,Stuur wagwoord update kennisgewing apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Toestaan van DocType, DocType. Wees versigtig!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Spesiale formate vir drukwerk, e-pos" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Som van {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Verkeerde verifikasi apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Kontakte-integrasie is gedeaktiveer. DocType: Assignment Rule,Description,beskrywing DocType: Print Settings,Repeat Header and Footer in PDF,Herhaal kop en voet in PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,mislukking DocType: Address Template,Is Default,Is standaard DocType: Data Migration Connector,Connector Type,Connector Type apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Kolom Naam kan nie leeg wees nie @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Gaan na {0} bladsy DocType: LDAP Settings,Password for Base DN,Wagwoord vir Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tafelveld apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolomme gebaseer op +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Voer {0} van {1}, {2} in" DocType: Workflow State,move,skuif apps/frappe/frappe/model/document.py,Action Failed,Aksie het misluk apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Vir gebruiker @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Aktiveer rou druk DocType: Website Route Redirect,Source,Bron apps/frappe/frappe/templates/includes/list/filters.html,clear,duidelik apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,klaar +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opstel> Gebruiker DocType: Prepared Report,Filter Values,Filter waardes DocType: Communication,User Tags,Gebruiker-etikette DocType: Data Migration Run,Fail,misluk @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,volg ,Activity,aktiwiteit DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Hulp: Om te skakel na 'n ander rekord in die stelsel, gebruik "# Vorm / Nota / [Nota Naam]" as die skakel-URL. (moenie "http: //" gebruik nie)" DocType: User Permission,Allow,laat +DocType: Data Import Beta,Update Existing Records,Bestaande rekords opdateer apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Kom ons vermy herhaalde woorde en karakters DocType: Energy Point Rule,Energy Point Rule,Energie punt reël DocType: Communication,Delayed,vertraag @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Spoorveld DocType: Notification,Set Property After Alert,Stel Eiendom Na Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Voeg velde by vorms. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Dit lyk of daar iets fout is met die webwerf se Paypal-opset. -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 met verbinding met die QZ-lade-toepassing

    Om die Raw Print-funksie te gebruik, moet u QZ Tray-program geïnstalleer en loop.

    Klik hier om QZ Tray af te laai en te installeer .
    Klik hier vir meer inligting oor rou drukwerk ." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Voeg resensie by -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Lettergrootte (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Slegs standaard DocTypes mag aangepas word vanaf die Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Jammer! Jy kan nie outomaties gegenereerde opmerkings uitvee nie DocType: Google Settings,Used For Google Maps Integration.,Word gebruik vir Google Maps-integrasie. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Verwysingsdokumenttipe +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Geen rekords sal uitgevoer word nie DocType: User,System User,Stelselgebruiker DocType: Report,Is Standard,Is Standaard DocType: Desktop Icon,_report,_report @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,minus-teken apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nie gevind nie apps/frappe/frappe/www/printview.py,No {0} permission,Geen {0} toestemming nie apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Voer persoonlike toestemmings uit +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Geen items gevind nie. DocType: Data Export,Fields Multicheck,Velds Multicheck DocType: Activity Log,Login,Teken aan DocType: Web Form,Payments,betalings @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Standaard Inkomend DocType: Workflow State,repeat,herhaling DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Waarde moet een van {0} wees DocType: Role,"If disabled, this role will be removed from all users.","As dit gedeaktiveer is, sal hierdie rol van alle gebruikers verwyder word." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Gaan na {0} Lys +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gaan na {0} Lys apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hulp op soek DocType: Milestone,Milestone Tracker,Mylpaal-spoorsnyer apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Geregistreerde maar gedeaktiveer @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Plaaslike veldnaam DocType: DocType,Track Changes,Track Changes DocType: Workflow State,Check,Check DocType: Chat Profile,Offline,op die regte pad +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} suksesvol ingevoer DocType: User,API Key,API sleutel DocType: Email Account,Send unsubscribe message in email,Stuur unsubscribe boodskap in e-pos apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Wysig titel @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print DocType: Bulk Update,Field,veld DocType: Communication,Received,ontvang DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger op geldige metodes soos "before_insert", "after_update", ens (sal afhang van die gekose DocType)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},gewysigde waarde van {0} {1} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Om stelselbestuurder by hierdie gebruiker te voeg, moet daar ten minste een stelselbestuurder wees" DocType: Chat Message,URLs,URLs DocType: Data Migration Run,Total Pages,Totale bladsye apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} het reeds die standaardwaarde vir {1} toegeken. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

    No results found for '

    ,

    Geen resultate gevind vir '

    DocType: DocField,Attach Image,Heg prent aan DocType: Workflow State,list-alt,lys-alt apps/frappe/frappe/www/update-password.html,Password Updated,Wagwoord opgedateer @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nie toegelaat vir {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 is nie 'n geldige verslagformaat nie. Verslagformaat moet \ een van die volgende% s wees DocType: Chat Message,Chat,chat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opstel> Toestemmings vir gebruikers DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-groep kartering DocType: Dashboard Chart,Chart Options,Grafiekopsies +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Ongetitelde kolom apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} van {1} na {2} in ry # {3} DocType: Communication,Expired,verstryk apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Lyk asof jy gebruik, is ongeldig!" @@ -1528,6 +1558,7 @@ DocType: DocType,System,stelsel DocType: Web Form,Max Attachment Size (in MB),Maksimum aanhangsel grootte (in MB) apps/frappe/frappe/www/login.html,Have an account? Login,Het u 'n rekening? Teken aan DocType: Workflow State,arrow-down,pyl-down +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ry {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Gebruiker mag nie {0} uitvee nie: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} van {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Laaste Opgedateer op @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Aangepaste rol apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Tuisblad / Toetsmap 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sleutel jou wagwoord in DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Verpligte) DocType: Social Login Key,Social Login Provider,Sosiale aanmeldverskaffer apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Voeg nog 'n opmerking by apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Geen data in die lêer gevind nie. Herlaai asseblief die nuwe lêer met data. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Wys Dashbo apps/frappe/frappe/desk/form/assign_to.py,New Message,Nuwe boodskap DocType: File,Preview HTML,Voorskou HTML DocType: Desktop Icon,query-report,navraag-verslag +DocType: Data Import Beta,Template Warnings,Sjabloonwaarskuwings apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filters gestoor DocType: DocField,Percent,persent apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Stel asseblief filters in @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Custom DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","As dit aangeskakel is, sal gebruikers wat van beperkte IP-adres inskakel, nie gevra word vir Two Factor Auth" DocType: Auto Repeat,Get Contacts,Kry kontakte apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Boodskappe geliasseer onder {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Slaan sonder titel kolom oor DocType: Notification,Send alert if date matches this field's value,Stuur wakker as die datum die waarde van hierdie veld pas DocType: Workflow,Transitions,oorgange apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} tot {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,stap-agtertoe apps/frappe/frappe/utils/boilerplate.py,{app_title},{APP_TITLE} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Stel asseblief die Dropbox-toegangsleutels in u webtuiste konfigureer apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Vee hierdie rekord uit om toe te laat na hierdie e-pos adres +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","As nie-standaard poort (bv. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Pas kortpaaie aan apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Slegs verpligte velde is nodig vir nuwe rekords. U kan nie-verpligte kolomme uitvee indien u dit wil. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Wys meer aktiwiteit @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Gesien per tabel apps/frappe/frappe/www/third_party_apps.html,Logged in,Aangemeld apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Verstek stuur en inkassie DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} rekord suksesvol opgedateer uit {1}. DocType: Google Drive,Send Email for Successful Backup,Stuur e-pos vir suksesvolle rugsteun +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Planner is onaktief. Kan nie data invoer nie. DocType: Print Settings,Letter,brief DocType: DocType,"Naming Options:
    1. field:[fieldname] - By Field
    2. naming_series: - By Naming Series (field called naming_series must be present
    3. Prompt - Prompt user for a name
    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
    5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Volgende sinkroniese Token DocType: Energy Point Settings,Energy Point Settings,Instellings vir energiepunt DocType: Async Task,Succeeded,daarin geslaag om apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Verpligte velde vereis in {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

      No results found for '

      ,

      Geen resultate gevind vir '

      apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Stel toestemmings vir {0} terug? apps/frappe/frappe/config/desktop.py,Users and Permissions,Gebruikers en toestemmings DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup-instellings @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,in DocType: Notification,Value Change,Waardeverandering DocType: Google Contacts,Authorize Google Contacts Access,Magtig toegang tot Google Kontakte apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Wys slegs Numeriese velde uit Verslag +DocType: Data Import Beta,Import Type,Voer tipe in DocType: Access Log,HTML Page,HTML-bladsy DocType: Address,Subsidiary,filiaal apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Probeer verbinding met QZ-skinkbord ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ongeldige DocType: Custom DocPerm,Write,Skryf apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Slegs Administrateur mag Query / Script Reports maak apps/frappe/frappe/public/js/frappe/form/save.js,Updating,opdatering -DocType: File,Preview,voorskou +DocType: Data Import Beta,Preview,voorskou apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Veld "waarde" is verpligtend. Spesifiseer asseblief die waarde wat opgedateer moet word DocType: Customize Form,Use this fieldname to generate title,Gebruik hierdie veldnaam om titel te genereer apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Voer e-pos vanaf @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Webleser word DocType: Social Login Key,Client URLs,Kliënt-URL's apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Sommige inligting ontbreek apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} suksesvol geskep +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Slaan {0} van {1}, {2} oor" DocType: Custom DocPerm,Cancel,kanselleer apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Grootmaatverwydering apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Lêer {0} bestaan nie @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,simbool apps/frappe/frappe/model/base_document.py,Row #{0}:,Ry # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Bevestig die verwydering van data -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nuwe wagwoord per e-pos gestuur apps/frappe/frappe/auth.py,Login not allowed at this time,Inloggen is nie toegelaat nie DocType: Data Migration Run,Current Mapping Action,Huidige kaarte-aksie DocType: Dashboard Chart Source,Source Name,Bron Naam @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Spel apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Gevolg deur DocType: LDAP Settings,LDAP Email Field,LDAP e-pos veld apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lys +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Voer {0} rekords uit apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Reeds in gebruiker se lys om te doen DocType: User Email,Enable Outgoing,Aktiveer Uitgaande DocType: Address,Fax,Faks @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Druk dokumente apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Spring na die veld DocType: Contact Us Settings,Forward To Email Address,Stuur na e-pos adres +DocType: Contact Phone,Is Primary Phone,Is primêre telefoon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Stuur 'n e-pos na {0} om dit hier te skakel. DocType: Auto Email Report,Weekdays,weeksdae +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} rekords sal uitgevoer word apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titelveld moet 'n geldige veldnaam wees DocType: Post Comment,Post Comment,pos kommentaar apps/frappe/frappe/config/core.py,Documents,dokumente @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","Hierdie veld sal slegs verskyn as die veldnaam wat hier gedefinieer is, waarde is OF die reëls is waar (voorbeelde): myfield eval: doc.myfield == 'My Value' eval: doc.age> 18" DocType: Social Login Key,Office 365,Kantoor 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,vandag +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 adres sjabloon gevind nie. Skep 'n nuwe een uit Opstel> Drukwerk en handelsmerk> Adressjabloon. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Sodra u dit gestel het, sal die gebruikers slegs toegangsdokumente (bv. Blog Post) hê waar die skakel bestaan (bv. Blogger)." +DocType: Data Import Beta,Submit After Import,Dien na invoer in DocType: Error Log,Log of Scheduler Errors,Teken van skeduler foute DocType: User,Bio,bio DocType: OAuth Client,App Client Secret,App Client Secret @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Deaktiveer Customer Signup skakel in Login bladsy apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Toegewys aan / Eienaar DocType: Workflow State,arrow-left,-Pyl links +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Voer 1 rekord uit DocType: Workflow State,fullscreen,Volskerm DocType: Chat Token,Chat Token,Klets Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Skep grafiek apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Moenie invoer nie DocType: Web Page,Center,Sentrum DocType: Notification,Value To Be Set,Waarde om ingestel te word apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Wysig {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,Wys afdelingopskrifte DocType: Bulk Update,Limit,limiet apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Ons het 'n versoek ontvang vir die verwydering van {0} data wat verband hou met: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Voeg 'n nuwe afdeling by +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Gefilterde rekords apps/frappe/frappe/www/printview.py,No template found at path: {0},Geen sjabloon gevind op pad nie: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Geen e-pos rekening DocType: Comment,Cancelled,gekanselleer @@ -2190,10 +2237,13 @@ DocType: Communication Link,Communication Link,Kommunikasie skakel apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Ongeldige uitvoerformaat apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Kan nie {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,Pas hierdie reël toe as die Gebruiker die Eienaar is +DocType: Global Search Settings,Global Search Settings,Wêreldwye soekinstellings apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Sal jou inskrywing ID wees +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globale soekdokumenttipes word herstel. ,Lead Conversion Time,Lood Gesprek Tyd apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Bou verslag DocType: Note,Notify users with a popup when they log in,Stel gebruikers in kennis met 'n opspring wanneer hulle inteken +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Kernmodules {0} kan nie in Global Search gesoek word nie. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Maak klets oop apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} bestaan nie, kies 'n nuwe teiken om saam te voeg" DocType: Data Migration Connector,Python Module,Python Module @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Naby apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Kan docstatus nie verander van 0 tot 2 DocType: File,Attached To Field,Aangeheg aan die veld -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opstel> Toestemmings vir gebruikers -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Opdateer +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Opdateer DocType: Transaction Log,Transaction Hash,Transaksie Hash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Slaan asseblief die Nuusbrief op voordat u dit stuur @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,In Progress apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Wag vir u rugsteun. Dit kan 'n paar minute duur. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Gebruikers toestemming bestaan reeds +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kolom {0} karteer na veld {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Bekyk {0} DocType: User,Hourly,uurlikse apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreer OAuth Client App @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} kan nie "{2}" wees nie. Dit behoort een van die "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},verkry deur {0} via outomatiese reël {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} of {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Wagwoordopdatering DocType: Workflow State,trash,asblik DocType: System Settings,Older backups will be automatically deleted,Ouer rugsteun sal outomaties verwyder word apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ongeldige toegangs sleutel ID of geheime toegang sleutel. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,Gewenste Posadres apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Met briefhoof apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} het hierdie {1} geskep apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Nie toegelaat vir {0}: {1} in ry {2}. Beperkte veld: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posrekening nie opgestel nie. Skep 'n nuwe e-posrekening vanaf Setup> E-pos> E-posrekening DocType: S3 Backup Settings,eu-west-1,EU-wes-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","As dit gekontroleer is, sal rye met geldige data ingevoer word en ongeldige rye sal in 'n nuwe lêer gedump word sodat u later kan invoer." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument is slegs redigeerbaar deur gebruikers van rol @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,Is verpligte veld DocType: User,Website User,Webwerf gebruiker apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Sommige kolomme kan afgekap word as u op PDF druk. Probeer om die aantal kolomme onder 10 te hou. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Nie gelyk nie +DocType: Data Import Beta,Don't Send Emails,Moenie e-posse stuur nie DocType: Integration Request,Integration Request Service,Integrasie Versoek Diens DocType: Access Log,Access Log,Toegangloglêer DocType: Website Script,Script to attach to all web pages.,Skripsie om aan alle webblaaie te heg. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,passiewe DocType: Auto Repeat,Accounts Manager,Rekeningbestuurder apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Opdrag vir {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Jou betaling is gekanselleer. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel asb. Standaard-e-posrekening op vanaf Opstel> E-pos> E-posrekening apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Kies Lêertipe apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Sien alles DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,data apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokument Status apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Goedkeuring vereis +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Die volgende rekords moet geskep word voordat ons u lêer kan invoer. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Authorization Code apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Nie toegelaat om in te voer nie DocType: Deleted Document,Deleted DocType,Doktipe verwyder @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,Stelselinstellings DocType: GCalendar Settings,Google API Credentials,Google API-geloofsbriewe apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sessie begin misluk apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Hierdie e-pos is gestuur na {0} en gekopieer na {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},het hierdie dokument {0} ingedien DocType: Workflow State,th,ste -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar (s) gelede DocType: Social Login Key,Provider Name,Verskaffer Naam apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Skep 'n nuwe {0} DocType: Contact,Google Contacts,Google Kontakte @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar-rekening DocType: Email Rule,Is Spam,Is Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Verslag {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Oop {0} +DocType: Data Import Beta,Import Warnings,Invoerwaarskuwings DocType: OAuth Client,Default Redirect URI,Standaard Herlei URI DocType: Auto Repeat,Recipients,ontvangers DocType: System Settings,Choose authentication method to be used by all users,Kies verifikasie metode wat deur alle gebruikers gebruik moet word @@ -2543,6 +2597,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Verslag is s apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook Error DocType: Email Flag Queue,Unread,ongelees DocType: Bulk Update,Desk,lessenaar +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Slaan kolom oor {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter moet 'n tupel of lys wees (in 'n lys) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Skryf 'n SELECT navraag. Nota resultaat is nie geblaai (alle data word in een keer gestuur). DocType: Email Account,Attachment Limit (MB),Aanhegsel Limiet (MB) @@ -2557,6 +2612,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Skep nuwe DocType: Workflow State,chevron-down,Chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-pos is nie gestuur na {0} (unsubscribed / disabled) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Kies velde om uit te voer DocType: Async Task,Traceback,Spoor terug DocType: Currency,Smallest Currency Fraction Value,Kleinste Geld Fraksie Waarde apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Verslag voorberei @@ -2565,6 +2621,7 @@ DocType: Workflow State,th-list,ste-lys DocType: Web Page,Enable Comments,Aktiveer opmerkings apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,notas DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Beperk gebruiker slegs van hierdie IP-adres. Meerdere IP-adresse kan bygevoeg word deur met kommas te skei. Aanvaar ook gedeeltelike IP-adresse soos (111.111.111) +DocType: Data Import Beta,Import Preview,Voer voorskou in DocType: Communication,From,Van apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Kies eers 'n groepskode. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Vind {0} in {1} @@ -2663,6 +2720,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,tussen DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,tougestaan +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opstel> pas vorm aan DocType: Braintree Settings,Use Sandbox,Gebruik Sandbox apps/frappe/frappe/utils/goal.py,This month,Hierdie maand apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nuwe persoonlike drukformaat @@ -2678,6 +2736,7 @@ DocType: Session Default,Session Default,Sessie verstek DocType: Chat Room,Last Message,Laaste boodskap DocType: OAuth Bearer Token,Access Token,Toegangspunt DocType: About Us Settings,Org History,Org Geskiedenis +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Ongeveer {0} minute oor DocType: Auto Repeat,Next Schedule Date,Volgende skedule Datum DocType: Workflow,Workflow Name,Werkstroom Naam DocType: DocShare,Notify by Email,Stel per e-pos in kennis @@ -2707,6 +2766,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,skrywer apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Hervat stuur apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,heropen +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Wys waarskuwings apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Aankoop gebruiker DocType: Data Migration Run,Push Failed,Druk misluk @@ -2743,6 +2803,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Gevord apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,U mag nie die nuusbrief sien nie. DocType: User,Interests,Belange apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Wagwoordherstelinstruksies is na u e-pos gestuur +DocType: Energy Point Rule,Allot Points To Assigned Users,Ken punte toe aan toegewese gebruikers apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Vlak 0 is vir dokumentvlak toestemmings, \ hoër vlakke vir veldvlak toestemmings." DocType: Contact Email,Is Primary,Is Primêr @@ -2765,6 +2826,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Sien die dokument by {0} DocType: Stripe Settings,Publishable Key,Publiseerbare sleutel apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Begin invoer +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Uitvoer Tipe DocType: Workflow State,circle-arrow-left,sirkel-pyl-links DocType: System Settings,Force User to Reset Password,Dwing die gebruiker om die wagwoord terug te stel apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",Klik op {0} om die opgedateerde verslag te kry. @@ -2777,13 +2839,16 @@ DocType: Contact,Middle Name,Middelnaam DocType: Custom Field,Field Description,Veld Beskrywing apps/frappe/frappe/model/naming.py,Name not set via Prompt,Naam nie ingestel via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Dateer {0} van {1}, {2} op" DocType: Auto Email Report,Filters Display,Filters Wys apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",'gewysigde_van' -veld moet aanwesig wees om 'n wysiging te doen. +DocType: Contact,Numbers,nommers apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} waardeer u werk op {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Stoor filters DocType: Address,Plant,plant apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Antwoord almal DocType: DocType,Setup,Stel op +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Alle rekords DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,E-posadres waarvan die Google-kontakte gesinkroniseer moet word. DocType: Email Account,Initial Sync Count,Aanvanklike sintetelling DocType: Workflow State,glass,glas @@ -2808,7 +2873,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Wys voorskou-opspringer apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dit is 'n algemene 100 wagwoord. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Aktiveer pop-ups -DocType: User,Mobile No,Mobiele nommer +DocType: Contact,Mobile No,Mobiele nommer DocType: Communication,Text Content,Teksinhoud DocType: Customize Form Field,Is Custom Field,Is pasgemaakte veld DocType: Workflow,"If checked, all other workflows become inactive.","As dit nagegaan word, word alle ander werkstrome inaktief." @@ -2854,6 +2919,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Voeg apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Naam van die nuwe drukformaat apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Skuif sybalk DocType: Data Migration Run,Pull Insert,Trek invoeging +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maksimum punte toegelaat na vermenigvuldiging van punte met die vermenigvuldigerwaarde (Let wel: laat hierdie veld leeg of stel 0 vir geen limiet nie) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Ongeldige sjabloon apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Onwettige SQL-navraag apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Verpligtend: DocType: Chat Message,Mentions,noem @@ -2868,6 +2936,7 @@ DocType: User Permission,User Permission,Gebruiker Toestemming apps/frappe/frappe/templates/includes/blog/blog.html,Blog,blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nie geïnstalleer nie apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Laai af met data +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},gewysigde waardes vir {0} {1} DocType: Workflow State,hand-right,hand-reg DocType: Website Settings,Subdomain,subdomein DocType: S3 Backup Settings,Region,streek @@ -2894,10 +2963,12 @@ DocType: Braintree Settings,Public Key,Publieke sleutel DocType: GSuite Settings,GSuite Settings,GSuite instellings DocType: Address,Links,Links DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Gebruik die e-posadresnaam wat in hierdie rekening genoem word as die afsender se naam vir alle e-posse wat met hierdie rekening gestuur word. +DocType: Energy Point Rule,Field To Check,Veld om na te gaan apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Kontakte - Kon nie kontak opdateer in Google Kontakte {0}, foutkode {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Kies asseblief die dokumenttipe. apps/frappe/frappe/model/base_document.py,Value missing for,Waarde ontbreek vir apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Voeg kind by +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Voer vordering in DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","As aan die voorwaarde voldoen is, sal die gebruiker met die punte beloon word. bv. doc.status == 'Gesloten'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Indiening van Rekord kan nie uitgevee word nie. @@ -2934,6 +3005,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Magtig toegang tot Goo apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Die bladsy wat jy soek, word ontbreek. Dit kan wees omdat dit verskuif word of daar is 'n tik in die skakel." apps/frappe/frappe/www/404.html,Error Code: {0},Fout Kode: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrywing vir aanbieding bladsy, in gewone teks, slegs 'n paar lyne. (maksimum 140 karakters)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} is verpligte velde DocType: Workflow,Allow Self Approval,Laat selfgoedkeuring toe DocType: Event,Event Category,Gebeurtenis Kategorie apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2981,8 +3053,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Trek na DocType: Address,Preferred Billing Address,Gewenste faktuuradres apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Te veel skryf in een versoek. Stuur asseblief kleiner versoeke apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive is opgestel. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Dokumenttipe {0} is herhaal. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Waardes verander DocType: Workflow State,arrow-up,pyl-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Daar moet ten minste een ry vir die {0} tabel wees apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Om outomatiese herhaling te konfigureer, skakel 'Laat outomatiese herhaling toe' vanaf {0}." DocType: OAuth Bearer Token,Expires In,Verval In DocType: DocField,Allow on Submit,Laat toe op Submit @@ -3069,6 +3143,7 @@ DocType: Custom Field,Options Help,Opsies Help DocType: Footer Item,Group Label,Groepsetiket DocType: Kanban Board,Kanban Board,Kanban Raad apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontakte is opgestel. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 rekord sal uitgevoer word DocType: DocField,Report Hide,Verslag versteek apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Boombeskouing is nie beskikbaar vir {0} DocType: DocType,Restrict To Domain,Beperk om te Domein @@ -3086,6 +3161,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code DocType: Webhook,Webhook Request,Webhook Versoek apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Misluk: {0} tot {1}: {2} DocType: Data Migration Mapping,Mapping Type,Mapping Type +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Kies Verpligtend apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Snuffel apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Geen simbole, syfers of hoofletters nodig nie." DocType: DocField,Currency,geldeenheid @@ -3116,11 +3192,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Briefhoof gebaseer op apps/frappe/frappe/utils/oauth.py,Token is missing,Token ontbreek apps/frappe/frappe/www/update-password.html,Set Password,Stel wagwoord in +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} rekords is suksesvol ingevoer. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Nota: die wysiging van die bladsy naam sal die vorige URL na hierdie bladsy breek. apps/frappe/frappe/utils/file_manager.py,Removed {0},Verwyder {0} DocType: SMS Settings,SMS Settings,SMS instellings DocType: Company History,Highlight,hoogtepunt DocType: Dashboard Chart,Sum,som +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,via data-invoer DocType: OAuth Provider Settings,Force,Force apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Laas gesinkroniseer {0} DocType: DocField,Fold,Vou @@ -3157,6 +3235,7 @@ DocType: Workflow State,Home,huis DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Gebruiker kan inskakel met e-pos-ID of gebruikersnaam DocType: Workflow State,question-sign,vraag-teken +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} is gedeaktiveer apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Veld "roete" is verpligtend vir Web Views apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Voeg kolom voor {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Die gebruiker uit hierdie veld sal punte kry @@ -3190,6 +3269,7 @@ DocType: Website Settings,Top Bar Items,Top balkitems DocType: Notification,Print Settings,Druk instellings DocType: Page,Yes,Ja DocType: DocType,Max Attachments,Maksimum Aanhegsels +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Ongeveer {0} sekondes oor DocType: Calendar View,End Date Field,Einddatum Veld apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale kortpaaie DocType: Desktop Icon,Page,Page @@ -3300,6 +3380,7 @@ DocType: GSuite Settings,Allow GSuite access,Laat GSuite toegang toe DocType: DocType,DESC,Latere DocType: DocType,Naming,benaming apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Kies Alles +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Kolom {0} apps/frappe/frappe/config/customization.py,Custom Translations,Aangepaste vertalings apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,vordering apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,per rol @@ -3341,11 +3422,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Stu DocType: Stripe Settings,Stripe Settings,Streep Stellings DocType: Data Migration Mapping,Data Migration Mapping,Data Migrasie Mapping DocType: Auto Email Report,Period,tydperk +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Ongeveer {0} minuut oor apps/frappe/frappe/www/login.py,Invalid Login Token,Ongeldige aanmeldingstoken apps/frappe/frappe/public/js/frappe/chat.js,Discard,Gooi apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 uur gelede DocType: Website Settings,Home Page,Tuisblad DocType: Error Snapshot,Parent Error Snapshot,Ouer Fout momentopname +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Kaartkolomme van {0} na velde in {1} DocType: Access Log,Filters,filters DocType: Workflow State,share-alt,aandeel-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Waglys moet een van {0} wees @@ -3365,6 +3448,7 @@ DocType: Calendar View,Start Date Field,Begin Datum Veld DocType: Role,Role Name,Rol Naam apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Skakel na die lessenaar apps/frappe/frappe/config/core.py,Script or Query reports,Skripsies of navraagverslae +DocType: Contact Phone,Is Primary Mobile,Is Primêr Mobiel DocType: Workflow Document State,Workflow Document State,Werkstroom Dokumentstaat apps/frappe/frappe/public/js/frappe/request.js,File too big,Lêer te groot apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-posrekening is verskeie kere bygevoeg @@ -3410,6 +3494,7 @@ DocType: DocField,Float,float DocType: Print Settings,Page Settings,Bladsy instellings apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Spaar ... apps/frappe/frappe/www/update-password.html,Invalid Password,Ongeldige Wagwoord +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} rekord suksesvol ingevoer uit {1}. DocType: Contact,Purchase Master Manager,Aankoop Meester Bestuurder apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Klik op die slotikoon om publiek / privaat te skakel DocType: Module Def,Module Name,Module Naam @@ -3443,6 +3528,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Voer asseblief geldige mobiele nos in apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Sommige van die funksies sal dalk nie in u blaaier werk nie. Dateer asseblief u blaaier op na die nuutste weergawe. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Weet nie, vra 'help'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},het hierdie dokument {0} gekanselleer DocType: DocType,Comments and Communications will be associated with this linked document,Kommentaar en kommunikasie sal geassosieer word met hierdie gekoppelde dokument apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,vet @@ -3461,6 +3547,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Voeg / Bestuu DocType: Comment,Published,gepubliseer apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Dankie vir jou e-pos DocType: DocField,Small Text,Klein teks +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Nommer {0} kan nie as primêr vir Telefoon sowel as mobiele nommer ingestel word nie. DocType: Workflow,Allow approval for creator of the document,Laat goedkeuring vir die skepper van die dokument toe apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Stoor verslag DocType: Webhook,on_cancel,on_cancel @@ -3518,6 +3605,7 @@ DocType: Print Settings,PDF Settings,PDF-instellings DocType: Kanban Board Column,Column Name,Kolom Naam DocType: Language,Based On,Gebaseer op DocType: Email Account,"For more information, click here.","Klik hier vir meer inligting." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Aantal kolomme stem nie ooreen met data nie apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Maak dit die terugval-opsie apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Uitvoertyd: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Ongeldige sluit pad in @@ -3607,7 +3695,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Laai {0} lêers op DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Rapporteer begin tyd -apps/frappe/frappe/config/settings.py,Export Data,Uitvoer data +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Uitvoer data apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Kies Kolomme DocType: Translation,Source Text,Bron 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.,Dit is 'n agtergrondverslag. Stel die toepaslike filters in en genereer dan 'n nuwe. @@ -3625,7 +3713,6 @@ DocType: Report,Disable Prepared Report,Deaktiveer voorbereide verslag apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Gebruiker {0} het versoek om data te verwyder apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Onwettige toegangspunt. Probeer asseblief weer apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Die aansoek is opgedateer na 'n nuwe weergawe, verfris asseblief hierdie bladsy" -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 adres sjabloon gevind nie. Skep 'n nuwe een uit Opstel> Drukwerk en handelsmerk> Adressjabloon. DocType: Notification,Optional: The alert will be sent if this expression is true,Opsioneel: Die waarskuwing sal gestuur word as hierdie uitdrukking waar is DocType: Data Migration Plan,Plan Name,Plan Naam DocType: Print Settings,Print with letterhead,Druk met briefhoof @@ -3666,6 +3753,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Kan nie verander sonder Kanselleer nie apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Volle bladsy DocType: DocType,Is Child Table,Is kindertafel +DocType: Data Import Beta,Template Options,Sjabloonopsies apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} moet een van {1} wees apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} bekyk tans hierdie dokument apps/frappe/frappe/config/core.py,Background Email Queue,Agtergrond-e-pos-wagwoord @@ -3673,7 +3761,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Wagwoord Herstel DocType: Communication,Opened,geopen DocType: Workflow State,chevron-left,Chevron-links DocType: Communication,Sending,Stuur -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Nie van hierdie IP-adres toegelaat nie DocType: Website Slideshow,This goes above the slideshow.,Dit gaan bokant die skyfievertoning. DocType: Contact,Last Name,Van DocType: Event,Private,Privaat @@ -3687,7 +3774,6 @@ DocType: Workflow Action,Workflow Action,Workflow Action apps/frappe/frappe/utils/bot.py,I found these: ,Ek het dit gevind: DocType: Event,Send an email reminder in the morning,Stuur 'n e-pos herinnering in die oggend DocType: Blog Post,Published On,Gepubliseer op -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posrekening nie opgestel nie. Skep 'n nuwe e-posrekening vanaf Setup> Email> Email Account DocType: Contact,Gender,geslag apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Verpligte inligting ontbreek: apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} het u punte op {1} teruggestel @@ -3708,7 +3794,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,waarskuwingsteken DocType: Prepared Report,Prepared Report,Voorbereide Verslag apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Voeg metatags op u webblaaie -DocType: Contact,Phone Nos,Telefoonnommer DocType: Workflow State,User,gebruiker DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Wys titel in die blaaier venster as "Voorvoegsel - titel" DocType: Payment Gateway,Gateway Settings,Gateway instellings @@ -3725,6 +3810,7 @@ DocType: Data Migration Connector,Data Migration,Data Migrasie DocType: User,API Key cannot be regenerated,API sleutel kan nie regenereer word nie apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Iets het verkeerd geloop DocType: System Settings,Number Format,Nommer Formaat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} rekord suksesvol ingevoer. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,opsomming DocType: Event,Event Participants,Event Deelnemers DocType: Auto Repeat,Frequency,Frekwensie @@ -3732,7 +3818,7 @@ DocType: Custom Field,Insert After,Voeg na DocType: Event,Sync with Google Calendar,Sinkroniseer met Google Kalender DocType: Access Log,Report Name,Rapporteer Naam DocType: Desktop Icon,Reverse Icon Color,Omgekeerde ikoon Kleur -DocType: Notification,Save,Save +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Save apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Volgende Geskeduleerde Datum apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Ken aan die een wat die minste opdragte het toe apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Afdeling Opskrif @@ -3755,11 +3841,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Maksimum breedte vir tipe Geld is 100px in ry {0} apps/frappe/frappe/config/website.py,Content web page.,Inhoud webblad. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Voeg 'n nuwe rol by -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opstel> pas vorm aan DocType: Google Contacts,Last Sync On,Laaste sinchroniseer op DocType: Deleted Document,Deleted Document,Dokument verwyder apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oeps! Iets het verkeerd geloop DocType: Desktop Icon,Category,kategorie +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Waarde {0} ontbreek vir {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Voeg kontakte by apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,landskap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Kliënte kant skrip uitbreidings in Javascript @@ -3782,6 +3868,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiepuntopdatering apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Kies asseblief 'n ander betaalmetode. PayPal ondersteun nie transaksies in valuta '{0}' DocType: Chat Message,Room Type,Kamer tipe +DocType: Data Import Beta,Import Log Preview,Voer logvoorskou in apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Soekveld {0} is nie geldig nie apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,opgelaaide lêer DocType: Workflow State,ok-circle,ok-sirkel @@ -3848,6 +3935,7 @@ DocType: DocType,Allow Auto Repeat,Laat outomatiese herhaling toe apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Geen waardes om te wys nie DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-pos sjabloon +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} rekord suksesvol opgedateer. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Gebruiker {0} het nie toegang tot doktipe nie via roltoestemming vir dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Beide login en wagwoord word vereis apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Verfris asseblief om die nuutste dokument te kry. diff --git a/frappe/translations/am.csv b/frappe/translations/am.csv index d1abb3a303..8d9429c5c4 100644 --- a/frappe/translations/am.csv +++ b/frappe/translations/am.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,ለሚከተሉት መተግበሪያዎች አዲስ {} ልቀቶች ይገኛሉ apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,አንድ መጠን መስክ እባክዎ ይምረጡ. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,የማስመጣት ፋይል በመጫን ላይ ... DocType: Assignment Rule,Last User,የመጨረሻው ተጠቃሚ። apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","አዲስ ተግባር, {0}: {1} የተሰጠህ ተደርጓል. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,የክፍለ ጊዜ ነባሪዎች ተቀምጠዋል። +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ፋይልን እንደገና ጫን። DocType: Email Queue,Email Queue records.,የኢሜይል ወረፋ መዝገቦች. DocType: Post,Post,ልጥፍ DocType: Address,Punjab,ፑንጃብ @@ -44,6 +46,7 @@ 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,የልኬት @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,ወርሃዊ DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,ገቢ አንቃ apps/frappe/frappe/core/doctype/version/version_view.html,Danger,አደጋ -apps/frappe/frappe/www/login.py,Email Address,የ ኢሜል አድራሻ +DocType: Address,Email Address,የ ኢሜል አድራሻ DocType: Workflow State,th-large,ኛ-ትልቅ DocType: Communication,Unread Notification Sent,የተላከ ያልተነበበ ማሳወቂያ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ወደ ውጪ ላክ አይፈቀድም. እርስዎ ወደ ውጪ ወደ {0} ሚና ያስፈልገናል. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,አስተ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ወዘተ "የሽያጭ መጠይቅ, ድጋፍ መጠይቅ" እንደ የእውቂያ አማራጮች, አዲስ መስመር ላይ በእያንዳንዱ ወይም በኮማ የተለዩ." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,መለያ አክል ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ፎቶግራፍ -DocType: Data Migration Run,Insert,አስገባ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,አስገባ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google Drive መዳረሻ ፍቀድ። apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},ይምረጡ {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,እባክዎን መነሻ ዩ አር ኤል ያስገቡ @@ -118,17 +121,17 @@ 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,ገጽታ ያዋቅሩ DocType: Company History,Company History,የድርጅቱ ታሪክ -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,ዳግም አስጀምር +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,ዳግም አስጀምር DocType: Workflow State,volume-up,ድምጽ-ምትኬ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks የኤፒአይ ጥያቄዎችን ወደ ድር መተግበሪያዎች ይደውሉ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Traceback አሳይ። DocType: DocType,Default Print Format,ነባሪ ማተም ቅርጸት DocType: Workflow State,Tags,መለያዎች apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ማናችንም ብንሆን: ፍሰት መጨረሻ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","ያልሆኑ ልዩ ነባር እሴቶች አሉ እንደ {0} መስክ, {1} ውስጥ እንደ ልዩ ሊዘጋጅ አይችልም" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,የሰነድ አይነቶች +DocType: Global Search Settings,Document Types,የሰነድ አይነቶች DocType: Address,Jammu and Kashmir,ጃሙ እና ካሽሚር DocType: Workflow,Workflow State Field,የስራ ፍሰት ስቴት መስክ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ማዋቀር> ተጠቃሚ። DocType: Language,Guest,እንግዳ DocType: DocType,Title Field,የርእስ መስክ DocType: Error Log,Error Log,ስህተት ምዝግብ ማስታወሻ @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" ብቻ በትንሹ አስቸጋሪ "ABC" ይልቅ ለመገመት ያሉ ይደግማል DocType: Notification,Channel,ሰርጥ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","ይህ ያልተፈቀደለት ነው ብለው የሚያስቡ ከሆነ, የ አስተዳዳሪ የይለፍ ቃል መለወጥ እባክዎ." +DocType: Data Import Beta,Data Import Beta,የውሂብ ማስመጣት ቤታ apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} የግዴታ ነው DocType: Assignment Rule,Assignment Rules,የምደባ ህጎች ፡፡ DocType: Workflow State,eject,አስፈነጠረ @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,የስራ ፍሰት የእ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ሊዋሃዱ አይችሉም DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,አይደለም ዚፕ ፋይል +DocType: Global Search DocType,Global Search DocType,ሁለንተናዊ ፍለጋ DocTpepe። DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
      New {{ doc.doctype }} #{{ doc.name }}
      ","ተለዋዋጭ ርዕሰ ጉዳይን ለማከል, እንደ እንዲህ ያሉ የጃንጃ መለያን ይጠቀሙ
       New {{ doc.doctype }} #{{ doc.name }} 
      " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,የሰነድ ክስተት apps/frappe/frappe/public/js/frappe/utils/user.js,You,አንተ DocType: Braintree Settings,Braintree Settings,Braintree Settings +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} መዝገቦችን በተሳካ ሁኔታ ተፈጥረዋል። apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ማጣሪያን አስቀምጥ DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} መሰረዝ አይቻልም @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,መልዕክት ዩአር apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,ለዚህ ሰነድ ራስ-ሰር ድገም። apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,ሪፖርትዎን በአሳሽዎ ውስጥ ይመልከቱ apps/frappe/frappe/config/desk.py,Event and other calendars.,ክስተት እና ሌሎች የቀን መቁጠሪያዎች. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 ረድፍ አስገዳጅ) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,ሁሉም መስኮች አስተያየት ለማስገባት አስፈላጊ ናቸው. DocType: Custom Script,Adds a client custom script to a DocType,የደንበኛን ብጁ ጽሑፍ ወደ DocType ያክላል። DocType: Print Settings,Printer Name,የአታሚ ስም @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,የጅምላ ዝማኔ DocType: Workflow State,chevron-up,ሸቭሮን-ምትኬ DocType: DocType,Allow Guest to View,እንግዳ ይመልከቱ ፍቀድ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ከ {1} ጋር ተመሳሳይ መሆን የለበትም -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,እስከመጨረሻው {0} ንጥሎች ይሰረዙ? apps/frappe/frappe/utils/oauth.py,Not Allowed,አይፈቀድም @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,አሳይ DocType: Email Group,Total Subscribers,ጠቅላላ ተመዝጋቢዎች apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},የላይኛው {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,ረድፍ ቁጥር። apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","አንድ ሚና ደረጃ 0 ላይ መዳረሻ ከሌለው, ከዚያ ከፍተኛ ደረጃ ትርጉም የለሽ ናቸው." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,አስቀምጥ እንደ DocType: Comment,Seen,የታየው @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,ለምሳሌ: DocType: Workflow,Defines workflow states and rules for a document.,አንድ ሰነድ የስራ ፍሰት ስቴቶች እና ደንቦች ይገልፃል. DocType: Workflow State,Filter,ማጣሪያ @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,ዝግ DocType: Blog Settings,Blog Title,የጦማር ርዕስ apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,መደበኛ ሚና ተሰናክሏል አይችልም apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,የውይይት ዓይነት +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,የካርታ አምዶች። DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,በራሪ ጽሑፍ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,በ ቅደም ንዑስ-መጠይቅ መጠቀም አይቻልም @@ -394,6 +403,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} ተጠቃሚ ሊሰረዝ አይችልም DocType: System Settings,Currency Precision,የምንዛሬ ዝንፍ የማይሉ apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,ሌላው ግብይት ይህን ሰው ማገድ ነው. በጥቂት ሰከንዶች ውስጥ እንደገና ሞክር. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,ማጣሪያዎችን ያፅዱ ፡፡ DocType: Test Runner,App,የመተግበሪያ apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,ዓባሪዎች ከአዲሱ ሰነድ ጋር በትክክል መገናኘት አልቻሉም DocType: Chat Message Attachment,Attachment,አባሪ @@ -419,6 +429,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,በዚህ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",ጉግል ቀን መቁጠሪያ - በ Google ቀን መቁጠሪያ ውስጥ ክስተት {0} ን ማዘመን አልተቻለም ፣ የስህተት ኮድ {1}። apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ይፈልጉ ወይም ትእዛዝ ይተይቡ DocType: Activity Log,Timeline Name,የጊዜ መስመር ስም +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,አንድ {0} ብቻ እንደ ዋና ሊቀናበር ይችላል። DocType: Email Account,e.g. smtp.gmail.com,ለምሳሌ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,አዲስ ደንብ አክል DocType: Contact,Sales Master Manager,የሽያጭ መምህር አስተዳዳሪ @@ -435,7 +446,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP የመካከለኛ ስም መስክ ፡፡ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} ከ {1} በማስመጣት ላይ DocType: GCalendar Account,Allow GCalendar Access,የ GCalendar መዳረሻን ፍቀድ -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} አስገዳጅ መስክ ነው +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} አስገዳጅ መስክ ነው apps/frappe/frappe/templates/includes/login/login.js,Login token required,የመግቢያ ማስመሰያ ይጠየቃል apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ወርሃዊ ደረጃ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,በርካታ የዝርዝር ንጥል ነገሮችን ይምረጡ። @@ -465,6 +476,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},ማገናኘት አይ apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,በራሱ አንድ ቃል ለመገመት ቀላል ነው. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},ራስ-ምደባ አልተሳካም ፦ {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,ፈልግ ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,ኩባንያ ይምረጡ apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,ሕዋሶችን መካከል ብቻ የሚቻል ቡድን-ቡድን-ወይም ቅጠል መስቀለኛ መንገድ-ወደ-ቅጠል መስቀለኛ መንገድ apps/frappe/frappe/utils/file_manager.py,Added {0},ታክሏል {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,ምንም ተዛማጅ ሰነዶች. አዲስ ነገር ፈልግ @@ -477,7 +489,6 @@ DocType: Google Settings,OAuth Client ID,OAuth የደንበኛ መታወቂያ DocType: Auto Repeat,Subject,ትምህርት apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ወደ መስሪያው ተመለስ DocType: Web Form,Amount Based On Field,የገንዘብ መጠን መስክ ላይ የተመሠረተ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,እባክዎን ነባሪውን የኢሜል አካውንት ያዋቅሩ ከማዋቀር> ኢሜል> ከኢሜል አካውንት ፡፡ apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,የተጠቃሚ አጋራ ግዴታ ነው DocType: DocField,Hidden,የተደበቀ DocType: Web Form,Allow Incomplete Forms,ያልተሟላ ቅጾች ፍቀድ @@ -514,6 +525,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} እና {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,አንድ ውይይት ይጀምሩ. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ሁልጊዜ የሕትመት ረቂቅ ሰነዶች ርዕስ "ረቂቅ" ለማከል apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},በማስታወቂያ ውስጥ ስህተት: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ዓመት (ቶች) በፊት። DocType: Data Migration Run,Current Mapping Start,የአሁኑ የካርታ ጀምር apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,የኢሜይል እንደ አይፈለጌ መልዕክት ምልክት ተደርጎበታል DocType: Comment,Website Manager,የድር ጣቢያ አስተዳዳሪ @@ -551,6 +563,7 @@ DocType: Workflow State,barcode,የአሞሌ apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,ንዑስ መጠይቅ ወይም ተግባርን መጠቀም የተከለከለ ነው apps/frappe/frappe/config/customization.py,Add your own translations,የእራስዎ ትርጉሞችን ያክሉ DocType: Country,Country Name,የአገር ስም +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,ባዶ አብነት። DocType: About Us Team Member,About Us Team Member,እኛ ቡድን አባል ስለ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","ፈቃዶች, ሪፖርት, አስመጣ, ላክ, ማተም, ኢሜይል እና አዘጋጅ የተጠቃሚ ፍቃዶች, ጻፍ ፍጠር, ሰርዝ, አስገባ, ሰርዝ, እንዲሻሻል, ሚናዎች እና አንብብ ያሉ መብቶች በማዋቀር የሰነድ አይነቶች (ይባላል DocTypes) ላይ የተዘጋጀ ነው." DocType: Event,Wednesday,እሮብ @@ -562,6 +575,7 @@ DocType: Website Settings,Website Theme Image Link,የድር ጣቢያ ገጽታ DocType: Web Form,Sidebar Items,የጎን ንጥሎች DocType: Web Form,Show as Grid,እንደ ፍርግርግ አሳይ apps/frappe/frappe/installer.py,App {0} already installed,የመተግበሪያ {0} አስቀድሞ ተጭኗል +DocType: Energy Point Rule,Users assigned to the reference document will get points.,ለማጣቀሻ ሰነዱ የተመደቡ ተጠቃሚዎች ነጥቦችን ያገኛሉ ፡፡ apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,ምንም ቅድመ-እይታ የለም DocType: Workflow State,exclamation-sign,ቃለ አጋኖ-ምልክት apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,ያልተከፈቱ {0} ፋይሎች። @@ -597,6 +611,7 @@ DocType: Notification,Days Before,ቀናት በፊት apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ዕለታዊ ዝግጅቶች በተመሳሳይ ቀን መጨረስ አለባቸው። apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ያርትዑ ... DocType: Workflow State,volume-down,ድምጽ-ታች +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ከዚህ የአይፒ አድራሻ ድረስ መድረሻ አይፈቀድም ፡፡ apps/frappe/frappe/desk/reportview.py,No Tags,ምንም መለያዎች DocType: Email Account,Send Notification to,ወደ ማሳወቂያ ላክ DocType: DocField,Collapsible,ሊሰበሰቡ @@ -652,6 +667,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,ገንቢ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,የተፈጠረ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} ረድፍ ውስጥ {1} ሁለቱም ዩአርኤል እና ልጅ ንጥሎች ሊኖሩት አይችልም +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},ለሚከተሉት ሠንጠረ oneች ቢያንስ አንድ ረድፍ መኖር አለበት-{0} DocType: Print Format,Default Print Language,ነባሪ የህትመት ቋንቋ። apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,የቀድሞ አባቶች apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} ሥር ሊሰረዝ አይችልም @@ -694,6 +710,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "ባዶን" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,አስተናጋጅ +DocType: Data Import Beta,Import File,ፋይልን ያስመጡ። apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,አምድ {0} አስቀድመው አሉ. DocType: ToDo,High,ከፍ ያለ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,አዲስ ክስተት @@ -722,8 +739,6 @@ DocType: User,Send Notifications for Email threads,ለኢሜይል ክሮች ማ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ፕሮፌሰር apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,አይደለም የገንቢ ሁነታ ላይ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,የፋይል መጠባበቂያ ዝግጁ ነው -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",ከተባዛ እሴት ጋር ነጥቦችን ካባዙ በኋላ ከፍተኛው ነጥብ ይፈቀዳል (ማስታወሻ-ምንም ገደብ አልተወሰነ እሴት እንደ 0) DocType: DocField,In Global Search,* Global Search ውስጥ DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,ገብ-ግራ @@ -765,6 +780,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',አባል «{0}» ቀደም ሚና አለው «{1}» DocType: System Settings,Two Factor Authentication method,ሁለት ሁነታ ማረጋገጥ ዘዴ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,በመጀመሪያ ስም አስቀምጠው መዝገቡን ያስቀምጡ. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 መዛግብቶች apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ጋር ተጋርቷል {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ከደንበኝነት DocType: View Log,Reference Name,የማጣቀሻ ስም @@ -813,6 +829,8 @@ 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,የኢሜይል ሁኔታን ተከታተል DocType: Note,Notify Users On Every Login,እያንዳንዱ መግቢያው ላይ ተጠቃሚዎችን አሳውቅ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,ከማንኛውም መስክ አምድ {0} ጋር መዛመድ አልተቻለም። +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} መዝገቦች በተሳካ ሁኔታ ዘምነዋል። DocType: PayPal Settings,API Password,የኤ ፒ አይ የይለፍ ቃል apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,የ Python ሞጁል ወይም የግንኙነት አይነት ይምረጡ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname ብጁ መስክ ለ አልተዘጋጀም @@ -841,9 +859,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,ዋጋ ተቀይሯል apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},አባዛ ስም {0} {1} -DocType: Email Queue,Retry,እንደገና ሞክር +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,እንደገና ሞክር +DocType: Contact Phone,Number,ቁጥር DocType: Web Form Field,Web Form Field,የድር ቅጽ መስክ apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,ከሚከተለው አዲስ መልዕክት አለዎት: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML አርትዕ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,እባክዎ ድጋሚ ዩ አር ኤል ያስገቡ apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +888,7 @@ DocType: Notification,View Properties (via Customize Form),(ብጁ ቅጽ በኩ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,እሱን ለመምረጥ ፋይል ላይ ጠቅ ያድርጉ። DocType: Note Seen By,Note Seen By,የታየ ማስታወሻ apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,ተጨማሪ በየተራ ጋር ረዘም ሰሌዳ ጥለት ለመጠቀም ይሞክሩ -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,የመሪዎች ሰሌዳ +,LeaderBoard,የመሪዎች ሰሌዳ DocType: DocType,Default Sort Order,ነባሪ የድርድር ቅደም ተከተል። DocType: Address,Rajasthan,ራጃስታን DocType: Email Template,Email Reply Help,የኢሜል መልስ እገዛ @@ -903,6 +923,7 @@ apps/frappe/frappe/utils/data.py,Cent,በመቶ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ኢሜይል ፃፍ apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","የስራ ፍሰት ለ ስቴትስ (ለምሳሌ ረቂቅ, የጸደቀ, ተሰርዟል)." DocType: Print Settings,Allow Print for Draft,ረቂቅ ለ አትም ፍቀድ +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/link_selector.js,Set Quantity,አዘጋጅ ብዛት apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ለማረጋገጥ ይህን ሰነድ ማስገባት DocType: Contact,Unsubscribed,ያልተመዘገበ @@ -934,6 +955,7 @@ DocType: LDAP Settings,Organizational Unit for Users,ለተጠቃሚዎች የ ,Transaction Log Report,የግብይት ምዝግብ ማስታወሻ ዘገባ DocType: Custom DocPerm,Custom DocPerm,ብጁ DocPerm DocType: Newsletter,Send Unsubscribe Link,ከደንበኝነት አገናኝ ላክ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,ፋይልዎን ከማስመጣትዎ በፊት መፈጠር ያለባቸው አንዳንድ የተገናኙ መዝገቦች አሉ። የሚከተሉትን የጎደሉ መዝገቦችን በራስ-ሰር መፍጠር ይፈልጋሉ? DocType: Access Log,Method,መንገድ DocType: Report,Script Report,ስክሪፕት ሪፖርት DocType: OAuth Authorization Code,Scopes,ወሰኖች @@ -974,6 +996,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,በተሳካ ሁኔታ ተሰቅሏል። apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,ወደ በይነመረብ ተገናኝተሃል. DocType: Social Login Key,Enable Social Login,ማህበራዊ መግቢያን አንቃ +DocType: Data Import Beta,Warnings,ማስጠንቀቂያዎች። DocType: Communication,Event,ድርጊት apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",{0} ላይ: {1} እንዲህ ሲል ጽፏል: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,መደበኛ መስክ መሰረዝ አልተቻለም. የሚፈልጉ ከሆነ ይህን መደበቅ ትችላለህ @@ -1029,6 +1052,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,ከዚህ DocType: Kanban Board Column,Blue,ሰማያዊ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,መላበሶች ሁሉ ይወገዳሉ. አባክዎ ያጽድቁ. DocType: Page,Page HTML,ገጽ ኤችቲኤምኤል +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,የተሳሳቱ ረድፎችን ይላኩ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,የቡድን ስም ባዶ ሊሆን አይችልም. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,ተጨማሪ መስቀለኛ ብቻ 'ቡድን' አይነት አንጓዎች ስር ሊፈጠር ይችላል DocType: SMS Parameter,Header,የራስጌ @@ -1067,13 +1091,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,የተመደበለት Out ይጠይቁ apps/frappe/frappe/config/settings.py,Enable / Disable Domains,ጎራዎችን አንቃ / አሰናክል DocType: Role Permission for Page and Report,Allow Roles,ሚናዎችን ፍቀድ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,ከ {1} መዛግብቶች በተሳካ ሁኔታ ከውጭ ገብተዋል {0} DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")",ቀላል የ Python መግለጫ ፣ ምሳሌ ሁኔታ በ (“ልክ ያልሆነ”) DocType: User,Last Active,ንቁ የመጨረሻ DocType: Email Account,SMTP Settings for outgoing emails,ለወጪ ኢሜይሎች SMTP ቅንብሮች apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ሀ ይምረጡ DocType: Data Export,Filter List,የማጣሪያ ዝርዝር DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,የይለፍ ቃልህ ዘምኗል. እዚህ አዲስ የይለፍ ቃል ነው DocType: Email Account,Auto Reply Message,ራስ-ምላሽ መልዕክት DocType: Data Migration Mapping,Condition,ሁኔታ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ሰዓታት በፊት @@ -1082,7 +1106,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,የተጠቃሚው መለያ DocType: Communication,Sent,ተልኳል DocType: Address,Kerala,በኬረለ -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,አስተዳደር ፡፡ DocType: User,Simultaneous Sessions,በአንድ ላይ ክፍለ ጊዜዎች DocType: Social Login Key,Client Credentials,የደንበኛ ምስክርነቶች @@ -1114,7 +1137,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},የተ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ባለቤት DocType: DocType,User Cannot Create,ተጠቃሚ ይፍጠሩ አይቻልም apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,በተሳካ ሁኔታ ተከናውኗል -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,አቃፊ {0} የለም apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,መሸወጃ መዳረሻ ፀድቋል ነው! DocType: Customize Form,Enter Form Type,ቅጽ አይነት ያስገቡ DocType: Google Drive,Authorize Google Drive Access,የጉግል ድራይቭ ፍቀድ ፡፡ @@ -1122,7 +1144,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,ምንም መዛግብት መለያ ሰጥታለች. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,መስክ አስወግድ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,ወደ በይነመረብ አልተገናኘህም. የሆነ ጊዜ ካለፈ በኋላ ይሞክሩ. -DocType: User,Send Password Update Notification,የይለፍ ቃል አዘምን ማሳወቂያ ላክ apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType መፍቀድ. ተጥንቀቅ!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ማተም, ኢሜይል ብጁ ቅርጸቶች" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},የ {0} ድምር @@ -1207,6 +1228,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,ትክክል ያል apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,የጉግል ዕውቂያዎች ማዋሃድ ተሰናክሏል። DocType: Assignment Rule,Description,መግለጫ DocType: Print Settings,Repeat Header and Footer in PDF,ፒዲኤፍ ውስጥ ራስጌ እና ግርጌ ድገም +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,አለመሳካት። DocType: Address Template,Is Default,ነባሪ ነው DocType: Data Migration Connector,Connector Type,የተያያዥ አይነት apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,የአምድ ስም ባዶ መሆን አይችልም @@ -1219,6 +1241,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,ወደ {0} ገጽ 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,አምዶች ላይ የተመሠረተ +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/model/document.py,Action Failed,እርምጃ አልተሳካም apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,የተጠቃሚ ለ @@ -1272,6 +1295,7 @@ DocType: Print Settings,Enable Raw Printing,ጥሬ ማተምን ያንቁ። DocType: Website Route Redirect,Source,ምንጭ apps/frappe/frappe/templates/includes/list/filters.html,clear,ግልጽ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,ተጠናቅቋል። +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ማዋቀር> ተጠቃሚ። DocType: Prepared Report,Filter Values,ማጣሪያዎች DocType: Communication,User Tags,የተጠቃሚ መለያዎች DocType: Data Migration Run,Fail,አልተሳካም @@ -1327,6 +1351,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,ተ ,Activity,ሥራ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",እርዳታ: በስርዓቱ ውስጥ ሌላ ታሪክ ጋር ማገናኘት ላይ አገናኝ ዩአርኤል እንደ "# ቅፅ / ማስታወሻ / [ስም ማስታወሻ]" ይጠቀሙ. (አይጠቀሙ «http: //») DocType: User Permission,Allow,ፍቀድ +DocType: Data Import Beta,Update Existing Records,ነባር መዛግብቶችን ያዘምኑ። apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,የአምላክ በተደጋጋሚ ቃላት እና ቁምፊዎች ለማስወገድ እንመልከት DocType: Energy Point Rule,Energy Point Rule,የኢነርጂ ነጥብ ደንብ። DocType: Communication,Delayed,ዘግይቷል @@ -1339,9 +1364,7 @@ DocType: Milestone,Track Field,የትራክ መስክ DocType: Notification,Set Property After Alert,ማንቂያ በኋላ ንብረት አዘጋጅ apps/frappe/frappe/config/customization.py,Add fields to forms.,ቅጾች መስኮች ያክሉ. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ነገር ይመስላል ይህ ጣቢያ የ Paypal ውቅር ጋር ስህተት ነው. -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/sidebar/review.js,Add Review,ግምገማ ያክሉ። -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),የቅርጸ-ቁምፊ መጠን (ፒክስል) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,ደረጃውን የጠበቀ DocTypes ብቻ ከግል ብጁ (ቅጅ) እንዲበጅ ይፈቀድላቸዋል ፡፡ DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1401,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ማ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,አዝናለሁ! አንተ በራስ-የመነጨ አስተያየቶች መሰረዝ አይችሉም DocType: Google Settings,Used For Google Maps Integration.,ለ Google ካርታዎች ማዋሃድ ያገለገሉ። apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,የማጣቀሻ DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,ምንም መዝገቦች አይላኩም። DocType: User,System User,የስርዓት የተጠቃሚ DocType: Report,Is Standard,መደበኛ ነው DocType: Desktop Icon,_report,_report @@ -1392,6 +1416,7 @@ DocType: Workflow State,minus-sign,ሲቀነስ-ምልክት apps/frappe/frappe/public/js/frappe/request.js,Not Found,አልተገኘም apps/frappe/frappe/www/printview.py,No {0} permission,ምንም {0} ፍቃድ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ወደ ውጪ ላክ ብጁ ፍቃዶች +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ምንም ንጥሎች አልተገኙም. DocType: Data Export,Fields Multicheck,መስኮች የበዙት DocType: Activity Log,Login,ግባ DocType: Web Form,Payments,ክፍያዎች @@ -1451,8 +1476,9 @@ DocType: Address,Postal,የፖስታ DocType: Email Account,Default Incoming,ነባሪ ገቢ DocType: Workflow State,repeat,ደገመ DocType: Website Settings,Banner,ሰንደቅ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},እሴት ከ {0} አንድ መሆን አለበት DocType: Role,"If disabled, this role will be removed from all users.","ተሰናክሏል ከሆነ, ይህ ሚና ሁሉም ተጠቃሚዎች ይወገዳል." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,ወደ {0} ዝርዝር ይሂዱ። +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,ፍለጋ ላይ እገዛ DocType: Milestone,Milestone Tracker,ማይልስ ትራክ። apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,የተመዘገበ ነገር ግን ተሰናክሏል @@ -1466,6 +1492,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,አካባቢያዊ የመ DocType: DocType,Track Changes,የትራክ ለውጦች DocType: Workflow State,Check,ፈትሽ DocType: Chat Profile,Offline,ከመስመር ውጭ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},በተሳካ ሁኔታ እንዲመጣ {0} DocType: User,API Key,የኤ ፒ አይ ቁልፍ DocType: Email Account,Send unsubscribe message in email,በኢሜይል ውስጥ ከአባልነት መልዕክት ይላኩ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,ርዕስ አርትዕ @@ -1492,11 +1519,11 @@ 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/form/footer/timeline.js,changed value of {0} {1},የ {0} {1} እሴት ተቀይሯል 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,ጠቅላላ ገጾች apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} ቀድሞውኑ ለ {1} ነባሪ እሴት መድቧል። -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

      No results found for '

      ,

      ለ 'ምንም ውጤቶች አልተገኙም

      DocType: DocField,Attach Image,ምስል ያያይዙ DocType: Workflow State,list-alt,ዝርዝር-alt apps/frappe/frappe/www/update-password.html,Password Updated,የይለፍ ቃል ዘምኗል @@ -1517,8 +1544,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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,ውይይት +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ማዋቀር> የተጠቃሚ ፈቃዶች። DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP ቡድን ካርታ ስራ። DocType: Dashboard Chart,Chart Options,የገበታ አማራጮች። +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,ርዕስ አልባ ዓምድ። apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} ከ {1} {2} ውስጥ ረድፍ # ወደ {3} DocType: Communication,Expired,ጊዜው አልፎበታል apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,እየተጠቀሙት ያለው ማስመሰል ልክ ያልኾነ ነው! @@ -1528,6 +1557,7 @@ DocType: DocType,System,ስርዓት DocType: Web Form,Max Attachment Size (in MB),(ሜባ ውስጥ) ከፍተኛ አባሪ መጠን apps/frappe/frappe/www/login.html,Have an account? Login,አንድ መለያ አለህ? ግባ DocType: Workflow State,arrow-down,ቀስት ወደ ታች +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},ረድፍ {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ተጠቃሚ መሰረዝ አይፈቀድም {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} of {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,ለመጨረሻ ጊዜ የዘመነው @@ -1544,6 +1574,7 @@ DocType: Custom Role,Custom Role,ብጁ ሚና apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,መነሻ / የሙከራ አቃፊ 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,የይለፍ ቃልዎን ያስገቡ DocType: Dropbox Settings,Dropbox Access Secret,መሸወጃ መዳረሻ ሚስጥር +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(አስገዳጅ) 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.,በፋይል ውስጥ ምንም ውሂብ አልተገኘም. እባክዎ አዲሱን ፋይል ከውሂብ ጋር ያያይዙት. @@ -1618,6 +1649,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ዳሽቦ apps/frappe/frappe/desk/form/assign_to.py,New Message,አዲስ መልዕክት DocType: File,Preview HTML,ቅድመ እይታ ኤችቲኤምኤል DocType: Desktop Icon,query-report,ጥያቄ-ሪፖርት +DocType: Data Import Beta,Template Warnings,የአብነት ማስጠንቀቂያዎች። apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ማጣሪያዎች ተቀምጧል DocType: DocField,Percent,መቶኛ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,ማጣሪያዎችን ለማዘጋጀት እባክዎ @@ -1639,6 +1671,7 @@ DocType: Custom Field,Custom,ብጁ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","ከነቃ, ከተከለከለ አይ ፒ አድራሻ በመለያ የሚገቡ ተጠቃሚዎች ለሁለት እውነታ ማረጋገጫ አይጠየቁም" DocType: Auto Repeat,Get Contacts,እውቂያዎችን ያግኙ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ስር የቀረቡ ልጥፎች {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ርዕስ-አልባ ዓምድ በመዝለል ላይ። DocType: Notification,Send alert if date matches this field's value,ቀን በዚህ መስክ ያለውን እሴት ጋር የሚዛመድ ከሆነ ማንቂያ ላክ DocType: Workflow,Transitions,ሽግግሮች apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} ወደ {2} @@ -1662,6 +1695,7 @@ DocType: Workflow State,step-backward,ደረጃ-ወደኋላ apps/frappe/frappe/utils/boilerplate.py,{app_title},{APP_TITLE} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,ጣቢያዎ ውቅር ውስጥ መሸወጃ መዳረሻ ቁልፎች ማዘጋጀት እባክዎ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,በዚህ ኢሜይል አድራሻ መላክ ለመፍቀድ ይህን መዝገብ ይሰርዙ +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)",መደበኛ ያልሆነ ወደብ ከሆነ (ለምሳሌ POP3: 995/110 ፣ IMAP: 993/143) apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,አቋራጮችን ያብጁ። apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ብቻ የግዴታ መስኮች አዳዲስ መዝገቦች አስፈላጊ ናቸው. ከፈለጉ እርስዎ ያልሆኑ አስገዳጅ ዓምዶች መሰረዝ ይችላሉ. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,ተጨማሪ እንቅስቃሴን አሳይ። @@ -1770,6 +1804,7 @@ 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 መተግበሪያ 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,ደብዳቤ DocType: DocType,"Naming Options:
      1. field:[fieldname] - By Field
      2. naming_series: - By Naming Series (field called naming_series must be present
      3. Prompt - Prompt user for a name
      4. [series] - Series by prefix (separated by a dot); for example PRE.#####
      5. @@ -1783,6 +1818,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,የኢነርጂ ነጥብ ቅንጅቶች። DocType: Async Task,Succeeded,ተሳክቷል apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},ውስጥ ያስፈልጋል አስገዳጅ መስኮች {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

        No results found for '

        ,

        ለ 'ምንም ውጤቶች አልተገኙም

        apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,ለ ዳግም አስጀምር ፍቃዶች {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,ተጠቃሚዎች እና ፈቃዶች DocType: S3 Backup Settings,S3 Backup Settings,S3 የምትኬ ቅንብሮች @@ -1853,6 +1889,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ውስጥ DocType: Notification,Value Change,እሴት ለውጥ DocType: Google Contacts,Authorize Google Contacts Access,የጉግል ዕውቂያዎች መዳረሻ ፍቀድ ፡፡ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,ከሪፖርት ብቻ የቁጥር መስኮችን ብቻ በማሳየት ላይ +DocType: Data Import Beta,Import Type,የማስመጫ ዓይነት። DocType: Access Log,HTML Page,HTML ገጽ። DocType: Address,Subsidiary,ተጪማሪ apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,ከ QZ ትሪ ጋር ግንኙነትን በመሞከር ላይ ... @@ -1863,7 +1900,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,ልክ ያ DocType: Custom DocPerm,Write,ጻፈ apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,ብቻ አስተዳዳሪ መጠይቅ / ስክሪፕት ሪፖርቶችን መፍጠር አይፈቀድም apps/frappe/frappe/public/js/frappe/form/save.js,Updating,በማዘመን ላይ -DocType: File,Preview,ቅድመ-እይታ +DocType: Data Import Beta,Preview,ቅድመ-እይታ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",የመስክ "ዋጋ" የግዴታ ነው. መዘመን ዋጋ ይግለጹ DocType: Customize Form,Use this fieldname to generate title,ርዕስ ለማመንጨት ይህን fieldname ይጠቀሙ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,ከ አስመጣ ኢሜይል @@ -1946,6 +1983,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,አሳሽ አ DocType: Social Login Key,Client URLs,የደንበኛ ዩ አር ኤሎች apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,አንዳንድ መረጃ ይጎድለዋል apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} በተሳካ ሁኔታ ተፈጥሯል +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}",{0} ከ {1} ፣ {2} መዝለል DocType: Custom DocPerm,Cancel,ሰርዝ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,የጅምላ ሰርዝ apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,{0} የለም ፋይል @@ -1973,7 +2011,6 @@ DocType: GCalendar Account,Session Token,የክፍለ-ምልክት ማስመሰ DocType: Currency,Symbol,ምልክት apps/frappe/frappe/model/base_document.py,Row #{0}:,የረድፍ # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,የውሂብ ስረዛን ያረጋግጡ። -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,አዲስ የይለፍ ቃል ኢሜይል apps/frappe/frappe/auth.py,Login not allowed at this time,በዚህ ጊዜ አይፈቀድም ይግቡና DocType: Data Migration Run,Current Mapping Action,የአሁኑ የካርታ ስራ እርምጃ DocType: Dashboard Chart Source,Source Name,ምንጭ ስም @@ -1986,6 +2023,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ግ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,የሚከተለው በ DocType: LDAP Settings,LDAP Email Field,የኤልዲኤፒ የኢሜይል መስክ apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} ዝርዝር +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} መዝገቦችን ይላኩ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,አስቀድሞ ተጠቃሚ ውስጥ ዝርዝር አድርግ ወደ DocType: User Email,Enable Outgoing,የወጪ አንቃ DocType: Address,Fax,ፋክስ @@ -2043,8 +2081,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,የህትመት ሰነዶች apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ወደ መስክ ዝለል DocType: Contact Us Settings,Forward To Email Address,አስተላልፍ አድራሻ ኢሜይል ወደ +DocType: Contact Phone,Is Primary Phone,ዋናው ስልክ ነው ፡፡ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ወደዚህ ለማገናኘት አንድ ኢሜይል ወደ {0} ይላኩ። DocType: Auto Email Report,Weekdays,የሳምንቱ ቀናት +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} መዝገቦች ይላካሉ። apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,የርዕስ መስክ ልክ የሆነ fieldname መሆን አለበት DocType: Post Comment,Post Comment,አስተያየት ለጥፍ apps/frappe/frappe/config/core.py,Documents,ሰነዶች @@ -2062,7 +2102,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",እዚህ ላይ በተገለጸው fieldname እሴት አለው ወይም ደንብ እውነተኛ (ምሳሌዎች) ናቸው ብቻ ከሆነ ይህ መስክ ይታያል: myfield ኢቫል: doc.myfield == 'የእኔ እሴት »ኢቫል: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ዛሬ +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ይህን ካዋቀሩት በኋላ, ተጠቃሚዎች ብቻ ነው የሚችል መዳረሻ ሰነዶችን ይሆናል (ለምሳሌ. ልጥፍ ብሎግ) አገናኝ (ለምሳሌ. ብሎገር) አለ ቦታ." +DocType: Data Import Beta,Submit After Import,ከመጣ በኋላ ያስገቡ DocType: Error Log,Log of Scheduler Errors,መርሐግብር ስህተቶች መካከል መዝገብ DocType: User,Bio,የህይወት ታሪክ DocType: OAuth Client,App Client Secret,የመተግበሪያ የደንበኛ ሚስጥር @@ -2081,10 +2123,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,የመግቢያ ገጽ ላይ ያሰናክሉ የደንበኞች ምዝገባ አገናኝ apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ ባለቤት ተመድቧል DocType: Workflow State,arrow-left,ቀስት-ግራ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1 ሪኮርድን ላክ DocType: Workflow State,fullscreen,ሙሉ ማያ DocType: Chat Token,Chat Token,የውይይት ቶክ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ገበታ ፍጠር። apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,አታስመጣ። DocType: Web Page,Center,መሃል DocType: Notification,Value To Be Set,ዋጋ እንዲዘጋጅ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},አርትዕ {0} @@ -2104,6 +2148,7 @@ DocType: Print Format,Show Section Headings,አሳይ ክፍል አርዕስቶ DocType: Bulk Update,Limit,ወሰን apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},ከሚከተለው ጋር የተዛመደ የ {0} ውሂብ ስረዛ ደርሶናል-{1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,አዲስ ክፍል ያክሉ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,የተጣሩ መዛግብቶች። apps/frappe/frappe/www/printview.py,No template found at path: {0},መንገድ ላይ የሚገኘው ምንም አብነት: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ምንም የኢሜይል መለያ DocType: Comment,Cancelled,ተሰርዟል @@ -2190,10 +2235,13 @@ 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} ማድረግ አይቻልም 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,የመግቢያ መታወቂያ ይሆናል +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,ሁለንተናዊ የፍለጋ ሰነዶች ዓይነቶች ዳግም ማስጀመር። ,Lead Conversion Time,መሪነት የተቀየረበት ጊዜ apps/frappe/frappe/desk/page/activity/activity.js,Build Report,ሪፖርት ይገንቡ DocType: Note,Notify users with a popup when they log in,እነርሱም ውስጥ መግባት ጊዜ አንድ ብቅ-ባይ ጋር ተጠቃሚዎች አሳውቅ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,ዋና ሞጁሎች {0} በአለም ፍለጋ ውስጥ መፈለግ አይቻልም ፡፡ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,ውይይት ክፈት። apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} የለም, ማዋሃድ አዲስ ዒላማ ይምረጡ" DocType: Data Migration Connector,Python Module,ፒኔን ሞዱል @@ -2210,8 +2258,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,ገጠመ 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ማዋቀር> የተጠቃሚ ፈቃዶች። -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,አዘምን +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,አዘምን DocType: Transaction Log,Transaction Hash,የግብይት Hash DocType: Error Snapshot,Snapshot View,ቅጽበተ-ይመልከቱ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,ከመላክህ በፊት ጋዜጣ ላይ ያስቀምጡ @@ -2227,6 +2274,7 @@ DocType: Data Import,In Progress,በሂደት ላይ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,ምትኬ ወረፋ. ይህም አንድ ሰዓት ጥቂት ደቂቃዎች ሊወስድ ይችላል. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,የተጠቃሚ ፍቃድ አስቀድሞ አለ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},አምድ {0} ወደ መስክ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},አሳይ {0} DocType: User,Hourly,በሰዓት apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth ደንበኛ መተግበሪያ ይመዝገቡ @@ -2238,7 +2286,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,የነጥብ አቀ DocType: SMS Settings,SMS Gateway URL,ኤስ ኤም ኤስ ጌትዌይ ዩ አር ኤል apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ሊሆን አይችልም "{2}». ከዚህ ውስጥ አንዱ መሆን አለበት "{3}» apps/frappe/frappe/utils/data.py,{0} or {1},{0} ወይም {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,የይለፍ ቃል አዘምን DocType: Workflow State,trash,መጣያ DocType: System Settings,Older backups will be automatically deleted,የቆዩ መጠባበቂያዎች በራስ-ሰር ይሰረዛል apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ልክ ያልሆነ የመዳረሻ ቁልፍ መታወቂያ ወይም ሚስጥራዊ መገናኛ ቁልፍ. @@ -2266,6 +2313,7 @@ DocType: Address,Preferred Shipping Address,ተመራጭ የሚላክበት አ apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,ደብዳቤ ራስ ጋር apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} ይህን ፈጥረዋል {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},ለ {0}: {1} በረድፍ {2} አይፈቀድም። የተገደበ መስክ: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ ማዋቀር እባክዎ ከማዋቀር> ኢሜል> ከኢሜል አካውንት ውስጥ አዲስ የኢሜል አካውንት ይፍጠሩ ፡፡ DocType: S3 Backup Settings,eu-west-1,ኢዩ-ምዕራብ -1። DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",ይሄ ከተመረጠ ትክክለኛ ውሂብ የያዘ ረድፎች እንዲመጡ ይደረጋሉ እና ልክ ያልሆኑ ረድፎች በኋላ ላይ እንዲያስገቡ ወደ አዲስ ፋይል ይጣላሉ. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,የሰነድ ሚና ተጠቃሚዎች ብቻ ሊደረግበት ነው @@ -2292,6 +2340,7 @@ DocType: Custom Field,Is Mandatory Field,አስገዳጅ መስክ ነው DocType: User,Website User,የድር ጣቢያ ተጠቃሚ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,አንዳንድ ዓምዶች ወደ ፒዲኤፍ በሚታተሙበት ጊዜ ሊቆረጡ ይችላሉ። ከ 10 በታች የሆኑ አምዶችን ቁጥር ለማስቀመጥ ይሞክሩ። apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,እኩል አይደለም +DocType: Data Import Beta,Don't Send Emails,ኢሜሎችን አይላኩ። DocType: Integration Request,Integration Request Service,ውህደት ይጠይቁ አገልግሎት DocType: Access Log,Access Log,ምዝግብ ማስታወሻ DocType: Website Script,Script to attach to all web pages.,ስክሪፕት ሁሉንም ድረ ገጾች ጋር ለማያያዝ. @@ -2331,6 +2380,7 @@ DocType: Contact,Passive,የማይሠራ DocType: Auto Repeat,Accounts Manager,መለያዎች አስተዳዳሪ apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},ተግባር ለ {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,የእርስዎ ክፍያ ተሰርዟል. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,እባክዎን ነባሪውን የኢሜል አካውንት ያዋቅሩ ከማዋቀር> ኢሜል> ከኢሜል አካውንት ፡፡ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,ይምረጡ የፋይል አይነት apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,ሁሉንም ይመልከቱ DocType: Help Article,Knowledge Base Editor,እውቀት ቤዝን አርታዒ @@ -2363,6 +2413,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,መረጃ apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,የሰነድ ሁኔታ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,ማረጋገጫ ያስፈልጋል ፡፡ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,ፋይልዎን ከማስመጣትዎ በፊት የሚከተሉት መዝገቦች መፈጠር አለባቸው። DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth ማረጋገጫ ኮድ apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,ያስመጡ አልተፈቀደልህም DocType: Deleted Document,Deleted DocType,ተሰርዟል DocType @@ -2416,8 +2467,8 @@ DocType: System Settings,System Settings,የስርዓት ቅንብሮች DocType: GCalendar Settings,Google API Credentials,የ Google ኤ ፒ አይ ምስክርነቶች apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ክፍለ-ጊዜ መጀመር አልተሳካም apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ይህ ኢሜይል {0} ተልኳል እና ተቀድቷል ነበር {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ይህንን ሰነድ አስገባ {0} DocType: Workflow State,th,ኛ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ዓመት (ቶች) በፊት። DocType: Social Login Key,Provider Name,የአቅራቢ ስም apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ፍጠር አዲስ {0} DocType: Contact,Google Contacts,ጉግል ዕውቂያዎች @@ -2425,6 +2476,7 @@ DocType: GCalendar Account,GCalendar Account,የ GCalendar መለያ DocType: Email Rule,Is Spam,አይፈለጌ መልዕክት ነው apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},ሪፖርት {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ክፍት {0} +DocType: Data Import Beta,Import Warnings,ማስመጣት ማስጠንቀቂያዎች DocType: OAuth Client,Default Redirect URI,ነባሪ ማዘዋወር URI DocType: Auto Repeat,Recipients,ተቀባዮች DocType: System Settings,Choose authentication method to be used by all users,በሁሉም ተጠቃሚዎች የሚጠቀሙበት የማረጋገጫ ዘዴ ይምረጡ @@ -2542,6 +2594,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,ሪፖርት apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook ስህተት DocType: Email Flag Queue,Unread,ያልተነበበ DocType: Bulk Update,Desk,የጽሕፈተ ጠረጴዛ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},አምድ መዝለል {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),ማጣሪያ (ዝርዝር ውስጥ) አንድ tuple ወይም ዝርዝር መሆን አለበት apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,አንድ ምረጥ መጠይቅ ጻፍ. ማስታወሻ ውጤት (ሁሉንም ውሂብ በአንድ ጉዞ ውስጥ ይላካል) ያስችላለ አይደለም. DocType: Email Account,Attachment Limit (MB),ዓባሪ ገደብ (ሜባ) @@ -2556,6 +2609,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,አዲስ ፍጠር DocType: Workflow State,chevron-down,ሸቭሮን-ታች apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),አልተላከም ኢሜይል {0} (ተሰናክሏል / ከደንበኝነት) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,ወደ ውጭ ለመላክ መስኮች ይምረጡ። DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,ትንሹ የምንዛሬ ክፍልፋይ ዋጋ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,ሪፖርት በማዘጋጀት ላይ። @@ -2564,6 +2618,7 @@ DocType: Workflow State,th-list,ኛ-ዝርዝር DocType: Web Page,Enable Comments,አስተያየቶች አንቃ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ማስታወሻዎች DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),ብቻ ከዚህ የአይፒ አድራሻ ተጠቃሚ ገድብ. በርካታ የአይ ፒ አድራሻዎች በኮማ ጋር በመለያየት ሊታከሉ ይችላሉ. በተጨማሪም እንደ በከፊል አይፒ አድራሻ ይቀበላል (111.111.111) +DocType: Data Import Beta,Import Preview,ቅድመ እይታን ያስመጡ። DocType: Communication,From,ከ apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,በመጀመሪያ አንድ ቡድን አንጓ ይምረጡ. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},ያግኙ {0} ውስጥ {1} @@ -2662,6 +2717,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,መካከል DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,ተሰልፏል +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ማዋቀር> ቅጽ ያብጁ። DocType: Braintree Settings,Use Sandbox,ይጠቀሙ ማጠሪያ apps/frappe/frappe/utils/goal.py,This month,በዚህ ወር apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,አዲስ ብጁ ማተም ቅርጸት @@ -2677,6 +2733,7 @@ DocType: Session Default,Session Default,የክፍለ ጊዜ ነባሪ። DocType: Chat Room,Last Message,የመጨረሻ መልዕክት DocType: OAuth Bearer Token,Access Token,የመዳረሻ ማስመሰያ DocType: About Us Settings,Org History,ድርጅት ታሪክ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,{0} ደቂቃዎች ይቀራሉ። DocType: Auto Repeat,Next Schedule Date,ቀጣይ የጊዜ ሰሌዳ DocType: Workflow,Workflow Name,የስራ ፍሰት ስም DocType: DocShare,Notify by Email,በኢሜይል አሳውቅ @@ -2706,6 +2763,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,ደራሲ apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,በመላክ ላይ ከቆመበት ቀጥል apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,ዳግም ክፈት +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,ማስጠንቀቂያዎችን አሳይ። apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},ጉዳዩ: {0} DocType: Address,Purchase User,የግዢ ተጠቃሚ DocType: Data Migration Run,Push Failed,ግፋ አልተሳካም @@ -2742,6 +2800,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,የላ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ጋዜጣውን ለማየት አይፈቀድልዎትም. DocType: User,Interests,ፍላጎቶች apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,የይለፍ ቃል ዳግም መመሪያዎች የእርስዎ ኢሜይል ተልከዋል +DocType: Energy Point Rule,Allot Points To Assigned Users,ለተመደቡ ተጠቃሚዎች የተሰጡ ነጥቦች apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","ደረጃ 0 መስክ ደረጃ ፈቃዶችን ለ ሰነድ ደረጃ ፈቃዶች, \ ከፍተኛ ደረጃ ነው." DocType: Contact Email,Is Primary,ቀዳሚ ነው። @@ -2764,6 +2823,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,ማስመጣት ይጀምሩ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,ወደ ውጪ ላክ DocType: Workflow State,circle-arrow-left,ክበብ-ቀስት-ግራ DocType: System Settings,Force User to Reset Password,የይለፍ ቃልን ዳግም ለማስጀመር ተጠቃሚን ያስገድዱ። apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",የዘመነውን ሪፖርት ለማግኘት {0} ላይ ጠቅ ያድርጉ። @@ -2776,13 +2836,16 @@ DocType: Contact,Middle Name,የአባት ስም DocType: Custom Field,Field Description,የመስክ መግለጫ apps/frappe/frappe/model/naming.py,Name not set via Prompt,ተከታትላችሁ በኩል አልተዘጋጀም ስም apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,የኢሜይል ገቢ መልዕክት ሳጥን +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}",{0} ከ {1} ፣ {2} ማዘመን DocType: Auto Email Report,Filters Display,ማጣሪያዎችን አሳይ apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ማሻሻያ ለማድረግ «የተሻሻለ_ዋጋ» መስክ መገኘት አለበት። +DocType: Contact,Numbers,ቁጥሮች apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} በ {1} {2} ላይ ያደረጉት ስራ አድናቆት አሳይቷል apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ማጣሪያዎችን ያስቀምጡ ፡፡ DocType: Address,Plant,ተክል apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ለሁሉም መልስ DocType: DocType,Setup,አዘገጃጀት +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,ሁሉም መዝገቦች DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,የጉግል አድራሻዎች የሚመሳሰሉበት የኢሜል አድራሻ ፡፡ DocType: Email Account,Initial Sync Count,የመጀመሪያ አስምር ቆጠራ DocType: Workflow State,glass,ብርጭቆ @@ -2807,7 +2870,7 @@ DocType: Workflow State,font,ቅርጸ-ቁምፊ DocType: DocType,Show Preview Popup,የቅድመ እይታ ብቅ-ባይ አሳይ። apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ይህ ከፍተኛ-100 የጋራ የይለፍ ቃል ነው. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,ብቅ-ባዮችን ለማንቃት እባክዎ -DocType: User,Mobile No,የተንቀሳቃሽ ስልክ የለም +DocType: Contact,Mobile No,የተንቀሳቃሽ ስልክ የለም DocType: Communication,Text Content,የጽሑፍ ይዘት DocType: Customize Form Field,Is Custom Field,ብጁ መስክ ነው DocType: Workflow,"If checked, all other workflows become inactive.","ከተመረጠ, ሁሉም ሌሎች ደንቦችዎን-አልባ ይሆናሉ." @@ -2853,6 +2916,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ቅ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,አዲስ የህትመት ቅርጸት ስም apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,የጎን አሞሌን ይቀያይሩ DocType: Data Migration Run,Pull Insert,ሳጥኑን አስገባ +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",ከተባዛ እሴት ጋር ነጥቦችን ካባዙ በኋላ የሚፈቀደው ከፍተኛው ነጥብ (ማስታወሻ-ይህንን መስክ ባዶ ይተው ወይም 0 ያዘጋጁ) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,ልክ ያልሆነ አብነት። apps/frappe/frappe/model/db_query.py,Illegal SQL Query,ህገወጥ የ SQL መጠይቅ። apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,የግዴታ: DocType: Chat Message,Mentions,Mentions @@ -2867,6 +2933,7 @@ DocType: User Permission,User Permission,የተጠቃሚ ፍቃድ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ጦማር apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,የኤልዲኤፒ አልተጫነም apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ውሂብ ጋር አውርድ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ለ {0} {1} የተለወጡ እሴቶች DocType: Workflow State,hand-right,እጅ-ቀኝ DocType: Website Settings,Subdomain,ንዑስ ጎራ DocType: S3 Backup Settings,Region,ክልል @@ -2893,10 +2960,12 @@ DocType: Braintree Settings,Public Key,ይፋዊ ቁልፍ DocType: GSuite Settings,GSuite Settings,GSuite ቅንብሮች DocType: Address,Links,አገናኞች DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,በዚህ መለያ ውስጥ የተጠቀሰውን የኢሜል አድራሻን በመጠቀም በዚህ መለያ በመጠቀም ለተላኩ ኢሜይሎች ሁሉ እንደ የላኪ ስም ነው ፡፡ +DocType: Energy Point Rule,Field To Check,ለማጣራት መስክ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.",ጉግል ዕውቂያዎች - በ Google እውቂያዎች ውስጥ {0} ን ፣ የስህተት ኮድ {1} ን ማዘመን አልተቻለም ፡፡ apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,እባክዎ የሰነድ ዓይነቱን ይምረጡ. apps/frappe/frappe/model/base_document.py,Value missing for,እሴት ጠፍቷል apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,የልጅ አክል +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,ሂደት አስመጣ። DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",ሁኔታው ተሟልቶ ከሆነ ተጠቃሚው ነጥቦቹን ይሸልማል። ለምሳሌ doc.status == 'ዝግ' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ገብቷል ቅረጽ ሊሰረዝ አይችልም. @@ -2933,6 +3002,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,የጉግል የቀን apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,እናንተ የምትፈልጉት ገጽ ይጎድለዋል. ይህ ተንቀሳቅሷል ወይም አገናኝ ውስጥ የትየባ በዚያ ነው; ምክንያቱም ይህ ሊሆን ይችላል. apps/frappe/frappe/www/404.html,Error Code: {0},የስህተት ኮድ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",", ስነጣ አልባ ጽሑፍ ውስጥ, መስመሮች ብቻ አንድ ባልና ሚስት ዝርዝር ገፅ የሚሆን መግለጫ. (ቢበዛ 140 ቁምፊዎች)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} የግዴታ መስኮች ናቸው። DocType: Workflow,Allow Self Approval,ራስን ማጽደቅ ፍቀድ DocType: Event,Event Category,የክስተት ምድብ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,ጆን ዶ @@ -2980,8 +3050,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ውሰድ ወደ DocType: Address,Preferred Billing Address,ተመራጭ አከፋፈል አድራሻ apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,በጣም ብዙ በአንድ ጥያቄ ላይ ጽፈዋል. ያነሰ ጥያቄዎችን ይላኩ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,ጉግል Drive ተዋቅሯል። +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,የሰነድ ዓይነት {0} ተደግሟል። apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,እሴቶች ተለውጧል DocType: Workflow State,arrow-up,ቀስት-ምትኬ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,ለ {0} ሠንጠረዥ ቢያንስ አንድ ረድፍ መኖር አለበት። DocType: OAuth Bearer Token,Expires In,ውስጥ ጊዜው ያበቃል DocType: DocField,Allow on Submit,አስገባ ላይ ፍቀድ DocType: DocField,HTML,ኤችቲኤምኤል @@ -3067,6 +3139,7 @@ DocType: Custom Field,Options Help,አማራጭ እገዛ 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 መዝገብ ይላካል 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,ወደ ጎራ ከልክል @@ -3084,6 +3157,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,የማረጋገጫ ኮድ DocType: Webhook,Webhook Request,የድርhook ጥያቄ apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** አልተሳካም: {0} ወደ {1}: {2} DocType: Data Migration Mapping,Mapping Type,የካርታ አይነት +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,አስገዳጅ ይምረጡ apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,ያስሱ apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","ምልክቶች, አኃዞች, ወይም አቢይ ሆሄያት አያስፈልግም." DocType: DocField,Currency,ገንዘብ @@ -3114,11 +3188,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,ፊደል ላይ የተመሠረተ ፡፡ apps/frappe/frappe/utils/oauth.py,Token is missing,ማስመሰያ ይጎድለዋል apps/frappe/frappe/www/update-password.html,Set Password,የይለፍ ቃል ያዘጋጁ። +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,በተሳካ ሁኔታ {0} መዝገቦች apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,ማስታወሻ: በ ገጽ ስም መቀየር በዚህ ገጽ ላይ ቀዳሚ ዩአርኤል እሰብራለሁ. apps/frappe/frappe/utils/file_manager.py,Removed {0},ተወግዷል {0} DocType: SMS Settings,SMS Settings,ኤስ ኤም ኤስ ቅንብሮች DocType: Company History,Highlight,ድምቀት DocType: Dashboard Chart,Sum,ድምር +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,በውሂብ ማስመጣት በኩል። DocType: OAuth Provider Settings,Force,ኃይል apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},ለመጨረሻ ጊዜ የተመሳሰለው {0} DocType: DocField,Fold,አጠፈ @@ -3155,6 +3231,7 @@ DocType: Workflow State,Home,መኖሪያ ቤት DocType: OAuth Provider Settings,Auto,ራስ- DocType: System Settings,User can login using Email id or User Name,ተጠቃሚው በኢሜል መታወቂያ ወይም በተጠቃሚ ስም መጠቀም ይችላል DocType: Workflow State,question-sign,ጥያቄ-ምልክት +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ተሰናክሏል apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ለድር እይታዎች የግብዓት "መስመር" ግዴታ ነው apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},አምድ ከ {0} በፊት DocType: Energy Point Rule,The user from this field will be rewarded points,ከዚህ መስክ ተጠቃሚው ይሸልማል ነጥቦችን ያገኛል ፡፡ @@ -3188,6 +3265,7 @@ DocType: Website Settings,Top Bar Items,ከፍተኛ አሞሌ ንጥሎች DocType: Notification,Print Settings,የህትመት ቅንብሮች DocType: Page,Yes,አዎ DocType: DocType,Max Attachments,ከፍተኛ አባሪዎች +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,{0} ሰከንዶች ያህል ይቀራሉ። DocType: Calendar View,End Date Field,የመጨረሻ ቀን መስክ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ግሎባል አቋራጭ DocType: Desktop Icon,Page,ገጽ @@ -3298,6 +3376,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite መዳረሻ ፍቀድ DocType: DocType,DESC,DESC DocType: DocType,Naming,መሰየምን apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,ሁሉንም ምረጥ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},አምድ {0} apps/frappe/frappe/config/customization.py,Custom Translations,ብጁ ትርጉሞች apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,እድገት apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,ሚና በ @@ -3339,6 +3418,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,አ DocType: Stripe Settings,Stripe Settings,ሰንበር ቅንብሮች DocType: Data Migration Mapping,Data Migration Mapping,የውሂብ ጎዳና ማዛመጃ DocType: Auto Email Report,Period,ወቅት +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,{0} ደቂቃ ይቀራል። apps/frappe/frappe/www/login.py,Invalid Login Token,ልክ ያልሆነ መግቢያ ማስመሰያ apps/frappe/frappe/public/js/frappe/chat.js,Discard,አስወግድ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 ሰዓት በፊት @@ -3363,6 +3443,7 @@ DocType: Calendar View,Start Date Field,የቀን ቦታ መስክ DocType: Role,Role Name,ሚና ስም apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,ዴስክ ወደ ቀይር apps/frappe/frappe/config/core.py,Script or Query reports,ስክሪፕት ወይም መጠይቅ ዘግቧል +DocType: Contact Phone,Is Primary Mobile,ቀዳሚ ሞባይል ነው። DocType: Workflow Document State,Workflow Document State,የስራ ፍሰት ሰነድ ግዛት apps/frappe/frappe/public/js/frappe/request.js,File too big,በጣም ትልቅ ፋይል apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,የኢሜይል መለያ በርካታ ጊዜ ታክሏል @@ -3441,6 +3522,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,የሚሰራ የተንቀሳቃሽ ስልክ ቁጥሮች ያስገቡ apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,ባህሪያት ውስጥ አንዳንዶቹ በአሳሽዎ ላይ ላይሰራ ይችላል. ወደ የቅርብ ጊዜው ስሪት አሳሽዎን ያዘምኑ. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","መጠየቅ, አታውቁምን 'እርዳታ'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ይህ ሰነድ ተትቷል {0} DocType: DocType,Comments and Communications will be associated with this linked document,አስተያየቶች እና የግንኙነት በዚህ የተገናኝ ሰነድ ጋር የተያያዘ ይሆናል apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,አጣራ ... DocType: Workflow State,bold,ደፋር @@ -3459,6 +3541,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,የኢሜይ DocType: Comment,Published,የታተመ apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,የእርስዎ ኢሜይል እናመሰግናለን DocType: DocField,Small Text,ትንሽ ጽሑፍ +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,ቁጥር {0} ለስልክም ሆነ ለተንቀሳቃሽ ስልክ ተቀዳሚ መደረግ አይችልም ፡፡ DocType: Workflow,Allow approval for creator of the document,ለሰነዱ ፈጣሪው መጽደቅን ይፍቀዱ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,ሪፖርት ይቆጥቡ DocType: Webhook,on_cancel,on_cancel @@ -3516,6 +3599,7 @@ DocType: Print Settings,PDF Settings,የፒዲኤፍ ቅንብሮች DocType: Kanban Board Column,Column Name,የአምድ ስም DocType: Language,Based On,በዛላይ ተመስርቶ DocType: Email Account,"For more information, click here.","ለበለጠ መረጃ እዚህ ጠቅ ያድርጉ ፡፡" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,የአምዶች ብዛት ከውሂብ ጋር አይዛመድም። apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,ነባሪ አድርግ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,የማስፈጸሚያ ጊዜ: {0} ሴ apps/frappe/frappe/model/utils/__init__.py,Invalid include path,ልክ ያልሆነ ዱካ አካቷል። @@ -3605,7 +3689,7 @@ 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: Deleted Document,GCalendar Sync ID,የ GCalendar ማመሳሰል መታወቂያ DocType: Prepared Report,Report Start Time,ሪፖርት መጀመሪያ ጊዜ -apps/frappe/frappe/config/settings.py,Export Data,ውሂብ ወደ ውጪ ላክ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ውሂብ ወደ ውጪ ላክ 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.,ይህ የጀርባ ሪፖርት ነው። እባክዎ ተገቢ ማጣሪያዎችን ያቀናብሩ እና ከዚያ አዲስ ያውጡ ፡፡ @@ -3623,7 +3707,6 @@ DocType: Report,Disable Prepared Report,ዝግጁ ሪፖርትን ያሰናክ apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,ተጠቃሚው {0} ለውሂብ ስረዛ ጠይቋል። apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,ህገወጥ የመዳረሻ ማስመሰያ. እባክዎ ዳግም ይሞክሩ apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","መተግበሪያው አዲስ ስሪት ወደ ዘምኗል, ይህን ገጽ ያድሱት እባክዎ" -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.,ምንም ነባሪ የአድራሻ አብነት አልተገኘም። እባክዎ ከማዋቀር> ማተሚያ እና የምርት ስም አወጣጥ> የአድራሻ አብነት አዲስ ይፍጠሩ። DocType: Notification,Optional: The alert will be sent if this expression is true,አማራጭ: ይህ አባባል እውነት ከሆነ ማንቂያ ይላካል DocType: Data Migration Plan,Plan Name,የዕቅድ ስም DocType: Print Settings,Print with letterhead,ደብዳቤ ጋር አትም @@ -3664,6 +3747,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: ያለ ይቅር እንዲሻሻል ማዘጋጀት አይቻልም apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,ሙሉ ገጽ DocType: DocType,Is Child Table,የልጅ ማውጫ ነው +DocType: Data Import Beta,Template Options,የአብነት አማራጮች። apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} ውስጥ አንዱ መሆን አለበት {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} በአሁኑ ጊዜ ይህን ሰነዱን እያዩት ነው apps/frappe/frappe/config/core.py,Background Email Queue,የጀርባ የኢሜይል ወረፋ @@ -3671,7 +3755,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,የይለፍ ቃል DocType: Communication,Opened,የተከፈተ DocType: Workflow State,chevron-left,ሸቭሮን-ግራ DocType: Communication,Sending,በመላክ ላይ -apps/frappe/frappe/auth.py,Not allowed from this IP Address,ይህ የአይ ፒ አድራሻ ከ አይፈቀድም DocType: Website Slideshow,This goes above the slideshow.,ይህ የተንሸራታች በላይ ይሄዳል. DocType: Contact,Last Name,የአያት ሥም DocType: Event,Private,የግል @@ -3685,7 +3768,6 @@ DocType: Workflow Action,Workflow Action,የስራ ፍሰት እርምጃ apps/frappe/frappe/utils/bot.py,I found these: ,እኔም እነዚህን አገኙ; DocType: Event,Send an email reminder in the morning,ጠዋት አንድ የኢሜይል አስታዋሽ ላክ DocType: Blog Post,Published On,ላይ የታተመ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ ማዋቀር እባክዎ ከማዋቀር> ኢሜል> ከኢሜል አካውንት ውስጥ አዲስ የኢሜል አካውንት ይፍጠሩ ፡፡ 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} ላይ አድህረዋል @@ -3706,7 +3788,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,ማስጠንቀቂያ-ምልክት DocType: Prepared Report,Prepared Report,የተዘጋጀ ሪፖርት apps/frappe/frappe/config/website.py,Add meta tags to your web pages,ሜታ መለያዎችን በድር ገጾችዎ ላይ ያክሉ ፡፡ -DocType: Contact,Phone Nos,የስልክ ቁጥሮች DocType: Workflow State,User,ተጠቃሚ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",እንደ የአሳሽ መስኮት ውስጥ አሳይ ርዕስ "ቅድመ ቅጥያ - ርዕስ" DocType: Payment Gateway,Gateway Settings,የመግቢያ ቅንብሮች @@ -3723,6 +3804,7 @@ DocType: Data Migration Connector,Data Migration,የውሂብ ሽግግር DocType: User,API Key cannot be regenerated,ኤፒአይ ቁልፍ ዳግም ሊፈጠር አይችልም apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,የሆነ ስህተት ተከስቷል DocType: System Settings,Number Format,ቁጥር ቅርጸት +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,በተሳካ ሁኔታ {0} መዝገብ ገብቷል። apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,ማጠቃለያ DocType: Event,Event Participants,የዝግጅቱ ተሳታፊዎች DocType: Auto Repeat,Frequency,መደጋገም @@ -3730,7 +3812,7 @@ DocType: Custom Field,Insert After,በኋላ አስገባ DocType: Event,Sync with Google Calendar,ከ Google ቀን መቁጠሪያ ጋር አመሳስል። DocType: Access Log,Report Name,ሪፖርት ስም DocType: Desktop Icon,Reverse Icon Color,አዶ ቀለም የኋሊዮሽ -DocType: Notification,Save,አስቀምጥ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,አስቀምጥ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,ቀጣይ መርሃግብር የተያዘበት ቀን apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,ትንሹ የቤት ሥራዎች ላሉት ይመደብ። apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,ክፍል ርዕስ @@ -3753,11 +3835,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ማዋቀር> ቅጽ ያብጁ። DocType: Google Contacts,Last Sync On,የመጨረሻው አስምር በርቷል DocType: Deleted Document,Deleted Document,ተሰርዟል ሰነድ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ውይ! የሆነ ስህተት ተከስቷል DocType: Desktop Icon,Category,መደብ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},እሴት {0} ለ {1} ይጎድላል apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,እውቂያዎች አክል apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,የመሬት ገጽታ። apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ጃቫስክሪፕት ውስጥ ደንበኛ ጎን ስክሪፕት ቅጥያዎች @@ -3780,6 +3862,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,የኃይል ምንጭ ዝመና apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',ሌላ የክፍያ ስልት ይምረጡ. PayPal «{0}» ምንዛሬ ግብይቶችን አይደግፍም DocType: Chat Message,Room Type,የክፍል አይነት +DocType: Data Import Beta,Import Log Preview,የምዝግብ ማስታወሻ ቅድመ እይታን ያስመጡ። apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,የፍለጋ መስክ {0} ልክ ያልሆነ ነው apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,የተሰቀለ ፋይል። DocType: Workflow State,ok-circle,ok-ክበብ @@ -3846,6 +3929,7 @@ DocType: DocType,Allow Auto Repeat,ራስ-ድገም ፍቀድ። apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ምንም የሚታዩ እሴቶች የሉም። DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,የኢሜይል አብነት +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,በተሳካ ሁኔታ ዘምኗል {0} መዝገብ። apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},ተጠቃሚው {0} ለሰነድ በሰነድ ፍቃድ በኩል የመሠረታዊ የመዳረሻ ፍቃድ የለውም {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ያስፈልጋል ሁለቱም መግቢያ እና የይለፍ ቃል apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,የቅርብ ጊዜ ሰነዱን ለማግኘት እባክዎ ያድሱ. diff --git a/frappe/translations/ar.csv b/frappe/translations/ar.csv index 27345373f9..3149eef583 100644 --- a/frappe/translations/ar.csv +++ b/frappe/translations/ar.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,تتوفر {} إصدارات جديدة للتطبيقات التالية apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,الرجاء تحديد حقل المبلغ. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,جارٍ تحميل ملف الاستيراد ... DocType: Assignment Rule,Last User,آخر مستخدم apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",مهمة جديدة، {0}، أسندت إليك بواسطة {1}. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,تم حفظ الإعدادات الافتراضية للجلسة +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,إعادة تحميل الملف DocType: Email Queue,Email Queue records.,سجلات البريد الإلكتروني قائمة الانتظار. DocType: Post,Post,بعد DocType: Address,Punjab,البنجاب @@ -44,6 +46,7 @@ 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,المعلمة @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,شهريا DocType: Address,Uttarakhand,أوتارانتشال DocType: Email Account,Enable Incoming,تمكين الوارد apps/frappe/frappe/core/doctype/version/version_view.html,Danger,خطر -apps/frappe/frappe/www/login.py,Email Address,عنوان البريد الإلكتروني +DocType: Address,Email Address,عنوان البريد الإلكتروني DocType: Workflow State,th-large,TH-الكبيرة DocType: Communication,Unread Notification Sent,إعلام مقروء المرسلة apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,الصادرات غير مسموح به. تحتاج {0} صلاحية التصدير. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,تسجيل DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",خيارات الاتصال، مثل "الاستعلام المبيعات والدعم الاستعلام" الخ كل على سطر جديد أو مفصولة بفواصل. apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,أضف علامة دلائلية ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,صورة -DocType: Data Migration Run,Insert,إدراج +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,إدراج apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,تسمح جوجل محرك الوصول apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},حدد {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,الرجاء إدخال عنوان ورل الأساسي @@ -118,17 +121,17 @@ 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,تكوين السمة DocType: Company History,Company History,نبذة عن تاريخ الشركة -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,إعادة تعيين +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,إعادة تعيين DocType: Workflow State,volume-up,حجم المتابعة apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,ويبهوكس التي تطلب طلبات أبي في تطبيقات الويب +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,إظهار التتبع DocType: DocType,Default Print Format,طباعة شكل الافتراضي DocType: Workflow State,Tags,بطاقات apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,لا شيء: نهاية سير العمل apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",الحقل {0} لا يمكن ضبطه كفريد في {1}، لعدم وجود قيم فريدة من نوعها -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,أنواع المستندات +DocType: Global Search Settings,Document Types,أنواع المستندات DocType: Address,Jammu and Kashmir,جامو وكشمير DocType: Workflow,Workflow State Field,حقل حالة سير العمل -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,الإعداد> المستخدم DocType: Language,Guest,ضيف DocType: DocType,Title Field,حقل العنوان DocType: Error Log,Error Log,سجل الأخطاء @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",يكرر مثل "abcabcabc" ليست سوى أصعب قليلا لتخمين من "اي بي سي" DocType: Notification,Channel,قناة apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",إذا كنت تعتقد أن هذا غير المصرح به، الرجاء تغيير كلمة مرور المسؤول. +DocType: Data Import Beta,Data Import Beta,بيتا استيراد البيانات apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} إلزامي DocType: Assignment Rule,Assignment Rules,قواعد الاحالة DocType: Workflow State,eject,اخرج @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,سير العمل اسم ا apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,لا يمكن دمج DOCTYPE DocType: Web Form Field,Fieldtype,نوع الحقل apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ليس ملف مضغوط +DocType: Global Search DocType,Global Search DocType,البحث العالمي DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
        New {{ doc.doctype }} #{{ doc.name }}
        ","لإضافة موضوع ديناميكي، استخدم علامات جينيا مثل
         New {{ doc.doctype }} #{{ doc.name }} 
        " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,حدث دوك apps/frappe/frappe/public/js/frappe/utils/user.js,You,أنت DocType: Braintree Settings,Braintree Settings,إعدادات برينتري +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,تم إنشاء {0} سجلات بنجاح. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,حفظ الفلتر DocType: Print Format,Helvetica,هلفتيكا apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},لا يمكن حذف {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,ادخل معمل العن apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,تكرار تلقائي تم إنشاؤه لهذا المستند apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,عرض التقرير في المتصفح apps/frappe/frappe/config/desk.py,Event and other calendars.,الحدث والتقويمات الأخرى. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (صف واحد إلزامي) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,جميع الحقول ضرورية لتقديم التعليق. DocType: Custom Script,Adds a client custom script to a DocType,إضافة برنامج نصي عميل مخصص إلى DocType DocType: Print Settings,Printer Name,اسم الطابعة @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,تحديث بالجمله DocType: Workflow State,chevron-up,شيفرون المتابعة DocType: DocType,Allow Guest to View,السماح للزوار بالعرض apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} يجب ألا يكون مطابقًا لـ {1} -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: Webhook,on_change,على التغيير apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,حذف {0} العناصر نهائيا؟ apps/frappe/frappe/utils/oauth.py,Not Allowed,غير مسموح @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,عرض DocType: Email Group,Total Subscribers,إجمالي عدد المشتركين apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},أعلى {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,رقم الصف apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",إذا لم يكن لديك الوصول لصلاحية في المستوى 0، ثم مستويات أعلى لا معنى لها. apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,حفظ باسم DocType: Comment,Seen,رأيت @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,على سبيل المثال: DocType: Workflow,Defines workflow states and rules for a document.,تحديد حالات و قواعد سير العمل للوثيقة DocType: Workflow State,Filter,فلتر @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,مغلق DocType: Blog Settings,Blog Title,عنوان المدونه apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,الصلاحيات القياسية لا يمكن تعطيلها apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,نوع الدردشة +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,خريطة الأعمدة DocType: Address,Mizoram,ميزورام DocType: Newsletter,Newsletter,النشرة الإخبارية apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,لا يمكن استخدام الاستعلام الفرعي في النظام عن طريق @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,إضافة عمود apps/frappe/frappe/www/contact.html,Your email address,عنوان البريد الإلكتروني الخاص بك DocType: Desktop Icon,Module,إضافة +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,تم تحديث {0} سجلات بنجاح من {1}. DocType: Notification,Send Alert On,إرسال تنبيه في DocType: Customize Form,"Customize Label, Print Hide, Default etc.",تخصيص تسمية، إخفاء طباعة، الخ الافتراضي apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,فك ضغط الملفات ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,المستخدم {0} لا يمكن حذف DocType: System Settings,Currency Precision,دقة العملة apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,معاملة أخرى يتم حظر هذه واحدة. يرجى المحاولة مرة أخرى في بضع ثوان. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,مرشحات واضحة DocType: Test Runner,App,تطبيق apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,لا يمكن ربط المرفقات بشكل صحيح مع المستند الجديد DocType: Chat Message Attachment,Attachment,مرفق @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,غير قا apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",تقويم Google - تعذر تحديث الحدث {0} في تقويم Google ، رمز الخطأ {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,بحث أو كتابة أمر DocType: Activity Log,Timeline Name,اسم الزمني +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,يمكن تعيين {0} واحد فقط على أنه أساسي. DocType: Email Account,e.g. smtp.gmail.com,على سبيل المثال، smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,إضافة قاعدة جديدة DocType: Contact,Sales Master Manager,المدير الرئيسي للمبيعات @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,حقل الاسم الأوسط LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},استيراد {0} من {1} DocType: GCalendar Account,Allow GCalendar Access,السماح للوصول لـ GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} حقل إلزامي +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} حقل إلزامي apps/frappe/frappe/templates/includes/login/login.js,Login token required,رمز الدخول المطلوب apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,الرتبة الشهرية: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,حدد عناصر قائمة متعددة @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},لا يمكن الاتص apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,كلمة في حد ذاتها هي سهلة التخمين. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},فشل التخصيص التلقائي: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,بحث... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,يرجى اختيار الشركة apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,دمج الممكن الوحيد بين المجموعة إلى المجموعة أو عقدة ورقة إلى ورقة عقدة apps/frappe/frappe/utils/file_manager.py,Added {0},تم اضافة {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,أية سجلات مطابقة. بحث شيئا جديدا @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,معرف عميل OAuth DocType: Auto Repeat,Subject,موضوع apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,العودة الى المكتب DocType: Web Form,Amount Based On Field,المبلغ بناء على الحقل -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,يرجى إعداد حساب البريد الإلكتروني الافتراضي من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,المستخدم إلزامي للمشاركة DocType: DocField,Hidden,مخفي DocType: Web Form,Allow Incomplete Forms,السماح للنماذج الغير مكتمله @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} و {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,بدء محادثة. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","دائما إضافة ""كلمة مسودة"" عند طباعة المسودات" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},خطأ في الإشعار: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سنة مضت DocType: Data Migration Run,Current Mapping Start,بدء تعيين الخرائط الحالية apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,تم وضع علامة على البريد الإلكتروني كغير مرغوب فيه DocType: Comment,Website Manager,مدير الموقع @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,الباركود apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,استخدام الاستعلام الفرعي أو وظيفة مقيدة apps/frappe/frappe/config/customization.py,Add your own translations,أضف الترجمة الخاصة بك DocType: Country,Country Name,اسم الدولة +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,نموذج فارغ DocType: About Us Team Member,About Us Team Member,أعضاء فريق صفحة من نحن apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.",يتم تعيين الأذونات على الصلاحيات و أنواع المستندات (وتسمى DocTypes ) من خلال وضع حقوق مثل القراءة والكتابة ، إنشاء، حذف، إرسال ، الغاء ، تعديل ، تقرير ، استيراد ، تصدير ، طباعة ، البريد الإلكتروني و تعيين أذونات المستخدم . DocType: Event,Wednesday,الأربعاء @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,موضوع الموقع را DocType: Web Form,Sidebar Items,عناصر الشريط الجانبي DocType: Web Form,Show as Grid,تظهر كشبكة apps/frappe/frappe/installer.py,App {0} already installed,التطبيق {0} مثبت مسبقا +DocType: Energy Point Rule,Users assigned to the reference document will get points.,سيحصل المستخدمون المعينون في المستند المرجعي على نقاط. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,لا معاينة DocType: Workflow State,exclamation-sign,تعجب علامة- apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,الملفات غير المضغوطة {0} @@ -597,6 +612,7 @@ DocType: Notification,Days Before,أيام قبل apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,يجب أن تنتهي الأحداث اليومية في نفس اليوم. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,تصحيح... DocType: Workflow State,volume-down,حجم إلى أسفل +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,الوصول غير مسموح به من عنوان IP هذا apps/frappe/frappe/desk/reportview.py,No Tags,لا علامات DocType: Email Account,Send Notification to,إرسال إشعار ل DocType: DocField,Collapsible,للطي @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,مطور apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,إنشاء 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,لغة الطباعة الافتراضية apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,أجداد apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,الجذر {0} لا يمكن حذف @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",الهدف = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,مضيف +DocType: Data Import Beta,Import File,استيراد ملف apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,عمود {0} موجودة بالفعل. DocType: ToDo,High,مستوى عالي apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,حدث جديد @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,إرسال الإخطارات apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,بروفيسور apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,ليس في وضع المطور apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ملف النسخ الاحتياطي جاهز -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",الحد الأقصى للنقاط المسموح بها بعد ضرب نقاط بقيمة المضاعف (ملاحظة: لا توجد قيمة محددة بحدود 0) DocType: DocField,In Global Search,في البحث العالمية DocType: System Settings,Brute Force Security,القوة الغاشمة للأمن DocType: Workflow State,indent-left,المسافة البادئة اليسرى @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',المستخدم '{0}' يمتلك صلاحية '{1}' DocType: System Settings,Two Factor Authentication method,اثنان عامل المصادقة الأسلوب apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,قم أولاً بتعيين الاسم وحفظ السجل. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 السجلات apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},مشترك مع {0} apps/frappe/frappe/email/queue.py,Unsubscribe,إلغاء الاشتراك DocType: View Log,Reference Name,اسم المرجع @@ -813,6 +830,8 @@ 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,تتبع حالة البريد الإلكتروني DocType: Note,Notify Users On Every Login,إعلام المستخدمين على كل تسجيل الدخول +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,لا يمكن مطابقة العمود {0} بأي حقل +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,تم تحديث سجلات {0} بنجاح. DocType: PayPal Settings,API Password,API كلمة المرور apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,أدخل وحدة الثعبان أو حدد نوع الموصل apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,أسم الحقل لم يتم تعيينه لحقل مخصص @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,تم تغير القيمة apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},تكرار اسم {0} {1} -DocType: Email Queue,Retry,إعادة المحاولة +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,إعادة المحاولة +DocType: Contact Phone,Number,رقم DocType: Web Form Field,Web Form Field,حقل نموذج الويب apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,لديك رسالة جديدة من: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,تحرير HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,الرجاء إدخال عنوان ورل لإعادة التوجيه apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),عرض خصائص (ع apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,انقر على ملف لتحديده. DocType: Note Seen By,Note Seen By,ملاحظة يراها apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,محاولة استخدام نمط لوحة المفاتيح أطول مع المزيد من المنعطفات -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,المتصدرين +,LeaderBoard,المتصدرين DocType: DocType,Default Sort Order,ترتيب الافتراضي DocType: Address,Rajasthan,راجستان DocType: Email Template,Email Reply Help,البريد الالكتروني رد مساعدة @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,سنت apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,كتابة رسالة الكترونية apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).",الدول عن سير العمل (على سبيل المثال مشروع ، وافق ، ألغي ) . DocType: Print Settings,Allow Print for Draft,السماح بالطباعة للمسودة +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/link_selector.js,Set Quantity,ضبط الكمية apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,إرسال هذه الوثيقة إلى تأكيد DocType: Contact,Unsubscribed,إلغاء اشتراكك @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,الوحدة التنظيم ,Transaction Log Report,تقرير سجل المعاملات DocType: Custom DocPerm,Custom DocPerm,DocPerm مخصص DocType: Newsletter,Send Unsubscribe Link,إرسال إلغاء ارتباط +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,هناك بعض السجلات المرتبطة التي يجب إنشاؤها قبل أن نتمكن من استيراد ملفك. هل تريد إنشاء السجلات المفقودة التالية تلقائيًا؟ DocType: Access Log,Method,طريقة DocType: Report,Script Report,تقرير النصي DocType: OAuth Authorization Code,Scopes,نطاقات @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,تم الرفع بنجاح apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,أنت متصل بالإنترنت. DocType: Social Login Key,Enable Social Login,تمكين تسجيل الدخول الاجتماعي +DocType: Data Import Beta,Warnings,تحذيرات DocType: Communication,Event,حدث apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",على {0}، {1} كتب: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,لا يمكنك حذف الحقول القياسية. يمكنك إخفاءها فقط إذا كنت تريد @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,إدرا DocType: Kanban Board Column,Blue,أزرق apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,سيتم إزالة كافة التخصيصات. يرجى التأكيد. DocType: Page,Page HTML,صفحة HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,تصدير الصفوف الخطأ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,لا يمكن أن يكون اسم المجموعة فارغا. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة ' DocType: SMS Parameter,Header,العنوان الرأسي @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,طلب مهلة apps/frappe/frappe/config/settings.py,Enable / Disable Domains,تمكين / تعطيل النطاقات DocType: Role Permission for Page and Report,Allow Roles,الصلاحيات المسموح بها +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,تم استيراد {0} سجلات بنجاح من {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")",تعبير Python البسيط ، مثال: الحالة في ("غير صالح") DocType: User,Last Active,آخر تواجد في DocType: Email Account,SMTP Settings for outgoing emails,إعدادات SMTP لرسائل البريد الإلكتروني الصادرة apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,اختيار DocType: Data Export,Filter List,قائمة تصفية DocType: Data Export,Excel,تفوق -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,تم تحديث كلمة المرور الخاصة بك. هذه هي كلمة المرور الجديدة DocType: Email Account,Auto Reply Message,رد تلقائي على الرسائل DocType: Data Migration Mapping,Condition,الحالة apps/frappe/frappe/utils/data.py,{0} hours ago,{0} قبل ساعات @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,معرف المستخدم DocType: Communication,Sent,أرسلت DocType: Address,Kerala,ولاية كيرالا -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,الادارة DocType: User,Simultaneous Sessions,جلسات متزامنة DocType: Social Login Key,Client Credentials,وثائق تفويض العميل @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},تحد apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,سيد DocType: DocType,User Cannot Create,لا يمكن للمستخدم إنشاء apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,فعلت بنجاح -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,المجلد {0} غير موجود apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,تمت الموافقة الوصول دروببوإكس! DocType: Customize Form,Enter Form Type,أدخل نوع النموذج DocType: Google Drive,Authorize Google Drive Access,تخويل Google Drive Access @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,لا توجد سجلات معلمة. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,إزالة الميدان apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,أنت غير متصل بالإنترنت. أعد المحاولة بعد وقت ما. -DocType: User,Send Password Update Notification,ارسل إشعارات تحديث كلمة السر apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",السماح DOCTYPE ، DOCTYPE . كن حذرا! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",تنسيقات مخصصة للطباعة البريد الإلكتروني apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},مجموع {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,رمز التحقق apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,تم تعطيل تكامل جهات اتصال Google. DocType: Assignment Rule,Description,وصف DocType: Print Settings,Repeat Header and Footer in PDF,كرر رأس وتذييل الصفحة في PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,بالفشل DocType: Address Template,Is Default,افتراضي DocType: Data Migration Connector,Connector Type,نوع الموصل apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,اسم العمود لا يمكن أن يكون فارغا @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,انتقل إلى ص 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,أعمدة بناء على +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/model/document.py,Action Failed,فشل العمل apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,للمستخدم @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,تمكين الطباعة الخام DocType: Website Route Redirect,Source,المصدر apps/frappe/frappe/templates/includes/list/filters.html,clear,واضح apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,تم الانتهاء من +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,الإعداد> المستخدم DocType: Prepared Report,Filter Values,قيم التصفية DocType: Communication,User Tags,بطاقات المستخدم DocType: Data Migration Run,Fail,فشل @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,إت ,Activity,نشاط DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","مساعدة: لربط إلى سجل آخر في النظام، إستخدم ""# نموذج / ملاحظة / [اسم الملاحظة]""، كرابط URL. (لا تستخدم ""http://"")" DocType: User Permission,Allow,السماح +DocType: Data Import Beta,Update Existing Records,تحديث السجلات الموجودة apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,دعونا تجنب الكلمات المكررة وشخصيات DocType: Energy Point Rule,Energy Point Rule,قاعدة نقطة الطاقة DocType: Communication,Delayed,مؤجل @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,حقل المسار DocType: Notification,Set Property After Alert,تعيين الملكية بعد تنبيه apps/frappe/frappe/config/customization.py,Add fields to forms.,إضافة حقول إلى النماذج. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,يبدو أن هناك شيئا خاطئا مع هذا التكوين باي بال لهذا الموقع. -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/sidebar/review.js,Add Review,إضافة مراجعة -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),حجم الخط (بكسل) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,يُسمح بتخصيص أنواع DocTypes القياسية فقط من تخصيص النموذج. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,م apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,"عذراَ ! ,لا يمكنك حذف التعليقات الذي تم إنشاؤه تلقائيا" DocType: Google Settings,Used For Google Maps Integration.,يستخدم لتكامل خرائط جوجل. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,مرجع DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,لن يتم تصدير سجلات DocType: User,System User,نظام المستخدم DocType: Report,Is Standard,هو معيار DocType: Desktop Icon,_report,_تقرير @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,علامة ناقص apps/frappe/frappe/public/js/frappe/request.js,Not Found,لم يتم العثور على apps/frappe/frappe/www/printview.py,No {0} permission,لا {0} إذن apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,تصدير ضوابط مخصص +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,لم يتم العثور على العناصر. DocType: Data Export,Fields Multicheck,الحقول متعددة DocType: Activity Log,Login,دخول DocType: Web Form,Payments,المدفوعات @@ -1451,8 +1477,9 @@ DocType: Address,Postal,بريدي DocType: Email Account,Default Incoming,الايرادات الافتراضية DocType: Workflow State,repeat,كرر DocType: Website Settings,Banner,راية +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},يجب أن تكون القيمة واحدة من {0} DocType: Role,"If disabled, this role will be removed from all users.",إذا تعطيل، ستتم إزالة هذه الصلاحية من كافة المستخدمين. -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,انتقل إلى قائمة {0} +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,المساعدة في البحث DocType: Milestone,Milestone Tracker,معلما المقتفي apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,سجل لكن المعوقين @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,فيلدنام المحل DocType: DocType,Track Changes,تعقب التغيرات DocType: Workflow State,Check,تحقق DocType: Chat Profile,Offline,غير متصل بالإنترنت +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},تم الاستيراد بنجاح {0} DocType: User,API Key,مفتاح API DocType: Email Account,Send unsubscribe message in email,إرسال رسالة إلغاء الاشتراك في البريد الإلكتروني apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,تحرير العنوان @@ -1492,11 +1520,11 @@ 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"، وما إلى ذلك (تعتمد على نوع المستند المحدد) +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},القيمة المتغيرة {0} {1} 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,إجمالي الصفحات apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} قام بالفعل بتعيين القيمة الافتراضية لـ {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

        No results found for '

        ,"

        لا يوجد نتائج ل '

        " DocType: DocField,Attach Image,إرفاق صورة DocType: Workflow State,list-alt,قائمة بديل apps/frappe/frappe/www/update-password.html,Password Updated,تم تحديث كلمة المرور @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed 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 ليست صيغة صحيحة للتقرير. يجب أن تكون \ أحد الصيغ التالية %s DocType: Chat Message,Chat,الدردشة +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,الإعداد> أذونات المستخدم DocType: LDAP Group Mapping,LDAP Group Mapping,تعيين مجموعة LDAP DocType: Dashboard Chart,Chart Options,خيارات الرسم البياني +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,عمود بلا عنوان apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} من {1} إلى {2} في الصف # {3} DocType: Communication,Expired,انتهى apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,يبدو الرمز المميز الذي تستخدمه غير صالح! @@ -1528,6 +1558,7 @@ DocType: DocType,System,نظام DocType: Web Form,Max Attachment Size (in MB),أقصى حجم للمرفقات (ميغابايت) apps/frappe/frappe/www/login.html,Have an account? Login,هل لديك حساب ؟ تسجيل الدخول DocType: Workflow State,arrow-down,سهم لأسفل +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},الصف {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},المستخدم لا يسمح لحذف {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} من {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,آخر تحديث يوم @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,تخصيص صلاحية apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,الصفحة الرئيسية / مجلد اختبار 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ادخل رقمك السري DocType: Dropbox Settings,Dropbox Access Secret,دروببوإكس الدخول السرية +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(إلزامي) 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.,لم يتم العثور على بيانات في الملف. الرجاء إعادة إرفاق الملف الجديد بالبيانات. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,عرض ل apps/frappe/frappe/desk/form/assign_to.py,New Message,رسالة جديدة DocType: File,Preview HTML,معاينة HTML DocType: Desktop Icon,query-report,استعلام تقرير +DocType: Data Import Beta,Template Warnings,تحذيرات القالب apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,مرشحات حفظ DocType: DocField,Percent,في المئة apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,يرجى تعيين المرشحات @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,مخصص DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",في حالة التمكين ، لن تتم مطالبة المستخدمين الذين يقومون بتسجيل الدخول من عنوان IP المقيد بـ Two Factor Auth DocType: Auto Repeat,Get Contacts,الحصول على اتصالات apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},الوظائف المقدمة في إطار {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,تخطي العمود بلا عنوان DocType: Notification,Send alert if date matches this field's value,إرسال تنبيه إذا تاريخ توافق مع قيمة هذا الحقل DocType: Workflow,Transitions,التحولات apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} الى {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,خطوة إلى الوراء apps/frappe/frappe/utils/boilerplate.py,{app_title},{ app_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,الرجاء تعيين مفاتيح الوصول دروببوإكس في التكوين موقعك apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,حذف هذا السجل للسماح إرسالها إلى عنوان البريد الإلكتروني هذا +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)",إذا كان المنفذ غير قياسي (مثل POP3: 995/110 ، IMAP: 993/143) apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,تخصيص اختصارات apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ضرورية لسجلات جديدة الحقول الإلزامية فقط. يمكنك حذف الأعمدة غير الإلزامية إذا كنت ترغب في ذلك. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,عرض المزيد من النشاط @@ -1769,7 +1804,9 @@ 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,مكتب المدعي العام التطبيقات +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,تم تحديث السجل بنجاح {0} من {1}. 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,الحرف DocType: DocType,"Naming Options:
        1. field:[fieldname] - By Field
        2. naming_series: - By Naming Series (field called naming_series must be present
        3. Prompt - Prompt user for a name
        4. [series] - Series by prefix (separated by a dot); for example PRE.#####
        5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,إعدادات نقطة الطاقة DocType: Async Task,Succeeded,نجح apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},الحقول الإلزامية المطلوبة في {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

          No results found for '

          ,"

          لا يوجد نتائج ل '

          " apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,إعادة تعيين أذونات ل {0} ؟ apps/frappe/frappe/config/desktop.py,Users and Permissions,المستخدمين والأذونات DocType: S3 Backup Settings,S3 Backup Settings,إعدادات النسخ الاحتياطي لـ S3 @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,في DocType: Notification,Value Change,قيمة التغير DocType: Google Contacts,Authorize Google Contacts Access,السماح بوصول جهات اتصال Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,عرض حقول رقمية فقط من التقرير +DocType: Data Import Beta,Import Type,نوع الاستيراد DocType: Access Log,HTML Page,صفحة HTML DocType: Address,Subsidiary,شركة فرعية apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,محاولة الاتصال بـ QZ Tray ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,خادم DocType: Custom DocPerm,Write,الكتابة apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,المسؤول الوحيد المسموح به لإنشاء تقارير الاستعلام / سكربت apps/frappe/frappe/public/js/frappe/form/save.js,Updating,يتم التحديث -DocType: File,Preview,معاينة +DocType: Data Import Beta,Preview,معاينة apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","الحقل ""القيمة"" إلزامي. يرجى تحديد قيمة ليتم تحديثه" DocType: Customize Form,Use this fieldname to generate title,استخدام هذا FIELDNAME لتوليد عنوان apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,استيراد البريد الإلكتروني من @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,المتصفح DocType: Social Login Key,Client URLs,الروابط للعميل apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,بعض المعلومات مفقود apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,تم إنشاء {0} بنجاح +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}",تخطي {0} من {1} ، {2} DocType: Custom DocPerm,Cancel,إلغاء apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,حذف بالجملة apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,ملف {0} غير موجود @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,رمز الجلسة DocType: Currency,Symbol,رمز apps/frappe/frappe/model/base_document.py,Row #{0}:,الصف # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,تأكيد حذف البيانات -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,كلمة مرور جديدة عبر البريد الالكتروني apps/frappe/frappe/auth.py,Login not allowed at this time,الدخول غير مسموح به في هذا الوقت DocType: Data Migration Run,Current Mapping Action,إجراء رسم الخرائط الحالي DocType: Dashboard Chart Source,Source Name,اسم المصدر @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,دب apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,تليها DocType: LDAP Settings,LDAP Email Field,LDAP البريد الإلكتروني الميدان apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,قائمة {0} +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,تصدير {0} السجلات apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,بالفعل في قائمة مهام المستخدم DocType: User Email,Enable Outgoing,تمكين المنتهية ولايته DocType: Address,Fax,فاكس @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,طباعة الوثائق apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,القفز الى الميدان DocType: Contact Us Settings,Forward To Email Address,انتقل إلى عنوان البريد الإلكتروني +DocType: Contact Phone,Is Primary Phone,هو الهاتف الأساسي apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,أرسل بريدًا إلكترونيًا إلى {0} لربطه هنا. DocType: Auto Email Report,Weekdays,أيام الأسبوع +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,سيتم تصدير {0} السجلات apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,يجب أن يكون حقل العنوان ل fieldname صالحة DocType: Post Comment,Post Comment,أضف تعليقا apps/frappe/frappe/config/core.py,Documents,وثائق @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",سيظهر هذا المجال إلا إذا كان FIELDNAME المحدد هنا له قيمة أو قواعد صحيحة (أمثلة): myfield حدة التقييم: doc.myfield == 'بلدي القيمة "وحدة التقييم: doc.age> 18 DocType: Social Login Key,Office 365,مكتب 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,اليوم +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",وبمجرد الانتهاء من تعيين هذه ، سوف يكون المستخدمون قادرين فقط الوصول إلى المستندات (على سبيل المثال مدونة بوست) حيث يوجد رابط (مثل مدون ) . +DocType: Data Import Beta,Submit After Import,إرسال بعد الاستيراد DocType: Error Log,Log of Scheduler Errors,سجل من الأخطاء جدولة DocType: User,Bio,نبذة DocType: OAuth Client,App Client Secret,كلمة مرور التطبيق الثانوي @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,تعطيل رابط تسجيل العملاء في صفحة تسجيل الدخول apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,تعيين ل / المالك DocType: Workflow State,arrow-left,سهم يسار +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,تصدير 1 سجل DocType: Workflow State,fullscreen,ملء الشاشة DocType: Chat Token,Chat Token,دردشة دردشة apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,إنشاء مخطط apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,لا تستورد DocType: Web Page,Center,مركز DocType: Notification,Value To Be Set,قيمة ليتم تعيينها apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},تحرير {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,مشاهدة القسم العناو DocType: Bulk Update,Limit,حد apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},لقد تلقينا طلبًا بحذف {0} البيانات المرتبطة بـ: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,إضافة قسم جديد +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,السجلات التي تمت تصفيتها apps/frappe/frappe/www/printview.py,No template found at path: {0},لا توجد في مسار القالب: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ليس لديك حساب البريد الإلكتروني DocType: Comment,Cancelled,ملغي @@ -2190,10 +2237,13 @@ 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} 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,سيكون معرف تسجيل الدخول +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,إعادة تعيين أنواع وثائق البحث العامة. ,Lead Conversion Time,وقت تحويل الزبون المحتمل apps/frappe/frappe/desk/page/activity/activity.js,Build Report,بناء تقرير DocType: Note,Notify users with a popup when they log in,إعلام المستخدمين مع منبثقة عندما يقومون بتسجيل الدخول +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,لا يمكن البحث عن الوحدات الأساسية {0} في البحث العالمي. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,دردشة مفتوحة apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} غير موجود ، حدد هدفا جديدا لدمج DocType: Data Migration Connector,Python Module,وحدة بيثون @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,أغلق 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,الإعداد> أذونات المستخدم -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,تحديث +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,تحديث DocType: Transaction Log,Transaction Hash,عملية تجزئة DocType: Error Snapshot,Snapshot View,لقطة مشاهدة apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,الرجاء حفظ النشرة قبل الإرسال @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,في تَقَدم apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,في قائمة الانتظار للنسخ الاحتياطي. قد يستغرق بضع دقائق إلى ساعة. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,إذن المستخدم موجود بالفعل +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},تعيين العمود {0} إلى الحقل {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},عرض {0} DocType: User,Hourly,باستمرار apps/frappe/frappe/config/integrations.py,Register OAuth Client App,تسجيل أوث العميل التطبيقات @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS بوابة URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} لا يمكن أن يكون ""{2}"". ينبغي أن يكون واحدا من ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},حصلت عليه {0} عبر القاعدة التلقائية {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} أو {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,تحديث كلمة المرور DocType: Workflow State,trash,القمامة DocType: System Settings,Older backups will be automatically deleted,سيتم حذف النسخ الاحتياطية القديمة تلقائيا apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,معرف مفتاح الوصول غير صالح أو مفتاح الوصول السري. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,عنوان النقل البحري apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,مع رئيس رسالة apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} أنشأ {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},غير مسموح به {0}: {1} في الصف {2}. المجال المحظور: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب البريد الإلكتروني لا الإعداد. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني DocType: S3 Backup Settings,eu-west-1,الاتحاد الأوروبي الغربي-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",إذا تم تحديد ذلك ، فسيتم استيراد الصفوف التي تحتوي على بيانات صالحة وسيتم طرح صفوف غير صالحة في ملف جديد يمكنك استيراده لاحقًا. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,الوثيقة للتحرير فقط من قبل المستخدمين من دور @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,هو حقل إلزامي DocType: User,Website User,موقع العضو apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,قد تنقطع بعض الأعمدة عند الطباعة إلى PDF. حاول الحفاظ على عدد الأعمدة أقل من 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,لا يساوي +DocType: Data Import Beta,Don't Send Emails,لا ترسل رسائل البريد الإلكتروني DocType: Integration Request,Integration Request Service,التكامل طلب الخدمة DocType: Access Log,Access Log,سجل الوصول DocType: Website Script,Script to attach to all web pages.,النصي لنعلق على كل صفحات الويب. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,غير فعال DocType: Auto Repeat,Accounts Manager,مدير حسابات apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},تعيين لـ {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,تم إلغاء دفعتك. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,يرجى إعداد حساب البريد الإلكتروني الافتراضي من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,حدد نوع الملف apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,عرض الكل DocType: Help Article,Knowledge Base Editor,محرر قاعدة المعرفة @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,معطيات apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,حالة المستند apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,الموافقة مطلوبة +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,يجب إنشاء السجلات التالية قبل أن نتمكن من استيراد ملفك. DocType: OAuth Authorization Code,OAuth Authorization Code,مصادقة رمز التفويض apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,لا يسمح ل استيراد DocType: Deleted Document,Deleted DocType,DocType المحذوفة @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,إعدادات النظام DocType: GCalendar Settings,Google API Credentials,بيانات اعتماد واجهة برمجة تطبيقات Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,فشل بدء الجلسة apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},وقد أرسلت هذه الرسالة الى {0} ونسخها إلى {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},قدم هذه الوثيقة {0} DocType: Workflow State,th,ال -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سنة مضت DocType: Social Login Key,Provider Name,اسم المزود apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},انشاء جديد {0} DocType: Contact,Google Contacts,اتصالات جوجل @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,حساب GCalendar DocType: Email Rule,Is Spam,هو المزعج apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},تقرير {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},مفتوحة {0} +DocType: Data Import Beta,Import Warnings,استيراد تحذيرات DocType: OAuth Client,Default Redirect URI,رابط اعادة التوجيه الافتراضي DocType: Auto Repeat,Recipients,المستلمين DocType: System Settings,Choose authentication method to be used by all users,اختر طريقة المصادقة لاستخدامها من قبل جميع المستخدمين @@ -2544,6 +2598,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,تم تحد apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,خطأ Slack Webhook DocType: Email Flag Queue,Unread,غير مقروء DocType: Bulk Update,Desk,مكتب +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},عمود التخطي {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),يجب أن يكون الفلتر عبارة عن قائمة أو قائمة (في قائمة) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,كتابة استعلام SELECT. لم يتم ترحيلها علما نتيجة (يتم إرسال جميع البيانات دفعة واحدة). DocType: Email Account,Attachment Limit (MB),الحد مرفق (MB) @@ -2558,6 +2613,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,انشاء جديد DocType: Workflow State,chevron-down,شيفرون لأسفل apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),البريد الإلكتروني لا يرسل إلى {0} (غير مشترك / غيرمفعل) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,حدد الحقول للتصدير DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,أصغر العملات الكسر القيمة apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,إعداد التقرير @@ -2566,6 +2622,7 @@ DocType: Workflow State,th-list,TH-قائمة DocType: Web Page,Enable Comments,تمكين تعليقات apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ملاحظات DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),تقييد المستخدم من هذا العنوان IP فقط. يمكن إضافة عناوين IP متعددة عن طريق فصل بفواصل. يقبل أيضا عناوين IP جزئية مثل (111.111.111) +DocType: Data Import Beta,Import Preview,استيراد معاينة DocType: Communication,From,من apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,حدد عقدة المجموعة أولا. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},البحث عن {0} في {1} @@ -2664,6 +2721,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,ما بين DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,قائمة الانتظار +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,الإعداد> تخصيص النموذج DocType: Braintree Settings,Use Sandbox,استخدام رمل apps/frappe/frappe/utils/goal.py,This month,هذا الشهر apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,تنسيق طباعة مخصص جديد @@ -2679,6 +2737,7 @@ DocType: Session Default,Session Default,الجلسة الافتراضية DocType: Chat Room,Last Message,اخر رسالة DocType: OAuth Bearer Token,Access Token,رمز وصول DocType: About Us Settings,Org History,تاريخ المنظمة +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,حوالي {0} دقائق متبقية DocType: Auto Repeat,Next Schedule Date,تاريخ الجدول التالي DocType: Workflow,Workflow Name,اسم سير العمل DocType: DocShare,Notify by Email,إبلاغ عبر البريد الإلكتروني @@ -2708,6 +2767,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,مؤلف apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,استئناف إرسال apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,إعادة فتح +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,إظهار التحذيرات apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},رد: {0} DocType: Address,Purchase User,عضو الشراء DocType: Data Migration Run,Push Failed,فشل الدفع @@ -2744,6 +2804,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,الب apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,لا يسمح لك بعرض الرسالة الإخبارية. DocType: User,Interests,الإهتمامات apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,تم إرسال إرشادات إعادة تعيين كلمة السر إلى بريدك الإلكتروني +DocType: Energy Point Rule,Allot Points To Assigned Users,تخصيص نقاط للمستخدمين المعينين apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",المستوى 0 هو أذونات مستوى المستند، \ مستويات أعلى لأذونات مستوى المجال. DocType: Contact Email,Is Primary,هو الابتدائية @@ -2766,6 +2827,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,بدء الاستيراد +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,نوع التصدير DocType: Workflow State,circle-arrow-left,دائرة السهم اليسار DocType: System Settings,Force User to Reset Password,إجبار المستخدم على إعادة تعيين كلمة المرور apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",للحصول على التقرير المحدّث ، انقر على {0}. @@ -2778,13 +2840,16 @@ DocType: Contact,Middle Name,الاسم الأوسط DocType: Custom Field,Field Description,وصف الحقل apps/frappe/frappe/model/naming.py,Name not set via Prompt,الأسم: لم تحدد عن طريق موجه apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,البريد الإلكتروني الوارد +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}",تحديث {0} من {1} ، {2} DocType: Auto Email Report,Filters Display,عرض المرشحات apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",يجب أن يكون الحقل "amended_from" حاضرًا لإجراء تعديل. +DocType: Contact,Numbers,أعداد apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} قدر عملك على {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,حفظ المرشحات DocType: Address,Plant,مصنع apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,الرد على الجميع DocType: DocType,Setup,الإعدادات +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,جميع السجلات DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,عنوان البريد الإلكتروني الذي سيتم مزامنة جهات اتصال Google الخاصة به. DocType: Email Account,Initial Sync Count,عدد مزامنة الأولي DocType: Workflow State,glass,زجاج @@ -2809,7 +2874,7 @@ DocType: Workflow State,font,الخط DocType: DocType,Show Preview Popup,إظهار معاينة المنبثقة apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,هذا هو كلمة السر المشتركة من أعلى إلى 100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,يرجى تمكين النوافذ المنبثقة -DocType: User,Mobile No,رقم الجوال +DocType: Contact,Mobile No,رقم الجوال DocType: Communication,Text Content,محتوى النص DocType: Customize Form Field,Is Custom Field,هو حقل مخصص DocType: Workflow,"If checked, all other workflows become inactive.",إذا تم، جميع مهام سير العمل الأخرى تصبح خاملة. @@ -2855,6 +2920,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,إض apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,اسم الشكل الجديد طباعة apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,تبديل الشريط الجانبي DocType: Data Migration Run,Pull Insert,سحب إدراج +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",الحد الأقصى للنقاط المسموح بها بعد ضرب نقاط بقيمة المضاعف (ملاحظة: بلا حدود ، اترك هذا الحقل فارغًا أو حدد 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,قالب غير صالح apps/frappe/frappe/model/db_query.py,Illegal SQL Query,استعلام SQL غير قانوني apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,إلزامية: DocType: Chat Message,Mentions,يذكر @@ -2869,6 +2937,7 @@ DocType: User Permission,User Permission,إذن المستخدم apps/frappe/frappe/templates/includes/blog/blog.html,Blog,مدونة apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,لم يتم تثبيت لداب apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,تحميل مع البيانات +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},القيم المتغيرة لـ {0} {1} DocType: Workflow State,hand-right,ومن جهة اليمين DocType: Website Settings,Subdomain,مجال فرعي DocType: S3 Backup Settings,Region,منطقة @@ -2895,10 +2964,12 @@ DocType: Braintree Settings,Public Key,المفتاح العمومي DocType: GSuite Settings,GSuite Settings,إعدادات غسويت DocType: Address,Links,الروابط DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,يستخدم اسم عنوان البريد الإلكتروني المذكور في هذا الحساب كاسم المرسل لجميع رسائل البريد الإلكتروني المرسلة باستخدام هذا الحساب. +DocType: Energy Point Rule,Field To Check,حقل للتحقق apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.",جهات اتصال Google - تعذر تحديث جهة الاتصال في جهات اتصال Google {0} ، رمز الخطأ {1}. apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,الرجاء تحديد نوع المستند. apps/frappe/frappe/model/base_document.py,Value missing for,قيمة مفقودة لـ apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,إضافة الطفل +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,استيراد التقدم DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",إذا كانت الحالة راضية ، فسيتم مكافأة المستخدم بالنقاط. على سبيل المثال. doc.status == 'مغلق' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: لا يمكن حذف سجل مؤكد. @@ -2935,6 +3006,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,تخويل الوصو apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,الصفحة التي تبحث عن مفقود. يمكن أن يكون هذا ليتم نقله أو أن هناك خطأ مطبعي في الارتباط. apps/frappe/frappe/www/404.html,Error Code: {0},رمز الخطأ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",وصف لصفحة القائمة، في نص عادي، فقط بضعة أسطر. (حد أقصى 140 حرف) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} هي حقول إلزامية DocType: Workflow,Allow Self Approval,اسمح بالموافقة الذاتية DocType: Event,Event Category,فئة الحدث apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,فلان الفلاني @@ -2983,8 +3055,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,الانتقال إ DocType: Address,Preferred Billing Address,عنوان الفواتير المفضل apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,الكثير من يكتب في طلب واحد . يرجى إرسال طلبات أصغر apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,تم تكوين Google Drive. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,تم تكرار نوع المستند {0}. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,القيم التي تم تغييرها DocType: Workflow State,arrow-up,سهم لأعلى +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,يجب أن يكون هناك صف واحد على الأقل لجدول {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",لتهيئة التكرار التلقائي ، قم بتمكين "السماح بالتكرار التلقائي" من {0}. DocType: OAuth Bearer Token,Expires In,ينتهي في DocType: DocField,Allow on Submit,السماح بالإعتماد @@ -3071,6 +3145,7 @@ DocType: Custom Field,Options Help,خيارات مساعدة 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,سيتم تصدير سجل واحد 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,تقييد النطاق @@ -3088,6 +3163,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,رمز التحقق DocType: Webhook,Webhook Request,طلب ويبهوك apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** فشل: {0} إلى {1}: {2} DocType: Data Migration Mapping,Mapping Type,نوع رسم الخرائط +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,حدد إلزامية apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,تصفح apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.",لا حاجة لرموز أو أرقام أو أحرف كبيرة. DocType: DocField,Currency,عملة @@ -3118,11 +3194,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,رسالة رئيس بناء على apps/frappe/frappe/utils/oauth.py,Token is missing,رمز مفقود apps/frappe/frappe/www/update-password.html,Set Password,تعيين كلمة المرور +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,تم استيراد سجلات {0} بنجاح. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,ملاحظة: يؤدي تغيير اسم الصفحة إلى كسر عنوان ورل السابق لهذه الصفحة. apps/frappe/frappe/utils/file_manager.py,Removed {0},إزالة {0} DocType: SMS Settings,SMS Settings,SMS إعدادات DocType: Company History,Highlight,Highlight DocType: Dashboard Chart,Sum,مجموع +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,عبر استيراد البيانات DocType: OAuth Provider Settings,Force,فرض apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},آخر مزامنة {0} DocType: DocField,Fold,طية @@ -3159,6 +3237,7 @@ DocType: Workflow State,Home,الصفحة الرئيسية DocType: OAuth Provider Settings,Auto,السيارات DocType: System Settings,User can login using Email id or User Name,يمكن للمستخدم تسجيل الدخول باستخدام معرف البريد الإلكتروني أو اسم المستخدم DocType: Workflow State,question-sign,علامة سؤال +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} معطل apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",حقل "الطريق" إلزامي للويب المشاهدات apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},إدراج عمود قبل {0} DocType: Energy Point Rule,The user from this field will be rewarded points,سيتم مكافأة نقاط المستخدم من هذا المجال @@ -3192,6 +3271,7 @@ DocType: Website Settings,Top Bar Items,قطع الشريط العلوي DocType: Notification,Print Settings,إعدادات الطباعة DocType: Page,Yes,نعم DocType: DocType,Max Attachments,الحد الأقصى للمرفقات +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,حوالي {0} ثانية متبقية DocType: Calendar View,End Date Field,حقل تاريخ الانتهاء apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,اختصارات العالمية DocType: Desktop Icon,Page,صفحة @@ -3302,6 +3382,7 @@ DocType: GSuite Settings,Allow GSuite access,السماح بالدخول إلى DocType: DocType,DESC,تنازلي DocType: DocType,Naming,التسمية apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,تحديد الكل +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},العمود {0} apps/frappe/frappe/config/customization.py,Custom Translations,ترجمة مخصصة apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,تقدم apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,حسب الصلاحية @@ -3343,11 +3424,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,إ DocType: Stripe Settings,Stripe Settings,إعدادات الشريط DocType: Data Migration Mapping,Data Migration Mapping,تعيين ترحيل البيانات DocType: Auto Email Report,Period,فترة +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,حوالي {0} دقيقة متبقية apps/frappe/frappe/www/login.py,Invalid Login Token,صالح رمز الدخول 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,حصة بديل apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},يجب أن تكون قائمة الانتظار واحدة من {0} @@ -3378,6 +3461,7 @@ DocType: Calendar View,Start Date Field,تاريخ البدء الحقل DocType: Role,Role Name,إسم الصلاحية apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,التبديل إلى مكتب apps/frappe/frappe/config/core.py,Script or Query reports,تقارير النصي أو سؤال +DocType: Contact Phone,Is Primary Mobile,هو المحمول الأساسي DocType: Workflow Document State,Workflow Document State,سير العمل الوثيقة الدولة apps/frappe/frappe/public/js/frappe/request.js,File too big,الملف كبير جدا apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,تمت إضافة البريد الألكتروني لمرات كثيرة @@ -3424,6 +3508,7 @@ DocType: DocField,Float,رقم عشري DocType: Print Settings,Page Settings,إعدادات الصفحة apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,إنقاذ... apps/frappe/frappe/www/update-password.html,Invalid Password,رمز مرور خاطئ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,تم استيراد {0} بنجاح من السجل {1}. DocType: Contact,Purchase Master Manager,المدير الرئيسي للمشتريات apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,انقر على أيقونة القفل للتبديل بين القطاعين العام والخاص DocType: Module Def,Module Name,اسم وحدة @@ -3457,6 +3542,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,الرجاء إدخال أرقام جوال صالحة apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,قد لا تعمل بعض الميزات في المتصفح. يرجى تحديث المتصفح إلى أحدث إصدار. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",لا أعرف، اسأل "مساعدة" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ألغيت هذه الوثيقة {0} DocType: DocType,Comments and Communications will be associated with this linked document,سيتم ربط التعليقات والاتصالات مع هذه الوثيقة مرتبطة apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,تصفية ... DocType: Workflow State,bold,جريء @@ -3475,6 +3561,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,إضافة / DocType: Comment,Published,نشرت apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,شكرا لك على بريدك الالكتروني DocType: DocField,Small Text,نص صغير +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,لا يمكن تعيين الرقم {0} على أنه أساسي للهاتف وكذلك رقم الجوال DocType: Workflow,Allow approval for creator of the document,السماح بالموافقة على منشئ المستند apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,احفظ التقرير DocType: Webhook,on_cancel,on_cancel @@ -3532,6 +3619,7 @@ DocType: Print Settings,PDF Settings,إعدادات PDF DocType: Kanban Board Column,Column Name,اسم العمود DocType: Language,Based On,وبناء على DocType: Email Account,"For more information, click here.","لمزيد من المعلومات ، انقر هنا ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,عدد الأعمدة لا يتطابق مع البيانات apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,تعيين كإفتراضي apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,وقت التنفيذ: {0} ثانية apps/frappe/frappe/model/utils/__init__.py,Invalid include path,مسار التضمين غير صالح @@ -3621,7 +3709,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,تقرير وقت البدء -apps/frappe/frappe/config/settings.py,Export Data,تصدير البيانات +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,تصدير البيانات 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.,هذا هو تقرير الخلفية. يرجى تعيين المرشحات المناسبة ثم إنشاء واحدة جديدة. @@ -3639,7 +3727,6 @@ DocType: Report,Disable Prepared Report,تعطيل التقرير المعد apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,طلب المستخدم {0} حذف البيانات apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,وصول رمز غير قانوني. حاول مرة اخرى apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",تم تحديث التطبيق إلى الإصدار الجديد، يرجى تحديث هذه الصفحة -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.,لم يتم العثور على قالب عنوان افتراضي. يرجى إنشاء واحدة جديدة من الإعداد> الطباعة والعلامة التجارية> قالب العنوان. DocType: Notification,Optional: The alert will be sent if this expression is true,اختياري: سيتم إرسال التنبية إذا كان هذا التعبير صحيح DocType: Data Migration Plan,Plan Name,اسم الخطة DocType: Print Settings,Print with letterhead,طباعة مع ترويسة @@ -3680,6 +3767,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : لا يمكن تعيين تعدل دون الغاء apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,صفحة كاملة DocType: DocType,Is Child Table,هو الجدول التابع +DocType: Data Import Beta,Template Options,خيارات القالب apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} يجب أن يكون واحدا من {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} يستعرض حالياً هذا المستند apps/frappe/frappe/config/core.py,Background Email Queue,قائمة معالجة البريد الإلكتروني @@ -3687,7 +3775,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,إعادة تعيي DocType: Communication,Opened,افتتح DocType: Workflow State,chevron-left,شيفرون يسار DocType: Communication,Sending,إرسال -apps/frappe/frappe/auth.py,Not allowed from this IP Address,لا يسمح من هذا العنوان IP DocType: Website Slideshow,This goes above the slideshow.,هذا يذهب فوق عرض الشرائح. DocType: Contact,Last Name,اسم العائلة DocType: Event,Private,خاص @@ -3701,7 +3788,6 @@ DocType: Workflow Action,Workflow Action,أجراء سير العمل apps/frappe/frappe/utils/bot.py,I found these: ,لقد وجدت هذه: DocType: Event,Send an email reminder in the morning,إرسال رسالة تذكير في الصباح DocType: Blog Post,Published On,نشرت في -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب البريد الإلكتروني لا الإعداد. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني 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} @@ -3722,7 +3808,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,علامة إنذار DocType: Prepared Report,Prepared Report,أعد التقرير apps/frappe/frappe/config/website.py,Add meta tags to your web pages,أضف علامات التعريف إلى صفحات الويب الخاصة بك -DocType: Contact,Phone Nos,رقم الهاتف DocType: Workflow State,User,مستخدم DocType: Website Settings,"Show title in browser window as ""Prefix - title""","اظهار العنوان في نافذة المتصفح كما ""بادئة - عنوان""" DocType: Payment Gateway,Gateway Settings,إعدادات البوابة @@ -3739,6 +3824,7 @@ DocType: Data Migration Connector,Data Migration,ترحيل البيانات DocType: User,API Key cannot be regenerated,لا يمكن إعادة إنشاء مفتاح واجهة برمجة التطبيقات apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,حدث خطأ ما DocType: System Settings,Number Format,عدد تنسيق +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,تم استيراد سجل {0} بنجاح. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,ملخص DocType: Event,Event Participants,المشاركون في الحدث DocType: Auto Repeat,Frequency,تردد @@ -3746,7 +3832,7 @@ DocType: Custom Field,Insert After,إدراج بعد DocType: Event,Sync with Google Calendar,مزامنة مع تقويم Google DocType: Access Log,Report Name,تقرير الاسم DocType: Desktop Icon,Reverse Icon Color,عكس دلالات اللون -DocType: Notification,Save,حفظ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,حفظ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,التاريخ المجدول التالي apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,كلف الشخص الذي لديه أقل المهام apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,قسم العنوان @@ -3769,11 +3855,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,الإعداد> تخصيص النموذج DocType: Google Contacts,Last Sync On,آخر مزامنة تشغيل DocType: Deleted Document,Deleted Document,المستند المحذوف apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,عذرا! هناك خطأ ما. DocType: Desktop Icon,Category,فئة +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},القيمة {0} مفقودة لـ {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,اضف جهات اتصال apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,المناظر الطبيعيه apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ملحقات النصي جانب العميل في جافا سكريبت @@ -3796,6 +3882,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,تحديث نقطة الطاقة apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',يرجى تحديد طريقة دفع أخرى. باي بال لا تدعم المعاملات بالعملة '{0}' DocType: Chat Message,Room Type,نوع الغرفة +DocType: Data Import Beta,Import Log Preview,استيراد سجل معاينة apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,حقل البحث {0} غير صالح apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,ملف تم الرفع DocType: Workflow State,ok-circle,دائرة OK- @@ -3862,6 +3949,7 @@ DocType: DocType,Allow Auto Repeat,السماح للتكرار التلقائي apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,لا توجد قيم لإظهارها DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,قالب البريد الإلكتروني +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,تم تحديث السجل بنجاح {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},لا يملك المستخدم {0} حق الوصول إلى النمط عبر إذن دور للمستند {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,كل من تسجيل الدخول وكلمة المرور المطلوبة apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,يرجى تحديث للحصول على أحدث وثيقة. diff --git a/frappe/translations/bg.csv b/frappe/translations/bg.csv index 8027b410ac..d4ddb1efd5 100644 --- a/frappe/translations/bg.csv +++ b/frappe/translations/bg.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Нови {} версии за следните приложения са налице apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Моля, изберете сума Невярно." +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Зареждането на файла за импортиране ... DocType: Assignment Rule,Last User,Последен потребител apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Нова задача, {0}, е определена за Вас от {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Настройките за сесия са запазени +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Презареждане на файл DocType: Email Queue,Email Queue records.,Email Queue записи. DocType: Post,Post,Пост DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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,Параметър @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Месечно DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Активиране Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Опасност -apps/frappe/frappe/www/login.py,Email Address,Имейл Адрес +DocType: Address,Email Address,Имейл Адрес DocType: Workflow State,th-large,TH-голяма DocType: Communication,Unread Notification Sent,Непрочетена изпратеното apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Износът не оставя. Трябва {0} роля за износ. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Админ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Опции за контакти, като "Продажби Query, Support Query" и т.н., всеки на нов ред или разделени със запетаи." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Добавете маркер ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет -DocType: Data Migration Run,Insert,Вмъкни +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Вмъкни apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Оставя Google Диск Access apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Изберете {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,"Моля, въведете Основен URL адрес" @@ -118,17 +121,17 @@ 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.","Отделно от System мениджъра, роли с мека Permissions Потребителски право може да зададете разрешения за други потребители за този тип документ." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Конфигурирайте темата DocType: Company History,Company History,История на компанията -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Нулиране +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Нулиране DocType: Workflow State,volume-up,Усилване на звука apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,"Webhooks, наричащи заявки за приложния програмен интерфейс (API) в уеб приложения" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Показване на Traceback DocType: DocType,Default Print Format,Формат за печат по подразбиране DocType: Workflow State,Tags,Етикети apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Няма: Край на Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} поле не може да бъде зададено като уникално в {1}, тъй като има не-уникални съществуващи стойности" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Типове документи +DocType: Global Search Settings,Document Types,Типове документи DocType: Address,Jammu and Kashmir,Jammu and Kashmir DocType: Workflow,Workflow State Field,Workflow членка Невярно -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Потребител DocType: Language,Guest,Гост DocType: DocType,Title Field,Заглавие на поле DocType: Error Log,Error Log,Error Log @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Повторения като "abcabcabc" са само малко по-трудно да се отгатне, отколкото "ABC"" DocType: Notification,Channel,канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ако мислите, че това е разрешено, моля, променете паролата на администратора." +DocType: Data Import Beta,Data Import Beta,Бета импортиране на данни apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} е задължително DocType: Assignment Rule,Assignment Rules,Правила за възлагане DocType: Workflow State,eject,извади @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Име Action Workflow apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType не могат да бъдат слети DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Не е компресиран (zip) файл +DocType: Global Search DocType,Global Search DocType,Глобален DocType за търсене DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
          New {{ doc.doctype }} #{{ doc.name }}
          ","За да добавите динамичен обект, използвайте джиджи тагове като
           New {{ doc.doctype }} #{{ doc.name }} 
          " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Събитие за документи apps/frappe/frappe/public/js/frappe/utils/user.js,You,Ти DocType: Braintree Settings,Braintree Settings,Настройки на Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Създадени {0} записи успешно. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Запазване на филтъра DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Не може да се изтрие {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Въведете URL па apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,"Автоматично повторение, създадено за този документ" apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Преглеждайте отчета в браузъра си apps/frappe/frappe/config/desk.py,Event and other calendars.,Събития и други календари. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 ред е задължителен) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Всички полета са необходими за изпращане на коментара. DocType: Custom Script,Adds a client custom script to a DocType,Добавя клиентски персонализиран скрипт към DocType DocType: Print Settings,Printer Name,Име на принтера @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Масова актуализация DocType: Workflow State,chevron-up,Стрелка-нагоре DocType: DocType,Allow Guest to View,Позволете гости да преглеждат apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} не трябва да е същото като {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Изтриване на {0} елементи за постоянно? apps/frappe/frappe/utils/oauth.py,Not Allowed,Не е позволено @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Показ DocType: Email Group,Total Subscribers,Общо Абонати apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Най-{0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Номер на реда apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ако роля няма достъп на ниво 0, то по-високи нива са безсмислени." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Запази като DocType: Comment,Seen,Видян @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,Пример: DocType: Workflow,Defines workflow states and rules for a document.,Определя работния процес членки и правила за достъп до документ. DocType: Workflow State,Filter,Филтър @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Затворен DocType: Blog Settings,Blog Title,Блог - Заглавие apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Стандартни роли не могат да бъдат изключени apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Тип на чата +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Графи на картата DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Бютелин с новини apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Не може да се използва под-заявка за @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Добавяне на колона apps/frappe/frappe/www/contact.html,Your email address,Вашата електронна поща DocType: Desktop Icon,Module,Модул +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Успешно актуализирани {0} записи от {1}. DocType: Notification,Send Alert On,Изпрати сигнал при DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Персонализирайте етикет, скриване при печат, по подразбиране т.н." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Разархивиране на файлове ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Потребителят {0} не може да бъде изтрит DocType: System Settings,Currency Precision,Десетична точност на валута apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,"Друга транзакция блокира тази. Моля, опитайте отново след няколко секунди." +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Изчистване на филтрите DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Прикачените файлове не можаха да бъдат правилно свързани с новия документ DocType: Chat Message Attachment,Attachment,Приложен файл @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Не мож apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Календар - Не можа да се актуализира събитие {0} в Google Календар, код за грешка {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Търси или въведи команда DocType: Activity Log,Timeline Name,Timeline Име +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Само един {0} може да бъде зададен като основен. DocType: Email Account,e.g. smtp.gmail.com,напр smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Добави ново правило DocType: Contact,Sales Master Manager,Мениджър на данни за продажби @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Поле със средно име на LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Импортиране на {0} от {1} DocType: GCalendar Account,Allow GCalendar Access,Разрешаване на достъп до GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} е задължително поле +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} е задължително поле apps/frappe/frappe/templates/includes/login/login.js,Login token required,Изисква се означение за вход apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Месечен ранг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Изберете няколко елемента от списъка @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Не може да се apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Една дума само по себе си е лесно да се отгатне. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Автоматичното задаване не бе успешно: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Търсене... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Моля изберете фирма apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Сливането е възможно само между Group към групата или Leaf Node-да-Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Добавен {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Няма съвпадащи записи. Търсене нещо ново @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,Идентификационен ном DocType: Auto Repeat,Subject,Предмет apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Назад към бюрото DocType: Web Form,Amount Based On Field,Сума на база на поле -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте по подразбиране имейл акаунта от Setup> Email> Email account" apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Потребителят е задължително за споделяне DocType: DocField,Hidden,Скрит DocType: Web Form,Allow Incomplete Forms,Разрешаване на Непълни формуляри @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Започнете разговор. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Винаги се добави "Проект" Функция за печат проекти на документи apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Грешка в известието: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} преди (и) година DocType: Data Migration Run,Current Mapping Start,Текущо стартиране на картографиране apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Имейл бе маркиран като спам DocType: Comment,Website Manager,Сайт на мениджъра @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,баркод apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Използването на под-заявка или функция е ограничено apps/frappe/frappe/config/customization.py,Add your own translations,Добавете вашите собствени преводи DocType: Country,Country Name,Име на държавата +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Празен шаблон DocType: About Us Team Member,About Us Team Member,За нас Член на Екип apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Разрешения са разположени на Роли и видове документи (наречени DocTypes) чрез определяне на правата, като четене, писане, създаване, изтриване, Знаете, Отмени, се изменя, Доклад, внос, износ, Print, електронна поща и Set потребителски разрешения." DocType: Event,Wednesday,Сряда @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Website Тема Линк к DocType: Web Form,Sidebar Items,Sidebar артикули DocType: Web Form,Show as Grid,Показване като решетка apps/frappe/frappe/installer.py,App {0} already installed,Приложението {0} вече е инсталирано +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Потребителите, назначени на референтния документ, ще получат точки." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Няма предварителен преглед DocType: Workflow State,exclamation-sign,удивителен знак- apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Разархивирани {0} файлове @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Дни преди apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Ежедневните събития трябва да приключат в същия ден. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Редактиране... DocType: Workflow State,volume-down,Намаляване на звука +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Достъпът не е разрешен от този IP адрес apps/frappe/frappe/desk/reportview.py,No Tags,Няма тагове DocType: Email Account,Send Notification to,Изпрати съобщение на DocType: DocField,Collapsible,Свиваем @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Разработчик apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Създаден 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,Език за печат по подразбиране apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Предци на apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Корен {0} не може да бъде изтрит @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,домакин +DocType: Data Import Beta,Import File,Импортиране на файл apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Колона {0} вече съществува. DocType: ToDo,High,Високо apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Ново събитие @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Изпращане на из apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,проф apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не е в режим за разработчици apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Архивирането на файлове е готово -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Максимално разрешени точки след умножаване на точки със стойността на умножителя (Забележка: За не ограничена зададена стойност като 0) DocType: DocField,In Global Search,В глобално търсене DocType: System Settings,Brute Force Security,Брутална сигурност DocType: Workflow State,indent-left,ляво подравняване @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Потребителят "{0}" вече има ролята "{1}" DocType: System Settings,Two Factor Authentication method,Метод за удостоверяване с два фактора apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Първо задайте името и запазете записа. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 записа apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Споделено с {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Отписване DocType: View Log,Reference Name,Референтен номер Име @@ -813,6 +830,8 @@ 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,Проследяване на състоянието на имейла DocType: Note,Notify Users On Every Login,Уведомявайте потребителите при всяко влизане +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Графата {0} не може да съвпада с никое поле +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Успешно актуализирани {0} записи. DocType: PayPal Settings,API Password,API парола apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Въведете Python модула или изберете тип конектор apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname не е конфигуриран за персонализирано поле @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,Променената стойност apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Дублиране име {0} {1} -DocType: Email Queue,Retry,Повторен опит +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Повторен опит +DocType: Contact Phone,Number,номер DocType: Web Form Field,Web Form Field,Web Form Поле apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Имате ново съобщение от: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Редактиране на HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,"Моля, въведете URL адрес за пренасочване" apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Преглед на P apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Кликнете върху файл, за да го изберете." DocType: Note Seen By,Note Seen By,Забележка видяна от apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Опитайте се да използвате по-дълъг клавиатура модел с повече завои -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Списък с водачите +,LeaderBoard,Списък с водачите DocType: DocType,Default Sort Order,Подредба за сортиране по подразбиране DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Помощ за отговор по имейл @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Цент apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Ново имейл съобщение apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Членки за работния процес (напр Проект, Одобрен, Отменен)." DocType: Print Settings,Allow Print for Draft,Разрешаване на печат за чернова +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/link_selector.js,Set Quantity,Определете Количество apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,"Изпратете този документ, за да потвърдите" DocType: Contact,Unsubscribed,Отписахте @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Организационн ,Transaction Log Report,Отчет за регистрационните данни на транзакциите DocType: Custom DocPerm,Custom DocPerm,Персонализиран DocPerm DocType: Newsletter,Send Unsubscribe Link,Изпрати линк за отписване +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Има някои свързани записи, които трябва да бъдат създадени, преди да можем да импортираме вашия файл. Искате ли да създадете следните липсващи записи автоматично?" DocType: Access Log,Method,Метод DocType: Report,Script Report,Script Доклад DocType: OAuth Authorization Code,Scopes,Скоупс @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Качено успешно apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Вие сте свързани с интернет. DocType: Social Login Key,Enable Social Login,Активиране на социалното влизане +DocType: Data Import Beta,Warnings,Предупреждения DocType: Communication,Event,Събитие apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","На {0}, {1} написа:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Не можете да изтриете стандартно поле. Можете да го скрие, ако искате." @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Пост DocType: Kanban Board Column,Blue,Син apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,"Всички персонализации ще бъдат премахнати. Моля, потвърдете." DocType: Page,Page HTML,Страница HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Експорт на грешни редове apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Името на групата не може да бъде празно. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Допълнителни възли могат да се създават само при тип възли "група" DocType: SMS Parameter,Header,Заглавие @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Времето за заявката е изтекло apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Активиране / деактивиране на домейни DocType: Role Permission for Page and Report,Allow Roles,Разрешаване на Роли +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Успешно импортирани {0} записи от {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Simple Python Expression, Example: Status in ("Invalid")" DocType: User,Last Active,Последна активност DocType: Email Account,SMTP Settings for outgoing emails,Настройки SMTP за изходящи имейли apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,изберете DocType: Data Export,Filter List,Списък с филтри DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Паролата ви беше актуализирана. Ето новата ви парола DocType: Email Account,Auto Reply Message,Auto Reply Message DocType: Data Migration Mapping,Condition,Състояние apps/frappe/frappe/utils/data.py,{0} hours ago,Преди {0} часа @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,User ID DocType: Communication,Sent,Изпратено DocType: Address,Kerala,Kerala -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,администрация DocType: User,Simultaneous Sessions,Едновременни сесии DocType: Social Login Key,Client Credentials,Клиентски идентификационни данни @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Обн apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Майстор DocType: DocType,User Cannot Create,Потребителят не може да създаде apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно завършено -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Папка {0} не съществува apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,достъп Dropbox е одобрен! DocType: Customize Form,Enter Form Type,Въведете Форма Type DocType: Google Drive,Authorize Google Drive Access,Упълномощавайте достъпа до Google Drive @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Не са маркирани записи. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Премахване на поле apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Не сте свързани с интернет. Опитайте отново след известно време. -DocType: User,Send Password Update Notification,Изпрати уведомление за актуализация на парола apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Разрешаването DocType, DocType. Бъди внимателен!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Индивидуално формати за печат, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Сума от {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Неправилен apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Интеграцията на Google Контакти е деактивирана. DocType: Assignment Rule,Description,Описание DocType: Print Settings,Repeat Header and Footer in PDF,Повторете Header и Footer в PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,неуспех DocType: Address Template,Is Default,Е по подразбиране DocType: Data Migration Connector,Connector Type,Тип конектор apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Името на колоната не може да бъде празно @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Отидете на DocType: LDAP Settings,Password for Base DN,Парола за 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,Колони на базата на +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/model/document.py,Action Failed,Действие Неуспешно apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,За потребител @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Активиране на необр DocType: Website Route Redirect,Source,Източник apps/frappe/frappe/templates/includes/list/filters.html,clear,ясно apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Завършен +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Потребител DocType: Prepared Report,Filter Values,Филтърни стойности DocType: Communication,User Tags,Потребителски етикети DocType: Data Migration Run,Fail,Неуспех @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,по ,Activity,Дейност DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Help: За да създадете връзка към друг запис в системата, използвайте "# Form / Note / [Забележка Name]", както URL на Link. (Не се използват "HTTP: //")" DocType: User Permission,Allow,Позволи +DocType: Data Import Beta,Update Existing Records,Актуализиране на съществуващи записи apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Нека да се избегнат повтарящи се думи и знаци DocType: Energy Point Rule,Energy Point Rule,Правило за енергийна точка DocType: Communication,Delayed,Отложен @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Track Field DocType: Notification,Set Property After Alert,Задайте собственост след предупреждение apps/frappe/frappe/config/customization.py,Add fields to forms.,Добави полета към форми. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Изглежда, че нещо не е наред с конфигурацията на Paypal на този сайт." -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/sidebar/review.js,Add Review,Добавете рецензия -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Размер на шрифта (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Само стандартните DocTypes могат да бъдат персонализирани от Персонализирайте формуляр. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Ф apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,За съжаление! Не можете да изтриете автоматично генерирани коментари DocType: Google Settings,Used For Google Maps Integration.,Използва се за интеграция с Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Референтен DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Няма да се експортират записи DocType: User,System User,Системен потребител DocType: Report,Is Standard,Е стандартна DocType: Desktop Icon,_report,_report @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,минус-знак apps/frappe/frappe/public/js/frappe/request.js,Not Found,Не е намерен apps/frappe/frappe/www/printview.py,No {0} permission,Няма {0} разрешение apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Експортните персонализирани разрешения +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Няма намерени елементи. DocType: Data Export,Fields Multicheck,Полетата Multicheck DocType: Activity Log,Login,Влизане DocType: Web Form,Payments,Плащания @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Пощенски DocType: Email Account,Default Incoming,Default Incoming DocType: Workflow State,repeat,повторение DocType: Website Settings,Banner,Реклама +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Стойността трябва да е една от {0} DocType: Role,"If disabled, this role will be removed from all users.","Ако е забранено, тази роля ще бъде отстранен от всички потребители." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Отидете на {0} Списък +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,Помощ за Търсене DocType: Milestone,Milestone Tracker,Tracker Tracker apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Регистрирани но инвалиди @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Местно име на DocType: DocType,Track Changes,Проследяването на промените DocType: Workflow State,Check,Провери DocType: Chat Profile,Offline,Извън линия +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Успешно импортиран {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Изпрати отпишете съобщение в имейл apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Редактиране на заглавие @@ -1492,11 +1520,11 @@ 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)","Trigger за валидни методи като "before_insert", "after_update" и т.н. (ще зависи от типа на документа, избран)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},променена стойност на {0} {1} 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,Общо страници apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} вече е определил стойността по подразбиране за {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

          No results found for '

          ,

          Няма намерени резултати за „

          DocType: DocField,Attach Image,Прикрепете Изображение DocType: Workflow State,list-alt,Списък-н apps/frappe/frappe/www/update-password.html,Password Updated,Паролата е променена @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed 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 DocType: Chat Message,Chat,Чат +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Разрешения за потребители DocType: LDAP Group Mapping,LDAP Group Mapping,Картографиране на групата LDAP DocType: Dashboard Chart,Chart Options,Опции на диаграмата +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Без заглавие колона apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} от {1} до {2} на ред # {3} DocType: Communication,Expired,Изтекъл apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Изглежда, че означението, което използвате, е невалидно!" @@ -1528,6 +1558,7 @@ DocType: DocType,System,Система DocType: Web Form,Max Attachment Size (in MB),Максимален размер на Прикачен файл (в MB) apps/frappe/frappe/www/login.html,Have an account? Login,Имате акаунт? Влезте DocType: Workflow State,arrow-down,стрелка надолу +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ред {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Потребителят не му е разрешено да изтрива {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} от {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Последно променен на @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Персонализирана Роля apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Начало / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Въведете паролата си DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Задължителен) 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.,"Няма данни във файла. Моля, презаредете новия файл с данни." @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Показ apps/frappe/frappe/desk/form/assign_to.py,New Message,Ново съобщение DocType: File,Preview HTML,Преглед HTML DocType: Desktop Icon,query-report,заявка-доклад +DocType: Data Import Beta,Template Warnings,Предупреждения за шаблони apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,"Филтри, запаметени" DocType: DocField,Percent,Процент apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,"Моля, задайте филтри" @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Персонализиран DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ако е активирано, потребителите, които влизат от Ограничен IP адрес, няма да бъдат подканени за двуфакторен автор" DocType: Auto Repeat,Get Contacts,Получаване на контакти apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Постове намира под {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Прескачане на неозаглавена колона DocType: Notification,Send alert if date matches this field's value,"Изпрати сигнал, ако дата съвпада стойност тази област е" DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} до {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,стъпка назад apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Моля, задайте Dropbox клавишите за достъп в сайта си довереник" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Изтрий този запис да позволи изпращането на този имейл адрес +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ако нестандартен порт (напр. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Персонализирайте преките пътища apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Само задължителни полета са необходими за нови записи. Можете да изтриете незадължителни колони, ако желаете." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Покажи още активност @@ -1769,7 +1804,9 @@ 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 App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Успешно актуализиран {0} запис от {1}. 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,Писмо DocType: DocType,"Naming Options:
          1. field:[fieldname] - By Field
          2. naming_series: - By Naming Series (field called naming_series must be present
          3. Prompt - Prompt user for a name
          4. [series] - Series by prefix (separated by a dot); for example PRE.#####
          5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Следващо синхронизи DocType: Energy Point Settings,Energy Point Settings,Настройки на енергийната точка DocType: Async Task,Succeeded,Успя apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Задължителни полета в {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

            No results found for '

            ,

            Няма намерени резултати за „

            apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Фабрични Разрешения за {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Потребители и права DocType: S3 Backup Settings,S3 Backup Settings,S3 Настройки за архивиране @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,В DocType: Notification,Value Change,Промяна на стойност DocType: Google Contacts,Authorize Google Contacts Access,Упълномощавайте достъпа до Google Контакти apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Показани са само числови полета от Отчет +DocType: Data Import Beta,Import Type,Тип импортиране DocType: Access Log,HTML Page,HTML страница DocType: Address,Subsidiary,Филиал apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Опит за свързване с QZ тава ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Невал DocType: Custom DocPerm,Write,Напиши apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Само Администратор може да позволи да създадете Справки за заявки / скриптове apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Актуализиране -DocType: File,Preview,Предварителен преглед +DocType: Data Import Beta,Preview,Предварителен преглед apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Поле ""стойност"" е задължително. Моля, посочете стойност да бъде актуализирана" DocType: Customize Form,Use this fieldname to generate title,Използвайте тази fieldname за генериране на заглавието apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Импорт на имейл от @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Браузър DocType: Social Login Key,Client URLs,Клиентски URL адреси apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Част от информацията липсва apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} успешно създаден +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Пропускане {0} от {1}, {2}" DocType: Custom DocPerm,Cancel,Отказ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Групово изтриване apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,File {0} не съществува @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,Символ за сесията DocType: Currency,Symbol,Символ apps/frappe/frappe/model/base_document.py,Row #{0}:,Ред # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Потвърдете изтриването на данни -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Нова парола е изпратена на емайла apps/frappe/frappe/auth.py,Login not allowed at this time,Не е позволено влизането в този момент DocType: Data Migration Run,Current Mapping Action,Текущо действие за картографиране DocType: Dashboard Chart Source,Source Name,Източник Име @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Пи apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Следван от DocType: LDAP Settings,LDAP Email Field,LDAP Email - Поле apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Списък +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Експортира {0} записи apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Още през потребителя да се направи списък DocType: User Email,Enable Outgoing,Активиране на изходящо DocType: Address,Fax,Факс @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Печат на документи apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Направо на поле DocType: Contact Us Settings,Forward To Email Address,Препрати на имейл адрес +DocType: Contact Phone,Is Primary Phone,Основен телефон е apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Изпратете имейл до {0}, за да го свържете тук." DocType: Auto Email Report,Weekdays,делници +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} ще бъдат експортирани записи apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Заглавие поле трябва да бъде валиден fieldname DocType: Post Comment,Post Comment,Публикувай коментар apps/frappe/frappe/config/core.py,Documents,Документи @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",В това поле ще се появи само ако FIELDNAME определено тук има стойност или правилата са верни (примери): myfield Оценка: doc.myfield == "My Value" Оценка: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Днес +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","След като сте задали този, потребителите ще бъдат в състояние единствено достъп до документи (напр. Блог Post), където съществува връзката (напр. Blogger)." +DocType: Data Import Beta,Submit After Import,Изпращане след импортиране DocType: Error Log,Log of Scheduler Errors,Журнал на грешки за Scheduler DocType: User,Bio,Био DocType: OAuth Client,App Client Secret,App Client Secret @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Изключване на линк за регистрация на логин страницата apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Възложен на / Собственик DocType: Workflow State,arrow-left,стрелка наляво +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Експортиране на 1 запис DocType: Workflow State,fullscreen,цял екран DocType: Chat Token,Chat Token,Часовник на чата apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Създайте диаграма apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не импортирайте DocType: Web Page,Center,Център DocType: Notification,Value To Be Set,"Стойност, която трябва да бъде зададена" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Редактиране на {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,Показване на Раздел DocType: Bulk Update,Limit,лимит apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},"Получихме искане за изтриване на {0} данни, свързани с: {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Добавете нова секция +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Филтрирани записи apps/frappe/frappe/www/printview.py,No template found at path: {0},Не са намерени в пътя шаблон: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Без имейл акаунт DocType: Comment,Cancelled,Отменен @@ -2190,10 +2237,13 @@ 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} 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,Ще бъде вашият идентификационен номер за вход +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Типове документи за глобално търсене нулират. ,Lead Conversion Time,Водещо време за реализация apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Изграждане на справка DocType: Note,Notify users with a popup when they log in,"Уведоми потребителите с изскачащ прозорец, когато влязат" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Основните модули {0} не могат да бъдат търсени в глобалното търсене. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Отворете чата apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не съществува, изберете нова цел за сливане" DocType: Data Migration Connector,Python Module,Модул "Питон" @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Затвори 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Разрешения за потребители -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Актуализация +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Актуализация DocType: Transaction Log,Transaction Hash,Хеш на транзакция DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Моля, запишете бюлетина, преди да го изпратите" @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,Напред apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,На опашка за архивиране. Това може да отнеме няколко минути до един час. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Потребителското разрешение вече съществува +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Съставяне на колона {0} в поле {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Преглед на {0} DocType: User,Hourly,всеки час apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Регистрирайте OAuth Client App @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може да бъде ""{2}"". Тя трябва да бъде една от ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},спечелено от {0} чрез автоматично правило {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} или {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Актуализация на парола DocType: Workflow State,trash,боклук DocType: System Settings,Older backups will be automatically deleted,"По-стари архиви, да се изтриват автоматично" apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Невалиден ключ за достъп или ключ за достъп. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,Предпочитана Адрес apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,С бланка apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} създаде този {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Не е разрешено за {0}: {1} в ред {2}. Ограничено поле: {3} +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" DocType: S3 Backup Settings,eu-west-1,ес-запад-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ако това е отметнато, редове с валидни данни ще бъдат импортирани, а невалидни редове ще бъдат изхвърлени в нов файл, който да импортирате по-късно." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ може да се редактира само от потребителите на роля @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,Е задължително поле DocType: User,Website User,Сайт на потребителя apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Някои колони могат да бъдат отрязани при печат в PDF. Опитайте се да запазите броя на колоните под 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Неравен +DocType: Data Import Beta,Don't Send Emails,Не изпращайте имейли DocType: Integration Request,Integration Request Service,Интеграция Заявка за услуга DocType: Access Log,Access Log,Дневник на достъпа DocType: Website Script,Script to attach to all web pages.,Script да се прикрепя към всички уеб страници. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,Пасивен DocType: Auto Repeat,Accounts Manager,Роля Мениджър на 'Сметки' apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Задаване за {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Плащането Ви е анулирано. +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/views/reports/report_view.js,Select File Type,Изберете Вид на файла apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Виж всички DocType: Help Article,Knowledge Base Editor,База от знание - Редактор @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Данни apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Статус на документ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Изисква се одобрение +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Следните записи трябва да бъдат създадени, преди да можем да импортираме вашия файл." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Оторизационен код apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Не е разрешено да импортира DocType: Deleted Document,Deleted DocType,Изтрити DocType @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,Системни настройки DocType: GCalendar Settings,Google API Credentials,Профили на Google API apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Стартирането на сесията се провали apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Този имейл е изпратен на {0} и копие до {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},изпрати този документ {0} DocType: Workflow State,th,тата -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} преди (и) година DocType: Social Login Key,Provider Name,Име на доставчик apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Създаване на нова {0} DocType: Contact,Google Contacts,Google Контакти @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar акаунт DocType: Email Rule,Is Spam,е спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Справка {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} +DocType: Data Import Beta,Import Warnings,Предупреждения за импортиране DocType: OAuth Client,Default Redirect URI,Адрес URI по подразбиране за препращане DocType: Auto Repeat,Recipients,Получатели DocType: System Settings,Choose authentication method to be used by all users,"Изберете метод за удостоверяване, който да се използва от всички потребители" @@ -2543,6 +2597,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Доклад apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Слаба грешка в Webhook DocType: Email Flag Queue,Unread,непрочетен DocType: Bulk Update,Desk,Бюро +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Пропускаща колона {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Филтърът трябва да е сорт или списък (в списък) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Напиши SELECT заявка. Забележка резултат не е пейджъра (всички данни се изпращат на един път). DocType: Email Account,Attachment Limit (MB),Attachment Limit (MB) @@ -2557,6 +2612,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Създавай на нов DocType: Workflow State,chevron-down,Стрелка-надолу apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email не изпраща до {0} (отписахте / инвалиди) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Изберете полета за експортиране DocType: Async Task,Traceback,Проследи DocType: Currency,Smallest Currency Fraction Value,Най-малък Фракция валути Value apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Подготовка на доклада @@ -2565,6 +2621,7 @@ DocType: Workflow State,th-list,TH-списък DocType: Web Page,Enable Comments,Активиране Коментари apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Бележки DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Ограничаване на потребителя от само този IP адрес. Множество адреси могат да се добавят чрез разделяне със запетаи. Също така приема частични IP адреси като (111.111.111) +DocType: Data Import Beta,Import Preview,Импортиране на визуализация DocType: Communication,From,От apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Изберете група възел на първо място. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Намерете {0} в {1} @@ -2663,6 +2720,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,между DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,На опашка +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Персонализирайте формуляр DocType: Braintree Settings,Use Sandbox,Използвайте Sandbox apps/frappe/frappe/utils/goal.py,This month,Този месец apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Нов персонализиран Print Format @@ -2678,6 +2736,7 @@ DocType: Session Default,Session Default,Сесия по подразбиран DocType: Chat Room,Last Message,Последното съобщение DocType: OAuth Bearer Token,Access Token,Токен за достъп DocType: About Us Settings,Org History,Орг история +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Остават около {0} минути DocType: Auto Repeat,Next Schedule Date,Следваща дата на графика DocType: Workflow,Workflow Name,Workflow Име DocType: DocShare,Notify by Email,Изпращайте по имейл @@ -2707,6 +2766,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,автор apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Възобновяване Изпращане apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Повторно отваряне +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Показване на предупреждения apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Отн: {0} DocType: Address,Purchase User,Потребител за модул Закупуване DocType: Data Migration Run,Push Failed,Бутонът не успя @@ -2743,6 +2803,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Раз apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Не ви е позволено да разглеждате бюлетина. DocType: User,Interests,Интереси apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Инструкции за възстановяване на паролата са изпратени на Вашия имейл +DocType: Energy Point Rule,Allot Points To Assigned Users,Отделяйте точки на назначени потребители apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Ниво 0 е за разрешения на ниво документ, \ по-високи нива за разрешения на ниво поле." DocType: Contact Email,Is Primary,Основно е @@ -2765,6 +2826,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,Стартирайте импортирането +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Тип експорт DocType: Workflow State,circle-arrow-left,Стрелка в кръг-наляво DocType: System Settings,Force User to Reset Password,Принудете потребителя да нулира паролата apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","За да получите актуализирания отчет, щракнете върху {0}." @@ -2777,13 +2839,16 @@ DocType: Contact,Middle Name,Презиме DocType: Custom Field,Field Description,Поле Описание apps/frappe/frappe/model/naming.py,Name not set via Prompt,Името не определя чрез Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Входящи +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Актуализиране на {0} от {1}, {2}" DocType: Auto Email Report,Filters Display,Показване на филтри apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","За да направите изменение, трябва да присъства полето "изменено_от"." +DocType: Contact,Numbers,численост apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} оцениха работата ви на {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Запазване на филтрите DocType: Address,Plant,Завод apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Отговори на всички DocType: DocType,Setup,Настройки +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Всички записи DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Имейл адрес, чиито контакти в Google трябва да се синхронизират." DocType: Email Account,Initial Sync Count,Първоначално Sync Count DocType: Workflow State,glass,стъкло @@ -2808,7 +2873,7 @@ DocType: Workflow State,font,шрифт DocType: DocType,Show Preview Popup,Показване на Preview Popup apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Това е един от най-ползваните 100 пароли. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Моля, разрешете изскачащи прозорци" -DocType: User,Mobile No,Мобилен номер +DocType: Contact,Mobile No,Мобилен номер DocType: Communication,Text Content,Текст съдържание DocType: Customize Form Field,Is Custom Field,Е персонализирано поле DocType: Workflow,"If checked, all other workflows become inactive.","Ако е избрано, всички други работни процеси стават неактивни." @@ -2854,6 +2919,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,До apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Името на новия Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Превключване на страничната лента DocType: Data Migration Run,Pull Insert,Издърпайте вложката +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Максимално разрешени точки след умножаване на точки със стойността на умножителя (Забележка: За ограничение не оставяйте това поле празно или задайте 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Невалиден шаблон apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Незаконна SQL заявка apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Задължително: DocType: Chat Message,Mentions,споменавания @@ -2868,6 +2936,7 @@ DocType: User Permission,User Permission,Потребителско разреш apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP не е инсталиран apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Свали с данни +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},променени стойности за {0} {1} DocType: Workflow State,hand-right,ръка-надясно DocType: Website Settings,Subdomain,Поддомейн DocType: S3 Backup Settings,Region,Област @@ -2894,10 +2963,12 @@ DocType: Braintree Settings,Public Key,Публичен ключ DocType: GSuite Settings,GSuite Settings,Настройки на GSuite DocType: Address,Links,Връзки DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,"Използва име на имейл адреса, споменато в този акаунт като име на изпращача за всички имейли, изпратени чрез този акаунт." +DocType: Energy Point Rule,Field To Check,Поле за проверка apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Контакти - не можа да се актуализира контакт в Google Контакти {0}, код за грешка {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,"Моля, изберете типа на документа." apps/frappe/frappe/model/base_document.py,Value missing for,Липсва Цена за apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Добави Поделемент +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Импортиране на напредъка DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Ако условието е изпълнено, потребителят ще бъде възнаграден с точките. напр. doc.status == 'Затворен'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Осчетоводен Запис не може да бъде изтрит. @@ -2934,6 +3005,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Упълномощав apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Страницата, която търсите липсва. Това би могло да бъде, защото тя е преместена или има печатна грешка в линка." apps/frappe/frappe/www/404.html,Error Code: {0},Код на грешка: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Описание на обявата страница, в обикновен текст, само няколко линии. (макс 140 знака)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} са задължителни полета DocType: Workflow,Allow Self Approval,Позволете само одобрение DocType: Event,Event Category,Категория събития apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,Джон Доу @@ -2981,8 +3053,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Премества DocType: Address,Preferred Billing Address,Предпочитана Billing Адрес apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Твърде много записи в една заявка. Моля, изпратете по-малки заявки" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive е конфигуриран. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Тип документ {0} се повтаря. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Променени стойности DocType: Workflow State,arrow-up,стрелка нагоре +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Трябва да има най-малко един ред за {0} таблица apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","За да конфигурирате автоматично повторение, активирайте „Разрешаване на автоматично повторение“ от {0}." DocType: OAuth Bearer Token,Expires In,Изтича В DocType: DocField,Allow on Submit,Разрешаване на Изпращане @@ -3069,6 +3143,7 @@ DocType: Custom Field,Options Help,Опции - Помощ 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 запис ще бъде изнесен DocType: DocField,Report Hide,Справка Скрий apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},изглед Tree не е на разположение за {0} DocType: DocType,Restrict To Domain,Ограничаване до домейн @@ -3086,6 +3161,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Код за проверка DocType: Webhook,Webhook Request,Искане за Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Грешка: {0} до {1}: {2} DocType: Data Migration Mapping,Mapping Type,Тип на картографиране +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Изберете Задължително apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Разгледай apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Няма нужда от символи, цифри или главни букви." DocType: DocField,Currency,Валута @@ -3116,11 +3192,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Писмо главата на базата apps/frappe/frappe/utils/oauth.py,Token is missing,Token липсва apps/frappe/frappe/www/update-password.html,Set Password,Задаване на парола +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Успешно импортирани {0} записи. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Забележка: Промяната на името на страницата ще прекъсне предишния URL адрес на тази страница. apps/frappe/frappe/utils/file_manager.py,Removed {0},Премахнато {0} DocType: SMS Settings,SMS Settings,SMS Настройки DocType: Company History,Highlight,Маркиране DocType: Dashboard Chart,Sum,сума +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,чрез импортиране на данни DocType: OAuth Provider Settings,Force,сила apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Последно синхронизирано {0} DocType: DocField,Fold,Гънка @@ -3157,6 +3235,7 @@ DocType: Workflow State,Home,Начална страница DocType: OAuth Provider Settings,Auto,Автоматичен DocType: System Settings,User can login using Email id or User Name,Потребителят може да влезе с имейл или потребителско име DocType: Workflow State,question-sign,въпрос-знак +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} е деактивиран apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Полето "маршрут" е задължително за уеб изгледи apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Вмъкване на колона преди {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Потребителят от това поле ще получи награди @@ -3300,6 +3379,7 @@ DocType: GSuite Settings,Allow GSuite access,Разрешете достъп н DocType: DocType,DESC,DESC DocType: DocType,Naming,Именуване apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Избери всички +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Колона {0} apps/frappe/frappe/config/customization.py,Custom Translations,Персонализирани Преводи apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Прогрес apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,от Роля @@ -3341,11 +3421,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,И DocType: Stripe Settings,Stripe Settings,Настройки на ивицата DocType: Data Migration Mapping,Data Migration Mapping,Мапинг на миграцията на данни DocType: Auto Email Report,Period,Период +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Остават около {0} минути apps/frappe/frappe/www/login.py,Invalid Login Token,Невалиден токън за вход 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,Родител Snapshot Error +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,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Опашката трябва да бъде една от {0} @@ -3365,6 +3447,7 @@ DocType: Calendar View,Start Date Field,Поле за начална дата DocType: Role,Role Name,Роля Име apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Превключване към бюрото apps/frappe/frappe/config/core.py,Script or Query reports,Script или Query доклади +DocType: Contact Phone,Is Primary Mobile,Е първичен мобилен DocType: Workflow Document State,Workflow Document State,Workflow Document членка apps/frappe/frappe/public/js/frappe/request.js,File too big,Файлът е твърде голям apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Имейл акаунт добавя няколко пъти @@ -3410,6 +3493,7 @@ DocType: DocField,Float,Плаващ DocType: Print Settings,Page Settings,Настройки на страницата apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Се запазва ... apps/frappe/frappe/www/update-password.html,Invalid Password,грешна парола +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Успешно импортиран {0} запис от {1}. DocType: Contact,Purchase Master Manager,Покупка Майстор на мениджъра apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,"Кликнете върху иконата за заключване, за да превключвате публично / частно" DocType: Module Def,Module Name,Модул име @@ -3443,6 +3527,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Моля въведете валидни мобилни номера apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,"Някои от функциите може да не работят в браузъра ви. Моля, актуализирайте браузъра си до последната версия." apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Не знам, питай ""помощ""" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},анулира този документ {0} DocType: DocType,Comments and Communications will be associated with this linked document,Коментари и съобщения ще бъдат свързани с тази свързан документ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Филтрира се ... DocType: Workflow State,bold,удебелен @@ -3461,6 +3546,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Добавя DocType: Comment,Published,Публикуван apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Благодаря ви за вашия имейл DocType: DocField,Small Text,Малък Текст +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Номер {0} не може да бъде зададен като основен за телефона, както и за мобилен номер" DocType: Workflow,Allow approval for creator of the document,Позволете одобрение за създателя на документа apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Запазване на отчета DocType: Webhook,on_cancel,on_cancel @@ -3518,6 +3604,7 @@ DocType: Print Settings,PDF Settings,PDF Настройки DocType: Kanban Board Column,Column Name,Колона Име DocType: Language,Based On,Базиран на DocType: Email Account,"For more information, click here.","За повече информация щракнете тук ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Броят на колоните не съвпада с данните apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Направи по подразбиране apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Време за изпълнение: {0} сек apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Невалиден включва пътека @@ -3607,7 +3694,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Докладвайте за началното време -apps/frappe/frappe/config/settings.py,Export Data,Експорт на данни +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Експорт на данни 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.,"Това е справка за справка. Моля, задайте съответните филтри и след това генерирайте нов." @@ -3625,7 +3712,6 @@ DocType: Report,Disable Prepared Report,Деактивиране на подго apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Потребител {0} поиска изтриване на данни apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,"Неправомерен токън за достъп. Моля, опитайте отново" apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Заявлението беше обновен до нова версия, моля обновите тази страница" -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.,"Не е намерен шаблон за адрес по подразбиране. Моля, създайте нов от Настройка> Печат и брандиране> Шаблон на адреса." DocType: Notification,Optional: The alert will be sent if this expression is true,"По желание: Сигналът ще бъде изпратен, ако този израз е вярно" DocType: Data Migration Plan,Plan Name,Име на плана DocType: Print Settings,Print with letterhead,Печат с бланки @@ -3666,6 +3752,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Cannot set Amend without Cancel apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Пълна страница DocType: DocType,Is Child Table,Е подчинена таблица +DocType: Data Import Beta,Template Options,Опции за шаблони apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} трябва да бъде един от {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} в момента разглежда този документ apps/frappe/frappe/config/core.py,Background Email Queue,Опашка за имейли във фонов режим @@ -3673,7 +3760,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Задаване н DocType: Communication,Opened,Отворен DocType: Workflow State,chevron-left,Стрелка-ляво DocType: Communication,Sending,Изпращане -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Не е позволено от този IP адрес DocType: Website Slideshow,This goes above the slideshow.,Това се отнася по-горе слайдшоу. DocType: Contact,Last Name,Фамилия DocType: Event,Private,Частен @@ -3687,7 +3773,6 @@ DocType: Workflow Action,Workflow Action,Workflow действие apps/frappe/frappe/utils/bot.py,I found these: ,Намерих тези: DocType: Event,Send an email reminder in the morning,Изпращане на електронна поща напомняне на сутринта DocType: Blog Post,Published On,Публикуван на -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" 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} @@ -3708,7 +3793,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,предупредителен-знак DocType: Prepared Report,Prepared Report,Готов доклад apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Добавете мета тагове към вашите уеб страници -DocType: Contact,Phone Nos,Телефонни номера DocType: Workflow State,User,Потребител DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Покажи заглавие в прозореца на браузъра като "Prefix - заглавие" DocType: Payment Gateway,Gateway Settings,Настройки на порта @@ -3725,6 +3809,7 @@ DocType: Data Migration Connector,Data Migration,Мигриране на дан DocType: User,API Key cannot be regenerated,API ключът не може да бъде регенериран apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Нещо се обърка DocType: System Settings,Number Format,Number Format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Успешно импортиран {0} запис. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,резюме DocType: Event,Event Participants,Участници в събитието DocType: Auto Repeat,Frequency,честота @@ -3732,7 +3817,7 @@ DocType: Custom Field,Insert After,Вмъкни след DocType: Event,Sync with Google Calendar,Синхронизирайте с Google Календар DocType: Access Log,Report Name,Справка Име DocType: Desktop Icon,Reverse Icon Color,Обратните Икона Color -DocType: Notification,Save,Запази +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Запази apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Следваща насрочена дата apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Присвойте на този, който има най-малко задачи" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Заглавие на раздел @@ -3755,11 +3840,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Персонализирайте формуляр DocType: Google Contacts,Last Sync On,Последно синхронизиране на DocType: Deleted Document,Deleted Document,Изтрити Документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ами сега! Нещо се обърка DocType: Desktop Icon,Category,Категория +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Стойност {0} липсва за {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Добавяне на контакти apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,пейзаж apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Client страна скрипт разширения в Javascript @@ -3782,6 +3867,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Актуализация на енергийната точка apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Моля, изберете друг начин на плащане. PayPal не поддържа транзакции с валута "{0}"" DocType: Chat Message,Room Type,Тип стая +DocType: Data Import Beta,Import Log Preview,Импортиране на преглед на дневника apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Поле за търсене {0} не е валидно apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,качен файл DocType: Workflow State,ok-circle,OK-кръг @@ -3848,6 +3934,7 @@ DocType: DocType,Allow Auto Repeat,Разрешаване на автомати apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Няма стойности за показване DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Шаблон за имейл +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Успешно актуализиран {0} запис. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Потребителят {0} няма достъп до доктрип чрез разрешение за роля за документ {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Изисква се въвеждане на двете: потребителско име и парола apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Моля, опреснете, за да получите най-новата документа." diff --git a/frappe/translations/bn.csv b/frappe/translations/bn.csv index cdd432e23c..e747ba18f6 100644 --- a/frappe/translations/bn.csv +++ b/frappe/translations/bn.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,নিম্নলিখিত অ্যাপ্লিকেশনের জন্য নতুন {} রিলিজ পাওয়া যায় apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,একটি পরিমাণ ক্ষেত্র নির্বাচন করুন. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,আমদানি ফাইল লোড হচ্ছে ... DocType: Assignment Rule,Last User,শেষ ব্যবহারকারী apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","একটি নতুন টাস্ক, {0}, {1} দ্বারা আপনার জন্য নির্দিষ্ট করা হয়েছে. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,সেশন ডিফল্ট সংরক্ষণ করা হয়েছে +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ফাইলটি পুনরায় লোড করুন DocType: Email Queue,Email Queue records.,ইমেল সারি রেকর্ড. DocType: Post,Post,পোস্ট DocType: Address,Punjab,পাঞ্জাব @@ -44,6 +46,7 @@ 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,স্থিতিমাপ @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,মাসিক DocType: Address,Uttarakhand,উত্তরাখন্ডে DocType: Email Account,Enable Incoming,ইনকামিং সক্রিয় apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ঝুঁকি -apps/frappe/frappe/www/login.py,Email Address,ইমেল ঠিকানা +DocType: Address,Email Address,ইমেল ঠিকানা DocType: Workflow State,th-large,ম-বড় DocType: Communication,Unread Notification Sent,প্রেরিত অপঠিত বিজ্ঞপ্তি apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,রপ্তানি অনুমোদিত নয়. আপনি এক্সপোর্ট করতে {0} ভূমিকা প্রয়োজন. @@ -97,7 +100,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,অ্য DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ইত্যাদি "সেলস কোয়েরি, সাপোর্ট ক্যোয়ারী" মত যোগাযোগ অপশন, একটি নতুন লাইন প্রতিটি বা কমা দ্বারা পৃথকীকৃত." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,একটি ট্যাগ সংযুক্তকর ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,প্রতিকৃতি -DocType: Data Migration Run,Insert,সন্নিবেশ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,সন্নিবেশ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,গুগল ড্রাইভে প্রবেশ করার অনুমতি প্রদান apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},নির্বাচন {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,দয়া করে ভিত্তি URL লিখুন @@ -117,17 +120,17 @@ 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,থিম কনফিগার করুন DocType: Company History,Company History,সংস্থার ইতিহাস -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,রিসেট +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,রিসেট DocType: Workflow State,volume-up,ভলিউম আপ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks ওয়েব অ্যাপ্লিকেশনে API অনুরোধ আহ্বান +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ট্রেসব্যাক প্রদর্শন করুন DocType: DocType,Default Print Format,পূর্বনির্ধারিত মুদ্রণ বিন্যাস DocType: Workflow State,Tags,ট্যাগ্স apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,কোনটি: কর্মপ্রবাহ শেষ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","অ অনন্য বিদ্যমান মান আছে {0} ক্ষেত্র, {1} হিসাবে অনন্য সেট করা যাবে না" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,নথি ধরনের +DocType: Global Search Settings,Document Types,নথি ধরনের DocType: Address,Jammu and Kashmir,জম্মু ও কাশ্মীর DocType: Workflow,Workflow State Field,কর্মপ্রবাহ রাজ্য মাঠ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,সেটআপ> ব্যবহারকারী DocType: Language,Guest,অতিথি DocType: DocType,Title Field,শিরোনাম মাঠ DocType: Error Log,Error Log,ত্রুটি লগ @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" শুধুমাত্র সামান্য কঠিন "ABC" চেয়ে অনুমান করা হয় মত পুনরাবৃত্তি DocType: Notification,Channel,চ্যানেল apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","আপনি এই অননুমোদিত যদি মনে করেন, অ্যাডমিনিস্ট্রেটর পাসওয়ার্ড পরিবর্তন করুন." +DocType: Data Import Beta,Data Import Beta,ডেটা আমদানি বিটা apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} বাধ্যতামূলক DocType: Assignment Rule,Assignment Rules,নিয়োগের বিধি DocType: Workflow State,eject,দূরীভূত করা @@ -161,6 +165,7 @@ DocType: Workflow Action Master,Workflow Action Name,কর্মপ্রবা apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE মার্জ করা যাবে না DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,না একটি জিপ ফাইল +DocType: Global Search DocType,Global Search DocType,গ্লোবাল অনুসন্ধান ডকটাইপ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
            New {{ doc.doctype }} #{{ doc.name }}
            ","ডাইনামিক বিষয় যোগ করতে, jinja ট্যাগ ব্যবহার করুন
             New {{ doc.doctype }} #{{ doc.name }} 
            " @@ -182,6 +187,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,ডক ইভেন্ট apps/frappe/frappe/public/js/frappe/utils/user.js,You,আপনি DocType: Braintree Settings,Braintree Settings,ব্রেইনট্রি সেটিংস +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,সাফল্যের সাথে {0} রেকর্ড তৈরি করা হয়েছে। apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ফিল্টার সংরক্ষণ করুন DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} মুছে ফেলা যাবে না @@ -208,6 +214,7 @@ DocType: SMS Settings,Enter url parameter for message,বার্তা জন apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,এই দস্তাবেজের জন্য স্বতঃ পুনরাবৃত্তি তৈরি করা হয়েছে apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,আপনার ব্রাউজারে রিপোর্ট দেখুন apps/frappe/frappe/config/desk.py,Event and other calendars.,ঘটনা এবং অন্যান্য ক্যালেন্ডার. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 সারি বাধ্যতামূলক) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,সমস্ত ক্ষেত্র মন্তব্য জমা দিতে প্রয়োজন। DocType: Custom Script,Adds a client custom script to a DocType,একটি ডকটাইপটিতে একটি ক্লায়েন্ট কাস্টম স্ক্রিপ্ট যুক্ত করে DocType: Print Settings,Printer Name,প্রিন্টারের নাম @@ -250,7 +257,6 @@ DocType: Bulk Update,Bulk Update,প্রচুর আপডেট DocType: Workflow State,chevron-up,শেভ্রন-আপ DocType: DocType,Allow Guest to View,দেখার জন্য অতিথি অনুমতি দিন apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} {1} এর মতো হওয়া উচিত নয় -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: Webhook,on_change,পরিবর্তন বিষয়ক apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,স্থায়ীভাবে {0} আইটেমগুলি মুছবেন? apps/frappe/frappe/utils/oauth.py,Not Allowed,অনুমতি নেই @@ -266,6 +272,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,প্রদর্শন DocType: Email Group,Total Subscribers,মোট গ্রাহক apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},শীর্ষ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,সারি সংখ্যা apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","একটি ভূমিকা শ্রেনী 0 প্রবেশাধিকার নেই, তাহলে উচ্চ মাত্রার অর্থহীন." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,সংরক্ষণ করুন DocType: Comment,Seen,দেখা @@ -305,6 +312,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,উদাহরণ: DocType: Workflow,Defines workflow states and rules for a document.,একটি নথি জন্য কর্মপ্রবাহ যুক্তরাষ্ট্র ও নিয়ম নির্ধারণ করা হয়. DocType: Workflow State,Filter,ফিল্টার @@ -327,6 +335,7 @@ DocType: Activity Log,Closed,বন্ধ DocType: Blog Settings,Blog Title,ব্লগ শিরোনাম apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,স্ট্যান্ডার্ড ভূমিকা অক্ষম করা যাবে না apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,চ্যাট প্রকার +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,মানচিত্র কলাম DocType: Address,Mizoram,মিজোরাম DocType: Newsletter,Newsletter,নিউজলেটার apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,দ্বারা অনুক্রমে উপ-ক্যোয়ারী ব্যবহার করা যাবে না @@ -361,6 +370,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,একটি কলাম যোগ apps/frappe/frappe/www/contact.html,Your email address,আপনার ইমেইল ঠিকানা DocType: Desktop Icon,Module,মডিউল +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,সফলভাবে {1} এর মধ্যে {0} রেকর্ডগুলি আপডেট হয়েছে} DocType: Notification,Send Alert On,সতর্কতা পাঠান DocType: Customize Form,"Customize Label, Print Hide, Default etc.","ট্যাগ, প্রিন্ট লুকান কাস্টমাইজ, ডিফল্ট ইত্যাদি" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ফাইল আনজিপ করা হচ্ছে ... @@ -391,6 +401,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} ব্যবহারকারী মোছা যাবে না DocType: System Settings,Currency Precision,মুদ্রা যথার্থ apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,অথবা অন্য কোন গন্তব্যে এই এক ব্লক করা হয়. কয়েক সেকেন্ডের মধ্যে আবার চেষ্টা করুন. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,ফিল্টার সাফ করুন DocType: Test Runner,App,অ্যাপ apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,সংযুক্তিগুলি সঠিকভাবে নতুন নথিতে লিঙ্ক করা যাবে না DocType: Chat Message Attachment,Attachment,ক্রোক @@ -415,6 +426,7 @@ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ড্যাশব apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,এই সময়ে ইমেইল পাঠাতে অক্ষম apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,অনুসন্ধান বা কমান্ডটি টাইপ করুন DocType: Activity Log,Timeline Name,সময়রেখা নাম +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,শুধুমাত্র একটি {0} প্রাথমিক হিসাবে সেট করা যায়। DocType: Email Account,e.g. smtp.gmail.com,যেমন smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,একটি নতুন নিয়ম যোগ DocType: Contact,Sales Master Manager,সেলস ম্যানেজার মাস্টার @@ -431,7 +443,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,এলডিএপি মিডল নেম ফিল্ড apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} এর {0} আমদানি করা হচ্ছে DocType: GCalendar Account,Allow GCalendar Access,GCalendar অ্যাক্সেসের অনুমতি দিন -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} একটি বাধ্যতামূলক ক্ষেত্র +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} একটি বাধ্যতামূলক ক্ষেত্র apps/frappe/frappe/templates/includes/login/login.js,Login token required,লগইন টোকেন প্রয়োজন apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,মাসিক র‌্যাঙ্ক: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,একাধিক তালিকা আইটেম নির্বাচন করুন @@ -461,6 +473,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},সংযোগ কর apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,নিজে একটি শব্দ অনুমান করা সহজ. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},অটো অ্যাসাইনমেন্ট ব্যর্থ: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,অনুসন্ধান ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,কোম্পানি নির্বাচন করুন apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,মার্জ মধ্যে একমাত্র সম্ভব গ্রুপ-গ্রুপ-বা পাত নোড টু পাত নোড apps/frappe/frappe/utils/file_manager.py,Added {0},যোগ করা হয়েছে {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,আপনার সাথে মেলে এমন রেকর্ড। অনুসন্ধান করুন নতুন কিছু @@ -473,7 +486,6 @@ DocType: Google Settings,OAuth Client ID,OAuth ক্লায়েন্ট DocType: Auto Repeat,Subject,বিষয় apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ডেস্ক ফিরে DocType: Web Form,Amount Based On Field,পরিমাণ ক্ষেত্রের উপর ভিত্তি করে -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,সেটআপ> ইমেল> ইমেল অ্যাকাউন্ট থেকে ডিফল্ট ইমেল অ্যাকাউন্ট সেটআপ করুন apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,ব্যবহারকারী শেয়ার জন্য বাধ্যতামূলক DocType: DocField,Hidden,গোপন DocType: Web Form,Allow Incomplete Forms,অসম্পূর্ণ ফরম মঞ্জুর করুন @@ -510,6 +522,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} এবং {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,একটি কথোপকথন শুরু করুন DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",সর্বদা মুদ্রণ খসড়া নথি জন্য শিরোলেখ "খসড়া" যোগ apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},বিজ্ঞপ্তিতে ত্রুটি: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} বছর আগে DocType: Data Migration Run,Current Mapping Start,বর্তমান ম্যাপিং শুরু apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ইমেইল স্প্যাম হিসাবে চিহ্নিত হয়েছে DocType: Comment,Website Manager,ওয়েবসাইট ম্যানেজার @@ -547,6 +560,7 @@ DocType: Workflow State,barcode,বারকোড apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,সাব-কোয়েরি বা ফাংশন ব্যবহার নিষিদ্ধ করা হয় apps/frappe/frappe/config/customization.py,Add your own translations,আপনার নিজস্ব অনুবাদ যোগ করুন DocType: Country,Country Name,দেশের নাম +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,ফাঁকা টেম্পলেট DocType: About Us Team Member,About Us Team Member,আমাদের টিম সদস্য সম্পর্কে apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","অনুমতি, প্রতিবেদন, আমদানি, রপ্তানি, মুদ্রণ, ইমেল এবং ব্যবহারকারীর অনুমতি সেট, লিখুন তৈরি করুন, মুছে ফেলুন, জমা, বাতিল, সংশোধন, ভূমিকা এবং পাঠযোগ্য মত অধিকার সেট করে নথি ধরনের (বলা DocTypes) উপর নির্ধারণ করা হয়." DocType: Event,Wednesday,বুধবার @@ -558,6 +572,7 @@ DocType: Website Settings,Website Theme Image Link,ওয়েবসাইট DocType: Web Form,Sidebar Items,সাইডবার চলছে DocType: Web Form,Show as Grid,গ্রিড হিসাবে দেখান apps/frappe/frappe/installer.py,App {0} already installed,অ্যাপ {0} ইতিমধ্যে ইনস্টল +DocType: Energy Point Rule,Users assigned to the reference document will get points.,রেফারেন্স ডকুমেন্টে নিয়োগ করা ব্যবহারকারীরা পয়েন্ট পাবেন। apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,কোন পূর্বরূপ DocType: Workflow State,exclamation-sign,বিস্ময়বোধক চিহ্ন apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,আনজিপ করা {0} ফাইল @@ -593,6 +608,7 @@ DocType: Notification,Days Before,দিন আগে apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,প্রতিদিনের ইভেন্টগুলি একই দিনে সমাপ্ত হওয়া উচিত। apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,সম্পাদনা করুন ... DocType: Workflow State,volume-down,শব্দ কম +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,এই আইপি ঠিকানা থেকে অ্যাক্সেসের অনুমতি নেই apps/frappe/frappe/desk/reportview.py,No Tags,কোন ট্যাগ DocType: Email Account,Send Notification to,বিজ্ঞপ্তি পাঠাতে DocType: DocField,Collapsible,বন্ধ হইতে সক্ষম @@ -648,6 +664,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,ডেভেলপার apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,নির্মিত 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,ডিফল্ট মুদ্রণ ভাষা apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,পূর্বপুরুষদের apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} রুট মোছা যাবে না @@ -689,6 +706,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",টার্গেট = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,নিমন্ত্রণকর্তা +DocType: Data Import Beta,Import File,ফাইল আমদানি apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,কলাম {0} ইতিমধ্যে বিদ্যমান. DocType: ToDo,High,উচ্চ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,নতুন ঘটনা @@ -717,8 +735,6 @@ DocType: User,Send Notifications for Email threads,ইমেল থ্রেড apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,অধ্যাপক apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,না বিকাশকারী মোডে apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ফাইল ব্যাকআপ প্রস্তুত -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",গুণক মানের সাথে পয়েন্টগুলি গুণনের পরে সর্বাধিক পয়েন্ট অনুমোদিত (দ্রষ্টব্য: কোনও সীমা সেট মান হিসাবে 0 নয়) DocType: DocField,In Global Search,বৈশ্বিক অনুসন্ধান DocType: System Settings,Brute Force Security,ব্রাউন ফোর্স নিরাপত্তা DocType: Workflow State,indent-left,ইন্ডেন্ট-বাম @@ -758,6 +774,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',ব্যবহারকারী '{0}' ইতিমধ্যে ভূমিকা রয়েছে '{1}' DocType: System Settings,Two Factor Authentication method,দুটি ফ্যাক্টর প্রমাণীকরণ পদ্ধতি apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,প্রথমে নাম সেট করুন এবং রেকর্ডটি সংরক্ষণ করুন। +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 রেকর্ড apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},এদের সাথে শেয়ার {0} apps/frappe/frappe/email/queue.py,Unsubscribe,সদস্যতা ত্যাগ করুন DocType: View Log,Reference Name,রেফারেন্স নাম @@ -806,6 +823,7 @@ 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,ট্র্যাক ইমেইল স্থিতি DocType: Note,Notify Users On Every Login,প্রতিটি লগইনে অনুপ্রেরিত আমাকে অবহিত ব্যবহারকারীরা +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,সাফল্যের সাথে {0} রেকর্ড আপডেট হয়েছে। DocType: PayPal Settings,API Password,এপিআই পাসওয়ার্ড apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,পাইথন মডিউল লিখুন বা সংযোজক প্রকার নির্বাচন করুন apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,FIELDNAME কাস্টম ক্ষেত্র জন্য নির্ধারণ করে না @@ -834,9 +852,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,মান পরিবর্তন apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},সদৃশ নাম {0} {1} -DocType: Email Queue,Retry,পুনরায় চেষ্টা করা +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,পুনরায় চেষ্টা করা +DocType: Contact Phone,Number,সংখ্যা DocType: Web Form Field,Web Form Field,ওয়েব ফরম ক্ষেত্র apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,আপনার কাছ থেকে একটি নতুন বার্তা আছে: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML সম্পাদনা করুন apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,দয়া করে পুনঃনির্দেশ URL লিখুন apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Restore Original Permissions,মৌলিক অনুমতি পুনরুদ্ধার @@ -859,7 +879,7 @@ DocType: Notification,View Properties (via Customize Form),(কাস্টম apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,এটি নির্বাচন করতে একটি ফাইল ক্লিক করুন। DocType: Note Seen By,Note Seen By,দ্বারা দেখা নোট apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,আরো পালাক্রমে সঙ্গে একটি লম্বা কীবোর্ড প্যাটার্ন ব্যবহার করার চেষ্টা করুন -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,লিডারবোর্ড +,LeaderBoard,লিডারবোর্ড DocType: DocType,Default Sort Order,ডিফল্ট বাছাই অর্ডার DocType: Address,Rajasthan,রাজস্থান DocType: Email Template,Email Reply Help,ইমেল উত্তর সাহায্য @@ -894,6 +914,7 @@ apps/frappe/frappe/utils/data.py,Cent,সেন্ট apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ইমেল রচনা apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","দেখাবার জন্য যুক্তরাষ্ট্র (যেমন খসড়া অনুমোদিত, বাতিল হয়েছে)." DocType: Print Settings,Allow Print for Draft,খসড়া প্রিন্ট মঞ্জুর করুন +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/link_selector.js,Set Quantity,সেট পরিমাণ apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,নিশ্চিত করার জন্য এই দস্তাবেজ জমা দিন DocType: Contact,Unsubscribed,সদস্যতামুক্তি @@ -924,6 +945,7 @@ DocType: LDAP Settings,Organizational Unit for Users,ব্যবহারকা ,Transaction Log Report,লেনদেন লগ রিপোর্ট DocType: Custom DocPerm,Custom DocPerm,কাস্টম DocPerm DocType: Newsletter,Send Unsubscribe Link,পাঠান আনসাবস্ক্রাইব লিঙ্ক +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,কিছু লিঙ্কযুক্ত রেকর্ড রয়েছে যা আপনার ফাইল আমদানি করার আগে তৈরি করা দরকার। আপনি কি নিখোঁজ রেকর্ডগুলি স্বয়ংক্রিয়ভাবে তৈরি করতে চান? DocType: Access Log,Method,পদ্ধতি DocType: Report,Script Report,স্ক্রিপ্ট প্রতিবেদন DocType: OAuth Authorization Code,Scopes,সুযোগগুলি @@ -964,6 +986,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,সফলভাবে আপলোড হয়েছে apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,আপনি ইন্টারনেটে সংযুক্ত আছেন DocType: Social Login Key,Enable Social Login,সামাজিক লগইন সক্ষম করুন +DocType: Data Import Beta,Warnings,সতর্কবাণী DocType: Communication,Event,ঘটনা apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} উপর, {1} লিখেছেন:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"স্ট্যান্ডার্ড ক্ষেত্রের মুছে ফেলা যায় না. আপনি চান, আপনি তা লুকিয়ে রাখতে পারেন" @@ -1019,6 +1042,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,নিচ DocType: Kanban Board Column,Blue,নীল apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,সব কাস্টমাইজেশন সরিয়ে নেওয়া হবে. অনুগ্রহ করে নিশ্চিত করুন. DocType: Page,Page HTML,পৃষ্ঠা এইচটিএমএল +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,ত্রুটিযুক্ত সারিগুলি রফতানি করুন apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,গোষ্ঠী নামটি ফাঁকা হতে পারে না। apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,আরও নোড শুধুমাত্র 'গ্রুপ' টাইপ নোড অধীনে তৈরি করা যেতে পারে DocType: SMS Parameter,Header,শিরোলেখ @@ -1063,7 +1087,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,বহির্গা apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,একটি চয়ন করুন DocType: Data Export,Filter List,ফিল্টার তালিকা DocType: Data Export,Excel,সীমা অতিক্রম করা -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,আপনার পাসওয়ার্ড আপডেট করা হয়েছে. এখানে আপনার তৈরিকৃত খেলার পাসওয়ার্ড DocType: Email Account,Auto Reply Message,স্বয়ংক্রিয় উত্তর বার্তা DocType: Data Migration Mapping,Condition,শর্ত apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ঘণ্টা আগে @@ -1072,7 +1095,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ব্যবহারকারী আইডি DocType: Communication,Sent,প্রেরিত DocType: Address,Kerala,কেরল -DocType: File,Lft,এলএফটি apps/frappe/frappe/public/js/frappe/desk.js,Administration,প্রশাসন DocType: User,Simultaneous Sessions,যুগপত দায়রা DocType: Social Login Key,Client Credentials,ক্লায়েন্ট পরিচয়পত্র @@ -1104,7 +1126,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},আপ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,গুরু DocType: DocType,User Cannot Create,ইউজার তৈরি করতে পারবেন না apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,সাফল্যের সাথে সম্পন্ন হয়েছে -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,ফোল্ডার {0} অস্তিত্ব নেই apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ড্রপবক্স এক্সেস অনুমোদিত! DocType: Customize Form,Enter Form Type,ফরম প্রকার লিখুন DocType: Google Drive,Authorize Google Drive Access,গুগল ড্রাইভ অ্যাক্সেস অনুমোদন @@ -1112,7 +1133,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,কোন রেকর্ড বাঁধা. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ফিল্ড সরান apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,আপনি ইন্টারনেটে সংযুক্ত নন। কিছুক্ষণের পরে পুনরায় চেষ্টা করুন -DocType: User,Send Password Update Notification,পাসওয়ার্ড আপডেট বিজ্ঞপ্তি পাঠান apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE সক্ষম হবেন. সতর্ক হোন!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","মুদ্রণ, ইমেইল জন্য কাস্টমাইজড ফর্ম্যাট" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} এর যোগফল @@ -1195,6 +1215,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,ভুল যাচ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,গুগল পরিচিতি সংহত অক্ষম করা আছে। DocType: Assignment Rule,Description,বিবরণ DocType: Print Settings,Repeat Header and Footer in PDF,পিডিএফ শিরোলেখ এবং পাদলেখ পুনরাবৃত্তি +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,ব্যর্থতা DocType: Address Template,Is Default,ডিফল্ট মান হল DocType: Data Migration Connector,Connector Type,সংযোগকারী প্রকার apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,কলামের নাম খালি রাখা যাবে না @@ -1207,6 +1228,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} পৃষ্ঠ 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,কলাম উপর ভিত্তি করে +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/model/document.py,Action Failed,অ্যাকশন ব্যর্থ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,ব্যবহারকারীর জন্য @@ -1258,6 +1280,7 @@ DocType: Print Settings,Enable Raw Printing,কাঁচা মুদ্রণ DocType: Website Route Redirect,Source,উত্স apps/frappe/frappe/templates/includes/list/filters.html,clear,পরিষ্কার apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,শেষ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,সেটআপ> ব্যবহারকারী DocType: Prepared Report,Filter Values,ফিল্টার মান DocType: Communication,User Tags,ব্যবহারকারী ট্যাগ্স DocType: Data Migration Run,Fail,ব্যর্থ @@ -1313,6 +1336,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,অ ,Activity,কার্যকলাপ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",সাহায্য: ব্যাংকিং ব্যবস্থায় দেশের অন্য একটি রেকর্ড Link Link URL হিসেবে "# ফরম / নোট / [নাম উল্লেখ্য]" ব্যবহার করার জন্য. (ব্যবহার করবেন না "HTTP: //") DocType: User Permission,Allow,অনুমতি দিন +DocType: Data Import Beta,Update Existing Records,বিদ্যমান রেকর্ড আপডেট করুন apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,চলুন শুরু করা যাক পুনরাবৃত্তি শব্দ এবং অক্ষর এড়ানো DocType: Energy Point Rule,Energy Point Rule,এনার্জি পয়েন্ট বিধি DocType: Communication,Delayed,বিলম্বিত @@ -1325,9 +1349,7 @@ DocType: Milestone,Track Field,ট্র্যাক ফিল্ড DocType: Notification,Set Property After Alert,সতর্কতা পর সম্পদ সেট apps/frappe/frappe/config/customization.py,Add fields to forms.,ফরম ক্ষেত্র যুক্ত. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,কিছু দেখে মনে হচ্ছে এই সাইটের পেপ্যাল কনফিগারেশন সাথে ভুল। -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/sidebar/review.js,Add Review,পর্যালোচনা যুক্ত করুন -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),হরফ আকার (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,কাস্টমাইজ ফর্ম থেকে কেবলমাত্র স্ট্যান্ডার্ড ডক্টটাইপগুলিকেই কাস্টমাইজ করার অনুমতি রয়েছে। DocType: Email Account,Sendgrid,Sendgrid @@ -1363,6 +1385,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ফ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,দুঃখিত! আপনি স্বয়ংক্রিয় উত্পন্ন মন্তব্য মুছতে পারবেন না DocType: Google Settings,Used For Google Maps Integration.,গুগল ম্যাপস ইন্টিগ্রেশনের জন্য ব্যবহৃত। apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,রেফারেন্স DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,কোনও রেকর্ড রফতানি হবে না DocType: User,System User,সিস্টেম ব্যবহারকারী DocType: Report,Is Standard,মান DocType: Desktop Icon,_report,প্রতিবেদন @@ -1376,6 +1399,7 @@ DocType: Workflow State,minus-sign,মাইনাস টু সাইন apps/frappe/frappe/public/js/frappe/request.js,Not Found,খুঁজে পাওয়া যাচ্ছে না apps/frappe/frappe/www/printview.py,No {0} permission,কোন {0} অনুমতি apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,রপ্তানি কাস্টম অনুমতি +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,কোন আইটেম পাওয়া যায় নি DocType: Data Export,Fields Multicheck,ক্ষেত্র মাল্টিচেক DocType: Activity Log,Login,লগইন DocType: Web Form,Payments,পেমেন্টস্ @@ -1434,7 +1458,7 @@ DocType: Email Account,Default Incoming,ডিফল্ট ইনকামিং DocType: Workflow State,repeat,পুনরাবৃত্তি DocType: Website Settings,Banner,নিশান DocType: Role,"If disabled, this role will be removed from all users.","যদি অক্ষম, এই ভূমিকা সব ব্যবহারকারীদের কাছ থেকে সরানো হবে." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} তালিকায় যান +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,খুজে পেতে সাহায্য নিন DocType: Milestone,Milestone Tracker,মাইলস্টোন ট্র্যাকার apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,নিবন্ধিত কিন্তু প্রতিবন্ধী @@ -1448,6 +1472,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,স্থানীয় DocType: DocType,Track Changes,গতিপথের পরিবর্তন DocType: Workflow State,Check,চেক DocType: Chat Profile,Offline,অফলাইন +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},সফলভাবে আমদানি করা হয়েছে {0} DocType: User,API Key,API কী DocType: Email Account,Send unsubscribe message in email,ইমেলে সদস্যতা রদ করার বার্তা পাঠান apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,সম্পাদনা শিরোনাম @@ -1477,7 +1502,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ 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,মোট পৃষ্ঠাগুলি -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

            No results found for '

            ,

            'এর জন্য কোন ফলাফল খুঁজে পাওয়া যায়নি

            DocType: DocField,Attach Image,চিত্র সংযুক্ত DocType: Workflow State,list-alt,তালিকায়-Alt apps/frappe/frappe/www/update-password.html,Password Updated,পাসওয়ার্ড আপডেট করা @@ -1498,8 +1522,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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,চ্যাট +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,সেটআপ> ব্যবহারকারীর অনুমতি DocType: LDAP Group Mapping,LDAP Group Mapping,এলডিএপি গ্রুপ ম্যাপিং DocType: Dashboard Chart,Chart Options,চার্ট বিকল্পসমূহ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,শিরোনামহীন কলাম apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} থেকে {1} থেকে {2} মধ্যে সারি # {3} DocType: Communication,Expired,মেয়াদউত্তীর্ণ apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,আপনি ব্যবহার করছেন টোকেনটি অবৈধ বলে মনে হচ্ছে! @@ -1525,6 +1551,7 @@ DocType: Custom Role,Custom Role,কাস্টম ভূমিকা apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,হোম / Test ফোল্ডার 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,আপনার পাসওয়ার্ড লিখুন DocType: Dropbox Settings,Dropbox Access Secret,ড্রপবক্স অ্যাক্সেস গোপন +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(বাধ্যতামূলক) 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.,ফাইলে কোন ডেটা পাওয়া যায়নি। দয়া করে ডেটা সহ নতুন ফাইল পুনরায় সংযুক্ত করুন। @@ -1597,6 +1624,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ড্য apps/frappe/frappe/desk/form/assign_to.py,New Message,নতুন বার্তা DocType: File,Preview HTML,পূর্বদৃশ্য এইচটিএমএল DocType: Desktop Icon,query-report,ক্যোয়ারী-প্রতিবেদন +DocType: Data Import Beta,Template Warnings,টেমপ্লেট সতর্কতা apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ফিল্টারগুলি সংরক্ষিত DocType: DocField,Percent,শতাংশ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,ফিল্টার সেট করুন @@ -1618,6 +1646,7 @@ DocType: Custom Field,Custom,প্রথা DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","যদি সক্ষম করা হয়, ব্যবহারকারীরা যে সীমাবদ্ধ IP ঠিকানা থেকে লগইন করে, তাদের দুটি ফ্যাক্টর Auth এর জন্য অনুরোধ করা হবে না" DocType: Auto Repeat,Get Contacts,পরিচিতিগুলি পান apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},অধীনে দায়ের করা পোস্ট {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,শিরোনামহীন কলাম বাদ দেওয়া হচ্ছে DocType: Notification,Send alert if date matches this field's value,তারিখ এই ক্ষেত্র এর মান মেলে যদি সতর্কতা পাঠান DocType: Workflow,Transitions,স্থানান্তর apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} থেকে {2} @@ -1641,6 +1670,7 @@ DocType: Workflow State,step-backward,ধাপে অনগ্রসর apps/frappe/frappe/utils/boilerplate.py,{app_title},{অ্যাপ_শিরোনাম} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,আপনার সাইটে কনফিগ ড্রপবক্স এক্সেস কী সেট করুন apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,এই ইমেইল ঠিকানায় পাঠানোর অনুমতি এই রেকর্ড মুছে +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","যদি অ-মানক বন্দর (যেমন POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,শর্টকাটগুলি কাস্টমাইজ করুন apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,শুধু বাধ্যতামূলক ক্ষেত্র নতুন রেকর্ডের জন্য প্রয়োজন হয়. যদি আপনি চান আপনি অ বাধ্যতামূলক কলাম মুছে দিতে পারেন. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,আরও ক্রিয়াকলাপ দেখান @@ -1748,6 +1778,7 @@ 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 অ্যাপ্লিকেশন 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,চিঠি DocType: DocType,"Naming Options:
            1. field:[fieldname] - By Field
            2. naming_series: - By Naming Series (field called naming_series must be present
            3. Prompt - Prompt user for a name
            4. [series] - Series by prefix (separated by a dot); for example PRE.#####
            5. @@ -1761,6 +1792,7 @@ DocType: GCalendar Account,Next Sync Token,পরবর্তী সিঙ্ক DocType: Energy Point Settings,Energy Point Settings,শক্তি পয়েন্ট সেটিংস DocType: Async Task,Succeeded,অনুসৃত apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},এ প্রয়োজন আবশ্যিক ক্ষেত্র {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

              No results found for '

              ,

              'এর জন্য কোন ফলাফল খুঁজে পাওয়া যায়নি

              apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,রিসেট অনুমতি {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,ব্যবহারকারী এবং অনুমতি DocType: S3 Backup Settings,S3 Backup Settings,S3 ব্যাকআপ সেটিংস @@ -1831,6 +1863,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,মধ্যে DocType: Notification,Value Change,মান পরিবর্তন DocType: Google Contacts,Authorize Google Contacts Access,গুগল পরিচিতি অ্যাক্সেস অনুমোদন apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,রিপোর্ট থেকে শুধুমাত্র সাংখ্যিক ক্ষেত্র দেখাচ্ছে +DocType: Data Import Beta,Import Type,আমদানির প্রকার DocType: Access Log,HTML Page,এইচটিএমএল পৃষ্ঠা DocType: Address,Subsidiary,সহায়ক apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,কিউজেড ট্রেতে সংযোগের চেষ্টা করা হচ্ছে ... @@ -1841,7 +1874,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,অকা DocType: Custom DocPerm,Write,লেখা apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,কেবলমাত্র প্রশাসক ক্যোয়ারী / স্ক্রিপ্ট রিপোর্ট তৈরি করার অনুমতি apps/frappe/frappe/public/js/frappe/form/save.js,Updating,আপডেট করার প্রণালী -DocType: File,Preview,সম্পূর্ণ বিবরণের পূর্বরূপ দেখুন +DocType: Data Import Beta,Preview,সম্পূর্ণ বিবরণের পূর্বরূপ দেখুন apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ফিল্ড "মান" বাধ্যতামূলক. আপডেট করা মান উল্লেখ করুন DocType: Customize Form,Use this fieldname to generate title,শিরোনাম উৎপন্ন এই FIELDNAME ব্যবহার apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,থেকে আমদানি ইমেইল @@ -1924,6 +1957,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,ব্রা DocType: Social Login Key,Client URLs,ক্লায়েন্ট URL গুলি apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,কিছু তথ্য অনুপস্থিত apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} সফলভাবে তৈরি করা হয়েছে +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","{1}, {2} এর {0} এড়িয়ে যাওয়া" DocType: Custom DocPerm,Cancel,বাতিল apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,বাল্ক মুছুন apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,{0} বিদ্যমান নয় ফাইল @@ -1951,7 +1985,6 @@ DocType: GCalendar Account,Session Token,সেশন টোকেন DocType: Currency,Symbol,প্রতীক apps/frappe/frappe/model/base_document.py,Row #{0}:,সারি # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,ডেটা মোছার বিষয়টি নিশ্চিত করুন -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,নতুন পাসওয়ার্ড ইমেইল apps/frappe/frappe/auth.py,Login not allowed at this time,এই সময়ে অনুমোদিত নয় লগইন DocType: Data Migration Run,Current Mapping Action,বর্তমান ম্যাপিং অ্যাকশন DocType: Dashboard Chart Source,Source Name,উত্স নাম @@ -2021,7 +2054,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,ডকুমেন্ট মুদ্রণ করুন apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,মাঠে ঝাঁপ দাও DocType: Contact Us Settings,Forward To Email Address,ফরোয়ার্ড ইমেইল ঠিকানায় +DocType: Contact Phone,Is Primary Phone,প্রাথমিক ফোন DocType: Auto Email Report,Weekdays,কাজের +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} রেকর্ড রফতানি হবে apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,শিরোনাম ক্ষেত্রের একটি বৈধ FIELDNAME হতে হবে DocType: Post Comment,Post Comment,মন্তব্য প্রকাশ করুন apps/frappe/frappe/config/core.py,Documents,কাগজপত্র @@ -2039,7 +2074,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",এই ক্ষেত্রটি প্রদর্শিত হবে শুধুমাত্র যদি FIELDNAME এখানে সংজ্ঞায়িত মূল্য আছে বা নিয়ম সত্য (উদাহরণ) হয়: myfield Eval: doc.myfield == 'আমার মূল্য' Eval: doc.age> 18 DocType: Social Login Key,Office 365,অফিস 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,আজ +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","আপনি এই সেট করে থাকেন, শুধুমাত্র সেই ব্যবহারকারীদের ক্ষেত্রে সক্ষম এক্সেস নথি হতে হবে (যেমন. ব্লগ পোস্ট) লিংক (যেমন. ব্লগার) যেখানে বিদ্যমান." +DocType: Data Import Beta,Submit After Import,আমদানির পরে জমা দিন DocType: Error Log,Log of Scheduler Errors,নির্ধারণকারী ত্রুটি কার্যবিবরণী DocType: User,Bio,বায়ো DocType: OAuth Client,App Client Secret,অ্যাপ ক্লায়েন্ট সিক্রেট @@ -2058,10 +2095,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,লগইন পৃষ্ঠায় অক্ষম গ্রাহক সাইনআপ লিঙ্কটি apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ মালিককে নিয়োগ DocType: Workflow State,arrow-left,তীর-বাম +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,রেকর্ড 1 রেকর্ড DocType: Workflow State,fullscreen,পূর্ণ পর্দা DocType: Chat Token,Chat Token,চ্যাট টোকেন apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,চার্ট তৈরি করুন apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,আমদানি করবেন না DocType: Web Page,Center,কেন্দ্র DocType: Notification,Value To Be Set,মূল্য সেট হওয়ার apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} সম্পাদনা করুন @@ -2081,6 +2120,7 @@ DocType: Print Format,Show Section Headings,দেখান অনুচ্ছ DocType: Bulk Update,Limit,সীমা apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},আমরা এর সাথে সম্পর্কিত {0} ডেটা মুছে ফেলার জন্য একটি অনুরোধ পেয়েছি: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,একটি নতুন অধ্যায় যোগ করুন +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,ফিল্টার করা রেকর্ডস apps/frappe/frappe/www/printview.py,No template found at path: {0},পাথ এ পাওয়া কোন টেমপ্লেট: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,কোনো ইমেল অ্যাকাউন্ট DocType: Comment,Cancelled,বাতিল হয়েছে @@ -2165,7 +2205,9 @@ 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} 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,আপনার লগইন আইডি হবে +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,গ্লোবাল অনুসন্ধান নথি প্রকার পুনরায় সেট করুন। ,Lead Conversion Time,লিড রূপান্তর সময় apps/frappe/frappe/desk/page/activity/activity.js,Build Report,প্রতিবেদন তৈরি DocType: Note,Notify users with a popup when they log in,যখন তারা লগ ইন ব্যবহারকারীদের একটি পপ-আপ দিয়ে সূচিত করুন @@ -2185,8 +2227,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,ঘনিষ্ঠ 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,সেটআপ> ব্যবহারকারীর অনুমতি -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,আপডেট +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,আপডেট DocType: Transaction Log,Transaction Hash,লেনদেন হাশ DocType: Error Snapshot,Snapshot View,স্ন্যাপশট দেখুন apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,পাঠানোর আগে নিউজলেটার সংরক্ষণ করুন @@ -2213,7 +2254,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,পয়েন্ DocType: SMS Settings,SMS Gateway URL,এসএমএস গেটওয়ে ইউআরএল apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} হতে পারে না "{2}". এটা এক হতে হবে "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} বা {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,পাসওয়ার্ড আপডেট DocType: Workflow State,trash,আবর্জনা DocType: System Settings,Older backups will be automatically deleted,পুরাতন ব্যাক-আপ স্বয়ংক্রিয়ভাবে মুছে ফেলা হবে apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,অবৈধ অ্যাক্সেস কী আইডি বা সিক্রেট অ্যাক্সেস কী @@ -2240,6 +2280,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,ক DocType: Address,Preferred Shipping Address,পছন্দের শিপিং ঠিকানা apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,পত্র মাথা apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} এটা তৈরি করেছ {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ করা হয়নি। দয়া করে সেটআপ> ইমেল> ইমেল অ্যাকাউন্ট থেকে একটি নতুন ইমেল অ্যাকাউন্ট তৈরি করুন DocType: S3 Backup Settings,eu-west-1,ইইউ-পশ্চিমে -1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","এটি পরীক্ষা করা হলে, বৈধ ডেটা দিয়ে সারিগুলি আমদানি করা হবে এবং অবৈধ সারিগুলি নতুন ফাইলের মধ্যে ডাম্প করা হবে।" apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ডকুমেন্ট ভূমিকা ব্যবহারকারীদের দ্বারা শুধুমাত্র সম্পাদনাযোগ্য @@ -2266,6 +2307,7 @@ DocType: Custom Field,Is Mandatory Field,পাঠিয়ে দিন DocType: User,Website User,ওয়েবসাইট দেখুন ব্যবহারকারী apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,পিডিএফ প্রিন্ট করার সময় কিছু কলামগুলি বিচ্ছিন্ন হয়ে যেতে পারে। 10 এর নীচে কলামগুলির সংখ্যা রাখার চেষ্টা করুন। apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,না সমান +DocType: Data Import Beta,Don't Send Emails,ইমেলগুলি প্রেরণ করবেন না DocType: Integration Request,Integration Request Service,ইন্টিগ্রেশন অনুরোধ পরিষেবা DocType: Access Log,Access Log,অ্যাক্সেস লগ DocType: Website Script,Script to attach to all web pages.,স্ক্রিপ্ট সব ওয়েব পেজ থেকে জোড়া. @@ -2304,6 +2346,7 @@ DocType: Contact,Passive,নিষ্ক্রিয় DocType: Auto Repeat,Accounts Manager,হিসাবরক্ষক ব্যবস্থাপক apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} এর জন্য বরাদ্দকরণ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,আপনার অর্থ প্রদান বাতিল করা হয়েছে। +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,সেটআপ> ইমেল> ইমেল অ্যাকাউন্ট থেকে ডিফল্ট ইমেল অ্যাকাউন্ট সেটআপ করুন apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,নির্বাচন ফাইল টাইপ apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,সব দেখ DocType: Help Article,Knowledge Base Editor,নলেজ বেস সম্পাদক @@ -2335,6 +2378,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,উপাত্ত apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,নথির অবস্থা apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,অনুমোদন প্রয়োজন +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,আমরা আপনার ফাইলটি আমদানি করার আগে নিম্নলিখিত রেকর্ডগুলি তৈরি করা দরকার। DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth এর অনুমোদন কোড apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,আমদানি করার অনুমতি দেওয়া হয়নি DocType: Deleted Document,Deleted DocType,মোছা DOCTYPE @@ -2386,8 +2430,8 @@ DocType: System Settings,System Settings,পদ্ধতি নির্ধা DocType: GCalendar Settings,Google API Credentials,Google API প্রমাণপত্রাদি apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,সেশন শুরু ব্যর্থ apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},এই ইমেইল {0} পাঠানো এবং কপি করা হয়েছে {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},এই নথিটি জমা দিয়েছেন {0} DocType: Workflow State,th,ম -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} বছর আগে DocType: Social Login Key,Provider Name,সরবরাহকারির নাম apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},তৈরি করুন একটি নতুন {0} DocType: Contact,Google Contacts,গুগল যোগাযোগ @@ -2395,6 +2439,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar অ্যাকাউন DocType: Email Rule,Is Spam,স্প্যাম apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},গালাগাল প্রতিবেদন {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ওপেন {0} +DocType: Data Import Beta,Import Warnings,সতর্কতা আমদানি করুন DocType: OAuth Client,Default Redirect URI,ডিফল্ট পুনর্চালনা কোনো URI DocType: Auto Repeat,Recipients,প্রাপক DocType: System Settings,Choose authentication method to be used by all users,সমস্ত ব্যবহারকারীদের দ্বারা ব্যবহার করা প্রমাণীকরণ পদ্ধতি চয়ন করুন @@ -2510,6 +2555,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,প্রত apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,স্ল্যাক ওয়েবহোক ত্রুটি DocType: Email Flag Queue,Unread,অপঠিত DocType: Bulk Update,Desk,ডেস্ক +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},এড়িয়ে যাওয়া কলাম {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),ফিল্টার একটি tuple অথবা তালিকার (ক তালিকায়) হবে apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,একটি নির্বাচন ক্যোয়ারী লিখুন. উল্লেখ্য ফলাফলের (সব তথ্য এক বারেই পাঠানো হয়) পেজড না হয়. DocType: Email Account,Attachment Limit (MB),সংযুক্তি সীমা (মেগাবাইট) @@ -2524,6 +2570,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,নতুন তৈরি DocType: Workflow State,chevron-down,শেভ্রন-ডাউন apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),পাঠানো না ইমেইল {0} (প্রতিবন্ধী / আন-সাবস্ক্রাইব) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,রফতানি করতে ক্ষেত্র নির্বাচন করুন DocType: Async Task,Traceback,ট্রেসব্যাক DocType: Currency,Smallest Currency Fraction Value,ক্ষুদ্রতম একক ভগ্নাংশ মূল্য apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,প্রতিবেদন প্রস্তুত করা হচ্ছে @@ -2532,6 +2579,7 @@ DocType: Workflow State,th-list,ম-তালিকায় DocType: Web Page,Enable Comments,মন্তব্য সক্রিয় apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,নোট DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),শুধুমাত্র এই আইপি ঠিকানা থেকে ব্যবহারকারী সীমিত. একাধিক IP ঠিকানা কমা দিয়ে পৃথক করে যোগ করা যেতে পারে. এছাড়াও ভালো বা আংশিক আইপি অ্যাড্রেস গ্রহণ (111.111.111) +DocType: Data Import Beta,Import Preview,পূর্বরূপ আমদানি করুন DocType: Communication,From,থেকে apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,প্রথমে একটি গ্রুপ নোড নির্বাচন. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},তে {0} মধ্যে {1} @@ -2629,6 +2677,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,মধ্যে DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,সারিবদ্ধ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,সেটআপ> স্বনির্ধারিত ফর্ম DocType: Braintree Settings,Use Sandbox,ব্যবহারের স্যান্ডবক্স apps/frappe/frappe/utils/goal.py,This month,এই মাস apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,নতুন কাস্টম মুদ্রন বিন্যাস @@ -2643,6 +2692,7 @@ DocType: Session Default,Session Default,সেশন ডিফল্ট DocType: Chat Room,Last Message,শেষ বার্তা DocType: OAuth Bearer Token,Access Token,অ্যাক্সেস টোকেন DocType: About Us Settings,Org History,অর্গ ইতিহাস +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,প্রায় {0} মিনিট বাকি DocType: Auto Repeat,Next Schedule Date,পরবর্তী তালিকা তারিখ DocType: Workflow,Workflow Name,কর্মপ্রবাহ নাম DocType: DocShare,Notify by Email,ইমেইল দ্বারা সূচিত @@ -2672,6 +2722,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,লেখক apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,পুনঃসূচনা পাঠানো apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,পুনরায় খোলা +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,সতর্কতা প্রদর্শন করুন apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},লিখেছেন: {0} DocType: Address,Purchase User,ক্রয় ব্যবহারকারী DocType: Data Migration Run,Push Failed,পুশ ব্যর্থ হয়েছে @@ -2707,6 +2758,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,উন apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,আপনি নিউজলেটার দেখতে অনুমতি নেই। DocType: User,Interests,রুচি apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,পাসওয়ার্ড রিসেট নির্দেশাবলী আপনার ইমেইল পাঠানো হয়েছে +DocType: Energy Point Rule,Allot Points To Assigned Users,নির্ধারিত ব্যবহারকারীদের জন্য পয়েন্ট বরাদ্দ করুন apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","শ্রেনী 0 ডকুমেন্ট স্তর অনুমতিগুলি, \ মাঠ পর্যায় অনুমতির জন্য উচ্চ মাত্রার জন্য।" DocType: Contact Email,Is Primary,প্রাথমিক @@ -2729,6 +2781,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,আমদানি শুরু করুন +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,রপ্তানি প্রকার DocType: Workflow State,circle-arrow-left,বৃত্ত-তীর-বাম DocType: System Settings,Force User to Reset Password,ব্যবহারকারীকে পাসওয়ার্ড পুনরায় সেট করতে বাধ্য করুন apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis ক্যাশে সার্ভার চলমান না. অ্যাডমিনিস্ট্রেটর / কারিগরি সহায়তা সাথে যোগাযোগ করুন @@ -2740,12 +2793,15 @@ DocType: Contact,Middle Name,নামের মধ্যাংশ DocType: Custom Field,Field Description,মাঠ বর্ণনা apps/frappe/frappe/model/naming.py,Name not set via Prompt,প্রম্পট মাধ্যমে নির্ধারণ করে না নাম apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ইমেল ইনবক্স +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1}, {2} এর {0} আপডেট করা হচ্ছে" DocType: Auto Email Report,Filters Display,ফিল্টার প্রদর্শন apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",সংশোধন করার জন্য অবশ্যই "সংশোধিত_ফর্ম" ক্ষেত্রটি উপস্থিত থাকতে হবে। +DocType: Contact,Numbers,নাম্বার apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ফিল্টার সংরক্ষণ করুন DocType: Address,Plant,উদ্ভিদ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,সবগুলোর উত্তর দাও DocType: DocType,Setup,সেটআপ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,সমস্ত রেকর্ড DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ইমেল ঠিকানা যার গুগল পরিচিতিগুলি সিঙ্ক করতে হবে। DocType: Email Account,Initial Sync Count,প্রাথমিক সিঙ্ক কাউন্ট DocType: Workflow State,glass,কাচ @@ -2770,7 +2826,7 @@ DocType: Workflow State,font,ফন্ট DocType: DocType,Show Preview Popup,পূর্বরূপ পপআপ দেখান apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,এই শীর্ষ -100 সাধারণ পাসওয়ার্ড. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,পপ-আপগুলি সচল করুন -DocType: User,Mobile No,মোবাইল নাম্বার +DocType: Contact,Mobile No,মোবাইল নাম্বার DocType: Communication,Text Content,টেক্সট বিষয়বস্তু DocType: Customize Form Field,Is Custom Field,কাস্টম ক্ষেত্র DocType: Workflow,"If checked, all other workflows become inactive.","চেক করা থাকলে, সব অন্যান্য workflows নিষ্ক্রিয় হয়ে." @@ -2816,6 +2872,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ফ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,নতুন মুদ্রণ বিন্যাস নাম apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,সাইডবার টগল করুন DocType: Data Migration Run,Pull Insert,ঢোকান সন্নিবেশ +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",গুণক মান দিয়ে গুণমান পয়েন্টের পরে সর্বাধিক পয়েন্ট অনুমোদিত (দ্রষ্টব্য: কোনও সীমা ছাড়াই এই ক্ষেত্রটি খালি ছেড়ে দিন বা 0 সেট করুন) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,অবৈধ টেম্পলেট apps/frappe/frappe/model/db_query.py,Illegal SQL Query,অবৈধ এসকিউএল ক্যোয়ারী apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,আবশ্যিক: DocType: Chat Message,Mentions,উল্লেখ @@ -2855,9 +2914,11 @@ DocType: Braintree Settings,Public Key,পাবলিক কী DocType: GSuite Settings,GSuite Settings,GSuite সেটিং DocType: Address,Links,লিংক DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,এই অ্যাকাউন্টটি ব্যবহার করে প্রেরিত সমস্ত ইমেলের জন্য প্রেরকের নাম হিসাবে এই অ্যাকাউন্টে উল্লিখিত ইমেল ঠিকানা নাম ব্যবহার করে। +DocType: Energy Point Rule,Field To Check,ফিল্ড চেক apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,দস্তাবেজ প্রকার নির্বাচন করুন। apps/frappe/frappe/model/base_document.py,Value missing for,মূল্য জন্য অনুপস্থিত apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,শিশু করো +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,আমদানি অগ্রগতি DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",শর্তটি সন্তুষ্ট হলে ব্যবহারকারীকে পয়েন্টগুলি দিয়ে পুরস্কৃত করা হবে। যেমন। doc.status == 'বন্ধ' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: জমা রেকর্ড মুছে ফেলা যাবে না. @@ -2943,6 +3004,7 @@ apps/frappe/frappe/database/database.py,Too many writes in one request. Please s apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,গুগল ড্রাইভ কনফিগার করা হয়েছে। apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,মান পরিবর্তিত DocType: Workflow State,arrow-up,তীর-আপ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} টেবিলের জন্য কমপক্ষে একটি সারি থাকা উচিত DocType: OAuth Bearer Token,Expires In,মেয়াদ শেষ DocType: DocField,Allow on Submit,জমা দিন মঞ্জুরি দিন DocType: DocField,HTML,এইচটিএমএল @@ -3027,6 +3089,7 @@ DocType: Custom Field,Options Help,বিকল্প নির্বাচন 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 রেকর্ড রফতানি করা হবে 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,ডোমেনে সীমাবদ্ধ @@ -3043,6 +3106,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,যাচাই কোড DocType: Webhook,Webhook Request,ওয়েবহক অনুরোধ apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** ব্যর্থ: {0} থেকে {1}: {2} DocType: Data Migration Mapping,Mapping Type,ম্যাপিং প্রকার +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,আবশ্যিক নির্বাচন apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,ব্রাউজ করুন apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","প্রতীক, সংখ্যা, বা বড় হাতের অক্ষর জন্য কোন প্রয়োজন নেই." DocType: DocField,Currency,মুদ্রা @@ -3073,11 +3137,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,চিঠি হেড ভিত্তিক apps/frappe/frappe/utils/oauth.py,Token is missing,টোকেন অনুপস্থিত apps/frappe/frappe/www/update-password.html,Set Password,পাসওয়ার্ড সেট করুন +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,সাফল্যের সাথে {0} রেকর্ড আমদানি করা হয়েছে। apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,দ্রষ্টব্য: পরিবর্তন পৃষ্ঠার নাম এই পৃষ্ঠাটিতে পূর্ববর্তী URL ভঙ্গ করবে। apps/frappe/frappe/utils/file_manager.py,Removed {0},সরানো হয়েছে {0} DocType: SMS Settings,SMS Settings,এসএমএস সেটিংস DocType: Company History,Highlight,লক্ষণীয় করা DocType: Dashboard Chart,Sum,সমষ্টি +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,ডেটা আমদানির মাধ্যমে DocType: OAuth Provider Settings,Force,বল apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},সর্বশেষ সিঙ্ক হয়েছে {0} DocType: DocField,Fold,ভাঁজ @@ -3113,6 +3179,7 @@ DocType: Workflow State,Home,বাড়ি DocType: OAuth Provider Settings,Auto,অটো DocType: System Settings,User can login using Email id or User Name,ব্যবহারকারী ইমেল আইডি বা ব্যবহারকারী নাম ব্যবহার করে লগইন করতে পারেন DocType: Workflow State,question-sign,প্রশ্ন-চিহ্ন +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} অক্ষম apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ক্ষেত্র "রুট" ওয়েব দৃশ্য জন্য বাধ্যতামূলক apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} আগে কলাম ঢোকান DocType: Energy Point Rule,The user from this field will be rewarded points,এই ক্ষেত্র থেকে ব্যবহারকারী পুরষ্কার পয়েন্ট হবে @@ -3146,6 +3213,7 @@ DocType: Website Settings,Top Bar Items,শীর্ষ বার আইটে DocType: Notification,Print Settings,মুদ্রণ সেটিংস DocType: Page,Yes,হাঁ DocType: DocType,Max Attachments,সর্বোচ্চ সংযুক্তি +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,প্রায় {0} সেকেন্ড বাকি DocType: Calendar View,End Date Field,শেষ তারিখ ক্ষেত্র apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,গ্লোবাল শর্টকাটস DocType: Desktop Icon,Page,পৃষ্ঠা @@ -3255,6 +3323,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite অ্যাক্সেস DocType: DocType,DESC,DESC DocType: DocType,Naming,নামকরণ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,সবগুলো নির্বাচন করা +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},কলাম {0} apps/frappe/frappe/config/customization.py,Custom Translations,কাস্টম অনুবাদগুলো apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,উন্নতি apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,ভূমিকা দ্বারা @@ -3295,6 +3364,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,প DocType: Stripe Settings,Stripe Settings,ডোরা সেটিং DocType: Data Migration Mapping,Data Migration Mapping,ডেটা মাইগ্রেশন ম্যাপিং DocType: Auto Email Report,Period,কাল +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,প্রায় {0} মিনিট বাকি apps/frappe/frappe/www/login.py,Invalid Login Token,অবৈধ প্রবেশ টোকেন apps/frappe/frappe/public/js/frappe/chat.js,Discard,বাতিল করতে চান apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 ঘন্টা আগে @@ -3319,6 +3389,7 @@ DocType: Calendar View,Start Date Field,তারিখ ক্ষেত্র DocType: Role,Role Name,ভূমিকা নাম apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,ডেস্ক স্যুইচ apps/frappe/frappe/config/core.py,Script or Query reports,স্ক্রিপ্ট বা QUERY রিপোর্ট +DocType: Contact Phone,Is Primary Mobile,প্রাইমারি মোবাইল DocType: Workflow Document State,Workflow Document State,কর্মপ্রবাহ ডকুমেন্ট রাজ্য apps/frappe/frappe/public/js/frappe/request.js,File too big,ফাইল অত্যন্ত বড় apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ইমেল অ্যাকাউন্ট একাধিক বার যোগ @@ -3414,6 +3485,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,ইমেই DocType: Comment,Published,প্রকাশিত apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,তোমার ই - মেইলের জন্য ধন্যবাদ DocType: DocField,Small Text,ছোট লেখা +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,নম্বর {0} মোবাইলের পাশাপাশি ফোনের জন্য প্রাথমিক হিসাবে সেট করা যায় না Number DocType: Workflow,Allow approval for creator of the document,নথি স্রষ্টার জন্য অনুমতি অনুমোদন apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,প্রতিবেদন সংরক্ষণ করুন DocType: Webhook,on_cancel,on_cancel @@ -3470,6 +3542,7 @@ DocType: Print Settings,PDF Settings,পিডিএফ সেটিংস DocType: Kanban Board Column,Column Name,কলামের নাম DocType: Language,Based On,উপর ভিত্তি করে DocType: Email Account,"For more information, click here.","আরও তথ্যের জন্য, এখানে ক্লিক করুন ।" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,কলামগুলির সংখ্যা ডেটার সাথে মেলে না apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,ডিফল্ট করা apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,সম্পাদনের সময়: {0} সেকেন্ড apps/frappe/frappe/model/utils/__init__.py,Invalid include path,অবৈধ পথ অন্তর্ভুক্ত @@ -3556,7 +3629,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You, apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have atleast one recipient,নিউজলেটারে কমপক্ষে একজন প্রাপক থাকা উচিত DocType: Deleted Document,GCalendar Sync ID,GCalendar সিঙ্ক আইডি DocType: Prepared Report,Report Start Time,রিপোর্ট সময় শুরু করুন -apps/frappe/frappe/config/settings.py,Export Data,রপ্তানি তথ্য +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,রপ্তানি তথ্য 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.,এটি একটি পটভূমি প্রতিবেদন। উপযুক্ত ফিল্টার সেট করুন এবং তারপরে একটি নতুন তৈরি করুন। @@ -3573,7 +3646,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},{0} তৈর DocType: Report,Disable Prepared Report,প্রস্তুত প্রতিবেদন অক্ষম করুন apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,অবৈধ অ্যাক্সেস টোকেন. অনুগ্রহপূর্বক আবার চেষ্টা করুন apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","অ্যাপ্লিকেশনটি একটি নতুন সংস্করণে আপডেট করা হয়েছে, এই পৃষ্ঠাটি রিফ্রেশ দয়া" -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.,কোনও ডিফল্ট ঠিকানা টেম্পলেট পাওয়া যায় নি। দয়া করে সেটআপ> মুদ্রণ ও ব্র্যান্ডিং> ঠিকানা টেম্পলেট থেকে একটি নতুন তৈরি করুন। DocType: Notification,Optional: The alert will be sent if this expression is true,ঐচ্ছিক: এই অভিব্যক্তি সত্য হলে সতর্কতা পাঠানো হবে DocType: Data Migration Plan,Plan Name,পরিকল্পনা নাম DocType: Print Settings,Print with letterhead,লেটারহেড সাথে মুদ্রণ @@ -3613,6 +3685,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: বাতিল না করে সংশোধন সেট করা যায় না apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,পুরো পাতা DocType: DocType,Is Child Table,শিশু টেবিল হয় +DocType: Data Import Beta,Template Options,টেমপ্লেট বিকল্পসমূহ apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} কে অবশ্যই {1} এর মাঝে কোন একটি হতে হবে apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} বর্তমানে এই নথি দেখার হয় apps/frappe/frappe/config/core.py,Background Email Queue,পৃষ্ঠভূমি ইমেইল সারি @@ -3620,7 +3693,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,পাসওয় DocType: Communication,Opened,খোলা DocType: Workflow State,chevron-left,শেভ্রন-বাম DocType: Communication,Sending,পাঠানো -apps/frappe/frappe/auth.py,Not allowed from this IP Address,এই আইপি ঠিকানা থেকে অনুমতি না DocType: Website Slideshow,This goes above the slideshow.,এই স্লাইডশো উপরে যায়. DocType: Contact,Last Name,নামের শেষাংশ DocType: Event,Private,ব্যক্তিগত @@ -3634,7 +3706,6 @@ DocType: Workflow Action,Workflow Action,কর্মপ্রবাহ এক apps/frappe/frappe/utils/bot.py,I found these: ,আমি এই পাওয়া: DocType: Event,Send an email reminder in the morning,সকালে একটি ইমেল অনুস্মারক পাঠান DocType: Blog Post,Published On,প্রকাশিত -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ করা হয়নি। দয়া করে সেটআপ> ইমেল> ইমেল অ্যাকাউন্ট থেকে একটি নতুন ইমেল অ্যাকাউন্ট তৈরি করুন DocType: Contact,Gender,লিঙ্গ apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,আবশ্যিক তথ্য অনুপস্থিত: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,চেক অনুরোধ URL টি @@ -3654,7 +3725,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,সতর্কীকরণ চিহ্ন DocType: Prepared Report,Prepared Report,প্রস্তুত প্রতিবেদন apps/frappe/frappe/config/website.py,Add meta tags to your web pages,আপনার ওয়েব পৃষ্ঠাগুলিতে মেটা ট্যাগ যুক্ত করুন -DocType: Contact,Phone Nos,ফোন নম্বর DocType: Workflow State,User,ব্যবহারকারী DocType: Website Settings,"Show title in browser window as ""Prefix - title""",হিসাবে ব্রাইজার উইণ্ডোয় দেখান শিরোনাম "উপসর্গ - শিরোনাম" DocType: Payment Gateway,Gateway Settings,গেটওয়ে সেটিংস @@ -3671,6 +3741,7 @@ DocType: Data Migration Connector,Data Migration,তথ্য স্থানা DocType: User,API Key cannot be regenerated,API কী পুনর্জীবিত করা যাবে না apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,কিছু ভুল হয়েছে DocType: System Settings,Number Format,সংখ্যার বিন্যাস +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,সাফল্যের সাথে {0} রেকর্ড আমদানি করা হয়েছে। apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,সারাংশ DocType: Event,Event Participants,ইভেন্ট অংশগ্রহণকারীদের DocType: Auto Repeat,Frequency,ফ্রিকোয়েন্সি @@ -3678,7 +3749,7 @@ DocType: Custom Field,Insert After,পরে ঢোকান DocType: Event,Sync with Google Calendar,গুগল ক্যালেন্ডারের সাথে সিঙ্ক করুন DocType: Access Log,Report Name,গালাগাল প্রতিবেদন নাম DocType: Desktop Icon,Reverse Icon Color,বিপরীত আইকন রঙ -DocType: Notification,Save,সংরক্ষণ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,সংরক্ষণ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,পরবর্তী নির্ধারিত তারিখ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,যাকে নূন্যতম অ্যাসাইনমেন্ট রয়েছে তাকে অর্পণ করুন apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,অনুচ্ছেদ শিরোনাম @@ -3701,7 +3772,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,সেটআপ> স্বনির্ধারিত ফর্ম DocType: Google Contacts,Last Sync On,শেষ সিঙ্ক অন DocType: Deleted Document,Deleted Document,মোছা ডকুমেন্ট apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ওহো! কিছু ভুল হয়েছে @@ -3728,6 +3798,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,শক্তি পয়েন্ট আপডেট apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',দয়া করে অন্য একটি অর্থ প্রদানের পদ্ধতি নির্বাচন করুন। পেপ্যাল মুদ্রায় লেনদেন অবলম্বন পাওয়া যায়নি '{0}' DocType: Chat Message,Room Type,ঘরের বিবরণ +DocType: Data Import Beta,Import Log Preview,আমদানি পূর্বরূপ দেখুন apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,অনুসন্ধান ফিল্ড {0} বৈধ নয় apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,আপলোড করা ফাইল DocType: Workflow State,ok-circle,OK-বৃত্ত @@ -3791,6 +3862,7 @@ DocType: DocType,Allow Auto Repeat,স্বতঃ পুনরাবৃত্ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,দেখানোর জন্য কোনও মান নেই DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ইমেল টেমপ্লেট +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,সফলভাবে {0} রেকর্ড আপডেট হয়েছে। apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,প্রয়োজন উভয় লগইন এবং পাসওয়ার্ড apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,সর্বশেষ নথি পেতে রিফ্রেশ করুন. DocType: User,Security Settings,নিরাপত্তা বিন্যাস diff --git a/frappe/translations/bs.csv b/frappe/translations/bs.csv index bacb6396ab..0eee522720 100644 --- a/frappe/translations/bs.csv +++ b/frappe/translations/bs.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Dostupna su nova {} izdanja za sledeće aplikacije apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Molimo odaberite polje za iznos. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Učitavanje datoteke za uvoz ... DocType: Assignment Rule,Last User,Poslednji korisnik apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Novi zadatak, {0}, je dodijeljen od {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Zadržane sesije su spremljene +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Učitaj datoteku DocType: Email Queue,Email Queue records.,E-mail Queue Records. DocType: Post,Post,Pošalji DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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},Preimenovanje {0} DocType: Workflow State,zoom-out,odalji +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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mjesečno DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Enable Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Opasnost -apps/frappe/frappe/www/login.py,Email Address,E-mail adresa +DocType: Address,Email Address,E-mail adresa DocType: Workflow State,th-large,og veliki DocType: Communication,Unread Notification Sent,Nepročitane Obavijest poslana apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Izvoz nisu dopušteni . Trebate {0} ulogu za izvoz . @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt opcije, poput "Sales Query, Podrška upit" itd jedni na novoj liniji ili odvojene zarezima." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Dodajte oznaku ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret -DocType: Data Migration Run,Insert,Insert +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insert apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Dopusti pristup Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Odaberite {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Molimo unesite osnovni URL @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuta p 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 Set korisnika Dozvole pravo može postaviti dozvole za druge korisnike za to Document Type." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigurišite temu DocType: Company History,Company History,Istorija firme -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,resetovanje +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,resetovanje DocType: Workflow State,volume-up,glasnoće prema gore apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks koji pozivaju API zahteve u web aplikacije +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Prikaži Traceback DocType: DocType,Default Print Format,Zadani oblik ispisa DocType: Workflow State,Tags,tagovi apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ništa: Kraj Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polja se ne može postaviti kao jedinstven u {1}, jer postoje nejedinstvene postojeće vrijednosti" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Vrste dokumenata +DocType: Global Search Settings,Document Types,Vrste dokumenata DocType: Address,Jammu and Kashmir,Jammu and Kashmir DocType: Workflow,Workflow State Field,Workflow Državna polja -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Podešavanje> Korisnik DocType: Language,Guest,Gost DocType: DocType,Title Field,Naslov Field DocType: Error Log,Error Log,Error Log @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Ponavlja poput "abcabcabc" su samo malo teže pogoditi nego "abc" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ako mislite da je ovo neovlašćeno, molimo promijenite lozinku administratora." +DocType: Data Import Beta,Data Import Beta,Beta uvoza podataka apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} je obavezno DocType: Assignment Rule,Assignment Rules,Pravila dodjele DocType: Workflow State,eject,izbaciti @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Workflow Akcija Ime apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,Vrsta dokumenta se ne može spajati DocType: Web Form Field,Fieldtype,Polja apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nije zip datoteku +DocType: Global Search DocType,Global Search DocType,Global Search DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
              New {{ doc.doctype }} #{{ doc.name }}
              ","Da biste dodali dinamički predmet, koristite oznake tipa jinja
               New {{ doc.doctype }} #{{ doc.name }} 
              " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,Vi DocType: Braintree Settings,Braintree Settings,Braintree podešavanja +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Uspješno stvoreno {0} zapisa. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Sačuvaj filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Ne mogu da obrišem {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Unesite URL parametar za p apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Automatsko ponavljanje kreirano za ovaj dokument apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Pregledajte izveštaj u vašem pregledaču apps/frappe/frappe/config/desk.py,Event and other calendars.,Dogadjaj i ostali kalendari. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 red obavezan) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Sva polja je potrebno dostaviti komentar. DocType: Custom Script,Adds a client custom script to a DocType,Dodaje prilagođenu skriptu klijenta u DocType DocType: Print Settings,Printer Name,Ime štampača @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Bulk Update DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Dozvolite gost Pogledaj apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ne bi trebao biti isti kao {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Izbriši {0} stavke trajno? apps/frappe/frappe/utils/oauth.py,Not Allowed,Nije dozvoljen @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Prikaz DocType: Email Group,Total Subscribers,Ukupno Pretplatnici apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Vrh {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Redni broj apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","AkoUloga nema pristup na razini 0 , onda je viša razina su besmislene ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,Seen @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Nije dozvoljeno da se 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 podrazumev 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: DocType: Workflow,Defines workflow states and rules for a document.,Definira workflow država i pravila za dokument. DocType: Workflow State,Filter,filter @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Zatvoreno DocType: Blog Settings,Blog Title,Naslov bloga apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standard uloga ne može biti onemogućena apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Tip ćaskanja +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Stupci na karti DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ne mogu koristiti pod-upita kako bi po @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Dodajte kolumnu apps/frappe/frappe/www/contact.html,Your email address,Vaša e-mail adresa DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Uspješno ažurirani {0} zapisi od {1}. DocType: Notification,Send Alert On,Pošalji upozorenje na DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Prilagodite oznaku, print sakriti, Zadani itd." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Otpakiranje datoteka ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Korisnik {0} se ne može izbrisati DocType: System Settings,Currency Precision,Valuta Precision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Još jedna transakcija blokira ovaj. Molimo pokušajte ponovno za nekoliko sekundi. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Očistite filtere DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Prilozi nisu mogli biti ispravno povezani sa novim dokumentom DocType: Chat Message Attachment,Attachment,Vezanost @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nije moguće apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google kalendar - Nije moguće ažurirati događaj {0} u Google kalendaru, kôd pogreške {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Traži ili upišite komandu DocType: Activity Log,Timeline Name,Timeline ime +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Samo jedan {0} može se postaviti kao primarni. DocType: Email Account,e.g. smtp.gmail.com,npr smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Dodaj novo pravilo DocType: Contact,Sales Master Manager,Sales Manager Master @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Polje LDAP-ovog imena apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Uvoz {0} od {1} DocType: GCalendar Account,Allow GCalendar Access,Dozvoli GCalendar pristup -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} je obavezno polje +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je obavezno polje apps/frappe/frappe/templates/includes/login/login.js,Login token required,Potreban je token token apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mjesečni rang: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Odaberite više stavki s liste @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Ne može povezati: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Riječ sama po sebi je lako pogoditi. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automatski zadatak nije uspio: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Traži ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Molimo odaberite Company apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Spajanje je moguće samo između Group - na - Grupe ili Leaf od čvora do čvor nultog stupnja apps/frappe/frappe/utils/file_manager.py,Added {0},Dodano {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Nema odgovarajućih zapisa. Pretraga nešto novo @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,OAuth ID klijenta DocType: Auto Repeat,Subject,Predmet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Nazad na Desk DocType: Web Form,Amount Based On Field,Iznos po osnovu Field -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 Setup> Email> Account Email apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Korisnik je obavezna za Share DocType: DocField,Hidden,skriven DocType: Web Form,Allow Incomplete Forms,Dozvolite Nepotpune Obrasci @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} {1} i apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Započnite razgovor. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Uvek dodajte "Nacrt" Heading za štampanje nacrta dokumenata apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Greška u notifikaciji: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} godina prije DocType: Data Migration Run,Current Mapping Start,Početak trenutnog mapiranja apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail je označena kao spam DocType: Comment,Website Manager,Web Manager @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,barkod apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Upotreba pod-upita ili funkcije je ograničena apps/frappe/frappe/config/customization.py,Add your own translations,Dodajte svoj prevodi DocType: Country,Country Name,Država Ime +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Prazan predložak DocType: About Us Team Member,About Us Team Member,"""O nama"" član tima" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Dozvole su postavljene na uloge i vrsta dokumenata (zove DocTypes ) postavljanjem prava kao što su čitanje , pisanje, stvaranje, brisanje, Slanje , Odustani , Izmijeniti , izvješće , uvoz , izvoz , ispis , e-mail i postaviti dozvole korisnicima ." DocType: Event,Wednesday,Srijeda @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Website Theme Slika Link DocType: Web Form,Sidebar Items,Bočna Stavke DocType: Web Form,Show as Grid,Prikaži kao Grid apps/frappe/frappe/installer.py,App {0} already installed,App {0} već instaliran +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Korisnici dodijeljeni referentnom dokumentu dobit će bodove. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Nema pregleda DocType: Workflow State,exclamation-sign,usklik-znak apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Neotpakovane datoteke {0} @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Dana prije apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dnevni događaji trebali bi završiti istog dana. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Uredi ... DocType: Workflow State,volume-down,glasnoće prema dolje +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Pristup sa ove IP adrese nije dozvoljen apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,Pošalji Obavještenje DocType: DocField,Collapsible,Sklopivi @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Razvijač apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Objavio apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} je u redu {1} Ne možete imati i URL i podredjene stavke +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Za sljedeće tablice treba biti najmanje jedan red: {0} DocType: Print Format,Default Print Language,Podrazumevani jezik ispisa apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Predniki Of apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Korijen {0} se ne može izbrisati @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,domaćin +DocType: Data Import Beta,Import File,Uvezi datoteku apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolona {0} već postoji. DocType: ToDo,High,Visok apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Novi događaj @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Pošalji obavijesti za teme e apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne u Developer Mode apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Izrada datoteke je spremna -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maksimalan broj bodova dozvoljen nakon množenja bodova s vrijednosti množitelja (Napomena: Za ograničenje postavljene vrijednosti kao 0) DocType: DocField,In Global Search,U Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,alineje-lijevo @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Korisnik '{0}' već ima ulogu '{1}' DocType: System Settings,Two Factor Authentication method,Dva faktorska autentikacijska metoda apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Prvo podesite ime i sačuvajte zapis. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Zapisa apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Podijeljeno sa {0} apps/frappe/frappe/email/queue.py,Unsubscribe,unsubscribe DocType: View Log,Reference Name,Referenca Ime @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Data Migration Connec apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vratio se {1} DocType: Email Account,Track Email Status,Status e-pošte DocType: Note,Notify Users On Every Login,Obavijesti Korisnici On Every Prijava +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Stupac {0} se ne može podudarati s bilo kojim poljem +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Uspješno ažurirani {0} zapisi. DocType: PayPal Settings,API Password,API lozinke apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Unesite python modul ili izaberite tip konektora apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,"Podataka, Naziv Polja nije postavljen za Custom Field" @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Korisničke dozvole se koriste da ograniče korisnike na određene zapise. DocType: Notification,Value Changed,Vrijednost promijenila apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Dupli naziv {0} {1} -DocType: Email Queue,Retry,Pokušajte ponovo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Pokušajte ponovo +DocType: Contact Phone,Number,Broj DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Imate novu poruku od: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Unesite URL za preusmeravanje apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Pogledajte nekretnine apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kliknite na datoteku da biste je odabrali. DocType: Note Seen By,Note Seen By,Napomena vidi apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Pokušajte koristiti duže obrazac tastatura sa više skretanja -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,leaderboard +,LeaderBoard,leaderboard DocType: DocType,Default Sort Order,Podrazumevani redosled sortiranja DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Reply Help @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Sastavi-mail apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Države za tijek rada ( npr. skicu, odobreno Otkazan ) ." DocType: Print Settings,Allow Print for Draft,Dozvolite Ispis za Nacrt +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 sa aplikacijom QZ Tray ...

              Za upotrebu značajke Raw Print morate imati instaliranu i pokrenutu aplikaciju QZ Tray.

              Kliknite ovdje za preuzimanje i instaliranje QZ Tray-a .
              Kliknite ovdje kako biste saznali više o sirovoj štampi ." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Set Količina apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Dostavi taj dokument da potvrdi DocType: Contact,Unsubscribed,Pretplatu @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organizaciona jedinica za k ,Transaction Log Report,Izveštaj o prijavljenoj transakciji DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Pošalji link za odjavu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Postoje neki povezani zapisi koje je potrebno kreirati prije nego što možemo uvoziti vašu datoteku. Želite li automatski stvoriti sljedeće nedostajuće zapise? DocType: Access Log,Method,Način DocType: Report,Script Report,Skripta Prijavi DocType: OAuth Authorization Code,Scopes,Scopes @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Uspješno je učitano apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Povezani ste na internet. DocType: Social Login Key,Enable Social Login,Omogući društveni prijava +DocType: Data Import Beta,Warnings,Upozorenja DocType: Communication,Event,Događaj apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Na {0}, {1} napisao:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Ne možete izbrisati standardne polje. Možete sakriti ako želite @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Umetnite DocType: Kanban Board Column,Blue,Plava boja apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,"Sve prilagođavanja će biti uklonjena. Molimo, potvrdite unos." DocType: Page,Page HTML,HTML stranica +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Izvoz pogrešnih redaka apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Ime grupe ne može biti prazno. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,"Daljnje čvorovi mogu se samo stvorio pod ""Grupa"" tipa čvorova" DocType: SMS Parameter,Header,Zaglavlje @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Upit isteklo apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Omogući / onemogući domene DocType: Role Permission for Page and Report,Allow Roles,Dozvolite Uloge +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Unosno je {0} zapisa od {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Simple Python Expression, Example: Status in ("Nevažeće")" DocType: User,Last Active,Zadnji put DocType: Email Account,SMTP Settings for outgoing emails,SMTP postavke za odlazne e-pošte apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izaberite DocType: Data Export,Filter List,Lista filtera DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Vaša lozinka je ažurirana. Ovdje je svoju novu lozinku DocType: Email Account,Auto Reply Message,Auto poruka odgovora DocType: Data Migration Mapping,Condition,Stanje apps/frappe/frappe/utils/data.py,{0} hours ago,{0} sata @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Korisnički ID DocType: Communication,Sent,Poslano DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administracija DocType: User,Simultaneous Sessions,Simultano Sessions DocType: Social Login Key,Client Credentials,akreditiva klijent @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Ažurir apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Majstor DocType: DocType,User Cannot Create,Korisnik ne može stvoriti apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Uspješno završeno -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} ne postoji apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,pristup Dropbox je odobren! DocType: Customize Form,Enter Form Type,Unesite Obrazac Vid DocType: Google Drive,Authorize Google Drive Access,Autorizirajte pristup Google disku @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Nema zapisa tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,uklonite Field apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Niste povezani sa Internetom. Pokušajte ponovo. -DocType: User,Send Password Update Notification,Pošalji lozinku Update Notification apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Dopuštanje DOCTYPE , vrstu dokumenata . Budite oprezni !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Prilagođeni formati za tapete, E-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Zbroj {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Pogrešan kod prover apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integracija Google kontakata je onemogućena. DocType: Assignment Rule,Description,Opis DocType: Print Settings,Repeat Header and Footer in PDF,Ponovite zaglavlja i podnožja u PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Neuspjeh DocType: Address Template,Is Default,Je podrazumjevani DocType: Data Migration Connector,Connector Type,Tip konektora apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Kolona Ime ne može biti prazno @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Idite na stranicu {0 DocType: LDAP Settings,Password for Base DN,Lozinku za Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabela Field apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolone na osnovu +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/model/document.py,Action Failed,Akcija nije uspjela apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,za korisnika @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Omogući sirovi ispis DocType: Website Route Redirect,Source,Izvor apps/frappe/frappe/templates/includes/list/filters.html,clear,jasan apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Gotov +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Podešavanje> Korisnik DocType: Prepared Report,Filter Values,Vrednosti filtera DocType: Communication,User Tags,Korisnicki tagovi DocType: Data Migration Run,Fail,Fail @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Prat ,Activity,Aktivnost DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Pomoć: Za povezivanje na drugi zapis u sistemu, koristite ""# Forma / Napomena / [Napomena ime]"" kao URL veze. (Ne koristite ""http://"")" DocType: User Permission,Allow,Dopustiti +DocType: Data Import Beta,Update Existing Records,Ažuriranje postojećih zapisa apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Da izbjeći ponovio riječi i slova DocType: Energy Point Rule,Energy Point Rule,Pravilo energetske tačke DocType: Communication,Delayed,Odgođen @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Track Field DocType: Notification,Set Property After Alert,Set imovine nakon Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Dodaj polja na obrasce. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Izgleda da nešto nije u redu sa PayPal konfiguraciji ovog sajta. -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 sa aplikacijom QZ Tray ...

              Za upotrebu značajke Raw Print morate imati instaliranu i pokrenutu aplikaciju QZ Tray.

              Kliknite ovdje za preuzimanje i instaliranje QZ Tray-a .
              Kliknite ovdje kako biste saznali više o sirovoj štampi ." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Dodaj recenziju -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Veličina slova (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Samo standardni DocTypes mogu se prilagoditi iz Customize obrasca. DocType: Email Account,Sendgrid,SendGrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Žao mi je! Ne možete izbrisati automatski generišu komentare DocType: Google Settings,Used For Google Maps Integration.,Koristi se za integraciju Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referentna DOCTYPEhtml +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Nijedna evidencija neće biti izvezena DocType: User,System User,Korisnik sustava DocType: Report,Is Standard,Je Standardni DocType: Desktop Icon,_report,_report @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,minus znak apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not found apps/frappe/frappe/www/printview.py,No {0} permission,Ne {0} dopuštenje apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izvoz Custom Dozvole +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ništa nije pronađeno. DocType: Data Export,Fields Multicheck,Fields Multicheck DocType: Activity Log,Login,Prijava DocType: Web Form,Payments,Plaćanja @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Poštanski DocType: Email Account,Default Incoming,Uobičajeno Incoming DocType: Workflow State,repeat,ponoviti DocType: Website Settings,Banner,Baner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vrijednost mora biti jedna od {0} DocType: Role,"If disabled, this role will be removed from all users.","Ako onemogućeno, ova uloga će biti uklonjena iz svih korisnika." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Idite na listu {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Idite na listu {0} 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,Registrovan ali sa invaliditetom @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Lokalno ime polja DocType: DocType,Track Changes,Track Changes DocType: Workflow State,Check,Provjeriti DocType: Chat Profile,Offline,Offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Uspješno uvežen {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Pošalji unsubscribe poruku u e-mail apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Uredi naslov @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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)","Trigger na važi metodama kao što su "before_insert", "after_update", itd (zavisi od DocType izabrane)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},promijenjena vrijednost {0} {1} 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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} je već dodelio zadanu vrednost za {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

              No results found for '

              ,

              Nema rezultata za '

              DocType: DocField,Attach Image,Priložiti slike DocType: Workflow State,list-alt,popis-alt apps/frappe/frappe/www/update-password.html,Password Updated,Lozinka je ažurirana @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nije dozvoljeno za {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 nije važeći izvještaj formatu. Izvještaj format treba \ jedan od sledećih% s DocType: Chat Message,Chat,Chat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Podešavanje> Dozvole korisnika DocType: LDAP Group Mapping,LDAP Group Mapping,Mapiranje LDAP grupe DocType: Dashboard Chart,Chart Options,Opcije grafikona +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Kolona bez naslova apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} od {1} na {2} u nizu # {3} DocType: Communication,Expired,Istekla apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Izgleda da token koji koristite je nevažeći! @@ -1528,6 +1558,7 @@ DocType: DocType,System,Sustav DocType: Web Form,Max Attachment Size (in MB),Max Prilog Veličina (u MB) apps/frappe/frappe/www/login.html,Have an account? Login,Imate račun? Prijavi se DocType: Workflow State,arrow-down,Strelica prema dole +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Red {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Korisniku nije dopušteno brisati {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} od {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Zadnji put osvježen @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Custom Uloga apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Početna / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Unesite lozinku DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obavezno) DocType: Social Login Key,Social Login Provider,Socijalni Login Provider apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Dodali 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.,Podaci nisu pronađeni u datoteci. Molimo da ponovo unesete novu datoteku sa podacima. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Prikaži n apps/frappe/frappe/desk/form/assign_to.py,New Message,Nova poruka DocType: File,Preview HTML,Pregled HTML DocType: Desktop Icon,query-report,upit-izvještaj +DocType: Data Import Beta,Template Warnings,Upozorenja predloga apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filteri spasio DocType: DocField,Percent,Postotak apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Molimo postavite filtere @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Običaj DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ako je omogućeno, korisnici koji se prijavljuju iz ograničene IP adrese neće biti zatraženi za Two Factor Auth" DocType: Auto Repeat,Get Contacts,Dobijte kontakte apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Poruke podneseno je pod {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Preskakanje bez naslova DocType: Notification,Send alert if date matches this field's value,Pošalji upozorenje ako datum odgovara vrijednost ovom području je DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} na {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,korak unatrag apps/frappe/frappe/utils/boilerplate.py,{app_title},{ Naslov_aplikacije } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Molimo postaviti Dropbox pristupnih tipki u vašem web config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Izbriši ovaj rekord kako bi se omogućilo slanje na ovu e-mail adresu +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ako je nestandardni port (npr. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Prilagodite prečice apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Samo obavezna polja su neophodni za nove rekorde. Možete izbrisati neobavezne kolone ako želite. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Prikaži više aktivnosti @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Vidi Tablica apps/frappe/frappe/www/third_party_apps.html,Logged in,Evidentirano u apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Uobičajeno Slanje i Inbox DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Uspješno ažuriran zapis od {0} od {1}. DocType: Google Drive,Send Email for Successful Backup,Pošaljite e-poštu za uspješnu rezervnu kopiju +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Planer je neaktivan. Nije moguće uvesti podatke. DocType: Print Settings,Letter,Pismo DocType: DocType,"Naming Options:
              1. field:[fieldname] - By Field
              2. naming_series: - By Naming Series (field called naming_series must be present
              3. Prompt - Prompt user for a name
              4. [series] - Series by prefix (separated by a dot); for example PRE.#####
              5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,Postavke energetske tačke DocType: Async Task,Succeeded,Slijedi apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obavezna polja potrebni u {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                No results found for '

                ,

                Nema rezultata za '

                apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset dopuštenja za {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Korisnici i dozvole DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1854,6 +1892,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,U DocType: Notification,Value Change,Vrijednost Promjena DocType: Google Contacts,Authorize Google Contacts Access,Autorizirajte pristup Google kontaktima apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Prikazuju se samo Numerička polja iz Izveštaja +DocType: Data Import Beta,Import Type,Vrsta uvoza DocType: Access Log,HTML Page,HTML stranica DocType: Address,Subsidiary,Podružnica apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Pokušaj povezivanja sa QZ ladicom ... @@ -1864,7 +1903,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Nevažeći DocType: Custom DocPerm,Write,Pisati apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Samo administrator dopustio stvaranje upita / Skripta Izvješća apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ažuriranje -DocType: File,Preview,Pregled +DocType: Data Import Beta,Preview,Pregled apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Polje "vrijednost" je obavezno. Molimo navedite vrijednost se ažurira DocType: Customize Form,Use this fieldname to generate title,Koristite ovaj Naziv Polja za generiranje naslov apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Uvoz e-mail od @@ -1947,6 +1986,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser nije p DocType: Social Login Key,Client URLs,URL-ovi klijenta apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Neke informacije nedostaju apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} uspješno kreiran +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Preskakanje {0} od {1}, {2}" DocType: Custom DocPerm,Cancel,Otkaži apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Skupno brisanje apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,File {0} ne postoji @@ -1974,7 +2014,6 @@ DocType: GCalendar Account,Session Token,Tok sesije DocType: Currency,Symbol,Simbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Potvrdite brisanje podataka -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nova lozinka je poslana mailom apps/frappe/frappe/auth.py,Login not allowed at this time,Prijava nije dopuštena u ovom trenutku DocType: Data Migration Run,Current Mapping Action,Aktuelna akcija mapiranja DocType: Dashboard Chart Source,Source Name,izvor ime @@ -1987,6 +2026,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Pratio DocType: LDAP Settings,LDAP Email Field,LDAP-mail Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Izvezi {0} zapise apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Već u user -a Da li popis DocType: User Email,Enable Outgoing,Enable Odlazni DocType: Address,Fax,Fax @@ -2044,8 +2084,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Štampanje dokumenata apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skok u polje DocType: Contact Us Settings,Forward To Email Address,Napadač na e-mail adresu +DocType: Contact Phone,Is Primary Phone,Je primarni telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošaljite poruku e-pošte {0} da biste je povezali ovdje. DocType: Auto Email Report,Weekdays,Radnim danima +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} zapisi će se izvoziti apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" DocType: Post Comment,Post Comment,Objavite komentar apps/frappe/frappe/config/core.py,Documents,Dokumenti @@ -2063,7 +2105,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Ovo polje će se pojaviti samo ako Naziv Polja ovdje definiran ima vrednost ili pravila su istinite (primjeri): myfield EVAL: doc.myfield == 'Moja Vrijednost' eval: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,danas +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. Kreirajte novu iz Podešavanje> Štampanje i markiranje> Predložak adresa. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Nakon što ste postavili to, korisnici će biti samo u mogućnosti pristupa dokumentima ( npr. blog post ) gdje jeveza postoji ( npr. Blogger ) ." +DocType: Data Import Beta,Submit After Import,Pošaljite nakon uvoza DocType: Error Log,Log of Scheduler Errors,Dnevnik Scheduler Errors DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App Klijent Secret @@ -2082,10 +2126,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Ugasiti korisnički prijavni link na stranici za prijavu apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Dodijeljeno / VLASNIK DocType: Workflow State,arrow-left,Strelica lijevo +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Izvezi 1 zapis DocType: Workflow State,fullscreen,fullscreen DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Kreirajte grafikon apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne uvozi DocType: Web Page,Center,Centar DocType: Notification,Value To Be Set,Vrijednosti za podešavanje apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Izmeni {0} @@ -2105,6 +2151,7 @@ DocType: Print Format,Show Section Headings,Pokaži Naslovi DocType: Bulk Update,Limit,granica apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Primili smo zahtjev za brisanje {0} podataka povezanih sa: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Dodajte novi odeljak +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrirani zapisi apps/frappe/frappe/www/printview.py,No template found at path: {0},Ne predložak naći na putu: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Bez e-pošte DocType: Comment,Cancelled,Otkazano @@ -2191,10 +2238,13 @@ DocType: Communication Link,Communication Link,Komunikacijska veza apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Invalid Output Format apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Ne mogu {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,Nanesite ovo pravilo ako je 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,Će biti vaš ID za prijavljivanje +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Vrste reseta globalne pretrage dokumenata. ,Lead Conversion Time,Vrijeme konverzije vode apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Izrada izvještaja DocType: Note,Notify users with a popup when they log in,Obavijesti korisnicima popup kada se prijavite +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Jezgreni moduli {0} ne mogu se pretraživati u Globalnoj pretrazi. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Otvorite čet apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ne postoji , odaberite novu metu za spajanje" DocType: Data Migration Connector,Python Module,Python Module @@ -2211,8 +2261,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zatvoriti apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Ne možete mijenjati docstatus 0-2 DocType: File,Attached To Field,Priloženo u polje -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Podešavanje> Dozvole korisnika -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Ažurirati +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Ažurirati DocType: Transaction Log,Transaction Hash,Transaction Hash DocType: Error Snapshot,Snapshot View,Snapshot Pogledaj apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja @@ -2228,6 +2277,7 @@ DocType: Data Import,In Progress,U toku apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Čekanju za backup. To može potrajati nekoliko minuta do sat vremena. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Korisnička dozvola već postoji +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Preslikavanje stupca {0} u polje {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Pregled {0} DocType: User,Hourly,Po satu apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registracija OAuth Klijent App @@ -2240,7 +2290,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Ne može biti ""{2}"". To bi trebao biti jedan od ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},stekao {0} automatskim pravilom {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} {1} ili -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Password Update DocType: Workflow State,trash,smeće DocType: System Settings,Older backups will be automatically deleted,Stariji kopije će biti automatski obrisane apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Invalid Key Access Key ili Secret Access Key. @@ -2268,6 +2317,7 @@ DocType: Address,Preferred Shipping Address,Željena Dostava Adresa apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Sa glavom Pismo apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},Kreirao {0} {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Nije dozvoljeno za {0}: {1} u Redu {2}. Ograničeno polje: {3} +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 podešen. Izradite novi račun e-pošte iz programa Setup> Email> Account Email DocType: S3 Backup Settings,eu-west-1,eu-zapad-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ako je ovo potvrđeno, redovi sa važećim podacima će biti uvezeni i nevažeći redovi će biti deponovani u novu datoteku koja će vam kasnije biti uvezena." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument može uređivati samo korisnik @@ -2294,6 +2344,7 @@ DocType: Custom Field,Is Mandatory Field,Je obvezno polje DocType: User,Website User,Web User apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Neki se stupci mogu odsjeći prilikom ispisa u PDF. Pokušajte zadržati broj stupaca ispod 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,nisu jednaki +DocType: Data Import Beta,Don't Send Emails,Ne šaljite e-poštu DocType: Integration Request,Integration Request Service,Integracija Upit usluga DocType: Access Log,Access Log,Dnevnik pristupa DocType: Website Script,Script to attach to all web pages.,Skripta za priključivanje na sve web stranice. @@ -2333,6 +2384,7 @@ DocType: Contact,Passive,Pasiva DocType: Auto Repeat,Accounts Manager,Računi Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Zadatak za {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Vaša uplata je otkazan. +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 Setup> Email> Account Email apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Select File Type apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Vidi sve DocType: Help Article,Knowledge Base Editor,Baza znanja Editor @@ -2365,6 +2417,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Podaci apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokument Status apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Zahtijeva se odobrenje +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Sljedeći zapisi moraju biti stvoreni prije nego što možemo uvoziti vašu datoteku. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth kod autorizacije apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Nije dopušteno uvoziti DocType: Deleted Document,Deleted DocType,Deleted DocType @@ -2418,8 +2471,8 @@ DocType: System Settings,System Settings,Postavke sustava DocType: GCalendar Settings,Google API Credentials,Google API akreditivi apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start nije uspjelo apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ova e-mail je poslan {0} i kopirati u {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},predao ovaj dokument {0} DocType: Workflow State,th,og -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} godina prije DocType: Social Login Key,Provider Name,Ime provajdera apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Stvaranje nove {0} DocType: Contact,Google Contacts,Google kontakti @@ -2427,6 +2480,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar Account DocType: Email Rule,Is Spam,je spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Izvještaj {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otvorena {0} +DocType: Data Import Beta,Import Warnings,Uvozna upozorenja DocType: OAuth Client,Default Redirect URI,Uobičajeno Redirect URI DocType: Auto Repeat,Recipients,Primatelji DocType: System Settings,Choose authentication method to be used by all users,Izaberite metod autentifikacije koji će koristiti svi korisnici @@ -2544,6 +2598,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Izveštaj je apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook greška DocType: Email Flag Queue,Unread,nepročitanu DocType: Bulk Update,Desk,Pisaći sto +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Preskoči stupac {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter mora biti tuple ili lista (na listi) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Napišite SELECT upita. Napomena rezultat nije zvao (svi podaci se šalju u jednom potezu). DocType: Email Account,Attachment Limit (MB),Prilog Limit (MB) @@ -2558,6 +2613,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Stvori novo DocType: Workflow State,chevron-down,Chevron-dolje apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-mail ne šalju {0} (odjavljeni / invaliditetom) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Odaberite polja za izvoz DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Najmanja Valuta Frakcija Vrijednost apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Priprema izvještaja @@ -2566,6 +2622,7 @@ DocType: Workflow State,th-list,og-popis DocType: Web Page,Enable Comments,Omogućite Komentari apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Bilješke DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Zabraniti korisnika iz ove IP adrese samo. Višestruki IP adrese može biti dodan odvajajući zarezima. Također prihvaća djelomične IP adrese kao što su (111.111.111) +DocType: Data Import Beta,Import Preview,Uvezi pregled DocType: Communication,From,Od apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Odaberite grupu čvora prvi. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Nađi {0} u {1} @@ -2664,6 +2721,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,između DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Na čekanju +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavke> Prilagodite obrazac DocType: Braintree Settings,Use Sandbox,Koristite Sandbox apps/frappe/frappe/utils/goal.py,This month,Ovog mjeseca apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Novi prilagođeni format za štampu @@ -2708,6 +2766,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Nastavak Slanje apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Ponovo otvoriti +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Prikaži upozorenja apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Kupovina korisnika DocType: Data Migration Run,Push Failed,Push Failed @@ -2744,6 +2803,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Napred apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Niste dozvoljeni da pogledate bilten. DocType: User,Interests,Interesi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Password Reset upute su poslani na e-mail +DocType: Energy Point Rule,Allot Points To Assigned Users,Dodijelite bodove dodijeljenim korisnicima apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nivo 0 je za dozvole nivou dokumenta, \ višim nivoima za dozvole na terenu." DocType: Contact Email,Is Primary,Primarno je @@ -2766,6 +2826,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Pogledajte dokument na {0} DocType: Stripe Settings,Publishable Key,objaviti Key apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Započnite uvoz +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Tip izvoza DocType: Workflow State,circle-arrow-left,krug sa strelicom nalijevo DocType: System Settings,Force User to Reset Password,Prisilite korisnika da resetira lozinku apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Da biste dobili ažurirani izveštaj, kliknite na {0}." @@ -2778,13 +2839,16 @@ DocType: Contact,Middle Name,Srednje ime DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py,Name not set via Prompt,Ne postavljajte ime preko Prompt-a apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail Inbox +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Ažuriranje {0} od {1}, {2}" DocType: Auto Email Report,Filters Display,filteri Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Da bi se izvršilo dopune, mora biti prisutno polje "izmijenjeno_ i od"." +DocType: Contact,Numbers,Brojevi apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} cijenio je vaš rad na {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Spremite filtere DocType: Address,Plant,Biljka apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odgovori svima DocType: DocType,Setup,Podešavanje +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Svi zapisi DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adresa e-pošte čiji se Google kontakti trebaju sinkronizirati. DocType: Email Account,Initial Sync Count,Inicijalna Sync Count DocType: Workflow State,glass,staklo @@ -2809,7 +2873,7 @@ DocType: Workflow State,font,krstionica DocType: DocType,Show Preview Popup,Prikaži Preview Popup apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ovo je top-100 zajedničku lozinku. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Molimo omogućite pop-up prozora -DocType: User,Mobile No,Br. mobilnog telefona +DocType: Contact,Mobile No,Br. mobilnog telefona DocType: Communication,Text Content,tekst sadržaj DocType: Customize Form Field,Is Custom Field,Je Custom Field DocType: Workflow,"If checked, all other workflows become inactive.","Ako je označeno, svi ostali tijekovi postaju neaktivne." @@ -2855,6 +2919,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Dodaj apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Ime novog Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Prebacite bočnu traku DocType: Data Migration Run,Pull Insert,Povucite umetak +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Maksimalan broj bodova dozvoljen nakon množenja bodova s vrijednosti množitelja (Napomena: Ako nema ograničenja, ovo polje ne ostavljajte prazno ili postavite 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Nevažeći predložak apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Nezakoniti SQL upit apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obavezno: DocType: Chat Message,Mentions,Mentions @@ -2869,6 +2936,7 @@ DocType: User Permission,User Permission,Korisnička ovlast apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nije instaliran apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Preuzimanje s podacima +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},promijenjene vrijednosti za {0} {1} DocType: Workflow State,hand-right,ruka-desna DocType: Website Settings,Subdomain,Poddomena DocType: S3 Backup Settings,Region,Regija @@ -2895,10 +2963,12 @@ DocType: Braintree Settings,Public Key,Javni ključ DocType: GSuite Settings,GSuite Settings,GSuite Postavke DocType: Address,Links,Linkovi DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Koristi ime e-adrese navedene na ovom računu kao ime pošiljatelja za sve poruke e-pošte poslane pomoću ovog računa. +DocType: Energy Point Rule,Field To Check,Polje za provjeru apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google kontakti - nije moguće ažurirati kontakt u Google kontaktima {0}, kôd pogreške {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Izaberite tip dokumenta. apps/frappe/frappe/model/base_document.py,Value missing for,Vrijednost nestao apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Dodaj podređenu stavku +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Uvezi napredak DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Ako je uvjet zadovoljan, korisnik će biti nagrađen bodovima. npr. doc.status == 'Zatvoreno'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Sacuvani zapis se ne može se izbrisati. @@ -2935,6 +3005,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizirajte pristup apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Stranica koju tražite je nestala. Ovo bi moglo biti zato što se preselio ili postoji greška u linku. apps/frappe/frappe/www/404.html,Error Code: {0},Kod greške: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis za unos stranice, kao običan tekst, samo par redaka. (najviše 140 znakova)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} su obavezna polja DocType: Workflow,Allow Self Approval,Dozvolite samopouzdanje DocType: Event,Event Category,Kategorija događaja apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2983,8 +3054,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Premjesti u DocType: Address,Preferred Billing Address,Željena adresa za naplatu apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Previše piše u jednom zahtjevu . Molimo poslali manje zahtjeve apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google pogon konfiguriran je. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Vrsta dokumenta {0} je ponovljena. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Promena vrednosti DocType: Workflow State,arrow-up,Strelica prema gore +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Trebao bi biti najmanje jedan red za {0} tablicu apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Da biste konfigurirali automatsko ponavljanje, omogućite "Dopusti automatsko ponavljanje" od {0}." DocType: OAuth Bearer Token,Expires In,ističe u DocType: DocField,Allow on Submit,Dopusti pri potvrdi @@ -3071,6 +3144,7 @@ DocType: Custom Field,Options Help,Opcije - pomoć DocType: Footer Item,Group Label,Grupa Label DocType: Kanban Board,Kanban Board,Kanban odbora 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 DocType: DocField,Report Hide,Sakrij izvjestaj apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Tree pogled nije dostupan za {0} DocType: DocType,Restrict To Domain,Ograničiti Domain @@ -3088,6 +3162,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verifikacioni kod DocType: Webhook,Webhook Request,Zahtev za webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Neuspjesno:{0} na:{1} : {2} DocType: Data Migration Mapping,Mapping Type,Tip mapiranja +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Odaberite Obavezno apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Izaberi apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Nema potrebe za simbole, cifre, ili velika slova." DocType: DocField,Currency,Valuta @@ -3118,11 +3193,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Pismo glava na osnovu apps/frappe/frappe/utils/oauth.py,Token is missing,Token nedostaje apps/frappe/frappe/www/update-password.html,Set Password,Postavi lozinku +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Unosno je uvezeno {0} zapisa. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Napomena: Promjena Page ime će slomiti prethodne URL na ovu stranicu. apps/frappe/frappe/utils/file_manager.py,Removed {0},Uklonjena {0} DocType: SMS Settings,SMS Settings,Podešavanja SMS-a DocType: Company History,Highlight,Istaknuto DocType: Dashboard Chart,Sum,Suma +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,putem uvoza podataka DocType: OAuth Provider Settings,Force,sila apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Poslednja sinhronizacija {0} DocType: DocField,Fold,Saviti @@ -3159,6 +3236,7 @@ DocType: Workflow State,Home,dom DocType: OAuth Provider Settings,Auto,auto DocType: System Settings,User can login using Email id or User Name,Korisnik se može prijaviti koristeći E-mail id ili Korisničko ime DocType: Workflow State,question-sign,pitanje-prijava +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je onemogućen apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Polje "ruta" je obavezno za Veb pogledi apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Ubaci kolonu pre {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Korisniku iz ovog polja bit će nagrađeni bodovi @@ -3302,6 +3380,7 @@ DocType: GSuite Settings,Allow GSuite access,Dozvoli GSuite pristup DocType: DocType,DESC,DESC DocType: DocType,Naming,Imenovanje apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Odaberite sve +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Stupac {0} apps/frappe/frappe/config/customization.py,Custom Translations,Custom Prijevodi apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,napredak apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,prema ulozi @@ -3348,6 +3427,7 @@ apps/frappe/frappe/public/js/frappe/chat.js,Discard,Odbaci apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,Prije 1 sat DocType: Website Settings,Home Page,Početna stranica DocType: Error Snapshot,Parent Error Snapshot,Roditelj Greška Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Mape stupaca od {0} do polja na {1} DocType: Access Log,Filters,Filteri DocType: Workflow State,share-alt,Udio-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Red bi trebao biti jedan od {0} @@ -3378,6 +3458,7 @@ DocType: Calendar View,Start Date Field,Polje početnog datuma DocType: Role,Role Name,Uloga Ime apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Prebacivanje na sto apps/frappe/frappe/config/core.py,Script or Query reports,Skripta ili upit prenosi +DocType: Contact Phone,Is Primary Mobile,Je primarni mobilni DocType: Workflow Document State,Workflow Document State,Workflow dokument Država apps/frappe/frappe/public/js/frappe/request.js,File too big,File prevelika apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-mail računa dodao više puta @@ -3423,6 +3504,7 @@ DocType: DocField,Float,Plutati DocType: Print Settings,Page Settings,Podešavanja stranice apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Štedi ... apps/frappe/frappe/www/update-password.html,Invalid Password,Invalid lozinke +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Unos uspješno je uvezen {0} od {1}. DocType: Contact,Purchase Master Manager,Kupovina Master Manager apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Kliknite na ikonu zaključavanja kako biste prebacili javnu / privatnu DocType: Module Def,Module Name,Naziv modula @@ -3456,6 +3538,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Unesite valjane mobilne br apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Neke funkcije možda neće raditi na vašem pretraživaču. Molimo vas da ažurirate svoj pretraživač na najnoviju verziju. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Ne znam, pitaj 'pomoć'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},otkazao ovaj dokument {0} DocType: DocType,Comments and Communications will be associated with this linked document,Komentari i komunikacija će biti povezani s ovom povezani dokument apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,bold @@ -3474,6 +3557,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Dodaj / Uprav DocType: Comment,Published,Objavljen apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Hvala vam na e-mail DocType: DocField,Small Text,Mali Tekst +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Broj {0} se ne može postaviti kao primarni za Telefon, kao ni mobilni br." DocType: Workflow,Allow approval for creator of the document,Dozvoli odobrenje za kreatora dokumenta apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Spremi izvještaj DocType: Webhook,on_cancel,on_cancel @@ -3531,6 +3615,7 @@ DocType: Print Settings,PDF Settings,PDF postavke DocType: Kanban Board Column,Column Name,Kolona Ime DocType: Language,Based On,Na osnovu DocType: Email Account,"For more information, click here.","Za više informacija, kliknite ovdje ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Broj stupaca ne odgovara podacima apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Make Uobičajeno apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Vreme izvršenja: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Nevažeća staza uključuje @@ -3620,7 +3705,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Prenesite {0} datoteke DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Vreme početka izveštaja -apps/frappe/frappe/config/settings.py,Export Data,Izvoz podataka +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Izvoz podataka apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Select Columns 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 pozadinski izvještaj. Molimo postavite odgovarajuće filtere i zatim generirajte novi. @@ -3638,7 +3723,6 @@ DocType: Report,Disable Prepared Report,Onemogući pripremljeno izvješće apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Korisnik {0} zatražio je brisanje podataka apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Ilegalni Access Token. Molimo pokušajte ponovo apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikacija je ažurirana na novu verziju, molimo vas da osvježite ovu stranicu" -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. Kreirajte novu iz Podešavanje> Štampanje i markiranje> Predložak adresa. DocType: Notification,Optional: The alert will be sent if this expression is true,Opcionalno: upozorenje će biti poslana ako ovaj izraz je istina DocType: Data Migration Plan,Plan Name,Ime plana DocType: Print Settings,Print with letterhead,Ispis sa zaglavljem @@ -3679,6 +3763,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Page DocType: DocType,Is Child Table,Je Dijete Tablica +DocType: Data Import Beta,Template Options,Opcije šablona apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} mora biti jedan od {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} trenutno gleda ovaj dokument apps/frappe/frappe/config/core.py,Background Email Queue,Pozadina mail Queue @@ -3686,7 +3771,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Password Reset DocType: Communication,Opened,Otvoren DocType: Workflow State,chevron-left,Chevron-lijevo DocType: Communication,Sending,Slanje -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Nije dopušteno s ove IP adrese DocType: Website Slideshow,This goes above the slideshow.,To ide iznad slideshow. DocType: Contact,Last Name,Prezime DocType: Event,Private,Privatan @@ -3700,7 +3784,6 @@ DocType: Workflow Action,Workflow Action,Workflow Akcija apps/frappe/frappe/utils/bot.py,I found these: ,Našao sam ove: DocType: Event,Send an email reminder in the morning,Pošaljite email podsjetnik ujutro DocType: Blog Post,Published On,Objavljeno Dana -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 podešen. Izradite novi račun e-pošte iz programa Setup> Email> Account Email DocType: Contact,Gender,Rod apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Obavezna nedostaju informacije: apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} vratio je bodove na {1} @@ -3721,7 +3804,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,Znak upozorenja DocType: Prepared Report,Prepared Report,Pripremljeni izvještaj apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Dodajte meta oznake na svoje web stranice -DocType: Contact,Phone Nos,Broj telefona DocType: Workflow State,User,Korisnik DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Pokaži naslov u prozoru preglednika kao "prefiks - naslovom" DocType: Payment Gateway,Gateway Settings,Postavke Gateway-a @@ -3738,6 +3820,7 @@ DocType: Data Migration Connector,Data Migration,Migracija podataka DocType: User,API Key cannot be regenerated,API ključ se ne može regenerisati apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Nešto je pošlo po zlu DocType: System Settings,Number Format,Broj Format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Unos je uspješno uvezen {0}. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sažetak DocType: Event,Event Participants,Učesnici događaja DocType: Auto Repeat,Frequency,frekvencija @@ -3745,7 +3828,7 @@ DocType: Custom Field,Insert After,Umetni Nakon DocType: Event,Sync with Google Calendar,Usklađivanje sa Google kalendarom DocType: Access Log,Report Name,Naziv izvještaja DocType: Desktop Icon,Reverse Icon Color,Reverse Ikona u boji -DocType: Notification,Save,Snimi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Snimi apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Sledeći Planirani Datum apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Dodijelite onome koji ima najmanje zadataka apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,sekciji zaglavlja @@ -3768,11 +3851,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max širina vrste valute je 100px u redu {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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavke> Prilagodite obrazac DocType: Google Contacts,Last Sync On,Poslednja sinhronizacija uključena DocType: Deleted Document,Deleted Document,Deleted Document apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! Nešto je pošlo po zlu DocType: Desktop Icon,Category,Kategorija +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Vrijednost {0} nedostaje za {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Dodajte kontakte apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Pejzaž apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Strani klijenta skriptu ekstenzije u Javascript @@ -3795,6 +3878,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ažuriranje energetske tačke apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Odaberite drugi način plaćanja. PayPal ne podržava transakcije u valuti '{0}' DocType: Chat Message,Room Type,Tip sobe +DocType: Data Import Beta,Import Log Preview,Uvezi pregled pregleda apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Polje za pretragu {0} nije važeća apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,prenesena datoteka DocType: Workflow State,ok-circle,ok-krug @@ -3861,6 +3945,7 @@ DocType: DocType,Allow Auto Repeat,Dopusti automatsko ponavljanje apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nema vrijednosti za prikazivanje DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Email Template +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} zapis je uspješno ažuriran. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Korisnik {0} nema pristup dokumentu putem dozvole uloge za dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Potrebni su i korisničko ime i pristupna lozinka apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Osvježite se dobiti najnovije dokument. diff --git a/frappe/translations/ca.csv b/frappe/translations/ca.csv index dc0b7a6ff8..f4f7ccba8c 100644 --- a/frappe/translations/ca.csv +++ b/frappe/translations/ca.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Hi ha disponibles noves versions de {} per a les següents aplicacions apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Seleccioneu un camp de quantitat. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,S'està carregant el fitxer d'importació ... DocType: Assignment Rule,Last User,Últim usuari apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Una nova tasca, {0}, s'ha assignat a vostè per {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,S'han desat els defectes de les sessions +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Torna a carregar fitxer DocType: Email Queue,Email Queue records.,Registres de cua de correu electrònic. DocType: Post,Post,Post DocType: Address,Punjab,Panjab @@ -44,6 +46,7 @@ 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,Aquesta actualització de rol canvia permisos d'usuari per a un usuari apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Canviar el nom {0} DocType: Workflow State,zoom-out,menys-zoom +DocType: Data Import Beta,Import Options,Opcions d’importació apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,No es pot obrir {0} quan la instància està oberta apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Taula {0} no pot estar buit DocType: SMS Parameter,Parameter,Paràmetre @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mensual DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Habilita entrant apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Perill -apps/frappe/frappe/www/login.py,Email Address,Adreça de correu electrònic +DocType: Address,Email Address,Adreça de correu electrònic DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Notificació No llegit Enviat apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,No es pot exportar. Cal el rol {0} per a exportar. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrad DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opcions de contacte, com ""Consulta comercial, Suport"" etc cadascun en una nova línia o separades per comes." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Afegeix una etiqueta ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Retrat -DocType: Data Migration Run,Insert,Insereix +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insereix apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Permetre l'accés de Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Seleccioneu {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Introduïu l'URL base @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,fa 1 hora 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.","A part d'administrador del sistema, papers amb Set permisos poden establir permisos per a altres usuaris perquè tipus de document." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Configura el tema DocType: Company History,Company History,Història de la Companyia -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,reajustar +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,reajustar DocType: Workflow State,volume-up,volum-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks que fan trucades a les aplicacions web de les API +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Mostra el seguiment DocType: DocType,Default Print Format,Format d'impressió predeterminat DocType: Workflow State,Tags,Etiquetes apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Cap: Final de flux de treball apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El camp {0} no es pot establir com a únic en {1}, ja que hi ha valors existents no únics" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipus de document +DocType: Global Search Settings,Document Types,Tipus de document DocType: Address,Jammu and Kashmir,Jammu i Caixmir DocType: Workflow,Workflow State Field,Campd d'estat de flux de treball (workflow) -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuració> Usuari DocType: Language,Guest,Convidat DocType: DocType,Title Field,Title Field DocType: Error Log,Error Log,Registre d'errors @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Repeteix com "abcabcabc" són només una mica més difícil d'endevinar que el "abc" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Si vostè pensa que això no està autoritzat, si us plau, canvieu la contrasenya d'administrador." +DocType: Data Import Beta,Data Import Beta,Importació de dades beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} és obligatori DocType: Assignment Rule,Assignment Rules,Normes d’assignació DocType: Workflow State,eject,expulsar @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Nom de l'acció del flux de apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType can not be merged DocType: Web Form Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,No és un fitxer zip +DocType: Global Search DocType,Global Search DocType,Document de cerca global de cerca DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                New {{ doc.doctype }} #{{ doc.name }}
                ","Per afegir un tema dinàmic, utilitzeu etiquetes com ara jinja
                 New {{ doc.doctype }} #{{ doc.name }} 
                " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Esdeveniment doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Vostè DocType: Braintree Settings,Braintree Settings,Configuració de Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,S'han creat {0} registres correctament. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Desa el filtre DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},No es pot eliminar {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Introdueixi paràmetre url apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,S'ha creat una repetició automàtica per a aquest document apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Mostra l'informe al vostre navegador apps/frappe/frappe/config/desk.py,Event and other calendars.,Esdeveniments i altres calendaris. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 fila obligatòria) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Tots els camps són necessaris per enviar el comentari. DocType: Custom Script,Adds a client custom script to a DocType,Afegeix un script personalitzat del client a un document de document DocType: Print Settings,Printer Name,Nom de la impressora @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,actualització massiva DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Deixi de visitants a Veure apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} no hauria de ser el mateix que {1} -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 a la comparació, utilitzeu> 5, <10 o = 324. Per a intervals, utilitzeu 5:10 (per a valors entre 5 i 10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Eliminar {0} articles de forma permanent? apps/frappe/frappe/utils/oauth.py,Not Allowed,No es permet @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Visualització DocType: Email Group,Total Subscribers,Els subscriptors totals apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Inici {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Número de fila apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Si un paper no té accés al nivell 0, els nivells més alts llavors no tenen sentit." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Guardar com DocType: Comment,Seen,Vist @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,No es pot imprimir esborranys de documents apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Torna als valors inicials DocType: Workflow,Transition Rules,Regles de Transició +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Es mostren només les primeres {0} files en vista prèvia apps/frappe/frappe/core/doctype/report/report.js,Example:,Exemple: DocType: Workflow,Defines workflow states and rules for a document.,Defineix els fluxes i les regles per a un document. DocType: Workflow State,Filter,Filtre @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Tancat DocType: Blog Settings,Blog Title,Títol del blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,funcions estàndard no es poden desactivar apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Tipus de xat +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Columnes del mapa DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,No es pot utilitzar sub-consulta per tal de @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Afegir una columna apps/frappe/frappe/www/contact.html,Your email address,La seva adreça de correu electrònic DocType: Desktop Icon,Module,Mòdul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,S'han actualitzat correctament {0} registres de {1}. DocType: Notification,Send Alert On,Enviar Alerta Sobre DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Personalitza etiquetes, amaga impressió, defecte etc." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Com descomprimir fitxers ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,L'usuari {0} no es pot eliminar DocType: System Settings,Currency Precision,precisió de divises apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Una altra transacció està bloquejant aquest. Torneu-ho de nou en uns pocs segons. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Esborra filtres DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Els fitxers adjunts no es podrien enllaçar correctament amb el document nou DocType: Chat Message Attachment,Attachment,Accessori @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,No es poden apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar: no s'ha pogut actualitzar l'esdeveniment {0} a Google Calendar, codi d'error {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Busca o escriu una ordre DocType: Activity Log,Timeline Name,Nom de la línia de temps +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Només un {0} es pot configurar com a principal. DocType: Email Account,e.g. smtp.gmail.com,per exemple smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Afegir una nova regla DocType: Contact,Sales Master Manager,Gerent de vendes @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Camp de nom mig LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Important {0} de {1} DocType: GCalendar Account,Allow GCalendar Access,Permet l'accés a GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} és un camp obligatori +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} és un camp obligatori apps/frappe/frappe/templates/includes/login/login.js,Login token required,S'ha requerit el token d'inici de sessió apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rànquing mensual: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Seleccioneu diversos elements de la llista @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},No es pot connectar: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Una paraula de per si és fàcil d'endevinar. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},L'assignació automàtica ha fallat: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Cerca... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Seleccioneu de l'empresa apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,La fusió és només possible entre Grup-a-grup o el full de node a node-Leaf apps/frappe/frappe/utils/file_manager.py,Added {0},Afegit {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,No hi ha registres coincidents. Cercar alguna cosa nova @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,Identificador de client OAuth DocType: Auto Repeat,Subject,Subjecte apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tornar a l'escriptori DocType: Web Form,Amount Based On Field,Quantitat basada en el Camp -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configureu el compte de correu electrònic per defecte des de Configuració> Correu electrònic> Compte de correu electrònic apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,L'usuari és obligatori per Compartir DocType: DocField,Hidden,Ocult DocType: Web Form,Allow Incomplete Forms,Permetre formes incompletes @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Comença una conversa. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Sempre afegiu "Projecte de" Rumb a projectes d'impressió de documents apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Error de notificació: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Fa {0} any DocType: Data Migration Run,Current Mapping Start,Comença el mapa actual apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,El correu electrònic ha estat marcat com a correu brossa DocType: Comment,Website Manager,Gestor de la Pàgina web @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,Barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,L'ús de subconsulta o funció està restringit apps/frappe/frappe/config/customization.py,Add your own translations,Afegir les seves pròpies traduccions DocType: Country,Country Name,Nom del país +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Plantilla en blanc DocType: About Us Team Member,About Us Team Member,Sobre nosaltres Membre de l'Equip apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." DocType: Event,Wednesday,Dimecres @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Lloc web Imatge per tema Enll DocType: Web Form,Sidebar Items,Sidebar Items DocType: Web Form,Show as Grid,Mostra com a graella apps/frappe/frappe/installer.py,App {0} already installed,Aplicació {0} ja instal·lat +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Els usuaris assignats al document de referència obtindran punts. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Sense previsualització DocType: Workflow State,exclamation-sign,Signe d'exclamació apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,{0} fitxers descomprimits @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Dies abans apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Els esdeveniments diaris haurien d’acabar el mateix dia. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edita ... DocType: Workflow State,volume-down,volum cap avall +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accés no permès des d'aquesta adreça IP apps/frappe/frappe/desk/reportview.py,No Tags,No hi ha etiquetes DocType: Email Account,Send Notification to,Enviar Notificació a DocType: DocField,Collapsible,Plegable @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Desenvolupador apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Creat apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} a la fila {1} no pot tenir les dues coses URL i elements descendents +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Hauria d'haver al menys una fila per a les taules següents: {0} DocType: Print Format,Default Print Language,Idioma d'impressió predeterminat apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancestres de apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} cannot be deleted @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,amfitrió +DocType: Data Import Beta,Import File,Importa el fitxer apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Columna {0} ja existeix. DocType: ToDo,High,Alt apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nou esdeveniment @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Enviar notificacions per a fi apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,profe apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,No és de cap manera desenvolupador apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,La còpia de seguretat d'un fitxer està preparada -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Punts màxims permesos després de multiplicar punts amb el valor multiplicador (Nota: Per a un valor de valor límit no 0) DocType: DocField,In Global Search,En Recerca Global DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,guió-esquerra @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Usuari '{0}' ja té el paper '{1}' DocType: System Settings,Two Factor Authentication method,Mètode d'autenticació de dos factors apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Primer estableixi el nom i deseu el registre. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Registres apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Compartit amb {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Donar-se de baixa DocType: View Log,Reference Name,Referència Nom @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Connector de migraci apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} va revertir {1} DocType: Email Account,Track Email Status,Seguiment de l'estat del correu electrònic DocType: Note,Notify Users On Every Login,Notificar als usuaris sobre la cada inici de sessió +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,No es pot coincidir la columna {0} amb cap camp +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,S'han actualitzat correctament {0} registres. DocType: PayPal Settings,API Password,API contrasenya apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Introduïu el mòdul python o seleccioneu el tipus de connector apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,FIELDNAME es posa durant Camp personalitzat @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Els permisos d'usuari s'utilitzen per limitar els usuaris a registres específics. DocType: Notification,Value Changed,Valor Changed apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Nom duplicat {0} {1} -DocType: Email Queue,Retry,Torneu a provar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Torneu a provar +DocType: Contact Phone,Number,Número DocType: Web Form Field,Web Form Field,Web de camp de formulari apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Tens un missatge nou de: +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 a la comparació, utilitzeu> 5, <10 o = 324. Per a intervals, utilitzeu 5:10 (per a valors entre 5 i 10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edició de HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Introduïu l'URL de redirecció apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Veure propietats (via apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Feu clic a un fitxer per seleccionar-lo. DocType: Note Seen By,Note Seen By,Nota vist per apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Intenta utilitzar un patró teclat ja amb més voltes -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Leaderboard +,LeaderBoard,Leaderboard DocType: DocType,Default Sort Order,Ordre d’ordenació per defecte DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Ajuda de resposta de correu electrònic @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cèntim apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,redactar correu electrònic apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Estats de flux de treball (per exemple, Projecte, Aprovat, cancel·lat)." DocType: Print Settings,Allow Print for Draft,Permetre impressió per al projecte +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.","S'ha produït un error en connectar-se a l'aplicació de safata QZ ...

                Heu de tenir instal·lada i en funcionament l’aplicació QZ Tray per utilitzar la funció d’impressió en brut.

                Feu clic aquí per descarregar i instal·lar QZ Safata .
                Feu clic aquí per obtenir més informació sobre la impressió en brut ." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Establir Quantitat apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Presentar aquest document per confirmar DocType: Contact,Unsubscribed,No subscriure @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Unitat organitzativa d’us ,Transaction Log Report,Informe del registre de transaccions DocType: Custom DocPerm,Custom DocPerm,DocPerm personalitzada DocType: Newsletter,Send Unsubscribe Link,Enviar Anul·lar Enllaç +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Hi ha alguns registres enllaçats que cal crear abans de poder importar el vostre fitxer. Vols crear automàticament els següents registres que falten? DocType: Access Log,Method,Mètode DocType: Report,Script Report,Script Report DocType: OAuth Authorization Code,Scopes,Scopes @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,S'ha carregat correctament apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Esteu connectat a Internet. DocType: Social Login Key,Enable Social Login,Habilita l'inici de sessió social +DocType: Data Import Beta,Warnings,Advertències DocType: Communication,Event,Esdeveniment apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","En {0}, {1} va escriure:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,No es pot eliminar de camp estàndard. Podeu ocultar la pena si vols @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Insert Be DocType: Kanban Board Column,Blue,Blau apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,S'eliminaran totes les personalitzacions. Si us plau confirma-ho DocType: Page,Page HTML,Pàgina HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Exportació de fileres amb error apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,El nom del grup no pot estar buit. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Només es poden crear més nodes amb el tipus 'Grup' DocType: SMS Parameter,Header,Encapçalament @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Temps d'espera esgotat apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Habilita / Deshabilita dominis DocType: Role Permission for Page and Report,Allow Roles,permetre Rols +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,S'han importat correctament {0} registres de {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Expressió simple de Python, exemple: estat en ("No vàlid")" DocType: User,Last Active,Últim actiu DocType: Email Account,SMTP Settings for outgoing emails,Configuració SMTP per als correus sortints apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,trieu una DocType: Data Export,Filter List,Llista de filtres DocType: Data Export,Excel,sobresortir -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,La seva contrasenya s'ha actualitzat. Aquí està la teva nova contrasenya DocType: Email Account,Auto Reply Message,Missatge de resposta automàtica DocType: Data Migration Mapping,Condition,Condició apps/frappe/frappe/utils/data.py,{0} hours ago,Fa {0} hores @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID d'usuari DocType: Communication,Sent,Enviat DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administració DocType: User,Simultaneous Sessions,sessions simultànies DocType: Social Login Key,Client Credentials,credencials del client @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Actuali apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mestre DocType: DocType,User Cannot Create,L'usuari no pot crear apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fet amb èxit -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Carpeta {0} no existeix apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Accés Dropbox està aprovat! DocType: Customize Form,Enter Form Type,Introduïu el tipus de formulari DocType: Google Drive,Authorize Google Drive Access,Autoritzeu Google Drive Access @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,No hi ha registres etiquetats. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,treure camp apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,No esteu connectat a Internet. Torneu a intentar després de algun moment. -DocType: User,Send Password Update Notification,Enviar contrasenya Notificació d'actualització apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permetre DOCTYPE, DOCTYPE. Vés amb compte!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formats personalitzats per a impressió, correu electrònic" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Suma de {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Codi de verificació apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,La integració de contactes de Google està desactivada. DocType: Assignment Rule,Description,Descripció DocType: Print Settings,Repeat Header and Footer in PDF,Repetir capçalera i peu de pàgina en PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Fracàs DocType: Address Template,Is Default,És per defecte DocType: Data Migration Connector,Connector Type,Tipus de connector apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Nom de la columna no pot estar buida @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Vés a la pàgina de DocType: LDAP Settings,Password for Base DN,Clau per a la base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,taula camp apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Columnes basat en +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Important {0} de {1}, {2}" DocType: Workflow State,move,moviment apps/frappe/frappe/model/document.py,Action Failed,Va fallar l'acció apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,per usuari @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Activa la impressió en brut DocType: Website Route Redirect,Source,Font apps/frappe/frappe/templates/includes/list/filters.html,clear,clar apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Acabat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuració> Usuari DocType: Prepared Report,Filter Values,Valors del filtre DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,Falla @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Segu ,Activity,Activitat DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Ajuda: Per enllaçar a un altre registre en el sistema, utilitzeu ""#Form/Note/[Note Name]"" com a URL. (no utilitzis ""http://"")" DocType: User Permission,Allow,Permetre +DocType: Data Import Beta,Update Existing Records,Actualitzar els registres existents apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Evitem de paraules i caràcters repetits DocType: Energy Point Rule,Energy Point Rule,Regla del punt d’energia DocType: Communication,Delayed,Retard @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Camp de pista DocType: Notification,Set Property After Alert,Després d'establir la propietat Alerta apps/frappe/frappe/config/customization.py,Add fields to forms.,Afegir camps als formularis. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Sembla que alguna cosa està malament amb la configuració de Paypal d'aquest lloc. -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.","S'ha produït un error en connectar-se a l'aplicació de safata QZ ...

                Heu de tenir instal·lada i en funcionament l’aplicació QZ Tray per utilitzar la funció d’impressió en brut.

                Feu clic aquí per descarregar i instal·lar QZ Safata .
                Feu clic aquí per obtenir més informació sobre la impressió en brut ." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Afegeix un comentari -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Mida de la lletra (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Només es permet personalitzar el document DocTypes estàndard des del formulari de personalització. DocType: Email Account,Sendgrid,SendGrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Ho sento! No es poden eliminar els comentaris generats automàticament DocType: Google Settings,Used For Google Maps Integration.,S'utilitza per a la integració de Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Reference DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,No s’exportaran registres DocType: User,System User,Usuari de Sistema DocType: Report,Is Standard,És Standard DocType: Desktop Icon,_report,_report @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,signe menys apps/frappe/frappe/public/js/frappe/request.js,Not Found,Extraviat apps/frappe/frappe/www/printview.py,No {0} permission,No {0} permís apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportació permisos personalitzats +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,No s'ha trobat cap element. DocType: Data Export,Fields Multicheck,Camps Multicheck DocType: Activity Log,Login,Iniciar Sessió DocType: Web Form,Payments,Pagaments @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Per defecte entrant DocType: Workflow State,repeat,repetició DocType: Website Settings,Banner,Bandera +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},El valor ha de ser un de {0} DocType: Role,"If disabled, this role will be removed from all users.","Si està desactivat, aquest paper serà eliminat de tots els usuaris." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Vés a la llista de {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Vés a la llista de {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Ajuda i Recerca DocType: Milestone,Milestone Tracker,Rastreig de fites apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrat però discapacitats @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Nom del camp local DocType: DocType,Track Changes,Control de canvis DocType: Workflow State,Check,comprovar DocType: Chat Profile,Offline,desconnectat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},S'ha importat correctament {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Enviar missatge de correu electrònic per donar-se de baixa en apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edita @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print DocType: Bulk Update,Field,camp DocType: Communication,Received,Rebut DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Tret en mètodes vàlids com "before_insert", "after_update", etc (dependrà del tipus de document seleccionat)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},valor canviat de {0} {1} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Afegint l'Administrador del sistema a aquest usuari ja que hi ha d'haver almenys un gestor de sistema DocType: Chat Message,URLs,URLs DocType: Data Migration Run,Total Pages,Pàgines totals apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} ja té assignat el valor predeterminat per a {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                No results found for '

                ,

                No s'han trobat resultats per a '

                DocType: DocField,Attach Image,Adjuntar imatge DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Contrasenya Actualitzada @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},No està permès per 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 no és un format d'informe vàlid. Format de l'informe ha \ un dels següents% s DocType: Chat Message,Chat,Chat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuració> Permisos d'usuari DocType: LDAP Group Mapping,LDAP Group Mapping,Mapeig de grups LDAP DocType: Dashboard Chart,Chart Options,Opcions del gràfic +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Columna sense títol apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} de {1} a {2} a la fila #{3} DocType: Communication,Expired,Caducat apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Sembla que el testimoni que esteu utilitzant no és vàlid. @@ -1528,6 +1558,7 @@ DocType: DocType,System,Sistema DocType: Web Form,Max Attachment Size (in MB),Adjunt Mida màxima (en MB) apps/frappe/frappe/www/login.html,Have an account? Login,Tens un compte? iniciar Sessió DocType: Workflow State,arrow-down,arrow-down +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Fila {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Usuari no està permès eliminar {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} de {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Darrera actualització @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,El paper d'encàrrec apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Inici / Test Carpeta 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Introduïu la contrasenya DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatori) DocType: Social Login Key,Social Login Provider,Proveïdor d'inici de sessió social apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Afegir un altre comentari apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,No hi ha dades trobades al fitxer. Torneu a col·locar el nou fitxer amb dades. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mostra Tau apps/frappe/frappe/desk/form/assign_to.py,New Message,Nou missatge DocType: File,Preview HTML,Vista prèvia HTML DocType: Desktop Icon,query-report,consulta d'informe +DocType: Data Import Beta,Template Warnings,Advertències de plantilles apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filtres guarden DocType: DocField,Percent,Per cent apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,"Si us plau, estableix els filtres" @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,A mida DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Si s'activa, els usuaris que inicien la sessió des de l'adreça IP restringida, no es demanaran a Autenticació de dos factors" DocType: Auto Repeat,Get Contacts,Obtenir contactes apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Les entrades sota {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Saltant la columna sense títol DocType: Notification,Send alert if date matches this field's value,Enviar alerta si la data coincideix amb el valor d'aquest camp DocType: Workflow,Transitions,Transicions apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} a {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,pas enrere apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Please set Dropbox access keys in your site config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Eliminar aquest registre per permetre l'enviament a aquesta adreça de correu electrònic +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Si no és un port estàndard (per exemple, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Personalitza les dreceres apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Només els camps obligatoris són necessaris per als nous registres. Pots eliminar columnes de caràcter no obligatori, si ho desitges." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Mostra més Activitat @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Vist per la taula apps/frappe/frappe/www/third_party_apps.html,Logged in,Connectat apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Per defecte Enviament i Safata d'entrada DocType: System Settings,OTP App,Aplicació OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,S'ha actualitzat correctament {0} registre fora de {1}. DocType: Google Drive,Send Email for Successful Backup,Envieu un correu electrònic per fer una còpia de seguretat amb èxit +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,El planificador està inactiu. No es poden importar dades. DocType: Print Settings,Letter,Carta DocType: DocType,"Naming Options:
                1. field:[fieldname] - By Field
                2. naming_series: - By Naming Series (field called naming_series must be present
                3. Prompt - Prompt user for a name
                4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Següent token de sincronització DocType: Energy Point Settings,Energy Point Settings,Configuració del punt d’energia DocType: Async Task,Succeeded,Succeït apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Camps obligatoris requerits a {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                  No results found for '

                  ,

                  No s'han trobat resultats per a '

                  apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Restablir permisos per {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Usuaris i permisos DocType: S3 Backup Settings,S3 Backup Settings,Configuració de còpia de seguretat de S3 @@ -1854,6 +1892,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,En DocType: Notification,Value Change,Canvi de valor DocType: Google Contacts,Authorize Google Contacts Access,Autoritzeu Google Contact Access apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Es mostren només els camps numèrics de l'informe +DocType: Data Import Beta,Import Type,Tipus d'importació DocType: Access Log,HTML Page,Pàgina HTML DocType: Address,Subsidiary,Filial apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,S'està intentant la connexió a la safata QZ ... @@ -1864,7 +1903,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Invàlid s DocType: Custom DocPerm,Write,Escriure apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Només l'Administrador té permís per crear QUERY/SCRIPT Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Actualització -DocType: File,Preview,Preestrena +DocType: Data Import Beta,Preview,Preestrena apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","El camp "valor" és obligatori. Si us plau, especifiqui el valor d'actualitzar" DocType: Customize Form,Use this fieldname to generate title,Utilitzeu aquest nom de camp per generar títol apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importació de correu electrònic De @@ -1947,6 +1986,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Navegador no c DocType: Social Login Key,Client URLs,URL del client apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,falta informació apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,S'ha creat {0} amb èxit +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Saltant {0} de {1}, {2}" DocType: Custom DocPerm,Cancel,Cancel·la apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Suprimeix a granel apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Arxiu {0} no existeix @@ -1974,7 +2014,6 @@ DocType: GCalendar Account,Session Token,Títol de sessió DocType: Currency,Symbol,Símbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Fila # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Confirmeu la supressió de les dades -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,S'ha enviat una nova contrassenya per correu electrònic apps/frappe/frappe/auth.py,Login not allowed at this time,Login no permès en aquest moment DocType: Data Migration Run,Current Mapping Action,Acció de cartografia actual DocType: Dashboard Chart Source,Source Name,font Nom @@ -1987,6 +2026,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Seguit per DocType: LDAP Settings,LDAP Email Field,LDAP Camp de correu electrònic apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Llista +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exporta {0} registres apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Ja està a la llista de tasques pendents de l'usuari DocType: User Email,Enable Outgoing,Habilita sortint DocType: Address,Fax,Fax @@ -2044,8 +2084,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Imprimeix documents apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Saltar al camp DocType: Contact Us Settings,Forward To Email Address,Reenviar al Correu Electrònic +DocType: Contact Phone,Is Primary Phone,És telèfon principal apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envia un correu electrònic a {0} per enllaçar-lo aquí. DocType: Auto Email Report,Weekdays,Dies laborables +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} registres s'exportaran apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,El Camp Títol ha de ser un nom de camp vàlid DocType: Post Comment,Post Comment,Escriu un comentari apps/frappe/frappe/config/core.py,Documents,Documents @@ -2063,7 +2105,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",apareixerà aquest camp només si el nom del camp definit aquí té valor o les regles són veritables (exemples): eval myfield: doc.myfield == 'La meva Valor' eval: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,avui +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.,No s'ha trobat cap plantilla d'adreces per defecte. Creeu-ne un de nou a Configuració> Impressió i marca> Plantilla d'adreces. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Un cop establert, els usuaris només tindran accés als documents (per exemple. Blog) on hi hagil'enllaç (per exemple. Blogger)." +DocType: Data Import Beta,Submit After Import,Envieu després d'importar DocType: Error Log,Log of Scheduler Errors,Registre d'errors de planificació DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App secret de client @@ -2082,10 +2126,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Desactivar l'enllaç d'inscripció del client a la pàgina d'Inici de sessió apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Assignat a / Propietari DocType: Workflow State,arrow-left,fletxa-esquerra +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Exporta 1 registre DocType: Workflow State,fullscreen,pantalla completa DocType: Chat Token,Chat Token,Tauler de xat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Crea un gràfic apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,No importeu DocType: Web Page,Center,Centre DocType: Notification,Value To Be Set,Valor d'ajust apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edita {0} @@ -2105,6 +2151,7 @@ DocType: Print Format,Show Section Headings,Mostra títols de les seccions DocType: Bulk Update,Limit,límit apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Hem rebut una sol·licitud de supressió de {0} dades associades a: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Afegeix una nova secció +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Registres filtrats apps/frappe/frappe/www/printview.py,No template found at path: {0},No es troba la plantillaen a : {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,No compte de correu electrònic DocType: Comment,Cancelled,Cancel·lat @@ -2191,10 +2238,13 @@ DocType: Communication Link,Communication Link,Enllaç de comunicació apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Format de sortida no vàlid apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},No es pot {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Aplicar aquesta regla, si l'usuari és el propietari" +DocType: Global Search Settings,Global Search Settings,Configuració global de la cerca apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Serà la seva ID d'inici de sessió +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Restabliment dels tipus de document de cerca global. ,Lead Conversion Time,Temps de conversió del plom apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Redactar Informe DocType: Note,Notify users with a popup when they log in,Notificar als usuaris amb un missatge emergent quan es connecten +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Els mòduls bàsics {0} no es poden cercar a la Cerca global. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Xat obert apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} no existeix, seleccioneu un nou objectiu per unir" DocType: Data Migration Connector,Python Module,Mòdul Python @@ -2211,8 +2261,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Close apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,No es pot canviar DocStatus de 0 a 2 DocType: File,Attached To Field,Adjunt al camp -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuració> Permisos d'usuari -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Actualització +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Actualització DocType: Transaction Log,Transaction Hash,Transacció Hash DocType: Error Snapshot,Snapshot View,Instantània de vista apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Si us plau, guardi el butlletí abans d'enviar-" @@ -2228,6 +2277,7 @@ DocType: Data Import,In Progress,En progrés apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,En cua per còpia de seguretat. Es pot prendre un parell de minuts a una hora. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,El permís d'usuari ja existeix +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Assignació de la columna {0} al camp {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Visualitza {0} DocType: User,Hourly,Hora per hora apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Register OAuth client d'aplicació @@ -2240,7 +2290,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} no pot ser ""{2}"". Ha de ser un de ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},guanyada per {0} mitjançant la regla automàtica {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} o {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Actualitzar Contrasenya DocType: Workflow State,trash,escombraries DocType: System Settings,Older backups will be automatically deleted,còpies de seguretat anteriors s'eliminaran de forma automàtica apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Identificador de clau d'accés no vàlid o clau d'accés secret. @@ -2268,6 +2317,7 @@ DocType: Address,Preferred Shipping Address,Adreça d'enviament preferida apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Amb capçalera apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} creat aquest {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},No està permès per a {0}: {1} a la fila {2}. Camp restringit: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de correu electrònic no configurat. Creeu un nou compte de correu electrònic des de Configuració> Correu electrònic> Compte de correu electrònic DocType: S3 Backup Settings,eu-west-1,eu-oest-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Si es marca aquesta opció, es importaran les files amb dades vàlides i les files no vàlides seran enviades a un fitxer nou per importar-lo més tard." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document és només editable pels usuaris de paper @@ -2294,6 +2344,7 @@ DocType: Custom Field,Is Mandatory Field,És un camp obligatori DocType: User,Website User,Lloc web de l'usuari apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Algunes columnes es podrien tallar en imprimir a PDF. Proveu de mantenir el nombre de columnes de menys de 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,No Equival +DocType: Data Import Beta,Don't Send Emails,No envieu correus electrònics DocType: Integration Request,Integration Request Service,Sol·licitud de Servei d'Integració DocType: Access Log,Access Log,Accés al registre DocType: Website Script,Script to attach to all web pages.,Script to attach to all web pages. @@ -2333,6 +2384,7 @@ DocType: Contact,Passive,Passiu DocType: Auto Repeat,Accounts Manager,Gerent de Comptes apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Assignació per {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,El seu pagament es cancel·la. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configureu el compte de correu electrònic per defecte des de Configuració> Correu electrònic> Compte de correu electrònic apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Seleccioneu el tipus de fitxer apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Veure tot DocType: Help Article,Knowledge Base Editor,Coneixement Base Editor @@ -2365,6 +2417,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Dades apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Estat del document apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Aprovació obligatòria +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Cal crear els registres següents per poder importar el vostre fitxer. DocType: OAuth Authorization Code,OAuth Authorization Code,Codi d'autorització OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,No es permet importar DocType: Deleted Document,Deleted DocType,dOCTYPE eliminat @@ -2418,8 +2471,8 @@ DocType: System Settings,System Settings,Configuració del sistema DocType: GCalendar Settings,Google API Credentials,Credencials de l'API de Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Inici de Sessió Error apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Aquest correu electrònic va ser enviat a {0} i copiat a {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ha enviat aquest document {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Fa {0} any DocType: Social Login Key,Provider Name,Nom del proveïdor apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Crear un nou {0} DocType: Contact,Google Contacts,Contactes de Google @@ -2427,6 +2480,7 @@ DocType: GCalendar Account,GCalendar Account,Compte de GCalendar DocType: Email Rule,Is Spam,és spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Informe {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Obrir {0} +DocType: Data Import Beta,Import Warnings,Advertències d’importació DocType: OAuth Client,Default Redirect URI,Defecte URI de redireccionament DocType: Auto Repeat,Recipients,Destinataris DocType: System Settings,Choose authentication method to be used by all users,Trieu el mètode d'autenticació que tots els usuaris utilitzaran @@ -2544,6 +2598,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,L'inform apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,S'ha produït un fracàs en l'error de Webhook DocType: Email Flag Queue,Unread,no llegit DocType: Bulk Update,Desk,Escriptori +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Saltar a la columna {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),El filtre ha de ser una tupla o llista (en una llista) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Write a SELECT query. Note result is not paged (all data is sent in one go). DocType: Email Account,Attachment Limit (MB),Límit Adjunt (MB) @@ -2558,6 +2613,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Crear nou DocType: Workflow State,chevron-down,Chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),El correu electrònic no enviat a {0} (donat de baixa / desactivat) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Seleccioneu els camps a exportar DocType: Async Task,Traceback,Rastrejar DocType: Currency,Smallest Currency Fraction Value,Més petita moneda Valor Fracció apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Preparació de l’informe @@ -2566,6 +2622,7 @@ DocType: Workflow State,th-list,TH-llista DocType: Web Page,Enable Comments,Habilita Comentaris apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notes DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Restringir l'usuari des d'aquesta adreça IP única. Diverses adreces IP es poden afegir en separar amb comes. També accepta adreces IP parcials com (111.111.111) +DocType: Data Import Beta,Import Preview,Vista prèvia d’importació DocType: Communication,From,Des apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Seleccioneu un node de grup primer. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Troba {0} a {1} @@ -2664,6 +2721,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,entre DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,En cua +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuració> Formulari personalitzat DocType: Braintree Settings,Use Sandbox,ús Sandbox apps/frappe/frappe/utils/goal.py,This month,Aquest mes apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nou format personalitzat Imprimir @@ -2679,6 +2737,7 @@ DocType: Session Default,Session Default,Per defecte de la sessió DocType: Chat Room,Last Message,Últim missatge DocType: OAuth Bearer Token,Access Token,Token d'accés DocType: About Us Settings,Org History,Org History +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Resten uns {0} minuts DocType: Auto Repeat,Next Schedule Date,Next Schedule Date DocType: Workflow,Workflow Name,Workflow Nom DocType: DocShare,Notify by Email,Notificació per correu electrònic @@ -2708,6 +2767,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,reprendre l'enviament apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Reobrir +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Mostra els avisos apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Usuari de compres DocType: Data Migration Run,Push Failed,Push Failed @@ -2744,6 +2804,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Cerca apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,No us permet veure el butlletí. DocType: User,Interests,interessos apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Les Instruccions de restabliment de contrasenya han estat enviades al seu correu electrònic +DocType: Energy Point Rule,Allot Points To Assigned Users,Assigna els punts als usuaris cedits apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","El nivell 0 és per als permisos de nivell de document, \ nivells més alts per als permisos de nivell de camp." DocType: Contact Email,Is Primary,És primària @@ -2766,6 +2827,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Vegeu el document a {0} DocType: Stripe Settings,Publishable Key,clau publicable apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Inicia la importació +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Tipus d'exportació DocType: Workflow State,circle-arrow-left,circle-arrow-left DocType: System Settings,Force User to Reset Password,Força l'usuari a restablir la contrasenya apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Per obtenir l’informe actualitzat, feu clic a {0}." @@ -2778,13 +2840,16 @@ DocType: Contact,Middle Name,Segon nom DocType: Custom Field,Field Description,Descripció del camp apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nom no establert a través de Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Safata d'entrada de correu electrònic +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Actualitzant {0} de {1}, {2}" DocType: Auto Email Report,Filters Display,filtres de visualització apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",El camp "modificat_de" ha d'estar present per realitzar una modificació. +DocType: Contact,Numbers,Nombres apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ha agraït el teu treball a {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Desa els filtres DocType: Address,Plant,Planta apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Respondre a tots DocType: DocType,Setup,Ajustos +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Tots els registres DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adreça de correu electrònic els contactes de Google per sincronitzar-se. DocType: Email Account,Initial Sync Count,Comte de sincronització inicial DocType: Workflow State,glass,vidre @@ -2809,7 +2874,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Mostra la vista prèvia de la finestra emergent apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Aquest és un top-100 contrasenya comú. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Si us plau, activa elements emergents" -DocType: User,Mobile No,Número de Mòbil +DocType: Contact,Mobile No,Número de Mòbil DocType: Communication,Text Content,contingut de text DocType: Customize Form Field,Is Custom Field,És el camp personalitzat DocType: Workflow,"If checked, all other workflows become inactive.","Si se selecciona, tots els altres fluxos de treball es tornen inactius." @@ -2855,6 +2920,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Add c apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nom del nou format d'impressió apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Commuta la barra lateral DocType: Data Migration Run,Pull Insert,Tire de la inserció +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Punts màxims permesos després de multiplicar els punts amb el valor multiplicador (Nota: No hi ha cap límit deixar aquest camp buit o establir 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Plantilla no vàlida apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Consulta SQL il·legal apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obligatori: DocType: Chat Message,Mentions,Mencions @@ -2869,6 +2937,7 @@ DocType: User Permission,User Permission,Permís d'usuari apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Bloc apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP no instal·lat apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Descàrrega de dades +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},va canviar els valors de {0} {1} DocType: Workflow State,hand-right,la mà dreta DocType: Website Settings,Subdomain,Subdomini DocType: S3 Backup Settings,Region,Regió @@ -2895,10 +2964,12 @@ DocType: Braintree Settings,Public Key,Clau pública DocType: GSuite Settings,GSuite Settings,ajustaments GSuite DocType: Address,Links,Enllaços DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Utilitza el nom de l'adreça de correu electrònic esmentat en aquest compte com a nom del remitent per a tots els correus electrònics enviats amb aquest compte. +DocType: Energy Point Rule,Field To Check,Camp per comprovar apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Contactes de Google: no s'ha pogut actualitzar el contacte dels contactes de Google {0}, codi d'error {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Seleccioneu el tipus de document. apps/frappe/frappe/model/base_document.py,Value missing for,Falta a apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Afegir Nen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Avanç d’importació DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Si la condició es compleix, l'usuari serà recompensat amb els punts. per exemple. doc.status == 'Tancat'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: No es pot eliminar un Registre Enviat. @@ -2935,6 +3006,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autoritzeu Google Cale apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,La pàgina que està buscant no es troba. Això podria ser degut a que es mou o hi ha un error tipogràfic a l'enllaç. apps/frappe/frappe/www/404.html,Error Code: {0},Codi d'error: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descripció de pàgina de llistat, en text, només un parell de línies. (Màxim 140 caràcters)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} són camps obligatoris DocType: Workflow,Allow Self Approval,Permet l'autoaprovenció DocType: Event,Event Category,Categoria d'esdeveniments apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2983,8 +3055,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Moure's cap a DocType: Address,Preferred Billing Address,Preferit Direcció de facturació apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Massa escriu en una petició. Si us plau enviar sol·licituds més petites apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,S'ha configurat Google Drive. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,El tipus de document {0} s'ha repetit. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Els valors modificats DocType: Workflow State,arrow-up,arrow-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Hauria d'haver-hi com a mínim una fila per a la taula {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Per configurar la repetició automàtica, activeu "Permet la repetició automàtica" des de {0}." DocType: OAuth Bearer Token,Expires In,en expira DocType: DocField,Allow on Submit,Permetre al presentar @@ -3071,6 +3145,7 @@ DocType: Custom Field,Options Help,Opcions d'Ajuda DocType: Footer Item,Group Label,Label Group DocType: Kanban Board,Kanban Board,Junta Kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,S'ha configurat Google Contactes. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,S'exportarà 1 registre DocType: DocField,Report Hide,Amaga Informe apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},vista d'arbre no està disponible per a {0} DocType: DocType,Restrict To Domain,Restringir al domini @@ -3088,6 +3163,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Codi de verificació DocType: Webhook,Webhook Request,Sol.licitud de Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Error: {0} a {1}: {2} DocType: Data Migration Mapping,Mapping Type,Tipus de cartografia +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Seleccioneu Obligatori apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Explorar apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","No hi ha necessitat de símbols, dígits o lletres majúscules." DocType: DocField,Currency,Moneda @@ -3118,11 +3194,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Cap de lletra basat apps/frappe/frappe/utils/oauth.py,Token is missing,Token falta apps/frappe/frappe/www/update-password.html,Set Password,Establir contrasenya +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,S'han importat correctament {0} registres. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Nota: El canvi del nom de la pàgina es trencarà URL anterior a aquesta pàgina. apps/frappe/frappe/utils/file_manager.py,Removed {0},Eliminat {0} DocType: SMS Settings,SMS Settings,Ajustaments de SMS DocType: Company History,Highlight,Destacat DocType: Dashboard Chart,Sum,Suma +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,mitjançant Importació de dades DocType: OAuth Provider Settings,Force,força apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Darrera sincronització {0} DocType: DocField,Fold,fold @@ -3159,6 +3237,7 @@ DocType: Workflow State,Home,casa DocType: OAuth Provider Settings,Auto,acte DocType: System Settings,User can login using Email id or User Name,L'usuari pot iniciar la sessió utilitzant l'identificador de correu electrònic o el nom d'usuari DocType: Workflow State,question-sign,question-sign +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} està desactivat apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",El camp "ruta" és obligatori per a les visualitzacions web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Inseriu una columna abans de {0} DocType: Energy Point Rule,The user from this field will be rewarded points,L’usuari d’aquest camp obtindrà punts recompensats @@ -3192,6 +3271,7 @@ DocType: Website Settings,Top Bar Items,Elements de la barra superior DocType: Notification,Print Settings,Paràmetres d'impressió DocType: Page,Yes,Sí DocType: DocType,Max Attachments,Capacitat màxima de fitxers adjunts +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Resten uns {0} segons DocType: Calendar View,End Date Field,Camp de data de finalització apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Dreceres generals DocType: Desktop Icon,Page,Pàgina @@ -3302,6 +3382,7 @@ DocType: GSuite Settings,Allow GSuite access,Permetre l'accés GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Naming apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Selecciona tot +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Columna {0} apps/frappe/frappe/config/customization.py,Custom Translations,Traduccions personalitzats apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,progrés apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,per rol @@ -3343,11 +3424,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Env DocType: Stripe Settings,Stripe Settings,Ajustaments de la ratlla DocType: Data Migration Mapping,Data Migration Mapping,Cartografia de la migració de dades DocType: Auto Email Report,Period,Període +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Resta aproximadament {0} minuts apps/frappe/frappe/www/login.py,Invalid Login Token,Invalid Login Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Descarta't apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,Fa 1 dia DocType: Website Settings,Home Page,Home Page DocType: Error Snapshot,Parent Error Snapshot,Snapshot Error Pares +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Feu servir les columnes de {0} als camps de {1} DocType: Access Log,Filters,Filtres DocType: Workflow State,share-alt,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Cua ha de ser una de {0} @@ -3378,6 +3461,7 @@ DocType: Calendar View,Start Date Field,Camp de data d'inici DocType: Role,Role Name,Nom de rol apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Passar a escriptori apps/frappe/frappe/config/core.py,Script or Query reports,Script o consulta informes +DocType: Contact Phone,Is Primary Mobile,És mòbil principal DocType: Workflow Document State,Workflow Document State,Flux de treball de documents Estat apps/frappe/frappe/public/js/frappe/request.js,File too big,L'arxiu és massa gran apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Compte de correu electrònic afegeix diverses vegades @@ -3423,6 +3507,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Configuració de la pàgina apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,S'està desant ... apps/frappe/frappe/www/update-password.html,Invalid Password,contrasenya invàlida +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,S'ha importat correctament {0} registre fora de {1}. DocType: Contact,Purchase Master Manager,Administraodr principal de compres apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Feu clic a la icona de bloqueig per alternar públic / privat DocType: Module Def,Module Name,Nom del mòdul @@ -3456,6 +3541,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Entra números de mòbil vàlids apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,"Algunes de les característiques podrien no funcionar en el seu navegador. Si us plau, actualitzi el seu navegador a l'última versió." apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","No sap, pregunti "ajuda"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ha cancel·lat aquest document {0} DocType: DocType,Comments and Communications will be associated with this linked document,Comentaris i Comunicacions estaran associats amb aquest document vinculat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtra ... DocType: Workflow State,bold,Negreta @@ -3474,6 +3560,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Afegir / Admi DocType: Comment,Published,Publicat apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Gràcies per el teu email DocType: DocField,Small Text,Text petit +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,El número {0} no es pot definir com a principal ni per a telèfon ni per a número de mòbil. DocType: Workflow,Allow approval for creator of the document,Permet l'aprovació del creador del document apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Desa l’informe DocType: Webhook,on_cancel,on_cancelar @@ -3531,6 +3618,7 @@ DocType: Print Settings,PDF Settings,Configuració de PDF DocType: Kanban Board Column,Column Name,Nom de la columna DocType: Language,Based On,Basat en DocType: Email Account,"For more information, click here.","Per a més informació, feu clic aquí ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,El nombre de columnes no coincideix amb les dades apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Estableix com a predeterminat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Temps d'execució: {0} seg apps/frappe/frappe/model/utils/__init__.py,Invalid include path,El camí d'accés no és vàlid @@ -3620,7 +3708,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Carregueu {0} fitxers DocType: Deleted Document,GCalendar Sync ID,Identificador de sincronització GCalendar DocType: Prepared Report,Report Start Time,Hora d'inici de l'informe -apps/frappe/frappe/config/settings.py,Export Data,Exportar dades +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportar dades apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Seleccionar columnes DocType: Translation,Source Text,font del 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.,Aquest és un informe de fons. Configureu els filtres adequats i en genereu un de nou. @@ -3638,7 +3726,6 @@ DocType: Report,Disable Prepared Report,Desactiva l’informe preparat apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,L'usuari {0} ha sol·licitat la supressió de dades apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Il · legal testimoni d'accés. Siusplau torna-ho a provar apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","L'aplicació s'ha actualitzat a una nova versió, si us plau, tornar a carregar aquesta pàgina" -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.,No s'ha trobat cap plantilla d'adreces per defecte. Creeu-ne un de nou a Configuració> Impressió i marca> Plantilla d'adreces. DocType: Notification,Optional: The alert will be sent if this expression is true,Opcional: L'alerta s'enviat si aquesta expressió és veritable DocType: Data Migration Plan,Plan Name,Nom del pla DocType: Print Settings,Print with letterhead,Imprimir de carta @@ -3679,6 +3766,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: No es pot establir a Corregir sense Cancel·lar abans apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Pàgina plena DocType: DocType,Is Child Table,És Taula fill +DocType: Data Import Beta,Template Options,Opcions de plantilla apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} ha de ser una de {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} està veient en aquest document ara mateix apps/frappe/frappe/config/core.py,Background Email Queue,Antecedents Correu cua @@ -3686,7 +3774,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Restablir contraseny DocType: Communication,Opened,Inaugurat DocType: Workflow State,chevron-left,chevron-left DocType: Communication,Sending,Enviament -apps/frappe/frappe/auth.py,Not allowed from this IP Address,No es permet des d'aquesta adreça IP DocType: Website Slideshow,This goes above the slideshow.,Això va per sobre de la presentació de diapositives (slideshow) DocType: Contact,Last Name,Cognoms DocType: Event,Private,Privat @@ -3700,7 +3787,6 @@ DocType: Workflow Action,Workflow Action,Acció de flux de treball apps/frappe/frappe/utils/bot.py,I found these: ,He trobat els següents: DocType: Event,Send an email reminder in the morning,Enviar un recordatori per correu electrònic el matí DocType: Blog Post,Published On,Publicat a -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de correu electrònic no configurat. Creeu un nou compte de correu electrònic des de Configuració> Correu electrònic> Compte de correu electrònic DocType: Contact,Gender,Gènere apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Informació obligatòria que falta: apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} va revertir els vostres punts a {1} @@ -3721,7 +3807,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,warning-sign DocType: Prepared Report,Prepared Report,Informe preparat apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Afegiu metaetiquetes a les vostres pàgines web -DocType: Contact,Phone Nos,Núm. De telèfon DocType: Workflow State,User,Usuari DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Mostrar títol a la finestra del navegador com "Prefix - títol" DocType: Payment Gateway,Gateway Settings,Configuració de la passarel·la @@ -3738,6 +3823,7 @@ DocType: Data Migration Connector,Data Migration,Migració de dades DocType: User,API Key cannot be regenerated,No es pot regenerar la clau de l'API apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Alguna cosa ha anat malament DocType: System Settings,Number Format,Format de nombre +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Registre {0} amb èxit. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Resum DocType: Event,Event Participants,Participants de l'esdeveniment DocType: Auto Repeat,Frequency,Freqüència @@ -3745,7 +3831,7 @@ DocType: Custom Field,Insert After,Inserir després DocType: Event,Sync with Google Calendar,Sincronització amb Google Calendar DocType: Access Log,Report Name,Nom de l'informe DocType: Desktop Icon,Reverse Icon Color,Revertir Icona Color -DocType: Notification,Save,Guardar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Guardar apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Pròxima data programada apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Assigna a qui menys assignacions tingui apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Capçalera de secció @@ -3768,11 +3854,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Ample màxim per al tipus de moneda és 100px a la fila {0} apps/frappe/frappe/config/website.py,Content web page.,Contingut de la pàgina web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Afegeix un nou paper -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuració> Formulari personalitzat DocType: Google Contacts,Last Sync On,Última sincronització activada DocType: Deleted Document,Deleted Document,document eliminat apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ui! Quelcom ha fallat DocType: Desktop Icon,Category,Categoria +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Falta el valor {0} per a {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Afegeix contactes apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paisatge apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensions de script del costat del client en Javascript @@ -3795,6 +3881,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Actualització del punt d’energia apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Si us plau seleccioneu un altre mètode de pagament. PayPal no admet transaccions en moneda '{0}' DocType: Chat Message,Room Type,Tipus d'habitació +DocType: Data Import Beta,Import Log Preview,Importa la vista prèvia del registre apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,camp de cerca {0} no és vàlid apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,fitxer penjat DocType: Workflow State,ok-circle,ok-circle @@ -3861,6 +3948,7 @@ DocType: DocType,Allow Auto Repeat,Permet la repetició automàtica apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,No hi ha valors a mostrar DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Plantilla de correu electrònic +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,S'ha actualitzat correctament el registre de {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},L'usuari {0} no té accés doctype mitjançant permís de rol per al document {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Es requereix usuari i contrassenya apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Si us plau, actualitza per obtenir l'últim document." diff --git a/frappe/translations/cs.csv b/frappe/translations/cs.csv index 550616dc9c..a7e19ffb7a 100644 --- a/frappe/translations/cs.csv +++ b/frappe/translations/cs.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,K dispozici jsou nové verze {} pro následující aplikace apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vyberte pole Hodnota. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Načítání importovaného souboru ... DocType: Assignment Rule,Last User,Poslední uživatel apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nový úkol, {0}, byla přiřazena k vám od {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Výchozí nastavení relace bylo uloženo +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Znovu načíst soubor DocType: Email Queue,Email Queue records.,Email fronty záznamů. DocType: Post,Post,Příspěvek DocType: Address,Punjab,Paňdžáb @@ -44,6 +46,7 @@ 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},Přejmenovat {0} DocType: Workflow State,zoom-out,Zmenšit +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 otevřít: {0} když je otevřena instance apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabulka: {0} nemůže být prázdná DocType: SMS Parameter,Parameter,Parametr @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Měsíčně DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Povolení příchozích apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Nebezpečí -apps/frappe/frappe/www/login.py,Email Address,E-mailová adresa +DocType: Address,Email Address,E-mailová adresa DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Nepřečtené oznámení Odesláno apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export není povolen. Potřebujete roli {0} pro exportování. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Přihláše DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Možnosti kontaktu, např.: ""Dotaz prodeje, dotaz podpory"" atd., každý na novém řádku nebo oddělené čárkami." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Přidat značku ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrét -DocType: Data Migration Run,Insert,Vložit +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Vložit apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Povolit Google disku přístup apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Vyberte {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Zadejte základní adresu URL @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,před 1 mi 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,Konfigurovat motiv DocType: Company History,Company History,Historie organizace -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,resetovat +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,resetovat DocType: Workflow State,volume-up,volume-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhook volání požadavků na rozhraní API do webových aplikací +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Zobrazit Traceback DocType: DocType,Default Print Format,Výchozí formát tisku DocType: Workflow State,Tags,tagy apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nic: Konec toku apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Pole {0} nelze nastavit jako jedinečné v {1}, protože tam jsou non-jedinečné stávající hodnoty" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Typy dokumentů +DocType: Global Search Settings,Document Types,Typy dokumentů DocType: Address,Jammu and Kashmir,Džammú a Kašmír DocType: Workflow,Workflow State Field,Pole stavu toku (workflow) -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavení> Uživatel DocType: Language,Guest,Host DocType: DocType,Title Field,Titulek pole DocType: Error Log,Error Log,Error Log @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Opakuje jako "abcabcabc" jsou jen o něco těžší odhadnout, než "abc"" DocType: Notification,Channel,Kanál apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Pokud si myslíte, že to je oprávněné, prosím, změňte heslo správce." +DocType: Data Import Beta,Data Import Beta,Import dat Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} je povinné DocType: Assignment Rule,Assignment Rules,Pravidla přiřazení DocType: Workflow State,eject,eject @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Název akce toku (workflow) apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType nemůže být sloučen DocType: Web Form Field,Fieldtype,Typ pole apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nejedná se o soubor zip +DocType: Global Search DocType,Global Search DocType,Globální vyhledávání DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                  New {{ doc.doctype }} #{{ doc.name }}
                  ","Chcete-li přidat dynamický objekt, použijte jinja tagy jako
                   New {{ doc.doctype }} #{{ doc.name }} 
                  " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc událost apps/frappe/frappe/public/js/frappe/utils/user.js,You,Vy DocType: Braintree Settings,Braintree Settings,Nastavení Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Úspěšně bylo vytvořeno {0} záznamů. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Uložit filtr DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Nelze odstranit {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Zadejte url parametr zprá apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Pro tento dokument bylo vytvořeno automatické opakování apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Zobrazit přehled ve vašem prohlížeči apps/frappe/frappe/config/desk.py,Event and other calendars.,Event a jiné kalendáře. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (povinný 1 řádek) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Všechna pole jsou nezbytná pro odeslání komentáře. DocType: Custom Script,Adds a client custom script to a DocType,Přidá vlastní skript klienta do typu DocType DocType: Print Settings,Printer Name,Název tiskárny @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Hromadná aktualizace DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Dovolit hosty zobrazit apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} by neměl být stejný jako {1} -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).","Pro srovnání použijte> 5, <10 nebo = 324. Pro rozsahy použijte 5:10 (pro hodnoty mezi 5 a 10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Smazat {0} položky natrvalo? apps/frappe/frappe/utils/oauth.py,Not Allowed,Není povoleno @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Zobrazit DocType: Email Group,Total Subscribers,Celkem Odběratelé apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Číslo řádku apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Pakliže role nemá přístup na úrovni 0, pak vyšší úrovně nemají efekt." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Uložit jako DocType: Comment,Seen,Seen @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Není dovoleno tisknout návrhy dokumentů apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Obnovit výchozí 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 náhledu se zobrazuje pouze prvních {0} řádků apps/frappe/frappe/core/doctype/report/report.js,Example:,Příklad: DocType: Workflow,Defines workflow states and rules for a document.,Vymezuje jednotlivé stavy toků. DocType: Workflow State,Filter,Filtr @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Zavřeno DocType: Blog Settings,Blog Title,Titulek blogu apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standardní role nemůže být zakázán apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Typ chatu +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Sloupce mapy DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Nelze použít sub-query v pořadí @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Přidat sloupec apps/frappe/frappe/www/contact.html,Your email address,Vaše e-mailová adresa DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Úspěšně aktualizováno {0} záznamů z {1}. DocType: Notification,Send Alert On,Odeslat upozornění (kdy) DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Přizpůsobit popisek, skrýt tisk, výchozí atd." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Rozbalování souborů ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Uživatel: {0} nemůže být vymazán DocType: System Settings,Currency Precision,Měnová přesnost apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Další transakce blokuje tento jeden. Zkuste to prosím znovu za několik sekund. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Vymazat filtry DocType: Test Runner,App,Aplikace apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Přílohy nemohly být správně propojeny s novým dokumentem DocType: Chat Message Attachment,Attachment,Příloha @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nelze odesla apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalendář Google - Nepodařilo se aktualizovat událost {0} v Kalendáři Google, kód chyby {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Vyhledávání nebo zadejte příkaz DocType: Activity Log,Timeline Name,Časová osa Name +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Jako primární lze nastavit pouze jedno {0}. DocType: Email Account,e.g. smtp.gmail.com,např. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Přidat nové pravidlo DocType: Contact,Sales Master Manager,Sales manažer ve skupině Master @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP Pole středního názvu apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importuje se {0} z {1} DocType: GCalendar Account,Allow GCalendar Access,Povolit přístup ke službě GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} je povinné pole +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je povinné pole apps/frappe/frappe/templates/includes/login/login.js,Login token required,Požadovaný token pro přihlášení apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Měsíční hodnocení: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Vyberte více položek seznamu @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Není možné se připoj apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Slovo samo o sobě je snadno uhodnout. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automatické přiřazení se nezdařilo: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Vyhledávání... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Prosím, vyberte Company" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Slučování je možné pouze mezi skupinami (skupina-skupina) nebo mezi uzlem typu stránka a jiným uzlem typu stránka apps/frappe/frappe/utils/file_manager.py,Added {0},Přidáno: {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Bez odpovídajících záznamů. Hledat něco nového @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,ID klienta OAuth DocType: Auto Repeat,Subject,Předmět apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Zpět na Stůl DocType: Web Form,Amount Based On Field,Částka z terénního -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte výchozí e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Uživatel je povinný pro Share DocType: DocField,Hidden,skrytý DocType: Web Form,Allow Incomplete Forms,Umožnit Neúplné formuláře @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} a {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Spusťte konverzaci. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Vždy přidat "Koncept" Okruh pro tisk konceptů dokumentů apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Chyba v oznámení: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} rok (roky) DocType: Data Migration Run,Current Mapping Start,Aktuální spuštění mapování apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail byl označen jako spam DocType: Comment,Website Manager,Správce webu @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,Barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Použití pod-dotazu nebo funkce je omezeno apps/frappe/frappe/config/customization.py,Add your own translations,Přidejte svůj vlastní překlady DocType: Country,Country Name,Stát Název +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Prázdná šablona DocType: About Us Team Member,About Us Team Member,O nás – člen týmu apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Oprávnění se nastavují na rolích a typech dokumentů (nazýváme je DocTypes) nastavením práv jako číst, Zapsat, Vytvořit, Smazat, Vložit, Zrušit, Změnit, Výpis, Import, Export, Tisk, Email a Nastavení uživatelských oprávnění." DocType: Event,Wednesday,Středa @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Internetové stránky Téma I DocType: Web Form,Sidebar Items,Položky postranního panelu DocType: Web Form,Show as Grid,Zobrazit jako mřížku apps/frappe/frappe/installer.py,App {0} already installed,Aplikace {0} již byla nainstalována +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Uživatelé přiřazení k referenčnímu dokumentu získají body. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Žádný náhled DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Rozbalené {0} soubory @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Dny před apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Denní akce by měly skončit ve stejný den. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Upravit... DocType: Workflow State,volume-down,volume-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Přístup z této IP adresy není povolen apps/frappe/frappe/desk/reportview.py,No Tags,žádné tagy DocType: Email Account,Send Notification to,Odeslat oznámení na DocType: DocField,Collapsible,Skládací @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Vývojář apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Vytvořeno apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} na řádku {1} nemůže mít zároveň URL a podřízené položky +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Pro následující tabulky by měl být alespoň jeden řádek: {0} DocType: Print Format,Default Print Language,Výchozí jazyk tisku apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Předkové z apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Kořen (nejvyšší úroveň): {0} nelze smazat @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Hostitel +DocType: Data Import Beta,Import File,Importovat soubor apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Sloupec {0} již existují. DocType: ToDo,High,Vysoké apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nová událost @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Odeslat oznámení pro vlákn apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne v režimu pro vývojáře apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Zálohování souborů je připraveno -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maximální povolený počet bodů po vynásobení bodů multiplikátorem (Poznámka: Neexistuje žádná nastavená hodnota limitu jako 0) DocType: DocField,In Global Search,V Globální hledání DocType: System Settings,Brute Force Security,Bojová bezpečnost DocType: Workflow State,indent-left,indent-left @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Uživatel '{0}' již má za úkol '{1}' DocType: System Settings,Two Factor Authentication method,Metoda ověřování dvěma faktory apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Nejprve nastavte název a uložte záznam. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 záznamů apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Sdíleno s {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Odhlásit odběr DocType: View Log,Reference Name,Název reference @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Konektor pro migraci apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} vrátil {1} DocType: Email Account,Track Email Status,Sledovat stav e-mailu DocType: Note,Notify Users On Every Login,Upozornit uživatele na každé přihlášení +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Nelze přiřadit sloupec {0} k žádnému poli +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Úspěšně aktualizováno {0} záznamů. DocType: PayPal Settings,API Password,API Password apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Zadejte modul pythonu nebo vyberte typ konektoru apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Přizpůsobené pole nemá nastaven název @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Uživatelská oprávnění slouží k omezení uživatelů na konkrétní záznamy. DocType: Notification,Value Changed,Hodnota změněna apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplicitní jméno {0} {1} -DocType: Email Queue,Retry,Opakujte +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Opakujte +DocType: Contact Phone,Number,Číslo DocType: Web Form Field,Web Form Field,Pole webového formuláře apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Máte novou zprávu od: +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).","Pro srovnání použijte> 5, <10 nebo = 324. Pro rozsahy použijte 5:10 (pro hodnoty mezi 5 a 10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Upravit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Zadejte adresu URL přesměrování apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Zobrazení vlastnost apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kliknutím na soubor jej vyberte. DocType: Note Seen By,Note Seen By,Poznámka viděn apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Zkuste použít delší klávesnice vzor s více závitů -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LeaderBoard +,LeaderBoard,LeaderBoard DocType: DocType,Default Sort Order,Výchozí pořadí řazení DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-mailová odpověď Nápověda @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,skládat e-mail apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Stavy toků jako např.: Rozpracováno, Schváleno, Zrušeno." DocType: Print Settings,Allow Print for Draft,Umožňují tisk pro Draft +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 při připojení k aplikaci QZ Tray ...

                  Abyste mohli používat funkci Raw Print, musíte mít nainstalovanou a spuštěnou aplikaci QZ Tray.

                  Klepnutím sem stáhněte a nainstalujte zásobník QZ .
                  Klepnutím sem získáte další informace o surovém tisku ." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Nastavit Množství apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Předloží tento dokument potvrdit DocType: Contact,Unsubscribed,Odhlášen z odběru @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organizační jednotka pro ,Transaction Log Report,Zpráva protokolu transakcí DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Poslat odkaz pro odhlášení +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Před importem vašeho souboru je třeba vytvořit několik propojených záznamů. Chcete automaticky vytvořit následující chybějící záznamy? DocType: Access Log,Method,Metoda DocType: Report,Script Report,Skriptovaný výpis DocType: OAuth Authorization Code,Scopes,scopes @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Nahráno úspěšně apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Jste připojeni k internetu. DocType: Social Login Key,Enable Social Login,Povolit sociální přihlášení +DocType: Data Import Beta,Warnings,Varování DocType: Communication,Event,Událost apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Dne {0}, {1} napsal:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Nelze smazat standardní pole. Můžete ji skrýt, pokud chcete" @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Vložit p DocType: Kanban Board Column,Blue,Modrý apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Všechna přizpůsobení budou odebrána. Prosím potvrďte. DocType: Page,Page HTML,HTML kód stránky +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Export chybových řádků apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Název skupiny nesmí být prázdný. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,"Další uzly mohou být pouze vytvořena v uzlech typu ""skupiny""" DocType: SMS Parameter,Header,Záhlaví @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Vypršel časový limit žádosti apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Povolit / Zakázat domény DocType: Role Permission for Page and Report,Allow Roles,povolit role +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Úspěšně importováno {0} záznamů z {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Jednoduchý výraz Python, příklad: Stav v („Neplatný“)" DocType: User,Last Active,Naposledy aktivní DocType: Email Account,SMTP Settings for outgoing emails,SMTP nastavení pro odchozí e-maily apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,zvolte DocType: Data Export,Filter List,Seznam filtrů DocType: Data Export,Excel,Vynikat -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Vaše heslo bylo aktualizováno. Zde je Vaše nové heslo DocType: Email Account,Auto Reply Message,Zpráva automatické odpovědi DocType: Data Migration Mapping,Condition,Podmínka apps/frappe/frappe/utils/data.py,{0} hours ago,Před {0} hodin @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,User ID DocType: Communication,Sent,Odesláno DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Správa DocType: User,Simultaneous Sessions,souběžných relací DocType: Social Login Key,Client Credentials,klientské pověření @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Aktuali apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Hlavní DocType: DocType,User Cannot Create,Uživatel nemůže Vytvořit apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Úspěšně hotovo -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Složka {0} neexistuje apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Přístup Dropbox je schválen! DocType: Customize Form,Enter Form Type,Vložte typ formuláře DocType: Google Drive,Authorize Google Drive Access,Autorizovat přístup na Disk Google @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Není oštítkován žádný záznam apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Odebrat pole apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Nejste připojeni k Internetu. Opakujte někdy znovu. -DocType: User,Send Password Update Notification,Poslat heslo Aktualizovat oznámení apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Povoluji DocType, DocType. Buďte opatrní!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Upravené formáty pro tisk, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Součet {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Nesprávný ověřov apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrace kontaktů Google je zakázána. DocType: Assignment Rule,Description,Popis DocType: Print Settings,Repeat Header and Footer in PDF,Opakovat záhlaví a zápatí ve formátu PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Selhání DocType: Address Template,Is Default,Je Výchozí DocType: Data Migration Connector,Connector Type,Typ konektoru apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Název sloupec nemůže být prázdný @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Přejděte na strán DocType: LDAP Settings,Password for Base DN,Heslo pro základní DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabulka Field apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Sloupce na bázi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importuje se {0} z {1}, {2}" DocType: Workflow State,move,Stěhovat apps/frappe/frappe/model/document.py,Action Failed,akce se nezdařilo apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,pro Uživatele @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Povolit surový tisk DocType: Website Route Redirect,Source,Zdroj apps/frappe/frappe/templates/includes/list/filters.html,clear,jasný apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Dokončeno +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavení> Uživatel DocType: Prepared Report,Filter Values,Hodnoty filtru DocType: Communication,User Tags,Uživatelské štítky DocType: Data Migration Run,Fail,Selhat @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Nás ,Activity,Činnost DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Nápověda: Pro odkaz na jiný záznam v systému, použijte ""#Form/Note/[Název poznámky]"" jako URL odkazu. (Nepoužívejte ""http: //"")" DocType: User Permission,Allow,Dovolit +DocType: Data Import Beta,Update Existing Records,Aktualizace existujících záznamů apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Pojďme se zabránilo opakovanému slova a znaky DocType: Energy Point Rule,Energy Point Rule,Pravidlo energetického bodu DocType: Communication,Delayed,Zpožděné @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Pole sledování DocType: Notification,Set Property After Alert,Nastavit vlastnost po upozornění apps/frappe/frappe/config/customization.py,Add fields to forms.,Přidat pole do formulářů. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Zdá se, že se něco děje s konfigurací Paypal této stránky." -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 při připojení k aplikaci QZ Tray ...

                  Abyste mohli používat funkci Raw Print, musíte mít nainstalovanou a spuštěnou aplikaci QZ Tray.

                  Klepnutím sem stáhněte a nainstalujte zásobník QZ .
                  Klepnutím sem získáte další informace o surovém tisku ." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Přidat recenzi -DocType: File,rgt,Rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Velikost písma (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Z standardního formuláře je možné přizpůsobit pouze standardní typy dokumentů. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Promiňte! Nelze odstranit automaticky generovaná komentáře DocType: Google Settings,Used For Google Maps Integration.,Používá se pro integraci Map Google. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Reference DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Žádné záznamy nebudou exportovány DocType: User,System User,Systémový uživatel DocType: Report,Is Standard,Je standardní DocType: Desktop Icon,_report,_zpráva @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,znaménko mínus apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nenalezeno apps/frappe/frappe/www/printview.py,No {0} permission,Bez oprávnění: {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export vlastní oprávnění +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Žádné předměty nenalezeny. DocType: Data Export,Fields Multicheck,Pole Multilack DocType: Activity Log,Login,Přihlášení DocType: Web Form,Payments,Platby @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Poštovní DocType: Email Account,Default Incoming,Výchozí Příchozí DocType: Workflow State,repeat,opakovat DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Hodnota musí být jedna z {0} DocType: Role,"If disabled, this role will be removed from all users.","Pokud je vypnuta, tato role bude odstraněn ze všech uživatelů." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Přejděte na seznam {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Přejděte na seznam {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Nápověda k vyhledávání DocType: Milestone,Milestone Tracker,Milestone Tracker apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Registrovaný uživatel, ale tělesně postižené" @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Místní název pole DocType: DocType,Track Changes,Sledování změn DocType: Workflow State,Check,Check DocType: Chat Profile,Offline,Offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Úspěšně importováno {0} DocType: User,API Key,klíč API DocType: Email Account,Send unsubscribe message in email,Odeslat odhlásit zprávu do e-mailu apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edit Title @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print DocType: Bulk Update,Field,Pole DocType: Communication,Received,Přijato DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger na ověřené metody, jako je "before_insert", "after_update", etc (bude záviset na zvoleném DOCTYPE)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},změněná hodnota {0} {1} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Přidávám roli systémového správce tomuto uživateli jelikož musí existovat nejméně jeden systémový správce DocType: Chat Message,URLs,URL adresy DocType: Data Migration Run,Total Pages,Celkové stránky apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} již přiřadil výchozí hodnotu pro {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                  No results found for '

                  ,

                  Nebyly nalezeny žádné výsledky pro '

                  DocType: DocField,Attach Image,Připojit obrázek DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Heslo aktualizováno @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Není povoleno pro {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 není platný formát zprávy. Zpráva formát by měl \ jednu z následujících možností% s DocType: Chat Message,Chat,Chat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavení> Uživatelská oprávnění DocType: LDAP Group Mapping,LDAP Group Mapping,Skupinové mapování LDAP DocType: Dashboard Chart,Chart Options,Možnosti grafu +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Sloupec bez názvu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} z {1} až {2} v řadě # {3} DocType: Communication,Expired,Vypršela apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Zdá se, že token, který používáte, je neplatný!" @@ -1528,6 +1558,7 @@ DocType: DocType,System,Systém DocType: Web Form,Max Attachment Size (in MB),Maximální velikost příloh (v MB) apps/frappe/frappe/www/login.html,Have an account? Login,Mít účet? Přihlásit se DocType: Workflow State,arrow-down,šipka-dolů +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Řádek {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Uživatel nemá povoleno mazat {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} z {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Naposledy Aktualizováno (kdy) @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Custom Role apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Home / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Zadejte heslo DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Povinné) DocType: Social Login Key,Social Login Provider,Poskytovatel sociálního přihlášení apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Přidat další komentář apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,V souboru nebyly nalezeny žádné údaje. Znovu připojte nový soubor s daty. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Zobrazit p apps/frappe/frappe/desk/form/assign_to.py,New Message,Nová zpráva DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-report +DocType: Data Import Beta,Template Warnings,Upozornění na šablony apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filtry uloženy DocType: DocField,Percent,Procento apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Prosím nastavte filtry @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Zvyk DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Pokud je tato možnost povolena, uživatelé, kteří se přihlásí z omezené IP adresy, nebudou vyzváni k zadání dvou faktorů" DocType: Auto Repeat,Get Contacts,Získejte kontakty apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Příspěvky podané v rámci {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Přeskočení sloupce bez názvu DocType: Notification,Send alert if date matches this field's value,Odeslat upozornění pokud datum souhlasí s hodnotou tohoto pole DocType: Workflow,Transitions,Přechody apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} až {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,step-backward apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Prosím, nastavení přístupových klíčů Dropbox ve vašem webu config" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Smazat tento záznam povolit odesílání na tuto e-mailovou adresu +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Pokud jde o nestandardní port (např. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Přizpůsobení zástupců apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Pouze povinná pole jsou potřeba pro nové záznamy. Můžete smazat nepovinné sloupce přejete-li si. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Zobrazit další aktivitu @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Viděný tabulce apps/frappe/frappe/www/third_party_apps.html,Logged in,Přihlášen apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Výchozí Odeslání a Inbox DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Úspěšně aktualizován záznam {0} z {1}. DocType: Google Drive,Send Email for Successful Backup,Odeslat e-mail pro úspěšné zálohování +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Plánovač je neaktivní. Nelze importovat data. DocType: Print Settings,Letter,Dopis DocType: DocType,"Naming Options:
                  1. field:[fieldname] - By Field
                  2. naming_series: - By Naming Series (field called naming_series must be present
                  3. Prompt - Prompt user for a name
                  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                  5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Další synchronizační token DocType: Energy Point Settings,Energy Point Settings,Nastavení bodu energie DocType: Async Task,Succeeded,Uspěl apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Povinné pole vyžadována pro {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                    No results found for '

                    ,

                    Nebyly nalezeny žádné výsledky pro '

                    apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Obnovit oprávnění pro: {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Uživatelé a oprávnění DocType: S3 Backup Settings,S3 Backup Settings,S3 Nastavení zálohování @@ -1854,6 +1892,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,V DocType: Notification,Value Change,Změnit hodnotu DocType: Google Contacts,Authorize Google Contacts Access,Autorizovat přístup ke kontaktům Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Zobrazení pouze číselných polí ze sestavy +DocType: Data Import Beta,Import Type,Typ importu DocType: Access Log,HTML Page,HTML stránka DocType: Address,Subsidiary,Dceřiný apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Pokus o připojení k zásobníku QZ ... @@ -1864,7 +1903,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Neplatný DocType: Custom DocPerm,Write,Zapsat apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Pouze administrátor má povoleno vytvářet Dotazy (query) / skriptované výpisy (script reports) apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aktualizace -DocType: File,Preview,Preview +DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Pole "hodnota" je povinná. Prosím, uveďte hodnotu, která se aktualizuje" DocType: Customize Form,Use this fieldname to generate title,Pomocí tohoto FieldName ke generování názvu apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importovat e-maily z @@ -1947,6 +1986,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Prohlížeč n DocType: Social Login Key,Client URLs,Klientské adresy URL apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Některé informace chybí apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} byl úspěšně vytvořen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Přeskočení {0} z {1}, {2}" DocType: Custom DocPerm,Cancel,Zrušit apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Hromadné odstranění apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Soubor {0} neexistuje @@ -1974,7 +2014,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,Symbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Řádek č.{0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Potvrďte odstranění dat -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nové heslo zasláno emailem apps/frappe/frappe/auth.py,Login not allowed at this time,Přihlášení není povoleno v tuto dobu DocType: Data Migration Run,Current Mapping Action,Současná mapovací akce DocType: Dashboard Chart Source,Source Name,Název zdroje @@ -1987,6 +2026,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Glob apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Následován DocType: LDAP Settings,LDAP Email Field,LDAP Email Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,Seznam: {0} +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exportovat {0} záznamy apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Je již v uživatelském seznamu úkolů DocType: User Email,Enable Outgoing,Povolit odchozí DocType: Address,Fax,Fax @@ -2044,8 +2084,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Tisk dokumentů apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Přejít na pole DocType: Contact Us Settings,Forward To Email Address,Přeposlat na emailovou adresu +DocType: Contact Phone,Is Primary Phone,Je primární telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošlete e-mail na adresu {0} a propojte jej zde. DocType: Auto Email Report,Weekdays,V pracovní dny +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Bude exportováno {0} záznamů apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titulek musí být validní název pole DocType: Post Comment,Post Comment,Odeslat komentář apps/frappe/frappe/config/core.py,Documents,Dokumenty @@ -2063,7 +2105,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","Toto pole se objeví pouze v případě, že fieldname zde definovány má hodnotu OR pravidla jsou pravými (příklady): myfield eval: doc.myfield == "Můj Value 'eval: doc.age> 18" DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Dnes +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.,Nebyla nalezena žádná výchozí adresa. Vytvořte nový z nabídky Nastavení> Tisk a branding> Šablona adresy. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Pakliže toto nastavíte, uživatelé budou moci přistoupit pouze na dokumenty (např.: příspěvky blogu), kam existují odkazy (např.: blogger)." +DocType: Data Import Beta,Submit After Import,Odeslat po importu DocType: Error Log,Log of Scheduler Errors,Log chyb plánovače. DocType: User,Bio,Biografie DocType: OAuth Client,App Client Secret,App Client Secret @@ -2082,10 +2126,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Vypnout odkaz pro registraci zákazníků na přihlašovací stránce apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Přiřazeno (komu)/Majitel DocType: Workflow State,arrow-left,šipka-vlevo +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Export 1 záznamu DocType: Workflow State,fullscreen,celá obrazovka DocType: Chat Token,Chat Token,Chatový token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Vytvořit graf apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Neimportovat DocType: Web Page,Center,Střed DocType: Notification,Value To Be Set,"Hodnota, kterou chcete nastavit" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Upravit {0} @@ -2105,6 +2151,7 @@ DocType: Print Format,Show Section Headings,Ukázat § Nadpisy DocType: Bulk Update,Limit,Omezit apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Obdrželi jsme žádost o odstranění {0} dat souvisejících s: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Přidejte novou sekci +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrované záznamy apps/frappe/frappe/www/printview.py,No template found at path: {0},Žádná šablona nenalezena na cestě: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Žádné e-mailový účet DocType: Comment,Cancelled,Zrušeno @@ -2191,10 +2238,13 @@ DocType: Communication Link,Communication Link,Komunikační spojení 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} DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Použít toto pravidlo v případě, že uživatel je vlastníkem" +DocType: Global Search Settings,Global Search Settings,Globální nastavení vyhledávání apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Bude to vaše přihlašovací ID +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Obnovení typů dokumentů globálního vyhledávání. ,Lead Conversion Time,Lead Conversion Time apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Sestav Report DocType: Note,Notify users with a popup when they log in,"Informovat uživatele s pop-up, když se přihlásí" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Základní moduly {0} nelze v Globálním vyhledávání prohledávat. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Otevřete chat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} neexistuje, zvolte nový cíl pro sloučení" DocType: Data Migration Connector,Python Module,Python modul @@ -2211,8 +2261,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zavřít apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Nelze změnit docstatus z 0 na 2 DocType: File,Attached To Field,Připojeno k poli -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavení> Uživatelská oprávnění -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Aktualizovat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Aktualizovat DocType: Transaction Log,Transaction Hash,Transakční hash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Uložte Newsletter před odesláním @@ -2228,6 +2277,7 @@ DocType: Data Import,In Progress,Pokrok apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Ve frontě pro zálohování. To může trvat několik minut až hodinu. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Uživatelské oprávnění již existuje +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mapovací sloupec {0} do pole {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Zobrazit {0} DocType: User,Hourly,Hodinově apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrovat OAuth klienta App @@ -2240,7 +2290,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS brána URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nemůže být ""{2}"". Mělo by být jedno ze ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},získané {0} automatickým pravidlem {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} nebo {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Aktualizovat heslo DocType: Workflow State,trash,koš DocType: System Settings,Older backups will be automatically deleted,Starší zálohy budou automaticky smazány apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID neplatného přístupového klíče nebo tajného přístupového klíče. @@ -2268,6 +2317,7 @@ DocType: Address,Preferred Shipping Address,Preferovaná dodací adresa apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,S hlavičkový apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} vytvořil tento {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Není povoleno pro {0}: {1} v řádku {2}. Omezené pole: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Pokud je zaškrtnuto, budou importovány řádky s platnými daty a neplatné řádky budou vráceny do nového souboru, abyste mohli později importovat." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document je upravovatelný pouze pro uživatele s rolí @@ -2294,6 +2344,7 @@ DocType: Custom Field,Is Mandatory Field,Je Povinné Pole DocType: User,Website User,Uživatel webu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Některé sloupce se mohou při tisku do PDF oříznout. Pokuste se udržet počet sloupců pod 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Není rovno +DocType: Data Import Beta,Don't Send Emails,Neposílejte e-maily DocType: Integration Request,Integration Request Service,Integrace Service Request DocType: Access Log,Access Log,Přístupový protokol DocType: Website Script,Script to attach to all web pages.,Skript pro přidání na všechny www stránky. @@ -2333,6 +2384,7 @@ DocType: Contact,Passive,Pasivní DocType: Auto Repeat,Accounts Manager,Accounts Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Přiřazení pro {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Platba je zrušena. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte výchozí e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Vyberte typ souboru apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Zobrazit vše DocType: Help Article,Knowledge Base Editor,Editor Znalostní Báze @@ -2365,6 +2417,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Stav dokumentu apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Vyžaduje se schválení +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Než budeme moci soubor importovat, je třeba vytvořit následující záznamy." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Autorizační kód apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Není povoleno importovat DocType: Deleted Document,Deleted DocType,vypouští DocType @@ -2418,8 +2471,8 @@ DocType: System Settings,System Settings,Nastavení systému DocType: GCalendar Settings,Google API Credentials,Pověření API Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Zastavení relace se nezdařilo apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Tento e-mail byl odeslán na adresu {0} a zkopírovat do {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},odeslán tento dokument {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} rok (roky) DocType: Social Login Key,Provider Name,Jméno poskytovatele apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Nově Vytvořit: {0} DocType: Contact,Google Contacts,Kontakty Google @@ -2427,6 +2480,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar účet DocType: Email Rule,Is Spam,je Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otevřít {0} +DocType: Data Import Beta,Import Warnings,Importovat upozornění DocType: OAuth Client,Default Redirect URI,Výchozí Přesměrování URI DocType: Auto Repeat,Recipients,Příjemci DocType: System Settings,Choose authentication method to be used by all users,"Vyberte metodu autentizace, kterou budou používat všichni uživatelé" @@ -2544,6 +2598,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Přehled byl apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Chyba chyby Webhook DocType: Email Flag Queue,Unread,Nepřečtený DocType: Bulk Update,Desk,Stůl +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Přeskočení sloupce {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtr musí být n-tice nebo seznam (v seznamu) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Napište SQL dotaz SELECT. Poznámka: výsledky nebudou stránkovány (všechna data budou odeslána najednou). DocType: Email Account,Attachment Limit (MB),Omezit přílohu (MB) @@ -2558,6 +2613,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Vytvořit nový DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email není poslán do {0} (odhlásili / vypnuto) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Vyberte pole pro export DocType: Async Task,Traceback,Vystopovat DocType: Currency,Smallest Currency Fraction Value,Nejmenší Měna Frakce Hodnota apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Příprava zprávy @@ -2566,6 +2622,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Zapnout komentáře apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Poznámky DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Omezit přístup uživatele pouze z této IP adresy. Můžete přidat více IP adres, oddělených čárkou. Je možno zadat dílčí IP adresy jako (111.111.111)." +DocType: Data Import Beta,Import Preview,Importovat náhled DocType: Communication,From,Od apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Vyberte první uzel skupinu. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Hledej: {0} v: {1} @@ -2664,6 +2721,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Mezi DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Ve frontě +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavení> Přizpůsobit formulář DocType: Braintree Settings,Use Sandbox,použití Sandbox apps/frappe/frappe/utils/goal.py,This month,Tento měsíc apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format @@ -2679,6 +2737,7 @@ DocType: Session Default,Session Default,Výchozí relace DocType: Chat Room,Last Message,Poslední zpráva DocType: OAuth Bearer Token,Access Token,Přístupový Token DocType: About Us Settings,Org History,Historie organizace +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Zbývá asi {0} minut DocType: Auto Repeat,Next Schedule Date,Další rozvrh datum DocType: Workflow,Workflow Name,Jméno toku DocType: DocShare,Notify by Email,Upozornit emailem @@ -2708,6 +2767,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,pokračovat v odesílání apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Znovu otevřít +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Zobrazit varování apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Nákup Uživatel DocType: Data Migration Run,Push Failed,Tlačítko selhalo @@ -2744,6 +2804,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Pokro apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nemáte oprávnění pro prohlížení newsletteru. DocType: User,Interests,zájmy apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email +DocType: Energy Point Rule,Allot Points To Assigned Users,Přidělte body přiřazeným uživatelům apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Úroveň 0 je pro oprávnění na úrovni dokumentu, \ vyšší úrovně oprávnění na úrovni pole." DocType: Contact Email,Is Primary,Je primární @@ -2766,6 +2827,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Viz dokument na {0} DocType: Stripe Settings,Publishable Key,Klíč pro publikování apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Spusťte import +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Typ exportu DocType: Workflow State,circle-arrow-left,circle-arrow-left DocType: System Settings,Force User to Reset Password,Vynutit uživateli reset hesla apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Chcete-li získat aktualizovaný přehled, klikněte na {0}." @@ -2778,13 +2840,16 @@ DocType: Contact,Middle Name,Prostřední jméno DocType: Custom Field,Field Description,Popis pole apps/frappe/frappe/model/naming.py,Name not set via Prompt,Název není nastaven pomocí prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-mailové schránky +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Aktualizace {0} z {1}, {2}" DocType: Auto Email Report,Filters Display,filtry Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Pro provedení změny musí být k dispozici pole „změněno_z“. +DocType: Contact,Numbers,Čísla apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ocenil vaši práci na {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Uložte filtry DocType: Address,Plant,Rostlina apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odpovědět všem DocType: DocType,Setup,Nastavení +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Všechny záznamy DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-mailová adresa, jejíž kontakty Google mají být synchronizovány." DocType: Email Account,Initial Sync Count,Počáteční synchronizace Count DocType: Workflow State,glass,glass @@ -2809,7 +2874,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Zobrazit vyskakovací okno náhledu apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Jedná se o společný heslo top-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Prosím povolte vyskakovací okna -DocType: User,Mobile No,Mobile No +DocType: Contact,Mobile No,Mobile No DocType: Communication,Text Content,Text Obsah DocType: Customize Form Field,Is Custom Field,Je Vlastní pole DocType: Workflow,"If checked, all other workflows become inactive.","Pakliže je toto zaškrtnuto, všechny ostatní toky (workflow) se stanou neaktivními." @@ -2855,6 +2920,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Přid apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Jméno nového Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Přepnout postranní panel DocType: Data Migration Run,Pull Insert,Vytáhněte vložku +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maximální povolený počet bodů po vynásobení bodů multiplikátorem (Poznámka: Toto pole nesmí zůstat prázdné nebo je nastaveno na 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Neplatná šablona apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Neplatný dotaz SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Povinné: DocType: Chat Message,Mentions,Zmínka @@ -2869,6 +2937,7 @@ DocType: User Permission,User Permission,Uživatelská oprávnění apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP není nainstalován apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Ke stažení s daty +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},změněné hodnoty pro {0} {1} DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Subdomain,Sub doména DocType: S3 Backup Settings,Region,Kraj @@ -2895,10 +2964,12 @@ DocType: Braintree Settings,Public Key,Veřejný klíč DocType: GSuite Settings,GSuite Settings,Nastavení GSuite DocType: Address,Links,Odkazy DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Používá jméno e-mailové adresy uvedené v tomto účtu jako jméno odesílatele pro všechny e-maily odeslané pomocí tohoto účtu. +DocType: Energy Point Rule,Field To Check,Pole ke kontrole apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Kontakty Google - kontakt nelze aktualizovat v kontaktech Google {0}, kód chyby {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Zvolte Typ dokumentu. apps/frappe/frappe/model/base_document.py,Value missing for,Chybí hodnota pro apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Přidat dítě +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Importovat pokrok DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Pokud je podmínka splněna, uživatel bude odměněn body. např. doc.status == 'Uzavřeno'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Odeslaný záznam nemůže být smazán. @@ -2935,6 +3006,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizujte přístup apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Stránka, kterou hledáte chybí. To by mohlo být, protože se pohybuje nebo je překlep v odkazu." apps/frappe/frappe/www/404.html,Error Code: {0},Kód chyby: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Popis pro stránku výpisů, v čistém textu, pouze pár řádek. (max 140 znaků)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} jsou povinná pole DocType: Workflow,Allow Self Approval,Povolit vlastní schválení DocType: Event,Event Category,Kategorie události apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2983,8 +3055,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Stěhovat se do DocType: Address,Preferred Billing Address,Preferovaná Fakturační Adresa apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Velmi mnoho zápisů v jednom požadavku. Prosím pošlete menší požadavek apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Disk Google byl nakonfigurován. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Typ dokumentu {0} byl opakován. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,hodnoty Změnil DocType: Workflow State,arrow-up,šipka-nahoru +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Pro tabulku {0} by měl být alespoň jeden řádek apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Chcete-li nakonfigurovat automatické opakování, povolte "Povolit automatické opakování" od {0}." DocType: OAuth Bearer Token,Expires In,V vyprší DocType: DocField,Allow on Submit,Povolit při Odeslání @@ -3071,6 +3145,7 @@ DocType: Custom Field,Options Help,Možnosti nápovědy DocType: Footer Item,Group Label,Skupina 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 byly nakonfigurovány. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Bude exportován 1 záznam DocType: DocField,Report Hide,Skrýt výpis apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Stromové zobrazení není k dispozici pro {0} DocType: DocType,Restrict To Domain,Omezit na doménu @@ -3088,6 +3163,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verifikační kód DocType: Webhook,Webhook Request,Žádost o Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Selhalo: {0} až {1}: {2} DocType: Data Migration Mapping,Mapping Type,Typ mapování +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,vyberte Povinné apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Prohlížet apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Není třeba pro symboly, číslice, nebo velkými písmeny." DocType: DocField,Currency,Měna @@ -3118,11 +3194,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Dopisní hlava založená na apps/frappe/frappe/utils/oauth.py,Token is missing,Token chybí apps/frappe/frappe/www/update-password.html,Set Password,Nastavit heslo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Úspěšně importováno {0} záznamů. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Poznámka: Změna názvu stránky rozdělí předchozí stránku na tuto stránku. apps/frappe/frappe/utils/file_manager.py,Removed {0},Odebráno: {0} DocType: SMS Settings,SMS Settings,Nastavení SMS DocType: Company History,Highlight,Zvýraznit DocType: Dashboard Chart,Sum,Součet +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,prostřednictvím importu dat DocType: OAuth Provider Settings,Force,Platnost apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Naposledy synchronizováno {0} DocType: DocField,Fold,Fold @@ -3159,6 +3237,7 @@ DocType: Workflow State,Home,Domácí DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Uživatel se může přihlásit pomocí ID e-mailu nebo uživatelského jména DocType: Workflow State,question-sign,question-sign +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je zakázáno apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Pole "trasa" je povinná pro zobrazení webu apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Vložit sloupec před {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Uživateli z tohoto pole budou odměněny body @@ -3192,6 +3271,7 @@ DocType: Website Settings,Top Bar Items,Položky horního panelu DocType: Notification,Print Settings,Nastavení tisku DocType: Page,Yes,Ano DocType: DocType,Max Attachments,Max příloh +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Zbývá asi {0} sekund DocType: Calendar View,End Date Field,Pole ukončení data apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globální zkratky DocType: Desktop Icon,Page,Stránka @@ -3302,6 +3382,7 @@ DocType: GSuite Settings,Allow GSuite access,Povolit přístup GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Pojmenování apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Vybrat vše +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Sloupec {0} apps/frappe/frappe/config/customization.py,Custom Translations,Vlastní Překlady apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Pokrok apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,podle role @@ -3343,11 +3424,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Pos DocType: Stripe Settings,Stripe Settings,Stripe Nastavení DocType: Data Migration Mapping,Data Migration Mapping,Mapování migrace dat DocType: Auto Email Report,Period,Období +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Zbývá asi {0} minuta apps/frappe/frappe/www/login.py,Invalid Login Token,Neplatný Přihlášení Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Vyřadit apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,před 1 hodinou DocType: Website Settings,Home Page,Domovská stránka DocType: Error Snapshot,Parent Error Snapshot,Parent Chyba Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Mapovat sloupce od {0} do polí v {1} DocType: Access Log,Filters,Filtry DocType: Workflow State,share-alt,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Fronta by měla být jedna z {0} @@ -3378,6 +3461,7 @@ DocType: Calendar View,Start Date Field,Pole Datum zahájení DocType: Role,Role Name,Název role apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Přepnutí do Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script nebo Query zprávy +DocType: Contact Phone,Is Primary Mobile,Je primární mobil DocType: Workflow Document State,Workflow Document State,Stav toku (workflow) dokumentu apps/frappe/frappe/public/js/frappe/request.js,File too big,Soubor je příliš velký apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-mailový účet přidán vícekrát @@ -3423,6 +3507,7 @@ DocType: DocField,Float,Desetinné číslo DocType: Print Settings,Page Settings,Nastavení stránky apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Ukládání ... apps/frappe/frappe/www/update-password.html,Invalid Password,Neplatné heslo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} záznam byl úspěšně importován z {1}. DocType: Contact,Purchase Master Manager,Nákup Hlavní manažer apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Klepnutím na ikonu zámku přepnete mezi veřejným / soukromým DocType: Module Def,Module Name,Název modulu @@ -3456,6 +3541,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Zadejte platné mobilní nos apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Některé funkce nemusí ve vašem prohlížeči fungovat. Aktualizujte svůj prohlížeč na nejnovější verzi. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Nevím, zeptejte se 'help'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},zrušen tento dokument {0} DocType: DocType,Comments and Communications will be associated with this linked document,Komentáře a komunikace bude spojena s tímto propojeného dokumentu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtr ... DocType: Workflow State,bold,tučně @@ -3474,6 +3560,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Přidat / Spr DocType: Comment,Published,Publikováno apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Děkujeme za váš e-mail DocType: DocField,Small Text,Krátký text +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Číslo {0} nelze nastavit jako primární pro telefonní ani mobilní číslo. DocType: Workflow,Allow approval for creator of the document,Umožnit schválení tvůrci dokumentu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Uložit sestavu DocType: Webhook,on_cancel,on_cancel @@ -3531,6 +3618,7 @@ DocType: Print Settings,PDF Settings,Nastavení PDF DocType: Kanban Board Column,Column Name,Název sloupce DocType: Language,Based On,Založeno na DocType: Email Account,"For more information, click here.","Pro více informací klikněte zde ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Počet sloupců neodpovídá datům apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Nastavit jako výchozí apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Doba provedení: {0} sec apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Neplatná cesta pro zahrnutí @@ -3620,7 +3708,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Nahrajte {0} souborů DocType: Deleted Document,GCalendar Sync ID,ID synchronizace GCalendar DocType: Prepared Report,Report Start Time,Čas zahájení hlášení -apps/frappe/frappe/config/settings.py,Export Data,Exportovat data +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportovat data apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Vyberte sloupce 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 zpráva na pozadí. Nastavte prosím vhodné filtry a vygenerujte nový. @@ -3638,7 +3726,6 @@ DocType: Report,Disable Prepared Report,Zakázat připravenou zprávu apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Uživatel {0} požádal o vymazání dat apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Nezákonné Access Token. Prosím zkuste to znovu apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikace byl aktualizován na novou verzi, prosím, aktualizujte tuto stránku" -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.,Nebyla nalezena žádná výchozí adresa. Vytvořte nový z nabídky Nastavení> Tisk a branding> Šablona adresy. DocType: Notification,Optional: The alert will be sent if this expression is true,Volitelné: Upozornění bude zasláno pokud je tento výraz pravdivý DocType: Data Migration Plan,Plan Name,Název plánu DocType: Print Settings,Print with letterhead,Tisk s hlavičkový @@ -3679,6 +3766,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Nelze Změnit bez Zrušení apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Page DocType: DocType,Is Child Table,Je podtabulka +DocType: Data Import Beta,Template Options,Možnosti šablony apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} musí být jedno ze {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} si právě prohlíží tento dokument apps/frappe/frappe/config/core.py,Background Email Queue,Pozadí Email fronty @@ -3686,7 +3774,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Obnovit heslo DocType: Communication,Opened,Otevřeno DocType: Workflow State,chevron-left,chevron-left DocType: Communication,Sending,Odeslání -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Není povoleno z této IP adresy DocType: Website Slideshow,This goes above the slideshow.,Toto přijde nad promítání obrázků. DocType: Contact,Last Name,Příjmení DocType: Event,Private,Soukromé @@ -3700,7 +3787,6 @@ DocType: Workflow Action,Workflow Action,Akce toků apps/frappe/frappe/utils/bot.py,I found these: ,Zjistil jsem tyto: DocType: Event,Send an email reminder in the morning,Ráno odeslat upozornění emailem DocType: Blog Post,Published On,Publikováno (kdy) -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet DocType: Contact,Gender,Pohlaví apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Povinné nebo chybějící ú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 na {1} @@ -3721,7 +3807,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,warning-sign DocType: Prepared Report,Prepared Report,Připravená zpráva apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Přidejte na své webové stránky metaznačky -DocType: Contact,Phone Nos,Telefonní čísla DocType: Workflow State,User,Uživatel DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Zobrazit titul v okně prohlížeče jako "Předčíslí - nadpis" DocType: Payment Gateway,Gateway Settings,Nastavení brány @@ -3738,6 +3823,7 @@ DocType: Data Migration Connector,Data Migration,Migrace dat DocType: User,API Key cannot be regenerated,Klíč API nelze obnovit apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Něco se pokazilo DocType: System Settings,Number Format,Formát čísel +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Úspěšně importovaný záznam {0}. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,souhrn DocType: Event,Event Participants,Účastníci akce DocType: Auto Repeat,Frequency,Frekvence @@ -3745,7 +3831,7 @@ DocType: Custom Field,Insert After,Vložit za DocType: Event,Sync with Google Calendar,Synchronizace s Kalendářem Google DocType: Access Log,Report Name,Název reportu DocType: Desktop Icon,Reverse Icon Color,Reverzní barevná ikona -DocType: Notification,Save,Uložit +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Uložit apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Další plánovaný den apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Přiřaďte tomu, kdo má nejméně úkolů" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Nadpis oddílu @@ -3768,11 +3854,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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,Přidat novou roli -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavení> Přizpůsobit formulář DocType: Google Contacts,Last Sync On,Poslední synchronizace je zapnutá DocType: Deleted Document,Deleted Document,vypouští Document apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Jejda! Něco nevyšlo dobře :( DocType: Desktop Icon,Category,Kategorie +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Hodnota {0} chybí pro {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Přidat kontakty apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Krajina apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Rozšíření na straně klienta skriptu v jazyce JavaScript @@ -3795,6 +3881,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aktualizace energetického bodu apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Prosím, vyberte jiný způsob platby. PayPal nepodporuje transakcí s oběživem ‚{0}‘" DocType: Chat Message,Room Type,Typ pokoje +DocType: Data Import Beta,Import Log Preview,Importovat náhled protokolu apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Vyhledávací pole {0} není platný apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,nahraný soubor DocType: Workflow State,ok-circle,ok-circle @@ -3861,6 +3948,7 @@ DocType: DocType,Allow Auto Repeat,Povolit automatické opakování apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Žádné hodnoty k zobrazení DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Šablona e-mailu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Úspěšně aktualizovaný záznam {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Uživatel {0} nemá přístup doctype prostřednictvím oprávnění role pro dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,"Obojí, přihlašovací jméno a heslo je vyžadováno" apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Prosím klikněte na obnovit pro získání nejnovějšího dokumentu. diff --git a/frappe/translations/da.csv b/frappe/translations/da.csv index f6d0dbc073..52e5ad252d 100644 --- a/frappe/translations/da.csv +++ b/frappe/translations/da.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Nye {} udgivelser til følgende apps er tilgængelige apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vælg beløbsfelt. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Indlæser importfil ... DocType: Assignment Rule,Last User,Sidste bruger apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","En ny opgave, {0}, er blevet tildelt til dig af {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Indstillinger for session er gemt +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Genindlæs fil DocType: Email Queue,Email Queue records.,Email Queue optegnelser. DocType: Post,Post,Indlæg DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 rolle opdatering Bruger Tilladelser for en bruger apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Omdøb {0} DocType: Workflow State,zoom-out,zoom-ud +DocType: Data Import Beta,Import Options,Importindstillinger apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Kan ikke åbne {0} når dens forekomst er åben apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabel {0} kan ikke være tomt DocType: SMS Parameter,Parameter,Parameter @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Månedlig DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktiver indgående apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Fare -apps/frappe/frappe/www/login.py,Email Address,E-mailadresse +DocType: Address,Email Address,E-mailadresse DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Ulæst meddelelse Sent apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Udlæsning er ikke tilladt. Du har brug for {0} rolle for at kunne udlæse. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktmuligheder, som ""Sales Query, Support Query"" etc hver på en ny linje eller adskilt af kommaer." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Tilføj et tag ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portræt -DocType: Data Migration Run,Insert,Indsæt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Indsæt apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Tillad Google Drev Access apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Vælg {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Indtast venligst basiswebadresse @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minut si 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.","Bortset fra System Manager, roller med Set User Tilladelser ret kan angive tilladelser for andre brugere til at Dokumenttype." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Konfigurer tema DocType: Company History,Company History,Firmaets historie -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Nulstil +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Nulstil DocType: Workflow State,volume-up,volumen-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks kalder API-anmodninger til webapps +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Vis traceback DocType: DocType,Default Print Format,Standard Print Format DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ingen: Slutning af Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} felt kan ikke indstilles som enestående i {1}, da der er ikke-unikke eksisterende værdier" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumenttyper +DocType: Global Search Settings,Document Types,Dokumenttyper DocType: Address,Jammu and Kashmir,Jammu og Kashmir DocType: Workflow,Workflow State Field,Workflow State Field -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opsætning> Bruger DocType: Language,Guest,Gæst DocType: DocType,Title Field,Titel Field DocType: Error Log,Error Log,Fejllog @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Gentagelse som ""abcabcabc"" er kun lidt sværere at gætte end ""abc""" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Hvis du synes, det er uberettiget, skal du ændre administratoradgangskoden." +DocType: Data Import Beta,Data Import Beta,Dataimport Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} er obligatorisk DocType: Assignment Rule,Assignment Rules,Tildelingsregler DocType: Workflow State,eject,skubbe @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Workflow Action Name apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kan ikke flettes DocType: Web Form Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ikke en zip-fil +DocType: Global Search DocType,Global Search DocType,Global søgning DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                    New {{ doc.doctype }} #{{ doc.name }}
                    ",For at tilføje dynamisk emne skal du bruge jinja tags som
                     New {{ doc.doctype }} #{{ doc.name }} 
                    @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,Du DocType: Braintree Settings,Braintree Settings,Braintree Indstillinger +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Oprettet {0} poster med succes. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Gem filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Kan ikke slette {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Indtast url parameter for apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Auto gentagelse oprettet til dette dokument apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Se rapport i din browser apps/frappe/frappe/config/desk.py,Event and other calendars.,Arrangementet og andre kalendere. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 række obligatorisk) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Alle felter er nødvendige for at indsende kommentaren. DocType: Custom Script,Adds a client custom script to a DocType,Tilføjer et kundetilpasset script til en DocType DocType: Print Settings,Printer Name,Printernavn @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Bulk opdatering DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Tillad Gæst til visning apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} bør ikke være det samme som {1} -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 skal du bruge> 5, <10 eller = 324. For intervaller skal du bruge 5:10 (til værdier mellem 5 og 10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Slet {0} varer permanent? apps/frappe/frappe/utils/oauth.py,Not Allowed,Ikke tilladt @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Udstilling DocType: Email Group,Total Subscribers,Total Abonnenter apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Række nummer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Hvis en rolle ikke har adgang til niveau 0, så giver højere niveauer ingen mening." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Gem som DocType: Comment,Seen,Set @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Ikke tilladt at udskrive kladdedokumenter apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Nulstil til standardindstillinger DocType: Workflow,Transition Rules,Overgangsregler +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Viser kun de første {0} rækker i eksempelvisning apps/frappe/frappe/core/doctype/report/report.js,Example:,Eksempel: DocType: Workflow,Defines workflow states and rules for a document.,Definerer workflow stater og regler for et dokument. DocType: Workflow State,Filter,Filter @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Lukket DocType: Blog Settings,Blog Title,Blog Titel apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standard roller kan ikke deaktiveres apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Chat Type +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kortkolonner DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Nyhedsbrev apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Kan ikke bruge sub-forespørgsel i rækkefølge efter @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Tilføj en kolonne apps/frappe/frappe/www/contact.html,Your email address,Din e-mail-adresse DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} poster ud af {1} blev opdateret. DocType: Notification,Send Alert On,Send Alert On DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Tilpas Label, Print Skjul, Standard etc." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping af filer ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Bruger {0} kan ikke slettes DocType: System Settings,Currency Precision,Valutapræcision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,En anden transaktion blokerer denne. Prøv igen om et par sekunder. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Ryd filtre DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Vedhæftningerne kunne ikke forbindes korrekt med det nye dokument DocType: Chat Message Attachment,Attachment,Vedhæftet @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Kan ikke sen apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - kunne ikke opdatere begivenhed {0} i Google Kalender, fejlkode {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Søg eller indtast en kommando DocType: Activity Log,Timeline Name,Tidslinje navn +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Kun en {0} kan indstilles som primær. DocType: Email Account,e.g. smtp.gmail.com,fx smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Tilføj en ny regel DocType: Contact,Sales Master Manager,Salg Master manager @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP Mellemnavn felt apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importerer {0} af {1} DocType: GCalendar Account,Allow GCalendar Access,Tillad GCalendar adgang -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} er et obligatorisk felt +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} er et obligatorisk felt apps/frappe/frappe/templates/includes/login/login.js,Login token required,Login token kræves apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Månedlig rangering: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Vælg flere listeelementer @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Kan ikke forbinde: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Et ord i sig selv er let at gætte. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Autotildeling mislykkedes: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Søg... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Vælg firma apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Sammenlægning er kun mulig mellem Group-til-koncernen eller Leaf Node-til-Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Tilføjet {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Ingen tilsvarende data. Søg noget nyt @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,OAuth-klient-id DocType: Auto Repeat,Subject,Emne apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tilbage til skrivebordet DocType: Web Form,Amount Based On Field,Antal baseret på felt -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Indstil standard e-mail-konto fra Opsætning> E-mail> E-mail-konto apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Bruger er obligatorisk for Share DocType: DocField,Hidden,Skjult DocType: Web Form,Allow Incomplete Forms,Tillad Ufuldstændige formularer @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} og {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Start en samtale. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Tilføj altid ""Udkast"" som overskrift til udskrivning af kladder" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Fejl i underretningen: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år (e) siden DocType: Data Migration Run,Current Mapping Start,Nuværende Kortlægning Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail er blevet markeret som spam DocType: Comment,Website Manager,Webmaster @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,stregkode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Brug af underforespørgsel eller funktion er begrænset apps/frappe/frappe/config/customization.py,Add your own translations,Tilføj dine egne oversættelser DocType: Country,Country Name,Landenavn +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Blank skabelon DocType: About Us Team Member,About Us Team Member,Om os Team medlem apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Tilladelser er indstillet på Roller og dokumenttyper (kaldet doctypes) ved at indstille rettigheder som Læs, Skriv, Opret, Slet, Send, Annuller, Tekst, Rapport, import, eksport, Print, E-mail og Set User Tilladelser." DocType: Event,Wednesday,Onsdag @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Website Tema Billede Link DocType: Web Form,Sidebar Items,Sidebar varer DocType: Web Form,Show as Grid,Vis som gitter apps/frappe/frappe/installer.py,App {0} already installed,App {0} er allerede installeret +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Brugere, der er tildelt referencedokumentet, får point." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Ingen forhåndsvisning DocType: Workflow State,exclamation-sign,udråbstegn-sign apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,{0} filer er pakket ud @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Dage før apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,De daglige begivenheder skulle være afsluttet samme dag. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redigere... DocType: Workflow State,volume-down,volumen-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Adgang ikke tilladt fra denne IP-adresse apps/frappe/frappe/desk/reportview.py,No Tags,Ingen tags DocType: Email Account,Send Notification to,Send meddelelse til DocType: DocField,Collapsible,Sammenklappelig @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Udvikler apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Oprettet apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} i række {1} kan ikke have både URL og underordnede elementer +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Der skal mindst være en række for følgende tabeller: {0} DocType: Print Format,Default Print Language,Standard printsprog apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Forfædre af apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kan ikke slettes @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Vært +DocType: Data Import Beta,Import File,Importer fil apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolonne {0} findes allerede. DocType: ToDo,High,Høj apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Ny begivenhed @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Send beskeder til e-mail-trå apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ikke i Udviklings-tilstand apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Fil backup er klar -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maksimal tilladte point efter multiplikation af point med multiplikatorværdien (Bemærk: For ingen grænseværdi værdi som 0) DocType: DocField,In Global Search,I Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,led-venstre @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Bruger '{0}' har allerede rollen '{1}' DocType: System Settings,Two Factor Authentication method,Two Factor Authentication metode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Indstil først navnet og gem posten. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 poster apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Delt med {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Afmeld abonnement DocType: View Log,Reference Name,Henvisning Navn @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Data Migration Connec apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} tilbageført {1} DocType: Email Account,Track Email Status,Spor Email Status DocType: Note,Notify Users On Every Login,Underrette brugere om hver login +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Kan ikke matche kolonne {0} med noget felt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} poster er vellykkede. DocType: PayPal Settings,API Password,API adgangskode apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Indtast python-modul eller vælg forbindelsestype apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Feltnavn ikke indstillet til Tilpasset felt @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Bruger tilladelser bruges til at begrænse brugere til specifikke poster. DocType: Notification,Value Changed,Værdi ændret apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplicate navn {0} {1} -DocType: Email Queue,Retry,Prøve igen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Prøve igen +DocType: Contact Phone,Number,Nummer DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Du har en ny besked fra: +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 skal du bruge> 5, <10 eller = 324. For intervaller skal du bruge 5:10 (til værdier mellem 5 og 10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Rediger HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Indtast venligst omdirigeringswebadresse apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Se Egenskaber (via Cu apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik på en fil for at vælge den. DocType: Note Seen By,Note Seen By,Note set af apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Prøv at bruge en længere tastatur mønster med flere omgange -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LEADERBOARD +,LeaderBoard,LEADERBOARD DocType: DocType,Default Sort Order,Standard sorteringsrækkefølge DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Svar Hjælp @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Compose Email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Stater for workflow (f.eks Udkast, Godkendt, Annulleret)." DocType: Print Settings,Allow Print for Draft,Tillad Print til Udkast +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.","Fejl ved forbindelse til QZ Tray Application ...

                    Du skal have QZ Tray-applikation installeret og kørt for at bruge Raw Print-funktionen.

                    Klik her for at downloade og installere QZ Tray .
                    Klik her for at lære mere om Raw Printing ." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Sæt Mængde apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Godkend dette dokument for at bekræfte DocType: Contact,Unsubscribed,Afmeldt @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organisationsenhed for brug ,Transaction Log Report,Transaktionslograpport DocType: Custom DocPerm,Custom DocPerm,Tilpasset DocPerm DocType: Newsletter,Send Unsubscribe Link,Send afmeld-link +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Der er nogle linkede poster, som skal oprettes, før vi kan importere din fil. Vil du oprette følgende manglende poster automatisk?" DocType: Access Log,Method,Metode DocType: Report,Script Report,Script Report DocType: OAuth Authorization Code,Scopes,Scopes @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Uploadet med succes apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Du er forbundet til internettet. DocType: Social Login Key,Enable Social Login,Aktivér social login +DocType: Data Import Beta,Warnings,Advarsler DocType: Communication,Event,Begivenhed apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Den {0}, {1} skrev:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Kan ikke slette standard felt. Du kan skjule det, hvis du ønsker" @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Indsæt n DocType: Kanban Board Column,Blue,Blå apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Alle tilpasninger vil blive fjernet. Bekræft venligst. DocType: Page,Page HTML,Side HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Eksport Fejllagte rækker apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Gruppens navn kan ikke være tomt. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Yderligere noder kan kun oprettes under 'koncernens typen noder DocType: SMS Parameter,Header,Overskrift @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Opstod timeout for anmodningen apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Aktivér / deaktiver domæner DocType: Role Permission for Page and Report,Allow Roles,Tillad Roller +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Importerede {0} poster fra {1} blev succesrig. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Simpel Python-ekspression, eksempel: Status i ("ugyldig")" DocType: User,Last Active,Sidst aktiv DocType: Email Account,SMTP Settings for outgoing emails,SMTP Indstillinger for udgående e-mails apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vælg en DocType: Data Export,Filter List,Filter liste DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Dit password er blevet opdateret. Her er din nye adgangskode DocType: Email Account,Auto Reply Message,Autosvarbesked DocType: Data Migration Mapping,Condition,Tilstand apps/frappe/frappe/utils/data.py,{0} hours ago,{0} timer siden @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Bruger-id DocType: Communication,Sent,Sent DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administration DocType: User,Simultaneous Sessions,Samtidige Sessions DocType: Social Login Key,Client Credentials,Client legitimationsoplysninger @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Opdater apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Brugeren må ikke oprette apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Udført -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} findes ikke apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox adgang er godkendt! DocType: Customize Form,Enter Form Type,Indtast Form Type DocType: Google Drive,Authorize Google Drive Access,Godkend adgang til Google Drev @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Ingen poster markeret. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Fjern Field apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Du er ikke forbundet til internettet. Prøv igen efter engang. -DocType: User,Send Password Update Notification,Send meddelelse vedr. opdateret adgangskode apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","At tillade DocType, DocType. Vær forsigtig!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Tilpassede formater til udskrivning, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summen af {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Forkert bekræftelse apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Kontakter Integration er deaktiveret. DocType: Assignment Rule,Description,Beskrivelse DocType: Print Settings,Repeat Header and Footer in PDF,Gentag sidehoved og sidefod i PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Fiasko DocType: Address Template,Is Default,Er standard DocType: Data Migration Connector,Connector Type,Tilslutningstype apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Kolonnenavn kan ikke være tomt @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Gå til {0} Side DocType: LDAP Settings,Password for Base DN,Password til Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,tabel Field apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolonner baseret på +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importerer {0} af {1}, {2}" DocType: Workflow State,move,flytte apps/frappe/frappe/model/document.py,Action Failed,Handling mislykkedes apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,For bruger @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Aktivér Raw Printing DocType: Website Route Redirect,Source,Kilde apps/frappe/frappe/templates/includes/list/filters.html,clear,klar apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Færdig +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opsætning> Bruger DocType: Prepared Report,Filter Values,Filtrer værdier DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,Svigte @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Føl ,Activity,Aktivitet DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Help: At linke til en anden post i systemet, skal du bruge "# Form / Note / [Note navn]" som Link URL. (Brug ikke "http: //")" DocType: User Permission,Allow,Tillad +DocType: Data Import Beta,Update Existing Records,Opdater eksisterende poster apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Undgå gentagne ord og tegn DocType: Energy Point Rule,Energy Point Rule,Energipunktregel DocType: Communication,Delayed,Forsinket @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Løbebane DocType: Notification,Set Property After Alert,Indstil ejendom efter advarsel apps/frappe/frappe/config/customization.py,Add fields to forms.,Tilføj felter til formularer. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Det ser ud til, at noget er galt med denne websteds Paypal-konfiguration." -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.","Fejl ved forbindelse til QZ Tray Application ...

                    Du skal have QZ Tray-applikation installeret og kørt for at bruge Raw Print-funktionen.

                    Klik her for at downloade og installere QZ Tray .
                    Klik her for at lære mere om Raw Printing ." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Tilføj anmeldelse -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Skriftstørrelse (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Kun standard DocTypes har tilladelse til at blive tilpasset fra Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Undskyld! Du kan ikke slette autogenererede kommentarer DocType: Google Settings,Used For Google Maps Integration.,Brugt til Google Maps-integration. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Henvisning DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Ingen poster vil blive eksporteret DocType: User,System User,Systembruger DocType: Report,Is Standard,Er standard DocType: Desktop Icon,_report,_rapport @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,minus-tegn apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ikke fundet apps/frappe/frappe/www/printview.py,No {0} permission,Ingen {0} tilladelser apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Udlæs brugerdefinerede tilladelser +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ingen emner fundet. DocType: Data Export,Fields Multicheck,Felter Multicheck DocType: Activity Log,Login,Log ind DocType: Web Form,Payments,Betalinger @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Standard Indgående DocType: Workflow State,repeat,gentagelse DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Værdien skal være en af {0} DocType: Role,"If disabled, this role will be removed from all users.","Hvis deaktiveret, vil denne rolle blive fjernet fra alle brugere." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Gå til {0} Liste +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gå til {0} Liste apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hjælp til søgning DocType: Milestone,Milestone Tracker,Milestone Tracker apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrerede men deaktiveret @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Lokalt feltnavn DocType: DocType,Track Changes,Spor ændringer DocType: Workflow State,Check,Check DocType: Chat Profile,Offline,Offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importeret {0} DocType: User,API Key,API nøgle DocType: Email Account,Send unsubscribe message in email,Send afmeldelsesbesked i e-mail apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Rediger titel @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print DocType: Bulk Update,Field,Felt DocType: Communication,Received,Modtaget DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger om gyldige metoder som "before_insert", "after_update" osv (afhænger af den valgte DocType)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},ændret værdi på {0} {1} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Tilføjelse System Manager til denne Bruger da der skal være mindst én System Manager DocType: Chat Message,URLs,URL'er DocType: Data Migration Run,Total Pages,Samlede sider apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} har allerede tildelt standardværdien for {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                    No results found for '

                    ,

                    Ingen resultater fundet for '

                    DocType: DocField,Attach Image,Vedhæft billede DocType: Workflow State,list-alt,liste-alt apps/frappe/frappe/www/update-password.html,Password Updated,Adgangskode opdateret @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ikke tilladt for {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 er ikke et gyldigt rapport format. Rapport format skal \ et af følgende% s DocType: Chat Message,Chat,Chat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opsætning> Brugertilladelser DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-gruppekortlægning DocType: Dashboard Chart,Chart Options,Diagrammuligheder +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Unavngivet søjle apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} fra {1} til {2} i rækkenr. {3} DocType: Communication,Expired,Udløbet apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Synes token du bruger er ugyldig! @@ -1528,6 +1558,7 @@ DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Maks Attachment Size (i MB) apps/frappe/frappe/www/login.html,Have an account? Login,Har du en konto? Log ind DocType: Workflow State,arrow-down,pil ned +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Række {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Bruger ikke lov til at slette {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} af {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Senest opdateret d. @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Tilpasset rolle apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Forside / Test Mappe 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Indtast din adgangskode DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatorisk) DocType: Social Login Key,Social Login Provider,Social Login Provider apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Tilføj 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 fundet i filen. Genindsæt venligst den nye fil med data. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Vis betjen apps/frappe/frappe/desk/form/assign_to.py,New Message,Ny besked DocType: File,Preview HTML,Eksempel HTML DocType: Desktop Icon,query-report,query-rapport +DocType: Data Import Beta,Template Warnings,Skabelonadvarsler apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtre blev gemt DocType: DocField,Percent,Procent apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Sæt venligst filtre @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Brugerdefineret DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Hvis det er aktiveret, bliver brugere, der logger ind fra Begrænset IP-adresse, ikke bedt om Two Factor Auth" DocType: Auto Repeat,Get Contacts,Få kontaktpersoner apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Stillinger arkiveret under {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Spring over Untitled-kolonne DocType: Notification,Send alert if date matches this field's value,"Send besked, hvis dato kampe denne feltets værdi" DocType: Workflow,Transitions,Overgange apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} til {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,trin-bagud apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Venligst sæt Dropbox genvejstaster i dit site config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Slet denne rekord for at tillade at sende denne e-mail-adresse +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Hvis ikke-standardport (f.eks. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Tilpas genveje apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Kun obligatoriske felter er nødvendige for nye rekorder. Du kan slette ikke-obligatoriske kolonner, hvis du ønsker." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Vis mere aktivitet @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Set af tabel apps/frappe/frappe/www/third_party_apps.html,Logged in,Logget ind apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standard Afsendelse og Indbakke DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} posten ud af {1} blev opdateret. DocType: Google Drive,Send Email for Successful Backup,Send e-mail til succesfuld backup +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Scheduler er inaktiv. Data kan ikke importeres. DocType: Print Settings,Letter,Brev DocType: DocType,"Naming Options:
                    1. field:[fieldname] - By Field
                    2. naming_series: - By Naming Series (field called naming_series must be present
                    3. Prompt - Prompt user for a name
                    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                    5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Næste synkroniseringstegn DocType: Energy Point Settings,Energy Point Settings,Energipunktindstillinger DocType: Async Task,Succeeded,Lykkedes apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Obligatoriske felter, der kræves i {0}" +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                      No results found for '

                      ,

                      Ingen resultater fundet for '

                      apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Nulstil Tilladelser for {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Brugere og tilladelser DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup-indstillinger @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,I DocType: Notification,Value Change,Value Change DocType: Google Contacts,Authorize Google Contacts Access,Godkend adgang til Google Kontaktpersoner apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Viser kun Numeriske felter fra Rapport +DocType: Data Import Beta,Import Type,Importtype DocType: Access Log,HTML Page,HTML-side DocType: Address,Subsidiary,Datterselskab apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Forsøger tilslutning til QZ-bakke ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ugyldig Se DocType: Custom DocPerm,Write,Skrive apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Kun Administrator lov til at oprette Query / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Opdatering -DocType: File,Preview,Eksempel +DocType: Data Import Beta,Preview,Eksempel apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Field "værdi" er obligatorisk. Angiv værdi, der skal opdateres" DocType: Customize Form,Use this fieldname to generate title,Brug denne feltnavn for at generere titel apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importér E-mail fra @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser unders DocType: Social Login Key,Client URLs,Klientwebadresser apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Der mangler nogle oplysninger apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} oprettet med succes +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Spring over {0} af {1}, {2}" DocType: Custom DocPerm,Cancel,Annullere apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Delete apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Fil {0} findes ikke @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,Symbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Række # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Bekræft sletning af data -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Ny adgangskode sendt på e-mail apps/frappe/frappe/auth.py,Login not allowed at this time,Log ind er ikke tilladt på dette tidspunkt DocType: Data Migration Run,Current Mapping Action,Aktuel kortlægning DocType: Dashboard Chart Source,Source Name,Kilde Navn @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Fast apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Efterfulgt af DocType: LDAP Settings,LDAP Email Field,LDAP Email Felt apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} List +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Eksporter {0} poster apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Allerede i brugerens opgaveliste DocType: User Email,Enable Outgoing,Aktiver udgående DocType: Address,Fax,Telefax @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Udskriv dokumenter apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Spring til felt DocType: Contact Us Settings,Forward To Email Address,Frem til email-adresse +DocType: Contact Phone,Is Primary Phone,Er primær telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Send en e-mail til {0} for at linke den her. DocType: Auto Email Report,Weekdays,Hverdage +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} poster eksporteres apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titel felt skal være et gyldigt feltnavn DocType: Post Comment,Post Comment,Skriv kommentar apps/frappe/frappe/config/core.py,Documents,Dokumenter @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","Dette felt vises kun, hvis feltnavn defineres her har værdi ELLER reglerne er sande (eksempler): myfield eval: doc.myfield == "Min Værdi" eval: doc.age> 18" DocType: Social Login Key,Office 365,Kontor 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,I dag +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 standardadresseskabelon fundet. Opret en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Når du har indstillet dette, vil brugerne kun kunne få adgang til dokumenter (f.eks. Blog Post) hvor linket eksisterer (f.eks. Blogger)." +DocType: Data Import Beta,Submit After Import,Indsend efter import DocType: Error Log,Log of Scheduler Errors,Log af Scheduler Fejl DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App klient hemlighed @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Deaktiver Customer Tilmelding linket i login side apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Tildelt til / ejer DocType: Workflow State,arrow-left,pil venstre +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Eksporter 1 post DocType: Workflow State,fullscreen,fullscreen DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Opret kort apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Importer ikke DocType: Web Page,Center,Centrer DocType: Notification,Value To Be Set,"Værdi, der skal indstilles" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Rediger {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,Vis Afsnit Overskrifter DocType: Bulk Update,Limit,Begrænse apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Vi har modtaget en anmodning om sletning af {0} data tilknyttet: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Tilføj en ny sektion +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrerede poster apps/frappe/frappe/www/printview.py,No template found at path: {0},Ingen skabelon fundet på stien: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ingen e-mail-konto DocType: Comment,Cancelled,Annulleret @@ -2190,10 +2237,13 @@ DocType: Communication Link,Communication Link,Kommunikationslink apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Ugyldigt Outputformat apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Kan ikke {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Anvende denne regel, hvis brugeren er ejer" +DocType: Global Search Settings,Global Search Settings,Indstillinger for global søgning apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Vil være dit login-id +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globalt søgedokumenttyper nulstilles. ,Lead Conversion Time,Lead Conversion Time apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Byg rapport DocType: Note,Notify users with a popup when they log in,"Giv brugerne en popup, når de logger ind" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Kernemoduler {0} kan ikke søges i Global Search. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Åben Chat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} eksisterer ikke. Vælg et nyt mål for sammenlægningen DocType: Data Migration Connector,Python Module,Python modul @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Luk apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Kan ikke ændre docstatus fra 0 til 2 DocType: File,Attached To Field,Vedhæftet til felt -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opsætning> Brugertilladelser -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Opdatering +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Opdatering DocType: Transaction Log,Transaction Hash,Transaktionshash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Gem nyhedsbrevet før afsendelse @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,I gang apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,I kø til sikkerhedskopi. Det kan tage et par minutter til en time. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Brugerrettigheder findes allerede +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kortlægger kolonne {0} til felt {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Se {0} DocType: User,Hourly,Hver time apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrer OAuth Client App @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kan ikke være ""{2}"". Den skal være en af ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},opnået af {0} via automatisk regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} eller {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Opdatering af adgangskode DocType: Workflow State,trash,affald DocType: System Settings,Older backups will be automatically deleted,Ældre sikkerhedskopier slettes automatisk apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ugyldig adgangskode ID eller Secret Access-nøgle. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,Foretruken leveringsadresse apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Med brevhoved apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} oprettede denne {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Ikke tilladt for {0}: {1} i række {2}. Begrænset felt: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke opsat. Opret en ny e-mail-konto fra Opsætning> E-mail> E-mail-konto DocType: S3 Backup Settings,eu-west-1,eu-vest-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Hvis dette er markeret, importeres rækker med gyldige data, og ugyldige rækker bliver dumpet til en ny fil, som du kan importere senere." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument er kun redigeres af brugere af rolle @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,Er Obligatorisk felt DocType: User,Website User,Website Bruger apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,"Nogle kolonner bliver muligvis afskåret, når de udskrives til PDF. Forsøg at holde antallet af kolonner under 10." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Forkellig fra +DocType: Data Import Beta,Don't Send Emails,Send ikke e-mails DocType: Integration Request,Integration Request Service,Integration serviceanmodning DocType: Access Log,Access Log,Adgangslog DocType: Website Script,Script to attach to all web pages.,Script til at knytte til alle hjemmesider. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,Inaktiv DocType: Auto Repeat,Accounts Manager,Regnskabschef apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Opgave til {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Din betaling er annulleret. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Indstil standard e-mail-konto fra Opsætning> E-mail> E-mail-konto apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Vælg filtype apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Se alt DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokument status apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Godkendelse krævet +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Følgende poster skal oprettes, før vi kan importere din fil." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Authorization Code apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Ikke tilladt at importere DocType: Deleted Document,Deleted DocType,slettet DocType @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,Systemindstillinger DocType: GCalendar Settings,Google API Credentials,Google API-referencer apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start mislykkedes apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Denne e-mail blev sendt til {0} og kopieres til {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},indsendte dette dokument {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år (e) siden DocType: Social Login Key,Provider Name,Navn på udbyder apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Opret ny(t) {0} DocType: Contact,Google Contacts,Google-kontakter @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar-konto DocType: Email Rule,Is Spam,er spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapport {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Åben {0} +DocType: Data Import Beta,Import Warnings,Importadvarsler DocType: OAuth Client,Default Redirect URI,Standard Redirect URI DocType: Auto Repeat,Recipients,Modtagere DocType: System Settings,Choose authentication method to be used by all users,"Vælg godkendelsesmetode, der skal bruges af alle brugere" @@ -2543,6 +2597,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Rapporten er apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webshook Fejl DocType: Email Flag Queue,Unread,Ulæst DocType: Bulk Update,Desk,Skrivebord +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Spring over kolonne {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter skal være en tuple eller liste (i en liste) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Skriv en SELECT forespørgsel. Bemærk resultat ikke søges (alle data sendes på én gang). DocType: Email Account,Attachment Limit (MB),Vedhæftet grænse (MB) @@ -2557,6 +2612,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Opret ny(t) DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-mail ikke sendt til {0} (afmeldt / deaktiveret) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,"Vælg felter, der skal eksporteres" DocType: Async Task,Traceback,Spore tilbage DocType: Currency,Smallest Currency Fraction Value,Mindste Valuta Fraktion Værdi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Udarbejdelse af rapport @@ -2565,6 +2621,7 @@ DocType: Workflow State,th-list,th-liste DocType: Web Page,Enable Comments,Aktiver Kommentarer apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Noter DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Begræns brugeren til denne eneste IP-adresse. Flere IP-adresser kan tilføjes ved at adskille med komma. Accepterer også delvise IP-adresser lignende (111.111.111) +DocType: Data Import Beta,Import Preview,Importeksempel DocType: Communication,From,Fra apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Vælg en gruppe node først. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Find {0} i {1} @@ -2663,6 +2720,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Mellem DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Sat i kø +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opsætning> Tilpas form DocType: Braintree Settings,Use Sandbox,Brug Sandbox apps/frappe/frappe/utils/goal.py,This month,Denne måned apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nyt brugerdefineret Print Format @@ -2678,6 +2736,7 @@ DocType: Session Default,Session Default,Session standard DocType: Chat Room,Last Message,Sidste besked DocType: OAuth Bearer Token,Access Token,Adgangs token DocType: About Us Settings,Org History,Org History +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Ca. {0} minutter tilbage DocType: Auto Repeat,Next Schedule Date,Næste planlægningsdato DocType: Workflow,Workflow Name,Workflow Navn DocType: DocShare,Notify by Email,Give besked på e-mail @@ -2707,6 +2766,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Forfatter apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Genoptag afsendelse apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Genåben +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Vis advarsler apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Sv: {0} DocType: Address,Purchase User,Indkøbsbruger DocType: Data Migration Run,Push Failed,Push mislykkedes @@ -2743,6 +2803,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Avance apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Du har ikke lov til at se nyhedsbrevet. DocType: User,Interests,Interesser apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Vejledning til nulstilling af din adgangskode er sendt til din e-mail +DocType: Energy Point Rule,Allot Points To Assigned Users,Tildel point til tildelte brugere apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Niveau 0 er til dokumentniveau tilladelser, \ højere niveauer for tilladelser på feltniveau." DocType: Contact Email,Is Primary,Er primær @@ -2765,6 +2826,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,Offentlig nøgle apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Start import +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Eksporttype DocType: Workflow State,circle-arrow-left,cirkel-pil-venstre DocType: System Settings,Force User to Reset Password,Tving bruger til at nulstille adgangskode apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",For at få den opdaterede rapport skal du klikke på {0}. @@ -2777,13 +2839,16 @@ DocType: Contact,Middle Name,Mellemnavn DocType: Custom Field,Field Description,Felt Beskrivelse apps/frappe/frappe/model/naming.py,Name not set via Prompt,Navn ikke indtastet i prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail indbakke +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Opdaterer {0} af {1}, {2}" DocType: Auto Email Report,Filters Display,filtre Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Feltet "ændret_fra" skal være til stede for at gøre en ændring. +DocType: Contact,Numbers,numre apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} satte pris på dit arbejde med {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Gem filtre DocType: Address,Plant,Plant apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svar alle DocType: DocType,Setup,Opsætning +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Alle poster DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-mail-adresse, hvis Google-kontakter skal synkroniseres." DocType: Email Account,Initial Sync Count,Indledende Sync Grev DocType: Workflow State,glass,glas @@ -2808,7 +2873,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Vis pop op-visning apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dette er en top-100 fælles adgangskode. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Slå pop-ups til -DocType: User,Mobile No,Mobiltelefonnr. +DocType: Contact,Mobile No,Mobiltelefonnr. DocType: Communication,Text Content,Tekst indhold DocType: Customize Form Field,Is Custom Field,Er Tilpasset Field DocType: Workflow,"If checked, all other workflows become inactive.","Hvis markeret, alle andre arbejdsgange bliver inaktive." @@ -2854,6 +2919,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Tilf apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Navnet på det nye udskrivningsformat apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Skift sidebjælke DocType: Data Migration Run,Pull Insert,Træk indsæt +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maksimal tilladte point efter multiplikation af point med multiplikatorværdien (Bemærk: For ingen grænser skal dette felt være tomt eller sæt 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Ugyldig skabelon apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Ulovlig SQL-forespørgsel apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obligatorisk: DocType: Chat Message,Mentions,Mentions @@ -2868,6 +2936,7 @@ DocType: User Permission,User Permission,Brugertilladelse apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ikke installeret apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Hent med data +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ændrede værdier for {0} {1} DocType: Workflow State,hand-right,hånd-ret DocType: Website Settings,Subdomain,Subdomæne DocType: S3 Backup Settings,Region,Region @@ -2894,10 +2963,12 @@ DocType: Braintree Settings,Public Key,Offentlig nøgle DocType: GSuite Settings,GSuite Settings,GSuite Indstillinger DocType: Address,Links,Links DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,"Bruger den e-mail-adresse, der er nævnt på denne konto som afsenderens navn for alle e-mails, der sendes ved hjælp af denne konto." +DocType: Energy Point Rule,Field To Check,"Felt, der skal kontrolleres" apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google-kontakter - kunne ikke opdatere kontakten i Google-kontakter {0}, fejlkode {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Vælg dokumenttype. apps/frappe/frappe/model/base_document.py,Value missing for,Værdi mangler for apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Tilføj ny +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Import af fremskridt DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Hvis betingelsen er opfyldt, vil brugeren blive belønnet med point. f.eks. doc.status == 'Lukket'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Den godkendte post kan ikke slettes. @@ -2934,6 +3005,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Godkend adgang til Goo apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Den side, du er på udkig efter mangler. Dette kan skyldes den flyttes, eller der er en tastefejl i linket." apps/frappe/frappe/www/404.html,Error Code: {0},Fejlkode: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrivelse for notering side, i almindelig tekst, kun et par linjer. (max 140 tegn)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} er obligatoriske felter DocType: Workflow,Allow Self Approval,Tillad selv godkendelse DocType: Event,Event Category,Hændelseskategori apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2981,8 +3053,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Flytte til DocType: Address,Preferred Billing Address,Foretruken faktureringsadresse apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Alt for mange skriver i en anmodning. Send venligst mindre anmodninger apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drev er konfigureret. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Dokumenttype {0} er blevet gentaget. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Værdier ændret DocType: Workflow State,arrow-up,arrow-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Der skal mindst være en række til {0} tabellen apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",For at konfigurere automatisk gentagelse skal du aktivere "Tillad automatisk gentagelse" fra {0}. DocType: OAuth Bearer Token,Expires In,udløber I DocType: DocField,Allow on Submit,Tillad på Godkend @@ -3069,6 +3143,7 @@ DocType: Custom Field,Options Help,Options Hjælp DocType: Footer Item,Group Label,Gruppe Label DocType: Kanban Board,Kanban Board,Kanbantavle apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google-kontakter er konfigureret. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 post eksporteres DocType: DocField,Report Hide,Rapporter Skjul apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Træ visning ikke tilgængelig for {0} DocType: DocType,Restrict To Domain,Begræns til domæne @@ -3086,6 +3161,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code DocType: Webhook,Webhook Request,Webhook Request apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Mislykket: {0} til {1}: {2} DocType: Data Migration Mapping,Mapping Type,Kortlægningstype +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Vælg Obligatorisk apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Gennemse apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Intet behov for symboler, tal eller store bogstaver." DocType: DocField,Currency,Valuta @@ -3116,11 +3192,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Brevhoved baseret på apps/frappe/frappe/utils/oauth.py,Token is missing,Token mangler apps/frappe/frappe/www/update-password.html,Set Password,Indstil adgangskode +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Importerede {0} poster blev succesrig. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,"Bemærk: Hvis du ændrer sidenavnet, slettes den tidligere URL til denne side." apps/frappe/frappe/utils/file_manager.py,Removed {0},Fjernet {0} DocType: SMS Settings,SMS Settings,SMS-indstillinger DocType: Company History,Highlight,Fremhæv DocType: Dashboard Chart,Sum,Sum +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,via dataimport DocType: OAuth Provider Settings,Force,Kraft apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Sidst synkroniseret {0} DocType: DocField,Fold,Fold @@ -3157,6 +3235,7 @@ DocType: Workflow State,Home,Hjem DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Bruger kan logge ind med e-mail-id eller brugernavn DocType: Workflow State,question-sign,spørgsmålstegn +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} er deaktiveret apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Felt "rute" er obligatorisk for Webvisninger apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Indsæt kolonne inden {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Brugeren fra dette felt vil blive belønnet point @@ -3190,6 +3269,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Varer DocType: Notification,Print Settings,Udskriftsindstillinger DocType: Page,Yes,Ja DocType: DocType,Max Attachments,Maks Vedhæftede +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Ca. {0} sekunder tilbage DocType: Calendar View,End Date Field,Slutdato Field apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale genveje DocType: Desktop Icon,Page,Side @@ -3300,6 +3380,7 @@ DocType: GSuite Settings,Allow GSuite access,Tillad GSuite adgang DocType: DocType,DESC,DESC DocType: DocType,Naming,Navngivning apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Vælg alt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Kolonne {0} apps/frappe/frappe/config/customization.py,Custom Translations,Brugerdefinerede Oversættelser apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Fremskridt apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,efter rolle @@ -3341,11 +3422,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Sen DocType: Stripe Settings,Stripe Settings,Stripe-indstillinger DocType: Data Migration Mapping,Data Migration Mapping,Data Migration Kortlægning DocType: Auto Email Report,Period,Periode +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Ca. {0} minut tilbage apps/frappe/frappe/www/login.py,Invalid Login Token,Ugyldig login Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Kassér apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 time siden DocType: Website Settings,Home Page,Hjemmeside DocType: Error Snapshot,Parent Error Snapshot,Parent Fejl Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Kortkolonner fra {0} til felter i {1} DocType: Access Log,Filters,Filtre DocType: Workflow State,share-alt,aktie-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Kø skal være en af {0} @@ -3365,6 +3448,7 @@ DocType: Calendar View,Start Date Field,Startdatafelt DocType: Role,Role Name,Rollenavn apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Skift til skrivebordet apps/frappe/frappe/config/core.py,Script or Query reports,Script eller Query rapporter +DocType: Contact Phone,Is Primary Mobile,Er primær mobil DocType: Workflow Document State,Workflow Document State,Workflow Document State apps/frappe/frappe/public/js/frappe/request.js,File too big,Filen er for stor apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-mailkonto tilføjet flere gange @@ -3410,6 +3494,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Sideindstillinger apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Gemmer ... apps/frappe/frappe/www/update-password.html,Invalid Password,Forkert adgangskode +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importeret {0} post ud af {1} succesfuldt. DocType: Contact,Purchase Master Manager,Indkøb Master manager apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Klik på låseikonet for at skifte offentlig / privat DocType: Module Def,Module Name,Modulnavn @@ -3443,6 +3528,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Indtast venligst gyldige mobiltelefonnumre apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Nogle af funktionerne fungerer muligvis ikke i din browser. Opdater din browser til den nyeste version. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Ved ikke, spørg 'hjælp'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},annulleret dette dokument {0} DocType: DocType,Comments and Communications will be associated with this linked document,Kommentarer og kommunikation vil være forbundet med dette forbundet dokument apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,fed @@ -3461,6 +3547,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Tilføj / Hå DocType: Comment,Published,Udgivet apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Tak for din e-mail DocType: DocField,Small Text,Lille tekst +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Nummer {0} kan ikke indstilles som primært for telefon såvel som mobilnummer. DocType: Workflow,Allow approval for creator of the document,Tillad godkendelse til skaberen af dokumentet apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Gem rapport DocType: Webhook,on_cancel,on_cancel @@ -3518,6 +3605,7 @@ DocType: Print Settings,PDF Settings,PDF-indstillinger DocType: Kanban Board Column,Column Name,Kolonnenavn DocType: Language,Based On,Baseret på DocType: Email Account,"For more information, click here.","Klik her for mere information." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Antal kolonner stemmer ikke overens med data apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Gør til standard apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Udførelsestid: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Ugyldig inkluder sti @@ -3607,7 +3695,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Upload {0} filer DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Rapport Starttid -apps/frappe/frappe/config/settings.py,Export Data,Eksporter data +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Eksporter data apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Vælg 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 baggrundsrapport. Angiv de relevante filtre og generer derefter et nyt. @@ -3625,7 +3713,6 @@ DocType: Report,Disable Prepared Report,Deaktiver forberedt rapport apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Bruger {0} har anmodet om sletning af data apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Ulovlig adgangs-token. Prøv igen apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Ansøgningen er blevet opdateret til en ny version, skal du opdatere denne side" -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 standardadresseskabelon fundet. Opret en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. DocType: Notification,Optional: The alert will be sent if this expression is true,"Valgfrit: Alarmen vil blive sendt, hvis dette udtryk er sand" DocType: Data Migration Plan,Plan Name,Plan navn DocType: Print Settings,Print with letterhead,Udskriv med brevhoved @@ -3666,6 +3753,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Kan ikke indstille ændre uden annuller apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Fuld side DocType: DocType,Is Child Table,Er Child Table +DocType: Data Import Beta,Template Options,Skabelonindstillinger apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} skal være en af {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} læser i øjeblikket dette dokument apps/frappe/frappe/config/core.py,Background Email Queue,E-mailkø i baggrunden @@ -3673,7 +3761,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Nulstil adgangskode DocType: Communication,Opened,Åbnet DocType: Workflow State,chevron-left,chevron-venstre DocType: Communication,Sending,Sender -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Ikke tilladt fra denne IP-adresse DocType: Website Slideshow,This goes above the slideshow.,Dette går over diasshowet. DocType: Contact,Last Name,Efternavn DocType: Event,Private,Privat @@ -3687,7 +3774,6 @@ DocType: Workflow Action,Workflow Action,Workflow Handling apps/frappe/frappe/utils/bot.py,I found these: ,Jeg fandt disse: DocType: Event,Send an email reminder in the morning,Send en e-mail påmindelse om morgenen DocType: Blog Post,Published On,Udgivet d. -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke opsat. Opret en ny e-mail-konto fra Opsætning> E-mail> E-mail-konto DocType: Contact,Gender,Køn apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,mangler Obligatorisk information: apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} vendte dine point tilbage på {1} @@ -3708,7 +3794,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,advarsel-skilt DocType: Prepared Report,Prepared Report,Udarbejdet rapport apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Føj metakoder til dine websider -DocType: Contact,Phone Nos,Telefon nr DocType: Workflow State,User,Bruger DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Vis titel i browservinduet som "Præfiks - overskrift" DocType: Payment Gateway,Gateway Settings,Gateway Indstillinger @@ -3725,6 +3810,7 @@ DocType: Data Migration Connector,Data Migration,Dataoverførsel DocType: User,API Key cannot be regenerated,API-nøglen kan ikke regenereres apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Noget gik galt DocType: System Settings,Number Format,Nummerformat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Importeret {0} post blev succesrig. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Resumé DocType: Event,Event Participants,Eventdeltagere DocType: Auto Repeat,Frequency,Frekvens @@ -3732,7 +3818,7 @@ DocType: Custom Field,Insert After,Indsæt Efter DocType: Event,Sync with Google Calendar,Synkroniser med Google Kalender DocType: Access Log,Report Name,Rapport Navn DocType: Desktop Icon,Reverse Icon Color,Reverse Icon Color -DocType: Notification,Save,Gem +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Gem apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Næste Planlagt Dato apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Tildel den, der har mindst opgaver" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,afsnit Overskrift @@ -3755,11 +3841,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max bredde for type Valuta er 100px i række {0} apps/frappe/frappe/config/website.py,Content web page.,Hjemmeside-indhold. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Tilføj en ny rolle -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opsætning> Tilpas form DocType: Google Contacts,Last Sync On,Sidste synkronisering DocType: Deleted Document,Deleted Document,slettet dokument apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ups! noget gik galt DocType: Desktop Icon,Category,Kategori +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Værdi {0} mangler for {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Tilføj kontaktpersoner apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskab apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Client side script udvidelser i Javascript @@ -3782,6 +3868,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energipunktopdatering apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Vælg en anden betalingsmetode. PayPal understøtter ikke transaktioner i sedler '{0}' DocType: Chat Message,Room Type,Værelses type +DocType: Data Import Beta,Import Log Preview,Eksempel på importlog apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Søgefelt {0} er ikke gyldig apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,uploadet fil DocType: Workflow State,ok-circle,ok-cirkel @@ -3848,6 +3935,7 @@ DocType: DocType,Allow Auto Repeat,Tillad automatisk gentagelse apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ingen værdier at vise DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-mail-skabelon +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} posten er vellykket. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Bruger {0} har ikke adgang til doktype via rolletilladelse til dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Både brugernavn og adgangskode kræves apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Venligst Opdater for at få den nyeste dokument. diff --git a/frappe/translations/de.csv b/frappe/translations/de.csv index 0324d09645..e6c16f0f97 100644 --- a/frappe/translations/de.csv +++ b/frappe/translations/de.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Neue {} Versionen für die folgenden Apps sind verfügbar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Bitte wählen Sie ein Feld Betrag. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Importdatei wird geladen ... DocType: Assignment Rule,Last User,Letzter Benutzer apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",Eine neue Aufgabe {0} wurde Ihnen von {1} zugewiesen. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sitzungsstandards gespeichert +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Datei neu laden DocType: Email Queue,Email Queue records.,E-Mail-Queue Aufzeichnungen. DocType: Post,Post,Absenden DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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,Diese Rolle aktualisiert Benutzerberechtigungen für einen Benutzer apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},{0} umbenennen DocType: Workflow State,zoom-out,verkleinern +DocType: Data Import Beta,Import Options,Importoptionen apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"{0} kann nicht geöffnet werden, wenn die zugehörige Instanz geöffnet ist" apps/frappe/frappe/model/document.py,Table {0} cannot be empty,Tabelle {0} darf nicht leer sein DocType: SMS Parameter,Parameter,Parameter @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Monatlich DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Eingehend aktivieren apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Gefahr -apps/frappe/frappe/www/login.py,Email Address,E-Mail-Addresse +DocType: Address,Email Address,E-Mail-Addresse DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Ungelesene Benachrichtigung gesendet apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export nicht erlaubt. Rolle {0} wird gebraucht zum exportieren. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktalternativen wie „Vertriebsanfrage"", ""Support-Anfrage“ usw., jede in einer neuen Zeile oder durch Kommas getrennt." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Füge einen Tag hinzu ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Porträt -DocType: Data Migration Run,Insert,Einfügen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Einfügen apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google Drive-Zugang zulassen apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} auswählen apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Bitte geben Sie die Basis-URL ein @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Vor 1 Minu 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.",Zusätzlich zum System-Manager können Rollen mit der Erlaubnis Benutzer anzulegen Berechtigungen für andere Nutzer für diesen Dokumententyp setzen. apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Thema konfigurieren DocType: Company History,Company History,Unternehmensgeschichte -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Zurücksetzen +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Zurücksetzen DocType: Workflow State,volume-up,Lautstärke erhöhen apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,"Webhooks, die API-Anfragen in Web-Apps aufrufen" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Traceback anzeigen DocType: DocType,Default Print Format,Standarddruckformat DocType: Workflow State,Tags,Schlagworte apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Kein: Ende des Workflows apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-eindeutige Werte gibt" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumententypen +DocType: Global Search Settings,Document Types,Dokumententypen DocType: Address,Jammu and Kashmir,Jammu und Kaschmir DocType: Workflow,Workflow State Field,Workflow-Zustandsfeld -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Benutzer DocType: Language,Guest,Gast DocType: DocType,Title Field,Bezeichnungs-Feld DocType: Error Log,Error Log,Fehlerprotokoll @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Wiederholt wie "abcabcabc" sind nur etwas schwieriger zu erraten als "abc" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Gibt es die Vermutung, dass der Vorgang nicht genehmigt ist, bitte das Administratorpasswort ändern." +DocType: Data Import Beta,Data Import Beta,Datenimport Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} ist zwingend erforderlich DocType: Assignment Rule,Assignment Rules,Zuweisungsregeln DocType: Workflow State,eject,Auswerfen @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Workflow-Aktionsname apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kann nicht zusammengeführt werden DocType: Web Form Field,Fieldtype,Feldtyp apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Keine Zip-Datei +DocType: Global Search DocType,Global Search DocType,Globale Suche DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                      New {{ doc.doctype }} #{{ doc.name }}
                      ","Um dynamisches Thema hinzuzufügen, benutze Jinja-Tags wie
                       New {{ doc.doctype }} #{{ doc.name }} 
                      " @@ -184,6 +189,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Dokumentenereignis apps/frappe/frappe/public/js/frappe/utils/user.js,You,Benutzer DocType: Braintree Settings,Braintree Settings,Braintree Einstellungen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} Datensätze wurden erfolgreich erstellt. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filter speichern DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Kann {0} nicht löschen @@ -210,6 +216,7 @@ DocType: SMS Settings,Enter url parameter for message,URL-Parameter für Nachric apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Für dieses Dokument erstellte automatische Wiederholung apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Bericht in Ihrem Browser anzeigen apps/frappe/frappe/config/desk.py,Event and other calendars.,Veranstaltungs- und andere Kalender +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 Zeile obligatorisch) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,"Alle Felder müssen ausgefüllt werden, um den Kommentar abzugeben." DocType: Custom Script,Adds a client custom script to a DocType,Fügt einem DocType ein benutzerdefiniertes Client-Skript hinzu DocType: Print Settings,Printer Name,Druckername @@ -252,7 +259,6 @@ DocType: Bulk Update,Bulk Update,Massen-Update DocType: Workflow State,chevron-up,Winkel nach oben DocType: DocType,Allow Guest to View,Anzeige für Gast erlauben apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} sollte nicht mit {1} identisch sein -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).","Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,{0} Elemente dauerhaft löschen? apps/frappe/frappe/utils/oauth.py,Not Allowed,Nicht Erlaubt @@ -268,6 +274,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,anzeigen DocType: Email Group,Total Subscribers,Gesamtanzahl der Abonnenten apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Zeilennummer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Wenn eine Rolle keinen Zugriff auf Ebene 0 hat, dann sind höhere Ebenen bedeutungslos ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Speichern als DocType: Comment,Seen,gelesen @@ -307,6 +314,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,Das Drucken von Entwürfen ist nicht erlaubt. apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Auf Standardeinstellungen zurücksetzen DocType: Workflow,Transition Rules,Übergangsbestimmungen +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Es werden nur die ersten {0} Zeilen in der Vorschau angezeigt apps/frappe/frappe/core/doctype/report/report.js,Example:,Beispiel: DocType: Workflow,Defines workflow states and rules for a document.,Definiert Workflow-Zustände und Regeln für ein Dokument. DocType: Workflow State,Filter,Filter @@ -329,6 +337,7 @@ DocType: Activity Log,Closed,Geschlossen DocType: Blog Settings,Blog Title,Blog-Name apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standardrollen können nicht deaktiviert werden apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Chat-Typ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Spalten zuordnen DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"Kann in ""sortieren nach"" keine Unterabfrage verwenden." @@ -364,6 +373,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Spalte einfügen apps/frappe/frappe/www/contact.html,Your email address,Ihre E-Mail-Adresse DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} Datensätze von {1} wurden erfolgreich aktualisiert. DocType: Notification,Send Alert On,Alarm senden bei DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Bezeichnung anpassen, Druck verbergen, Standard usw." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Dateien werden entpackt ... @@ -395,6 +405,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Benutzer {0} kann nicht gelöscht werden DocType: System Settings,Currency Precision,Währungsgenauigkeit apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Eine andere Transaktion blockiert die aktuelle. Bitte versuchen Sie es in ein paar Sekunden noch einmal. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Filter löschen DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Die Anhänge konnten nicht korrekt mit dem neuen Dokument verknüpft werden DocType: Chat Message Attachment,Attachment,Anhang @@ -420,6 +431,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,E-Mails kön apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - Ereignis {0} in Google Kalender konnte nicht aktualisiert werden, Fehlercode {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Suchen oder Befehl eingeben DocType: Activity Log,Timeline Name,Timeline-Name +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Es kann nur eine {0} als primäre festgelegt werden. DocType: Email Account,e.g. smtp.gmail.com,z. B. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Neue Regel hinzufügen DocType: Contact,Sales Master Manager,Hauptvertriebsleiter @@ -436,7 +448,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP Middle Name-Feld apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} von {1} wird importiert DocType: GCalendar Account,Allow GCalendar Access,Erlaube GCalendar-Zugriff -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} ist ein Pflichtfeld +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ist ein Pflichtfeld apps/frappe/frappe/templates/includes/login/login.js,Login token required,Login-Token erforderlich apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Monatsrang: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Wählen Sie mehrere Listenelemente aus @@ -466,6 +478,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Verbindung kann nicht he apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Ein Wort allein ist leicht zu erraten. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automatische Zuweisung fehlgeschlagen: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Suche... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Bitte Unternehmen auswählen apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Zusammenführung ist nur möglich zwischen Gruppen oder Knoten apps/frappe/frappe/utils/file_manager.py,Added {0},{0} hinzugefügt apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Keine Bilder gefunden. Suchen Sie etwas Neues @@ -478,7 +491,6 @@ DocType: Google Settings,OAuth Client ID,OAuth-Client-ID DocType: Auto Repeat,Subject,Betreff apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Zurück zum Schreibtisch DocType: Web Form,Amount Based On Field,"Menge, bezogen auf Feld" -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Richten Sie das Standard-E-Mail-Konto über Setup> E-Mail> E-Mail-Konto ein apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Benutzer für Freigabe zwingend erforderlich DocType: DocField,Hidden,Ausgeblendet DocType: Web Form,Allow Incomplete Forms,Unvollständige Formulare zulassen @@ -515,6 +527,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} und {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Eine Konversation beginnen. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Entwürfe beim Drucken in der Kopfzeile kennzeichnen apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Fehler in der Benachrichtigung: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,Vor> {0} Jahr (en) DocType: Data Migration Run,Current Mapping Start,Aktueller Mapping-Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-Mail wurde als Spam markiert DocType: Comment,Website Manager,Webseiten-Administrator @@ -552,6 +565,7 @@ DocType: Workflow State,barcode,Barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Die Verwendung von Teilabfragen oder Funktionen ist eingeschränkt. apps/frappe/frappe/config/customization.py,Add your own translations,Eigene Übersetzungen hinzufügen DocType: Country,Country Name,Ländername +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Leere Vorlage DocType: About Us Team Member,About Us Team Member,Informationen über die Teammitglieder apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Berechtigungen werden für Rollen und Dokumenttypen (sogenannte DocTypes ) eingerichtet, indem Rechte wie ""Lesen"", ""Schreiben"", ""Erstellen"", ""Löschen"", ""Übertragen"", ""Stornieren"", ""Ändern"", ""Bericht"", ""Import"", ""Export"", ""Drucken"", ""E-Mail"" und ""Benutzerberechtigungen setzen"" gesetzt werden." DocType: Event,Wednesday,Mittwoch @@ -563,6 +577,7 @@ DocType: Website Settings,Website Theme Image Link,Webseite-Thema-Bildverknüpfu DocType: Web Form,Sidebar Items,Elemente der Seitenleiste DocType: Web Form,Show as Grid,Als Gitter anzeigen apps/frappe/frappe/installer.py,App {0} already installed,App {0} bereits installiert +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Benutzer, die dem Referenzdokument zugewiesen sind, erhalten Punkte." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Keine Vorschau DocType: Workflow State,exclamation-sign,Ausrufezeichen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Entpackte {0} Dateien @@ -598,6 +613,7 @@ DocType: Notification,Days Before,Tage vor apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Tägliche Ereignisse sollten am selben Tag enden. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Bearbeiten... DocType: Workflow State,volume-down,Lautstärke verringern +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Der Zugriff von dieser IP-Adresse aus ist nicht zulässig apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,Benachrichtigung senden an DocType: DocField,Collapsible,Faltbar @@ -653,6 +669,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Entwickler apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Erstellt apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} in Zeile {1} kann nicht sowohl die URL als auch Unterpunkte haben +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Für die folgenden Tabellen sollte mindestens eine Zeile vorhanden sein: {0} DocType: Print Format,Default Print Language,Standarddrucksprache apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Vorfahren von apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kann nicht gelöscht werden @@ -695,6 +712,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Gastgeber +DocType: Data Import Beta,Import File,Datei importieren apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Spalte {0} bereits vorhanden sind . DocType: ToDo,High,Hoch apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Neues Event @@ -723,8 +741,6 @@ DocType: User,Send Notifications for Email threads,Benachrichtigungen für E-Mai apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nicht im Entwicklungsmodus apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Dateisicherung ist bereit -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maximal zulässige Punkte nach Multiplikation der Punkte mit dem Multiplikatorwert (Hinweis: Für unlimitierten Wert 0) DocType: DocField,In Global Search,In globaler Suche DocType: System Settings,Brute Force Security,Brute-Force-Sicherheit DocType: Workflow State,indent-left,Einzug links @@ -766,6 +782,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Benutzer '{0}' hat bereits die Rolle '{1}' DocType: System Settings,Two Factor Authentication method,Zwei Faktor-Authentifizierungsmethode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Legen Sie zuerst den Namen fest und speichern Sie den Datensatz. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Datensätze apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Freigegeben für {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Abmelden DocType: View Log,Reference Name,Referenzname @@ -814,6 +831,8 @@ DocType: Data Migration Connector,Data Migration Connector,Datenmigrations-Conne apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} zurückgesetzt {1} DocType: Email Account,Track Email Status,E-Mail-Status verfolgen DocType: Note,Notify Users On Every Login,Benachrichtige Benutzer bei jeder Anmeldung +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Die Spalte {0} kann keinem Feld zugeordnet werden +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} Datensätze wurden erfolgreich aktualisiert. DocType: PayPal Settings,API Password,API Passwort apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Python-Modul eingeben oder Verbindungstyp auswählen apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Feldname für benutzerdefiniertes Feld nicht gesetzt @@ -842,9 +861,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,"Benutzerberechtigungen werden verwendet, um Benutzer auf bestimmte Datensätze zu beschränken." DocType: Notification,Value Changed,Wert geändert apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Doppelter Namen {0} {1} -DocType: Email Queue,Retry,Wiederholen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Wiederholen +DocType: Contact Phone,Number,Nummer DocType: Web Form Field,Web Form Field,Web-Formularfeld apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Sie haben eine neue Nachricht von: +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).","Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML bearbeiten apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Bitte geben Sie die Weiterleitungs-URL ein apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -869,7 +890,7 @@ DocType: Notification,View Properties (via Customize Form),Eigenschaften anzeige apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Klicken Sie auf eine Datei, um sie auszuwählen." DocType: Note Seen By,Note Seen By,Hinweis gelesen durch apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,"Versuchen Sie, eine längere Tastaturmuster mit mehr Windungen zu verwenden" -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Bestenliste +,LeaderBoard,Bestenliste DocType: DocType,Default Sort Order,Standard-Sortierreihenfolge DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-Mail Antwort Hilfe @@ -904,6 +925,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,E-Mail verfassen apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Zustände für Workflows (z. B. Entwurf, Genehmigt, Gelöscht)" DocType: Print Settings,Allow Print for Draft,Drucken von Entwürfen erlauben +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.","Fehler beim Verbinden mit der QZ-Tray-Anwendung ...

                      Sie müssen die QZ Tray-Anwendung installiert und ausgeführt haben, um die Raw Print-Funktion verwenden zu können.

                      Klicken Sie hier, um QZ Tray herunterzuladen und zu installieren .
                      Klicken Sie hier, um mehr über Raw Printing zu erfahren ." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Anzahl festlegen apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,"Buchen Sie dieses Dokument, um zu bestätigen" DocType: Contact,Unsubscribed,Abgemeldet @@ -935,6 +957,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organisationseinheit für B ,Transaction Log Report,Transaktionsprotokollbericht DocType: Custom DocPerm,Custom DocPerm,Benutzerdefinierte DocPerm DocType: Newsletter,Send Unsubscribe Link,Abmelde-Link senden +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Es gibt einige verknüpfte Datensätze, die erstellt werden müssen, bevor wir Ihre Datei importieren können. Möchten Sie die folgenden fehlenden Datensätze automatisch erstellen?" DocType: Access Log,Method,Methode DocType: Report,Script Report,Skriptbericht DocType: OAuth Authorization Code,Scopes,Scopes @@ -975,6 +998,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Erfolgreich hochgeladen apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Sie sind mit dem Internet verbunden. DocType: Social Login Key,Enable Social Login,Aktivieren Sie die soziale Anmeldung +DocType: Data Import Beta,Warnings,Warnungen DocType: Communication,Event,Ereignis apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Am {0}, schrieb {1}:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Standardfeld kann nicht gelöscht werden. Sie können es aber verbergen, wenn Sie wollen." @@ -1030,6 +1054,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Unterhalb DocType: Kanban Board Column,Blue,Blau apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Alle Anpassungen werden entfernt. Bitte bestätigen. DocType: Page,Page HTML,HTML-Seite +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Exportieren Sie fehlerhafte Zeilen apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Der Gruppenname darf nicht leer sein. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,"Weitere Knoten können nur unter Knoten vom Typ ""Gruppe"" erstellt werden" DocType: SMS Parameter,Header,Kopfzeile @@ -1068,13 +1093,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Zeitüberschreitung der Anfrage apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Aktivieren / Deaktivieren von Domänen DocType: Role Permission for Page and Report,Allow Roles,Rollen erlauben +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} Datensätze von {1} wurden erfolgreich importiert. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Einfacher Python-Ausdruck, Beispiel: Status in ("Ungültig")" DocType: User,Last Active,Zuletzt aktiv DocType: Email Account,SMTP Settings for outgoing emails,SMTP-Einstellungen für ausgehende E-Mails apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,wähle ein DocType: Data Export,Filter List,Liste filtern DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Ihr Passwort wurde aktualisiert. Hier ist Ihr neues Passwort DocType: Email Account,Auto Reply Message,Automatische Rückantwort DocType: Data Migration Mapping,Condition,Zustand apps/frappe/frappe/utils/data.py,{0} hours ago,vor {0} Stunden @@ -1083,7 +1108,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Benutzer-ID DocType: Communication,Sent,Gesendet DocType: Address,Kerala,Kerala -DocType: File,Lft,lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Verwaltung DocType: User,Simultaneous Sessions,Gleichzeitige Sessions DocType: Social Login Key,Client Credentials,Kunden-Zugangsdaten @@ -1115,7 +1139,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Aktuali apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Vorlage DocType: DocType,User Cannot Create,Kann nicht von einem Benutzer erstellt werden apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Erfolgreich gemacht -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Ordner {0} existiert nicht apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox Zugriff genehmigt! DocType: Customize Form,Enter Form Type,Formulartyp eingeben DocType: Google Drive,Authorize Google Drive Access,Autorisieren Sie Google Drive Access @@ -1123,7 +1146,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Keine Datensätze markiert. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Feld entfernen apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Sie sind nicht mit dem Internet verbunden. Versuchen Sie es später erneut. -DocType: User,Send Password Update Notification,Mitteilung über Passwort-Aktualisierung senden apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType zulassen. Achtung!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Benutzerdefinierte Formate für Druck, E-Mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summe von {0} @@ -1208,6 +1230,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Falscher Bestätigun apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Die Integration von Google-Kontakten ist deaktiviert. DocType: Assignment Rule,Description,Beschreibung DocType: Print Settings,Repeat Header and Footer in PDF,Wiederholen Sie Kopf- und Fußzeile in PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Fehler DocType: Address Template,Is Default,Ist Standard DocType: Data Migration Connector,Connector Type,Steckertyp apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Spaltenname darf nicht leer sein @@ -1220,6 +1243,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Gehen Sie zur Seite DocType: LDAP Settings,Password for Base DN,Kennwort für Basis-DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabellenfeld apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Spalten basierend auf +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","{0} von {1}, {2} importieren" DocType: Workflow State,move,Bewegen apps/frappe/frappe/model/document.py,Action Failed,Aktion fehlgeschlagen apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Für Benutzer @@ -1273,6 +1297,7 @@ DocType: Print Settings,Enable Raw Printing,Aktivieren Sie den RAW-Druck DocType: Website Route Redirect,Source,Quelle apps/frappe/frappe/templates/includes/list/filters.html,clear,bereinigen apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Fertig +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Benutzer DocType: Prepared Report,Filter Values,Werte filtern DocType: Communication,User Tags,Schlagworte zum Benutzer DocType: Data Migration Run,Fail,Fehlschlagen @@ -1328,6 +1353,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Folg ,Activity,Aktivität DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Hilfe: Um eine Verknüpfung mit einem anderen Datensatz im System zu erstellen, bitte ""#Formular/Anmerkung/[Anmerkungsname]"" als Verknüpfungs-URL verwenden (kein ""http://""!)." DocType: User Permission,Allow,Zulassen +DocType: Data Import Beta,Update Existing Records,Bestehende Datensätze aktualisieren apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Wiederholte Worte und Buchstaben sollten vermieden werden DocType: Energy Point Rule,Energy Point Rule,Energiepunkt-Regel DocType: Communication,Delayed,Verzögert @@ -1340,9 +1366,7 @@ DocType: Milestone,Track Field,Track Field DocType: Notification,Set Property After Alert,Setzen Sie die Eigenschaft nach Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Felder zu Formularen hinzufügen apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Sieht aus wie etwas ist falsch mit dieser Website Paypal-Konfiguration. -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.","Fehler beim Verbinden mit der QZ-Tray-Anwendung ...

                      Sie müssen die QZ Tray-Anwendung installiert und ausgeführt haben, um die Raw Print-Funktion verwenden zu können.

                      Klicken Sie hier, um QZ Tray herunterzuladen und zu installieren .
                      Klicken Sie hier, um mehr über Raw Printing zu erfahren ." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Bewertung hinzufügen -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Schriftgröße (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Nur Standard-DocTypes dürfen über Formular anpassen angepasst werden. DocType: Email Account,Sendgrid,Sendgrid @@ -1379,6 +1403,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Entschuldigung! Sie können automatisch erstellte Kommentare nicht löschen DocType: Google Settings,Used For Google Maps Integration.,Wird für die Google Maps-Integration verwendet. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referenz-DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Es werden keine Datensätze exportiert DocType: User,System User,Systembenutzer DocType: Report,Is Standard,Ist Standard DocType: Desktop Icon,_report,_Bericht @@ -1393,6 +1418,7 @@ DocType: Workflow State,minus-sign,Minuszeichen apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nicht gefunden apps/frappe/frappe/www/printview.py,No {0} permission,Keine {0} Berechtigung apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportieren von benutzerdefinierten Berechtigungen +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Keine Elemente gefunden. DocType: Data Export,Fields Multicheck,Felder Multicheck DocType: Activity Log,Login,Anmelden DocType: Web Form,Payments,Zahlungen @@ -1452,8 +1478,9 @@ DocType: Address,Postal,Post DocType: Email Account,Default Incoming,Standard-Eingang DocType: Workflow State,repeat,Wiederholen DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Wert muss einer von {0} sein DocType: Role,"If disabled, this role will be removed from all users.","Falls diese Option deaktiviert ist, wird diese Rolle von allen Benutzern entfernt." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Gehen Sie zur Liste {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gehen Sie zur Liste {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Hilfe zur Suche DocType: Milestone,Milestone Tracker,Meilenstein-Tracker apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrierte aber deaktiviert @@ -1467,6 +1494,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Lokaler Feldname DocType: DocType,Track Changes,Änderungen verfolgen DocType: Workflow State,Check,Überprüfen DocType: Chat Profile,Offline,Offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} erfolgreich importiert DocType: User,API Key,API-Schlüssel DocType: Email Account,Send unsubscribe message in email,Abmelde-Link in E-Mail-Nachrichten senden apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Titel bearbeiten @@ -1493,11 +1521,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print DocType: Bulk Update,Field,Feld DocType: Communication,Received,Empfangen DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger auf gültige Methoden wie "before_insert", "after_update" usw. (hängt von der DocType ausgewählt)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},geänderter Wert von {0} {1} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"System-Manager Rolle zu diesem Benutzer hinzugefügt, da mindestens ein System-Manager vorhanden sein muss" DocType: Chat Message,URLs,URLs DocType: Data Migration Run,Total Pages,Gesamtzahl der Seiten apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} hat bereits einen Standardwert für {1} zugewiesen. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                      No results found for '

                      ,

                      Keine Ergebnisse gefunden für '

                      DocType: DocField,Attach Image,Bild anhängen DocType: Workflow State,list-alt,Liste-Alt apps/frappe/frappe/www/update-password.html,Password Updated,Passwort wurde aktualisiert @@ -1518,8 +1546,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nicht zulässig für 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 ist kein gültiges Berichtsformat. Das Berichtsformat sollte eines der folgenden sein: % s \ DocType: Chat Message,Chat,Unterhaltung +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Benutzerberechtigungen DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-Gruppenzuordnung DocType: Dashboard Chart,Chart Options,Diagrammoptionen +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Untitled Column apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} von {1} bis {2} in Zeile # {3} DocType: Communication,Expired,Verfallen apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Dein Token scheint ungültig zu sein! @@ -1529,6 +1559,7 @@ DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Maximale Größe des Anhangs (in MB) apps/frappe/frappe/www/login.html,Have an account? Login,Sie haben bereits ein Konto? Anmeldung DocType: Workflow State,arrow-down,Pfeil-nach-unten +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Zeile {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Benutzer darf {0}: {1} nicht löschen apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} von {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Zuletzt aktualisiert am @@ -1545,6 +1576,7 @@ DocType: Custom Role,Custom Role,benutzerdefinierte Rolle apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Startseite/Test-Ordner 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Passwort eingeben DocType: Dropbox Settings,Dropbox Access Secret,Dropbox-Zugangsdaten +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Verpflichtend) DocType: Social Login Key,Social Login Provider,Social-Login-Anbieter apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Weiteren Kommentar hinzufügen apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Keine Daten in der Datei gefunden. Bitte fügen Sie die neue Datei erneut mit Daten hinzu. @@ -1619,6 +1651,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Dashboard apps/frappe/frappe/desk/form/assign_to.py,New Message,Neue Nachricht DocType: File,Preview HTML,HTML-Vorschau DocType: Desktop Icon,query-report,Abfrage-Bericht +DocType: Data Import Beta,Template Warnings,Vorlagenwarnungen apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filter gespeichert DocType: DocField,Percent,Prozent apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Bitte Filter einstellen @@ -1640,6 +1673,7 @@ DocType: Custom Field,Custom,Benutzerdefiniert DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Wenn diese Option aktiviert ist, werden Benutzer, die sich von der eingeschränkten IP-Adresse aus anmelden, nicht zur Zwei-Faktor-Authentifizierung aufgefordert" DocType: Auto Repeat,Get Contacts,Kontakte erhalten apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Beiträge abgelegt unter {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Spalte ohne Titel überspringen DocType: Notification,Send alert if date matches this field's value,"Benachrichtigung senden, wenn das Datum dem Wert dieses Feldes entspricht" DocType: Workflow,Transitions,Übergänge apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} bis {2} @@ -1663,6 +1697,7 @@ DocType: Workflow State,step-backward,Schritt zurück apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Bitte Dropbox-Zugriffsdaten in den Einstellungen der Seite setzen apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,"Löschen Sie diesen Datensatz, um das Senden an diese E-Mail Adresse zu ermöglichen" +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Wenn nicht standardmäßiger Port (z. B. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Verknüpfungen anpassen apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Für neue Datensätze sind nur Pflichtfelder zwingend erforderlich. Nicht zwingend erforderliche Spalten können gelöscht werden, falls gewünscht." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Weitere Aktivitäten anzeigen @@ -1770,7 +1805,9 @@ DocType: Note,Seen By Table,Gesehen durch Tabelle apps/frappe/frappe/www/third_party_apps.html,Logged in,Angemeldet apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standard-Versand und Posteingang DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} Datensatz von {1} wurde erfolgreich aktualisiert. DocType: Google Drive,Send Email for Successful Backup,Senden Sie eine E-Mail für eine erfolgreiche Sicherung +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Scheduler ist inaktiv. Daten können nicht importiert werden. DocType: Print Settings,Letter,Brief DocType: DocType,"Naming Options:
                      1. field:[fieldname] - By Field
                      2. naming_series: - By Naming Series (field called naming_series must be present
                      3. Prompt - Prompt user for a name
                      4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                      5. @@ -1784,6 +1821,7 @@ DocType: GCalendar Account,Next Sync Token,Nächstes Sync-Token DocType: Energy Point Settings,Energy Point Settings,Energiepunkteinstellungen DocType: Async Task,Succeeded,Erfolgreich apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Für {0} benötigte Pflichtfelder: +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                        No results found for '

                        ,

                        Keine Ergebnisse gefunden für '

                        apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Berechtigungen für {0} zurücksetzen? apps/frappe/frappe/config/desktop.py,Users and Permissions,Benutzer und Berechtigungen DocType: S3 Backup Settings,S3 Backup Settings,S3-Sicherungseinstellungen @@ -1856,6 +1894,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,in DocType: Notification,Value Change,Wertänderung DocType: Google Contacts,Authorize Google Contacts Access,Autorisieren Sie den Zugriff auf Google Kontakte apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Nur numerische Felder aus Bericht anzeigen +DocType: Data Import Beta,Import Type,Importtyp DocType: Access Log,HTML Page,HTML-Seite DocType: Address,Subsidiary,Tochtergesellschaft apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,"Es wird versucht, eine Verbindung zum QZ-Fach herzustellen ..." @@ -1866,7 +1905,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ungültige DocType: Custom DocPerm,Write,Schreiben apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Nur der Administrator darf Abfrage-/Skriptberichte erstellen apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aktualisierung läuft -DocType: File,Preview,Vorschau +DocType: Data Import Beta,Preview,Vorschau apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Das Feld "Wert" ist obligatorisch. Bitte geben Sie Wert aktualisiert werden DocType: Customize Form,Use this fieldname to generate title,"Verwenden Sie diesen Feldnamen, um den Titel zu erzeugen" apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import von E-Mails aus @@ -1949,6 +1988,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser wird n DocType: Social Login Key,Client URLs,Kunden-URLs apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Einige Informationen fehlen apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} erfolgreich erstellt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","{0} von {1}, {2} überspringen" DocType: Custom DocPerm,Cancel,Abbrechen apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Massenlöschung apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Datei {0} ist nicht vorhanden @@ -1976,7 +2016,6 @@ DocType: GCalendar Account,Session Token,Sitzungstoken DocType: Currency,Symbol,Symbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Zeile #{0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Bestätigen Sie das Löschen der Daten -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Neues Passwort per E-Mail versendet apps/frappe/frappe/auth.py,Login not allowed at this time,Anmelden zur Zeit nicht erlaubt DocType: Data Migration Run,Current Mapping Action,Aktuelle Abbildungsaktion DocType: Dashboard Chart Source,Source Name,Quellenname @@ -1989,6 +2028,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Glob apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,gefolgt von DocType: LDAP Settings,LDAP Email Field,LDAP-Feld E-Mail apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Liste +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exportieren Sie {0} Datensätze apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Bereits in der ToDo-Liste des Benutzers DocType: User Email,Enable Outgoing,Ausgehend aktivieren DocType: Address,Fax,Telefax @@ -2046,8 +2086,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Dokumente drucken apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Zum Feld springen DocType: Contact Us Settings,Forward To Email Address,Weiterleiten an E-Mail-Adresse +DocType: Contact Phone,Is Primary Phone,Ist das Haupttelefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Senden Sie eine E-Mail an {0}, um sie hier zu verlinken." DocType: Auto Email Report,Weekdays,Wochentage +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} Datensätze werden exportiert apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Bezeichnungsfeld muss ein gültiger Feldname sein DocType: Post Comment,Post Comment,Kommentar posten apps/frappe/frappe/config/core.py,Documents,Dokumente @@ -2065,7 +2107,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","Dieses Feld wird nur angezeigt, wenn der Feldname hier definierten Wert hat oder die Regeln erfüllt sind (Beispiele): myfield eval: doc.myfield == 'My Value' eval: doc.age> 18" DocType: Social Login Key,Office 365,Büro 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Heute +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.,Keine Standardadressvorlage gefunden. Erstellen Sie unter Setup> Drucken und Markieren> Adressvorlage eine neue. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Sobald dies eingestellt wurde, haben die Benutzer nur Zugriff auf Dokumente (z. B. Blog-Eintrag), bei denen eine Verknüpfung existiert (z. B. Blogger)." +DocType: Data Import Beta,Submit After Import,Nach dem Import einreichen DocType: Error Log,Log of Scheduler Errors,Protokoll von Fehlermeldungen des Terminplaners DocType: User,Bio,Lebenslauf DocType: OAuth Client,App Client Secret,App Client Geheimnis @@ -2084,10 +2128,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Kunden-Anmeldung auf der Anmeldeseite deaktivieren apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Zuständig / Inhaber DocType: Workflow State,arrow-left,Pfeil-nach-links +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1 Datensatz exportieren DocType: Workflow State,fullscreen,Vollbild DocType: Chat Token,Chat Token,Chat-Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Diagramm erstellen apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Nicht importieren DocType: Web Page,Center,Zentrieren DocType: Notification,Value To Be Set,"Wert, der gesetzt werden soll" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Bearbeiten {0} @@ -2107,6 +2153,7 @@ DocType: Print Format,Show Section Headings,Zeige Abschnittsüberschriften DocType: Bulk Update,Limit,Grenze apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},"Wir haben eine Anfrage zum Löschen von {0} Daten erhalten, die im Zusammenhang stehen mit: {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Fügen Sie einen neuen Abschnitt hinzu +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Gefilterte Datensätze apps/frappe/frappe/www/printview.py,No template found at path: {0},Keine Vorlage im Pfad: {0} gefunden apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Kein E-Mail-Konto DocType: Comment,Cancelled,Abgebrochen @@ -2193,10 +2240,13 @@ DocType: Communication Link,Communication Link,Kommunikationsverbindung apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Ungültige Ausgabeformat apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Kann nicht {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Diese Regel anwenden, wenn der Nutzer gleich dem Besitzer ist" +DocType: Global Search Settings,Global Search Settings,Globale Sucheinstellungen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Wird Ihre Login-ID sein +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Zurücksetzen der Dokumenttypen der globalen Suche. ,Lead Conversion Time,Lead-Umwandlungszeit apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Bericht erstellen DocType: Note,Notify users with a popup when they log in,"Benachrichtigen Sie die Benutzer mit einem Pop-up, wenn sie sich in" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Kernmodule {0} können in der globalen Suche nicht durchsucht werden. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Chat öffnen apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} existiert nicht. Bitte ein neues Ziel zum Zusammenführen wählen DocType: Data Migration Connector,Python Module,Python-Modul @@ -2213,8 +2263,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Schließen apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,DocStatus kann nicht von 0 auf 2 geändert werden DocType: File,Attached To Field,An das Feld angehängt -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Benutzerberechtigungen -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Aktualisieren +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Aktualisieren DocType: Transaction Log,Transaction Hash,Transaktions-Hash DocType: Error Snapshot,Snapshot View,Schnappschuss-Ansicht apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Bitte den Newsletter vor dem Senden speichern @@ -2230,6 +2279,7 @@ DocType: Data Import,In Progress,In Bearbeitung apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Queued für das Backup. Es kann ein paar Minuten bis zu einer Stunde dauern. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Benutzerberechtigung ist bereits vorhanden +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Spalte {0} dem Feld {1} zuordnen apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Ansicht {0} DocType: User,Hourly,Stündlich apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrieren OAuth-Client App @@ -2242,7 +2292,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS-Gateway-URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kann nicht ""{2}"" sein . Es sollte aus ""{3}"" sein." apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},erhalten von {0} über die automatische Regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} oder {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Passwort-Aktualisierung DocType: Workflow State,trash,Ausschuss DocType: System Settings,Older backups will be automatically deleted,Ältere Backups werden automatisch gelöscht apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ungültige Zugriffsschlüssel-ID oder geheimer Zugriffsschlüssel. @@ -2270,6 +2319,7 @@ DocType: Address,Preferred Shipping Address,Bevorzugte Lieferadresse apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Mit Briefkopf apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} erstellte diese {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Nicht zulässig für {0}: {1} in Zeile {2}. Eingeschränktes Feld: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto über Setup> E-Mail> E-Mail-Konto DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Wenn dies aktiviert ist, werden Zeilen mit gültigen Daten importiert, und ungültige Zeilen werden in eine neue Datei ausgegeben, die Sie später importieren können." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Das Dokument kann nur von Benutzern der Rolle bearbeitet werden @@ -2296,6 +2346,7 @@ DocType: Custom Field,Is Mandatory Field,Ist Pflichtfeld DocType: User,Website User,Webseitenbenutzer apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,"Einige Spalten werden beim Drucken in PDF möglicherweise abgeschnitten. Versuchen Sie, die Anzahl der Spalten unter 10 zu halten." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,ist nicht gleich +DocType: Data Import Beta,Don't Send Emails,Senden Sie keine E-Mails DocType: Integration Request,Integration Request Service,Integration Anfrage Service DocType: Access Log,Access Log,Zugriffsprotokoll DocType: Website Script,Script to attach to all web pages.,"Skript, das allen Webseiten hinzugefügt wird." @@ -2335,6 +2386,7 @@ DocType: Contact,Passive,Passiv DocType: Auto Repeat,Accounts Manager,Kontenmanager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Zuweisung für {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Ihre Zahlung wird storniert. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Richten Sie das Standard-E-Mail-Konto über Setup> E-Mail> E-Mail-Konto ein apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Dateityp auswählen apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Alle ansehen DocType: Help Article,Knowledge Base Editor,Wissensdatenbank Bearbeiter/-in @@ -2367,6 +2419,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Daten apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumentenstatus apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Genehmigung erforderlich +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Die folgenden Datensätze müssen erstellt werden, bevor wir Ihre Datei importieren können." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth-Autorisierungscode apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Import nicht erlaubt DocType: Deleted Document,Deleted DocType,Gelöschtes DocType @@ -2420,8 +2473,8 @@ DocType: System Settings,System Settings,Systemverwaltung DocType: GCalendar Settings,Google API Credentials,Google API-Anmeldeinformationen apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sitzungsstart fehlgeschlagen apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Diese E-Mail wurde an {0} gesendet und eine Kopie an {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},hat dieses Dokument eingereicht {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,Vor> {0} Jahr (en) DocType: Social Login Key,Provider Name,Anbietername apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Neu erstellen: {0} DocType: Contact,Google Contacts,Google Kontakte @@ -2429,6 +2482,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar Konto DocType: Email Rule,Is Spam,ist Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Bericht {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},{0} öffnen +DocType: Data Import Beta,Import Warnings,Warnungen importieren DocType: OAuth Client,Default Redirect URI,Standard Weiterleitungs URI DocType: Auto Repeat,Recipients,Empfänger DocType: System Settings,Choose authentication method to be used by all users,"Wählen Sie die Authentifizierungsmethode, die von allen Benutzern verwendet werden soll" @@ -2546,6 +2600,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Bericht erfo apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook Fehler DocType: Email Flag Queue,Unread,Ungelesen DocType: Bulk Update,Desk,Schreibtisch +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Spalte {0} wird übersprungen apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter muss ein Tupel oder eine Liste sein (in einer Liste) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,"SELECT-Abfrage schreiben. Bitte beachten, dass das Ergebnis nicht aufgeteilt wird (alle Daten werden in einem Rutsch gesendet)." DocType: Email Account,Attachment Limit (MB),Beschränkung der Größe des Anhangs (MB) @@ -2560,6 +2615,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Neuen Eintrag erstellen DocType: Workflow State,chevron-down,Winkel nach unten apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Felder zum Exportieren auswählen DocType: Async Task,Traceback,Zurück verfolgen DocType: Currency,Smallest Currency Fraction Value,Kleinste Währungsanteilwert apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Bericht vorbereiten @@ -2568,6 +2624,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Kommentare aktivieren apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Hinweise DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Nur Benutzer, die von dieser IP-Adresse aus zugreifen, beschränken. Mehrere IP-Adressen können durch Trennung mit Komma hinzugefügt werden. Übernimmt auch Teil-IP-Adressen wie (111.111.111)" +DocType: Data Import Beta,Import Preview,Vorschau importieren DocType: Communication,From,Von apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Zuerst einen Gruppenknoten wählen. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} in {1} finden @@ -2666,6 +2723,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Zwischen DocType: Social Login Key,fairlogin,Fairlogin DocType: Async Task,Queued,Warteschlange +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Formular anpassen DocType: Braintree Settings,Use Sandbox,Sandkastenmodus verwenden apps/frappe/frappe/utils/goal.py,This month,Diesen Monat apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Neues benutzerdefiniertes Druckformat @@ -2681,6 +2739,7 @@ DocType: Session Default,Session Default,Sitzungsstandard DocType: Chat Room,Last Message,Letzte Nachricht DocType: OAuth Bearer Token,Access Token,Zugriffstoken DocType: About Us Settings,Org History,Unternehmensgeschichte +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Noch ungefähr {0} Minuten DocType: Auto Repeat,Next Schedule Date,Nächste Termine Datum DocType: Workflow,Workflow Name,Workflow-Name DocType: DocShare,Notify by Email,Per E-Mail benachrichtigen @@ -2710,6 +2769,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Senden fortsetzen apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Wieder öffnen +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Warnungen anzeigen apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Nutzer Einkauf DocType: Data Migration Run,Push Failed,Push fehlgeschlagen @@ -2746,6 +2806,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Erweit apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,"Sie sind nicht berechtigt, den Newsletter zu anzusehen." DocType: User,Interests,Interessen apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Eine Anleitung zum Zurücksetzen des Passworts wurde an ihre E-Mail-Adresse verschickt +DocType: Energy Point Rule,Allot Points To Assigned Users,Zuweisen von Punkten zu zugewiesenen Benutzern apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 ist für Dokumentebene Berechtigungen, \ höhere Ebenen für Feldebene Berechtigungen." DocType: Contact Email,Is Primary,Ist primär @@ -2768,6 +2829,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Siehe das Dokument bei {0} DocType: Stripe Settings,Publishable Key,Veröffentlichender Schlüssel apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Starten Sie den Import +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Exporttyp DocType: Workflow State,circle-arrow-left,Kreis-Pfeil-nach-links DocType: System Settings,Force User to Reset Password,Benutzer zum Zurücksetzen des Kennworts zwingen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Klicken Sie auf {0}, um den aktualisierten Bericht abzurufen." @@ -2780,13 +2842,16 @@ DocType: Contact,Middle Name,Zweiter Vorname DocType: Custom Field,Field Description,Feldbeschreibung apps/frappe/frappe/model/naming.py,Name not set via Prompt,Name nicht über Eingabeaufforderung gesetzt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-Mail-Eingang +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{0} von {1}, {2} wird aktualisiert" DocType: Auto Email Report,Filters Display,Filter anzeigen apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Das Feld "modified_from" muss vorhanden sein, um eine Änderung vorzunehmen." +DocType: Contact,Numbers,Zahlen apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} freute sich über Ihre Arbeit an {1} {2}. apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filter speichern DocType: Address,Plant,Fabrik apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Allen antworten DocType: DocType,Setup,Einstellungen +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Alle Datensätze DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-Mail-Adresse, deren Google-Kontakte synchronisiert werden sollen." DocType: Email Account,Initial Sync Count,Anzahl bei der ersten Synchronisation DocType: Workflow State,glass,Glas @@ -2811,7 +2876,7 @@ DocType: Workflow State,font,Schriftart DocType: DocType,Show Preview Popup,Vorschau-Popup anzeigen apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dies ist ein eines der 100 meist genutzten Passwörter. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Bitte Pop-ups aktivieren -DocType: User,Mobile No,Mobilfunknummer +DocType: Contact,Mobile No,Mobilfunknummer DocType: Communication,Text Content,Text Inhalt DocType: Customize Form Field,Is Custom Field,Ist benutzerdefiniertes Feld DocType: Workflow,"If checked, all other workflows become inactive.","Wenn aktiviert, werden alle anderen Workflows inaktiv." @@ -2857,6 +2922,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Benut apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Name des neuen Druckformats apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Seitenleiste DocType: Data Migration Run,Pull Insert,Zugeinsatz +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maximal zulässige Punkte nach Multiplikation der Punkte mit dem Multiplikatorwert (Hinweis: Für unbegrenzte Anzahl lassen Sie dieses Feld leer oder setzen Sie 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Ungültige Vorlage apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Ungültige SQL-Abfrage apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Zwingend erforderlich: DocType: Chat Message,Mentions,Erwähnungen @@ -2871,6 +2939,7 @@ DocType: User Permission,User Permission,Benutzerberechtigung apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nicht installiert apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Mit Daten herunterladen +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},geänderte Werte für {0} {1} DocType: Workflow State,hand-right,Pfeil-nach-rechts DocType: Website Settings,Subdomain,Unterdomäne DocType: S3 Backup Settings,Region,Region @@ -2897,10 +2966,12 @@ DocType: Braintree Settings,Public Key,Öffentlicher Schlüssel DocType: GSuite Settings,GSuite Settings,GSuite Einstellungen DocType: Address,Links,Verknüpfungen DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Verwendet den in diesem Konto angegebenen E-Mail-Adressnamen als Absendernamen für alle über dieses Konto gesendeten E-Mails. +DocType: Energy Point Rule,Field To Check,Zu überprüfendes Feld apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google-Kontakte - Kontakt in Google-Kontakten {0} konnte nicht aktualisiert werden, Fehlercode {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Bitte wählen Sie den Dokumententyp. apps/frappe/frappe/model/base_document.py,Value missing for,Fehlender Wert für apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Unterpunkt hinzufügen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Importfortschritt DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Wenn die Bedingung erfüllt ist, wird der Benutzer mit den Punkten belohnt. z.B. doc.status == 'Geschlossen'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Übertragener Datensatz kann nicht gelöscht werden. @@ -2937,6 +3008,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorisieren Sie den Z apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Die Seite, die Sie suchen fehlt. Dies könnte sein, weil es bewegt wird, oder es ist ein Tippfehler in der Verbindung." apps/frappe/frappe/www/404.html,Error Code: {0},Fehlercode: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beschreibung für die Auflistungsseite, in Reintext, nur ein paar Zeilen (max. 140 Zeichen)." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sind Pflichtfelder DocType: Workflow,Allow Self Approval,Erlaube Selbstgenehmigung DocType: Event,Event Category,Ereigniskategorie apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2984,8 +3056,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Ziehen nach DocType: Address,Preferred Billing Address,Bevorzugte Rechnungsadresse apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Zu viel Text für eine Anfrage. Bitte kleinere Anfragen senden apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive wurde konfiguriert. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Dokumenttyp {0} wurde wiederholt. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Werte geändert DocType: Workflow State,arrow-up,Pfeil-nach-oben +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Es sollte mindestens eine Zeile für die Tabelle {0} vorhanden sein apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Um die automatische Wiederholung zu konfigurieren, aktivieren Sie "Automatische Wiederholung zulassen" von {0} aus." DocType: OAuth Bearer Token,Expires In,Verfällt in DocType: DocField,Allow on Submit,Beim Übertragen zulassen @@ -3072,6 +3146,7 @@ DocType: Custom Field,Options Help,Hilfe zu Optionen DocType: Footer Item,Group Label,Gruppenbezeichnung DocType: Kanban Board,Kanban Board,Kanban-Tafel apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontakte wurde konfiguriert. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,1 Datensatz wird exportiert DocType: DocField,Report Hide,Bericht ausblenden apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},Baumansicht nicht verfügbar für {0} DocType: DocType,Restrict To Domain,Auf Domäne beschränken @@ -3089,6 +3164,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Bestätigunscode DocType: Webhook,Webhook Request,Webhook Anfrage apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Fehlgeschlagen: {0} um {1}: {2} DocType: Data Migration Mapping,Mapping Type,Kartentyp +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Wählen Pflicht apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Durchsuchen apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Keine Notwendigkeit für Symbole, Ziffern oder Großbuchstaben." DocType: DocField,Currency,Währung @@ -3119,11 +3195,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Briefkopf basierend auf apps/frappe/frappe/utils/oauth.py,Token is missing,Token fehlt apps/frappe/frappe/www/update-password.html,Set Password,Set Password +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} Datensätze wurden erfolgreich importiert. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,"Hinweis: Wenn Sie den Seitennamen ändern, wird die vorherige URL auf diese Seite gelegt." apps/frappe/frappe/utils/file_manager.py,Removed {0},{0} entfernt DocType: SMS Settings,SMS Settings,SMS-Einstellungen DocType: Company History,Highlight,Hervorheben DocType: Dashboard Chart,Sum,Summe +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,über Datenimport DocType: OAuth Provider Settings,Force,Erzwingen apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Zuletzt synchronisiert {0} DocType: DocField,Fold,Falz @@ -3160,6 +3238,7 @@ DocType: Workflow State,Home,Startseite DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Benutzer können sich entweder mit E-Mail-Adresse oder Benutzername anmelden DocType: Workflow State,question-sign,Fragezeichen +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ist deaktiviert apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Das Feld "Route" ist für Web-Ansichten obligatorisch apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Spalte vor {0} einfügen DocType: Energy Point Rule,The user from this field will be rewarded points,Der Benutzer aus diesem Feld erhält Punkte @@ -3193,6 +3272,7 @@ DocType: Website Settings,Top Bar Items,Kopfleistensymbole DocType: Notification,Print Settings,Druckeinstellungen DocType: Page,Yes,Ja DocType: DocType,Max Attachments,Maximale Anzahl an Anhängen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Noch ungefähr {0} Sekunden DocType: Calendar View,End Date Field,Enddatumsfeld apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale Verknüpfungen DocType: Desktop Icon,Page,Seite @@ -3303,6 +3383,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite-Zugang erlauben DocType: DocType,DESC,DESC DocType: DocType,Naming,Bezeichnung apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Alles auswählen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Spalte {0} apps/frappe/frappe/config/customization.py,Custom Translations,Benutzerdefinierte Übersetzungen apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Fortschritt apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,durch Rolle @@ -3344,11 +3425,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Les DocType: Stripe Settings,Stripe Settings,Stripe-Einstellungen DocType: Data Migration Mapping,Data Migration Mapping,Datenmigrationszuordnung DocType: Auto Email Report,Period,Periode +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Noch ungefähr {0} Minuten apps/frappe/frappe/www/login.py,Invalid Login Token,Invalid Login Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Verwerfen apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,vor 1 Stunde DocType: Website Settings,Home Page,Startseite DocType: Error Snapshot,Parent Error Snapshot,Momentaufnahme des übergeordneten Fehlers +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Ordnen Sie Spalten von {0} Feldern in {1} zu. DocType: Access Log,Filters,Filter DocType: Workflow State,share-alt,teilen-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Warteschlange sollte eine von {0} @@ -3379,6 +3462,7 @@ DocType: Calendar View,Start Date Field,Startdatum Feld DocType: Role,Role Name,Rollenname apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Switch To Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script oder Abfrage-Berichte +DocType: Contact Phone,Is Primary Mobile,Ist primär mobil DocType: Workflow Document State,Workflow Document State,Workflow-Dokumentenstatus apps/frappe/frappe/public/js/frappe/request.js,File too big,Datei zu groß apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-Mail-Konto wurde mehrmals hinzugefügt @@ -3424,6 +3508,7 @@ DocType: DocField,Float,Gleitkommazahl DocType: Print Settings,Page Settings,Seiteneinstellungen apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Speichern ... apps/frappe/frappe/www/update-password.html,Invalid Password,Ungültiges Passwort +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} Datensatz aus {1} erfolgreich importiert. DocType: Contact,Purchase Master Manager,Einkaufsstammdaten-Manager apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,"Klicken Sie auf das Schlosssymbol, um zwischen öffentlich und privat zu wechseln" DocType: Module Def,Module Name,Modulname @@ -3457,6 +3542,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Bitte gültige Mobilnummern eingeben apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Einige der Funktionen funktionieren möglicherweise nicht in Ihrem Browser. Bitte aktualisieren Sie Ihren Browser auf die neueste Version. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Sie wissen nicht, fragen Sie "Hilfe"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},stornierte dieses Dokument {0} DocType: DocType,Comments and Communications will be associated with this linked document,Kommentare und Kommunikation werden diesem verknüpfte Dokument zugeordnet. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,fett @@ -3475,6 +3561,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Hinzufügen/V DocType: Comment,Published,Veröffentlicht apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Vielen Dank für Ihre E-Mail DocType: DocField,Small Text,Kleiner Text +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Die Nummer {0} kann nicht als primäre Nummer sowohl für das Telefon als auch für das Mobiltelefon festgelegt werden. DocType: Workflow,Allow approval for creator of the document,Genehmigung für den Ersteller des Dokuments zulassen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Bericht speichern DocType: Webhook,on_cancel,on_cancel @@ -3532,6 +3619,7 @@ DocType: Print Settings,PDF Settings,PDF-Einstellungen DocType: Kanban Board Column,Column Name,Spaltenname DocType: Language,Based On,Basiert auf DocType: Email Account,"For more information, click here.","Weitere Informationen finden Sie hier ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Anzahl der Spalten stimmt nicht mit Daten überein apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Zum Standard machen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Ausführungszeit: {0} Sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Ungültiger Include-Pfad @@ -3621,7 +3709,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Laden Sie {0} Dateien hoch DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Startzeit melden -apps/frappe/frappe/config/settings.py,Export Data,Daten exportieren +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Daten exportieren apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Spalten auswählen DocType: Translation,Source Text,Quellentext 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.,Dies ist ein Hintergrundbericht. Bitte setzen Sie die entsprechenden Filter und generieren Sie dann einen neuen. @@ -3639,7 +3727,6 @@ DocType: Report,Disable Prepared Report,Vorbereiteten Bericht deaktivieren apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Benutzer {0} hat das Löschen von Daten angefordert apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Illegal Access-Token. Bitte versuche es erneut apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Die Anwendung wurde auf eine neue Version aktualisiert, bitte aktualisieren Sie diese Seite" -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.,Keine Standardadressvorlage gefunden. Erstellen Sie unter Setup> Drucken und Markieren> Adressvorlage eine neue. DocType: Notification,Optional: The alert will be sent if this expression is true,"Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist" DocType: Data Migration Plan,Plan Name,Planname DocType: Print Settings,Print with letterhead,Drucken mit Briefkopf @@ -3680,6 +3767,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,"{0}: ""Geändert"" kann nicht eingestellt werden ohne ""Abbruch""" apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Ganze Seite DocType: DocType,Is Child Table,Ist Untertabelle +DocType: Data Import Beta,Template Options,Vorlagenoptionen apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} muss aus {1} sein apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} betrachtet derzeit dieses Dokument apps/frappe/frappe/config/core.py,Background Email Queue,E-Mail-Warteschlange im Hintergrund @@ -3687,7 +3775,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Passwort zurücksetz DocType: Communication,Opened,Geöffnet DocType: Workflow State,chevron-left,Winkel nach links DocType: Communication,Sending,Versand -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Zugriff nicht von dieser IP- Adresse erlaubt DocType: Website Slideshow,This goes above the slideshow.,Dies erscheint oberhalb der Diaschau. DocType: Contact,Last Name,Familienname DocType: Event,Private,Privat @@ -3701,7 +3788,6 @@ DocType: Workflow Action,Workflow Action,Workflow-Aktion apps/frappe/frappe/utils/bot.py,I found these: ,Ich bin hierauf gestoßen: DocType: Event,Send an email reminder in the morning,Morgens eine Erinnerungsemail senden DocType: Blog Post,Published On,Veröffentlicht am -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto über Setup> E-Mail> E-Mail-Konto DocType: Contact,Gender,Geschlecht apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Pflichtangaben fehlen: apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} hat Ihre Punkte auf {1} zurückgesetzt. @@ -3722,7 +3808,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,Warnschild DocType: Prepared Report,Prepared Report,Vorbereiteter Bericht apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Fügen Sie Ihren Webseiten Meta-Tags hinzu -DocType: Contact,Phone Nos,Telefonnummern DocType: Workflow State,User,Benutzer DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Diesen Eintrag im Browser-Fenster als ""Präfix - Titel"" anzeigen" DocType: Payment Gateway,Gateway Settings,Gateway-Einstellungen @@ -3739,6 +3824,7 @@ DocType: Data Migration Connector,Data Migration,Datenmigration DocType: User,API Key cannot be regenerated,API-Schlüssel kann nicht neu generiert werden. apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Etwas ist schief gelaufen DocType: System Settings,Number Format,Zahlenformat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} Datensatz erfolgreich importiert. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Zusammenfassung DocType: Event,Event Participants,Veranstaltungsteilnehmer DocType: Auto Repeat,Frequency,Häufigkeit @@ -3746,7 +3832,7 @@ DocType: Custom Field,Insert After,Einfügen nach DocType: Event,Sync with Google Calendar,Mit Google Kalender synchronisieren DocType: Access Log,Report Name,Berichtsname DocType: Desktop Icon,Reverse Icon Color,Reverse-Symbol Farbe -DocType: Notification,Save,Speichern +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Speichern apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Nächstes geplantes Datum apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Weisen Sie denjenigen zu, der die geringsten Zuordnungen hat" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Abschnittsüberschrift @@ -3769,11 +3855,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},Max Breite für Typ Währung ist 100px in Zeile {0} apps/frappe/frappe/config/website.py,Content web page.,Inhalt der Webseite. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Neue Rolle hinzufügen -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Formular anpassen DocType: Google Contacts,Last Sync On,Letzte Synchronisierung an DocType: Deleted Document,Deleted Document,gelöschtes Dokument apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Hoppla! Etwas ist schiefgelaufen DocType: Desktop Icon,Category,Kategorie +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Wert {0} fehlt für {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Kontakte hinzufügen apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landschaft apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Client-seitige Script-Erweiterungen in Javascript @@ -3796,6 +3882,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiepunktaktualisierung apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Bitte wählen Sie eine andere Zahlungsmethode. PayPal bietet keine Unterstützung für Transaktionen in der Währung ‚{0}‘ DocType: Chat Message,Room Type,Zimmertyp +DocType: Data Import Beta,Import Log Preview,Protokollvorschau importieren apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Suchfeld {0} ist nicht gültig apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,hochgeladene Datei DocType: Workflow State,ok-circle,Genehmigungs-Kreislauf @@ -3862,6 +3949,7 @@ DocType: DocType,Allow Auto Repeat,Automatische Wiederholung zulassen apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Keine anzuzeigenden Werte DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-Mail-Vorlage +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} Datensatz erfolgreich aktualisiert. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Benutzer {0} hat keinen Doctype-Zugriff über die Rollenberechtigung für Dokument {1}. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Login und Passwort sind beide erforderlich apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Bitte aktualisieren, um das neueste Dokument zu erhalten." diff --git a/frappe/translations/el.csv b/frappe/translations/el.csv index c963d85c09..2e89b8a0e9 100644 --- a/frappe/translations/el.csv +++ b/frappe/translations/el.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Νέες {} κυκλοφορίες για τις ακόλουθες εφαρμογές είναι διαθέσιμες apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Επιλέξτε ένα ποσό πεδίο. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Φόρτωση αρχείου εισαγωγής ... DocType: Assignment Rule,Last User,Τελευταίος χρήστης apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Μια νέα εργασία, {0}, έχει ανατεθεί σε εσάς από {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Οι προεπιλεγμένες ρυθμίσεις συνόδου αποθηκεύτηκαν +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Επαναφόρτωση αρχείου DocType: Email Queue,Email Queue records.,αρχεία ηλεκτρονικού ταχυδρομείου ουρά. DocType: Post,Post,Δημοσίευση DocType: Address,Punjab,Πουντζάμπ @@ -44,6 +46,7 @@ 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,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,Παράμετρος @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Μηνιαίος DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Ενεργοποίηση εισερχομένων apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Κίνδυνος -apps/frappe/frappe/www/login.py,Email Address,Διεύθυνση ηλεκτρονικού ταχυδρομείου +DocType: Address,Email Address,Διεύθυνση ηλεκτρονικού ταχυδρομείου DocType: Workflow State,th-large,Th-large DocType: Communication,Unread Notification Sent,Μη αναγνωσμένα γνωστοποίησης που της απέστειλε apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Η εξαγωγή δεν επιτρέπεται. Χρειάζεται ο ρόλος {0} για την εξαγωγή. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Διαχε DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Επιλογές επικοινωνίας, όπως ""ερώτημα πωλήσεων, ερώτημα υποστήριξης"" κτλ το καθένα σε καινούρια γραμμή ή διαχωρισμένα με κόμματα." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Προσθήκη ετικέτας ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Πορτρέτο -DocType: Data Migration Run,Insert,Εισαγωγή +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Εισαγωγή apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Επίτρεψε πρόσβαση στο google drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Επιλέξτε {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Εισαγάγετε τη διεύθυνση URL βάσης @@ -118,17 +121,17 @@ 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,Ρύθμιση του θέματος DocType: Company History,Company History,Ιστορικό εταιρείας -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Επαναφορά +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Επαναφορά DocType: Workflow State,volume-up,Volume-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks που καλούν αιτήματα API σε εφαρμογές ιστού +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Εμφάνιση ανίχνευσης DocType: DocType,Default Print Format,Προεπιλογμένη μορφή εκτύπωσης DocType: Workflow State,Tags,Ετικέτες apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Κανένας: Τέλος της ροής εργασίας apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} πεδίο δεν μπορεί να οριστεί ως το μοναδικό στο {1}, καθώς υπάρχουν μη μοναδικές υπάρχουσες τιμές" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Τύποι εγγράφων +DocType: Global Search Settings,Document Types,Τύποι εγγράφων DocType: Address,Jammu and Kashmir,Τζαμού και Κασμίρ DocType: Workflow,Workflow State Field,Πεδίο κατάστασης ροής εργασίας -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ρύθμιση> Χρήστης DocType: Language,Guest,Επισκέπτης DocType: DocType,Title Field,Πεδίο τίτλου DocType: Error Log,Error Log,Αρχείο καταγραφής σφαλμάτων @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Επαναλήψεις όπως "abcabcabc" είναι μόνο ελαφρώς πιο δύσκολο να μαντέψει από το "abc" DocType: Notification,Channel,Κανάλι apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Αν νομίζετε ότι αυτό είναι μη εξουσιοδοτημένη, παρακαλούμε να αλλάξετε τον κωδικό πρόσβασης διαχειριστή." +DocType: Data Import Beta,Data Import Beta,Εισαγωγή δεδομένων Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} Είναι υποχρεωτικά DocType: Assignment Rule,Assignment Rules,Κανόνες αντιστοίχισης DocType: Workflow State,eject,Αποβολή @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Όνομα ενέργεια apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,Οι τύποι εγγράφου δεν μπορούν να συγχωνευθούν DocType: Web Form Field,Fieldtype,Τύπος πεδίου apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Δεν είναι ένα αρχείο zip +DocType: Global Search DocType,Global Search DocType,Παγκόσμια αναζήτηση DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                        New {{ doc.doctype }} #{{ doc.name }}
                        ","Για να προσθέσετε δυναμικό θέμα, χρησιμοποιήστε τις ετικέτες jinja όπως
                         New {{ doc.doctype }} #{{ doc.name }} 
                        " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Εγγράφου Doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Εσείς DocType: Braintree Settings,Braintree Settings,Ρυθμίσεις Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Δημιουργήθηκε με επιτυχία το αρχείο {0}. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Αποθήκευση φίλτρου DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Δεν είναι δυνατή η διαγραφή {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Εισάγετε παρά apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Η αυτόματη επανάληψη δημιουργήθηκε για αυτό το έγγραφο apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Προβολή αναφοράς στο πρόγραμμα περιήγησής σας apps/frappe/frappe/config/desk.py,Event and other calendars.,Εκδήλωση και άλλα ημερολόγια. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (υποχρεωτική 1 σειρά) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Όλα τα πεδία είναι απαραίτητα για την υποβολή του σχολίου. DocType: Custom Script,Adds a client custom script to a DocType,Προσθέτει ένα προσαρμοσμένο σενάριο πελάτη σε ένα DocType DocType: Print Settings,Printer Name,Όνομα εκτυπωτή @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Μαζική Ενημέρωση DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Αφήστε επισκεπτών για να δείτε apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},Το {0} δεν πρέπει να είναι ίδιο με το {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Διαγραφή {0} αντικείμενα μόνιμα; apps/frappe/frappe/utils/oauth.py,Not Allowed,Δεν επιτρέπεται @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Εμφάνιση DocType: Email Group,Total Subscribers,Σύνολο Συνδρομητές apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Κορυφή {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Αριθμός σειράς apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Εάν ένας ρόλος δεν έχει πρόσβαση στο επίπεδο 0, τότε τα υψηλότερα επίπεδα είναι χωρίς νόημα ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Αποθήκευση ως DocType: Comment,Seen,Επίσκεψη @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,Παράδειγμα: DocType: Workflow,Defines workflow states and rules for a document.,Καθορίζει τις καταστάσεις ροής εργασίας και τους κανόνες για ένα έγγραφο. DocType: Workflow State,Filter,φίλτρο @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Κλειστό DocType: Blog Settings,Blog Title,Τίτλος blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Πρότυπο ρόλοι δεν μπορεί να απενεργοποιηθεί apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Τύπος συνομιλίας +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Χάρτες στήλης DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Ενημερωτικό δελτίο apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Δεν είναι δυνατή η χρήση υπο-ερώτημα για από @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Προσθέστε μια στήλη apps/frappe/frappe/www/contact.html,Your email address,Η διεύθυνση email σας DocType: Desktop Icon,Module,Λειτουργική μονάδα +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Η ενημέρωση των {0} εγγραφών ενημερώθηκε με επιτυχία από {1}. DocType: Notification,Send Alert On,Αποστολή ειδοποίησης στις DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Προσαρμογή ετικέτας, απόκρυψη εκτύπωσης, προεπιλογή κλπ." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Αποσυμπιέστε αρχεία ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Ο χρήστης {0} δεν μπορεί να διαγραφεί DocType: System Settings,Currency Precision,Νόμισμα ακρίβειας apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Μια άλλη συναλλαγή μπλοκάροντας αυτό. Παρακαλώ δοκιμάστε ξανά σε λίγα δευτερόλεπτα. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Καθαρισμός φίλτρων DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Τα συνημμένα δεν μπορούσαν να συνδεθούν σωστά στο νέο έγγραφο DocType: Chat Message Attachment,Attachment,Κατάσχεση @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Δεν μπ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar - Δεν ήταν δυνατή η ενημέρωση του συμβάντος {0} στο Ημερολόγιο Google, κωδικός σφάλματος {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Αναζήτηση ή πληκτρολόγηση μιας εντολής DocType: Activity Log,Timeline Name,Timeline Όνομα +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Μόνο ένα {0} μπορεί να οριστεί ως πρωτεύον. DocType: Email Account,e.g. smtp.gmail.com,π.χ. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Προσθήκη νέου κανόνα DocType: Contact,Sales Master Manager,Διαχειριστής κύριων εγγραφών πωλήσεων @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Πεδίο μεσαίου ονόματος LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Εισαγωγή {0} από {1} DocType: GCalendar Account,Allow GCalendar Access,Επιτρέψτε την πρόσβαση στο GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,Το {0} είναι υποχρεωτικό πεδίο +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,Το {0} είναι υποχρεωτικό πεδίο apps/frappe/frappe/templates/includes/login/login.js,Login token required,Απαιτείται ένα διακριτικό σύνδεσης apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Μηνιαία Κατάταξη: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Επιλέξτε πολλά στοιχεία λίστας @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Δεν είναι δυν apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Μια λέξη από μόνη της είναι εύκολο να μαντέψει κανείς. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Η αυτόματη εκχώρηση απέτυχε: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Ψάξιμο... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Επιλέξτε Εταιρεία apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Η συγχώνευση είναι δυνατή μόνο μεταξύ ομάδας-σε-ομάδα ή κόμβου-σε-κόμβο apps/frappe/frappe/utils/file_manager.py,Added {0},Προστέθηκε {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Δεν υπάρχουν στοιχεία που να ταιριάζουν. Αναζήτηση κάτι νέο @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,Αναγνωριστικό πελάτη DocType: Auto Repeat,Subject,Θέμα apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Επιστροφή στο γραφείο DocType: Web Form,Amount Based On Field,Ποσό με βάση το πεδίο -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Ο χρήστης είναι υποχρεωτική για το μερίδιο DocType: DocField,Hidden,κρυμμένο DocType: Web Form,Allow Incomplete Forms,Επιτρέψτε Ελλιπής Έντυπα @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} και {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Ξεκινήστε μια συζήτηση. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Πάντα προσθέστε "Σχέδιο" Τομέας για σχέδιο εκτύπωση εγγράφων apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Σφάλμα στην ειδοποίηση: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} χρόνια πριν DocType: Data Migration Run,Current Mapping Start,Τρέχουσα εκκίνηση χαρτογράφησης apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Το μήνυμα ηλεκτρονικού ταχυδρομείου έχει επισημανθεί ως ανεπιθύμητο DocType: Comment,Website Manager,Διαχειριστής ιστοσελίδας @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,Barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Η χρήση υπο-ερωτήματος ή συνάρτησης είναι περιορισμένη apps/frappe/frappe/config/customization.py,Add your own translations,Προσθέστε τις δικές σας μεταφράσεις DocType: Country,Country Name,Όνομα χώρας +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Κενό πρότυπο DocType: About Us Team Member,About Us Team Member,Μέλος της ομάδας σχετικά με εμάς apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Τα δικαιώματα που έχουν οριστεί για ρόλους και τύπους εγγράφων (που ονομάζονται doctypes) με τον καθορισμό των δικαιωμάτων, όπως ανάγνωση, γραφή, δημιουργία, διαγραφή, υποβολή, ακύρωση, τροποποιούνται, έκθεση, εισαγωγή, εξαγωγή, εκτύπωση, e-mail και ορίζουν τα δικαιώματα των χρηστών." DocType: Event,Wednesday,Τετάρτη @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Ιστοσελίδα Σύνδ DocType: Web Form,Sidebar Items,Αντικείμενα της sidebar DocType: Web Form,Show as Grid,Εμφάνιση ως πλέγμα apps/frappe/frappe/installer.py,App {0} already installed,Η εφαρμογή {0} έχει ήδη εγκατασταθεί +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Οι χρήστες που έχουν αντιστοιχιστεί στο έγγραφο αναφοράς θα λάβουν βαθμούς. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Δεν υπάρχει προεπισκόπηση DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Αποσυνδέστε τα {0} αρχεία @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Ημέρες Πριν apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Τα Ημερήσια Γεγονότα πρέπει να ολοκληρωθούν την ίδια μέρα. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Επεξεργασία... DocType: Workflow State,volume-down,Volume-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Η πρόσβαση δεν επιτρέπεται από αυτή τη διεύθυνση IP apps/frappe/frappe/desk/reportview.py,No Tags,Δεν υπάρχουν ετικέτες DocType: Email Account,Send Notification to,Αποστολή ειδοποίησης σε DocType: DocField,Collapsible,Αναδιπλούμενο @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Προγραμματιστής apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Δημιουργήθηκε 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,Προεπιλεγμένη γλώσσα εκτύπωσης apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Πρόγονοι του apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Η ρίζα {0} δεν μπορεί να διαγραφεί @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","Target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Πλήθος +DocType: Data Import Beta,Import File,Εισαγωγή αρχείου apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Στήλη {0} υπάρχει ήδη. DocType: ToDo,High,Υψηλός apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Νέο γεγονός @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Αποστολή ειδοπο apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Καθ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Δεν είναι σε κατάσταση προγραμματιστή apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Το αρχείο αντιγράφων ασφαλείας είναι έτοιμο -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Μέγιστα επιτρεπόμενα σημεία μετά από πολλαπλασιασμό με την τιμή του πολλαπλασιαστή (Σημείωση: Για μη καθορισμένη τιμή ως 0) DocType: DocField,In Global Search,Στην Σφαιρική Αναζήτηση DocType: System Settings,Brute Force Security,Ασφάλεια βίαιης βίας DocType: Workflow State,indent-left,Εσοχή-αριστερά @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Ο χρήστης '{0}' έχει ήδη το ρόλο '{1}' DocType: System Settings,Two Factor Authentication method,Μέθοδος ελέγχου ταυτότητας δύο παραγόντων apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Αρχικά ορίστε το όνομα και αποθηκεύστε την εγγραφή. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 εγγραφές apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Κοινή χρήση με {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Κατάργηση DocType: View Log,Reference Name,Όνομα αναφοράς @@ -813,6 +830,8 @@ 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,Παρακολούθηση Κατάστασης Email DocType: Note,Notify Users On Every Login,Ειδοποιήστε τους χρήστες σε κάθε σύνδεση +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Δεν είναι δυνατή η αντιστοίχιση της στήλης {0} με οποιοδήποτε πεδίο +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Έχει ενημερωθεί με επιτυχία {0} εγγραφές. DocType: PayPal Settings,API Password,API Κωδικός apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Εισαγάγετε την ενότητα python ή επιλέξτε τύπο συνδετήρα apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Το όνομα πεδίου δεν έχει οριστεί για το προσαρμοσμένο πεδίο @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,Η τιμή άλλαξε apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Διπλότυπο όνομα {0} {1} -DocType: Email Queue,Retry,Ξαναδοκιμάσετε +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Ξαναδοκιμάσετε +DocType: Contact Phone,Number,Αριθμός DocType: Web Form Field,Web Form Field,Πεδίο φόρμας ιστοσελίδας apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Έχετε ένα νέο μήνυμα από: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Επεξεργασία κώδικα HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Εισαγάγετε τη διεύθυνση URL ανακατεύθυνσης apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Δείτε τα ακ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Κάντε κλικ σε ένα αρχείο για να το επιλέξετε. DocType: Note Seen By,Note Seen By,Σημείωση φαίνεται από το apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Δοκιμάστε να χρησιμοποιήσετε ένα μεγαλύτερο σχέδιο πληκτρολόγιο με περισσότερες στροφές -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LeaderBoard +,LeaderBoard,LeaderBoard DocType: DocType,Default Sort Order,Προεπιλεγμένη σειρά ταξινόμησης DocType: Address,Rajasthan,Ρατζαστάν DocType: Email Template,Email Reply Help,Βοήθεια ηλεκτρονικού ταχυδρομείου απάντησης @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Σεντ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Συνθέστε Email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Καταστάσεις ροής εργασίας ( π.Χ. Σχέδιο , εγκεκριμένη, ακυρομένη ) ." DocType: Print Settings,Allow Print for Draft,Επιτρέψτε εκτύπωσης για Σχέδιο +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/link_selector.js,Set Quantity,Ορισμός Ποσότητα apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Υποβολή αυτό το έγγραφο για να επιβεβαιώσετε DocType: Contact,Unsubscribed,Χωρίς συνδρομή @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Οργανική Μονάδ ,Transaction Log Report,Αναφορά αρχείου καταγραφής συναλλαγών DocType: Custom DocPerm,Custom DocPerm,Προσαρμοσμένη DocPerm DocType: Newsletter,Send Unsubscribe Link,Αποστολή Διαγραφή Σύνδεσμος +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Υπάρχουν κάποιες συνδέσεις που πρέπει να δημιουργηθούν για να μπορέσουμε να εισαγάγουμε το αρχείο σας. Θέλετε να δημιουργήσετε αυτόματα τις ακόλουθες λείπει εγγραφές; DocType: Access Log,Method,Μέθοδος DocType: Report,Script Report,Script έκθεσης DocType: OAuth Authorization Code,Scopes,τηλεσκόπια @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Μεταφορτώθηκε με επιτυχία apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Είστε συνδεδεμένοι στο Διαδίκτυο. DocType: Social Login Key,Enable Social Login,Ενεργοποίηση της κοινωνικής σύνδεσης +DocType: Data Import Beta,Warnings,Προειδοποιήσεις DocType: Communication,Event,Συμβάν apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Στις {0}, ο {1} έγραψε:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Δεν μπορείτε να διαγράψετε τυπικό πεδίο. Μπορείτε να το κρύψει, αν θέλετε" @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Εισα DocType: Kanban Board Column,Blue,Μπλε apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Όλες οι προσαρμογές θα αφαιρεθούν. Παρακαλώ επιβεβαιώστε. DocType: Page,Page HTML,Html σελίδας +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Εξαγωγή σφαλμάτων σειράς apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Το όνομα ομάδας δεν μπορεί να είναι κενό. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Περαιτέρω κόμβοι μπορούν να δημιουργηθούν μόνο σε κόμβους τύπου ομάδα DocType: SMS Parameter,Header,Κεφαλίδα @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Το χρονικό όριο αίτησης apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Ενεργοποίηση / απενεργοποίηση τομέων DocType: Role Permission for Page and Report,Allow Roles,Αφήστε Ρόλοι +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Έχει εισαχθεί με επιτυχία η {0} εγγραφή από {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Απλή έκφραση Python, Παράδειγμα: Κατάσταση στο ("Μη έγκυρο")" DocType: User,Last Active,Τελευταία σύνδεση DocType: Email Account,SMTP Settings for outgoing emails,Ρυθμίσεις smtp για εξερχόμενα μηνύματα ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,επιλέξτε ένα DocType: Data Export,Filter List,Λίστα φίλτρων DocType: Data Export,Excel,Προέχω -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Ο κωδικός σας έχει ενημερωθεί. Εδώ είναι ο νέος κωδικός σας DocType: Email Account,Auto Reply Message,Μήνυμα αυτόματης απάντησης DocType: Data Migration Mapping,Condition,Συνθήκη apps/frappe/frappe/utils/data.py,{0} hours ago,Πριν από {0} ώρες @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID χρήστη DocType: Communication,Sent,Εστάλη DocType: Address,Kerala,Κεράλα -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Διαχείριση DocType: User,Simultaneous Sessions,ταυτόχρονη Συνεδρίες DocType: Social Login Key,Client Credentials,Διαπιστευτήρια πελάτη @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Ενη apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Κύρια εγγραφή DocType: DocType,User Cannot Create,Ο χρήστης δεν μπορεί να δημιουργήσει apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Ολοκληρώθηκε με επιτυχία -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Φάκελο {0} δεν υπάρχει apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,πρόσβαση Dropbox έχει εγκριθεί! DocType: Customize Form,Enter Form Type,Εισάγετε τύπο φόρμας DocType: Google Drive,Authorize Google Drive Access,Εξουσιοδοτήστε την πρόσβαση στο Google Drive @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Δεν υπάρχουν αρχεία ετικέτα. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Κατάργηση πεδίο apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Δεν είστε συνδεδεμένοι στο Διαδίκτυο. Δοκιμάστε ξανά μετά από λίγο. -DocType: User,Send Password Update Notification,Αποστολή Κωδικού Ειδοποίηση ενημέρωσης apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Επιτρέποντας DocType , DocType . Να είστε προσεκτικοί !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Προσαρμοσμένες μορφές για την εκτύπωση, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Άθροισμα {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Λανθασμένο apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Η ενσωμάτωση επαφών Google είναι απενεργοποιημένη. DocType: Assignment Rule,Description,Περιγραφή DocType: Print Settings,Repeat Header and Footer in PDF,Επαναλάβετε και υποσέλιδο σε μορφή PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Αποτυχία DocType: Address Template,Is Default,Είναι προεπιλογή DocType: Data Migration Connector,Connector Type,Τύπος συνδέσμου apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Στήλη Όνομα δεν μπορεί να είναι κενό @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Μεταβείτε 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,Στήλες με βάση +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/model/document.py,Action Failed,Ενέργεια απέτυχε apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,για χρήστη @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Ενεργοποίηση ασπρό DocType: Website Route Redirect,Source,Πηγή apps/frappe/frappe/templates/includes/list/filters.html,clear,σαφής apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Τετελεσμένος +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ρύθμιση> Χρήστης DocType: Prepared Report,Filter Values,Τιμές φίλτρου DocType: Communication,User Tags,Ετικέτες χρηστών DocType: Data Migration Run,Fail,Αποτυγχάνω @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Ακ ,Activity,Δραστηριότητα DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Βοήθεια: για να συνδέσετε με άλλη εγγραφή στο σύστημα, χρησιμοποιήστε '""#Form/Note/[Note Name]', σαν διεύθυνση url σύνδεσης. (Δεν χρησιμοποιείται 'http://')" DocType: User Permission,Allow,Επιτρέπω +DocType: Data Import Beta,Update Existing Records,Ενημέρωση υφιστάμενων αρχείων apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Ας αποφεύγουν επαναλαμβανόμενες λέξεις και χαρακτήρες DocType: Energy Point Rule,Energy Point Rule,Κανόνας ενεργειακού σημείου DocType: Communication,Delayed,Καθυστερημένη @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Στίβος DocType: Notification,Set Property After Alert,Ορισμός ιδιότητας μετά την ειδοποίηση apps/frappe/frappe/config/customization.py,Add fields to forms.,Προσθήκη πεδίων σε φόρμες. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Φαίνεται ότι κάτι δεν πάει καλά με τη διαμόρφωση Paypal αυτού του ιστότοπου. -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/sidebar/review.js,Add Review,Προσθήκη κριτικής -DocType: File,rgt,Rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Μέγεθος γραμματοσειράς (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Μόνο τα τυπικά DocTypes επιτρέπεται να προσαρμόζονται από το Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Φ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Συγνώμη! Δεν μπορείτε να διαγράψετε δημιουργείται αυτόματα σχόλια DocType: Google Settings,Used For Google Maps Integration.,Χρησιμοποιείται για την ενοποίηση των Χαρτών Google. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Τύπος εγγράφου αναφοράς +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Δεν θα εξαχθούν αρχεία DocType: User,System User,Χρήστης συστήματος DocType: Report,Is Standard,Είναι πρότυπο DocType: Desktop Icon,_report,_ΑΝΑΦΟΡΑ @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,Minus-sign apps/frappe/frappe/public/js/frappe/request.js,Not Found,Δεν βρέθηκε apps/frappe/frappe/www/printview.py,No {0} permission,Δεν υπάρχει το δικαίωμα {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Εξαγωγή Προσαρμοσμένη Δικαιώματα +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Δεν βρέθηκαν αντικείμενα. DocType: Data Export,Fields Multicheck,Πεδία Multilack DocType: Activity Log,Login,Σύνδεση DocType: Web Form,Payments,Πληρωμές @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Ταχυδρομικός DocType: Email Account,Default Incoming,Προεπιλεγμένα εισερχόμενα DocType: Workflow State,repeat,Επανάληψη DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Η τιμή πρέπει να είναι μία από τις {0} DocType: Role,"If disabled, this role will be removed from all users.","Αν απενεργοποιηθεί, ο ρόλος αυτός θα πρέπει να αφαιρεθεί από όλους τους χρήστες." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Μεταβείτε στη λίστα {0} +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,Βοήθεια για αναζήτηση DocType: Milestone,Milestone Tracker,Παρακολούθηση ορόσημων apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Εγγεγραμμένοι αλλά άτομα με ειδικές ανάγκες @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Τοπικό όνομα DocType: DocType,Track Changes,Παρακολούθηση αλλαγών DocType: Workflow State,Check,Έλεγχος DocType: Chat Profile,Offline,offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Επιτυχής εισαγωγή {0} DocType: User,API Key,Κλειδί API DocType: Email Account,Send unsubscribe message in email,Αποστολή unsubscribe μήνυμα ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Επεξεργασία τίτλου @@ -1492,11 +1520,11 @@ 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/form/footer/timeline.js,changed value of {0} {1},μεταβλημένη τιμή {0} {1} 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,Συνολικές Σελίδες apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,Το {0} έχει ήδη αντιστοιχίσει την προεπιλεγμένη τιμή για το {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                        No results found for '

                        ,

                        Δεν βρέθηκαν αποτελέσματα για '

                        DocType: DocField,Attach Image,Επισύναψη εικόνας DocType: Workflow State,list-alt,List-alt apps/frappe/frappe/www/update-password.html,Password Updated,Ο κωδικός ενημερώθηκε @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed 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 δεν είναι έγκυρη μορφή Εκθεσης. Η μορφή Εκθεσης πρέπει να είναι \ ένα από τα ακόλουθα %s DocType: Chat Message,Chat,Κουβέντα +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ρύθμιση> Δικαιώματα χρήστη DocType: LDAP Group Mapping,LDAP Group Mapping,Ομαδοποίηση ομάδας LDAP DocType: Dashboard Chart,Chart Options,Επιλογές γραφήματος +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Στήλη χωρίς τίτλο apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} από {1} έως {2} στη σειρά # {3} DocType: Communication,Expired,Έληξε apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Φαίνεται ότι το διακριτικό που χρησιμοποιείτε δεν είναι έγκυρο! @@ -1528,6 +1558,7 @@ DocType: DocType,System,Σύστημα DocType: Web Form,Max Attachment Size (in MB),Max Συνημμένο Μέγεθος (σε MB) apps/frappe/frappe/www/login.html,Have an account? Login,Έχετε λογαριασμό; Σύνδεση DocType: Workflow State,arrow-down,Βέλος προς τα κάτω +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Σειρά {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Ο χρήστης δεν επιτρέπεται να διαγράψει {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} από {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Τελευταία ενημέρωση στις @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Προσαρμοσμένη ρόλος apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Αρχική Σελίδα / φάκελο Test 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Εισάγετε τον κωδικό σας DocType: Dropbox Settings,Dropbox Access Secret,Dropbox access secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Επιτακτικός) 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.,Δεν βρέθηκαν δεδομένα στο αρχείο. Επανατοποθετήστε ξανά το νέο αρχείο με δεδομένα. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Εμφάν apps/frappe/frappe/desk/form/assign_to.py,New Message,Νέο Mήνυμα DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-έκθεση +DocType: Data Import Beta,Template Warnings,Προειδοποιήσεις προτύπων apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,φίλτρα αποθηκεύονται DocType: DocField,Percent,Τοις εκατό apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Παρακαλούμε να ορίσετε φίλτρα @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Προσαρμοσμένο DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Εάν είναι ενεργοποιημένη, οι χρήστες που εισέρχονται από την Περιορισμένη διεύθυνση IP, δεν θα σας ζητηθεί η επιλογή Two Factor Auth" DocType: Auto Repeat,Get Contacts,Λήψη επαφών apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Τις θέσεις που κατατίθενται στο πλαίσιο {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Παράλειψη στήλης χωρίς τίτλο DocType: Notification,Send alert if date matches this field's value,Αποστολή ειδοποίησης σε περίπτωση που η ημερομηνία ταιριάζει με την τιμή αυτού του πεδίου DocType: Workflow,Transitions,Μεταβάσεις apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} έως {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,Βήμα προς τα πίσω apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Παρακαλώ ορίστε τα κλειδιά πρόσβασης dropbox στις ρυθμίσεις του site σας apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Διαγραφή αυτής της εγγραφής για να επιτρέψει την αποστολή σε αυτήν τη διεύθυνση ηλεκτρονικού ταχυδρομείου +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Εάν η μη τυπική θύρα (π.χ. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Προσαρμογή συντομεύσεων apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Μόνο τα υποχρεωτικά πεδία είναι απαραίτητα για νέες εγγραφές. Μπορείτε να διαγράψετε μη υποχρεωτικές στήλες εάν το επιθυμείτε. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Εμφάνιση περισσότερης δραστηριότητας @@ -1769,7 +1804,9 @@ 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 App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Η ενημέρωση με επιτυχία {0} εγγραφή από {1}. 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,Επιστολή DocType: DocType,"Naming Options:
                        1. field:[fieldname] - By Field
                        2. naming_series: - By Naming Series (field called naming_series must be present
                        3. Prompt - Prompt user for a name
                        4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                        5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Επόμενο στοίχημα συ DocType: Energy Point Settings,Energy Point Settings,Ρυθμίσεις ενεργειακού σημείου DocType: Async Task,Succeeded,Πετυχημένος apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Υποχρεωτικά πεδία είναι υποχρεωτικά σε {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                          No results found for '

                          ,

                          Δεν βρέθηκαν αποτελέσματα για '

                          apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Επαναφορά δικαιωμάτων για {0} ; apps/frappe/frappe/config/desktop.py,Users and Permissions,Χρήστες και δικαιώματα DocType: S3 Backup Settings,S3 Backup Settings,S3 Ρυθμίσεις δημιουργίας αντιγράφων ασφαλείας @@ -1854,6 +1892,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,σε DocType: Notification,Value Change,Αλλαγή τιμής DocType: Google Contacts,Authorize Google Contacts Access,Εξουσιοδοτήστε την πρόσβαση στις Επαφές Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Εμφάνιση μόνο αριθμητικών πεδίων από την αναφορά +DocType: Data Import Beta,Import Type,Τύπος εισαγωγής DocType: Access Log,HTML Page,Σελίδα HTML DocType: Address,Subsidiary,Θυγατρική apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Προσπάθεια σύνδεσης στο δίσκο QZ ... @@ -1864,7 +1903,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Μη έγ DocType: Custom DocPerm,Write,Γράφω apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Μόνο ο διαχειριστής έχει τη δυνατότητα να δημιουργήσει εκθέσεις με βάση query / script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ενημέρωση -DocType: File,Preview,Προεπισκόπηση +DocType: Data Import Beta,Preview,Προεπισκόπηση apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Το πεδίο "τιμή" είναι υποχρεωτική. Παρακαλείστε να προσδιορίσετε την αξία που πρέπει να ενημερώνεται DocType: Customize Form,Use this fieldname to generate title,Χρησιμοποιήστε αυτό το πεδίο με όνομα για τη δημιουργία του τίτλου apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Εισαγωγή e-mail από @@ -1947,6 +1986,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Το πρόγ DocType: Social Login Key,Client URLs,Διευθύνσεις URL πελατών apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Ορισμένες πληροφορίες λείπουν apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} δημιουργήθηκε με επιτυχία +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Παράκαμψη {0} από {1}, {2}" DocType: Custom DocPerm,Cancel,Ακύρωση apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Μαζική διαγραφή apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Φάκελος {0} δεν υπάρχει @@ -1974,7 +2014,6 @@ DocType: GCalendar Account,Session Token,Token περιόδου σύνδεσης DocType: Currency,Symbol,Σύμβολο apps/frappe/frappe/model/base_document.py,Row #{0}:,Γραμμή #{0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Επιβεβαίωση διαγραφής δεδομένων -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Ο νέος κωδικός απεστάλη μέσω e-mail apps/frappe/frappe/auth.py,Login not allowed at this time,Η είσοδος δεν επιτρέπεται αυτή τη στιγμή DocType: Data Migration Run,Current Mapping Action,Τρέχουσα δράση χαρτογράφησης DocType: Dashboard Chart Source,Source Name,Όνομα πηγή @@ -1987,6 +2026,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Κα apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Ακολουθούμενη από DocType: LDAP Settings,LDAP Email Field,LDAP Email πεδίο apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Λίστα +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Εξάγει εγγραφές {0} apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Ήδη στη λίστα εκκρεμοτήτων του χρήστη DocType: User Email,Enable Outgoing,Ενεργοποίηση εξερχομένων DocType: Address,Fax,Φαξ @@ -2044,8 +2084,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Εκτύπωση εγγράφων apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Μετάβαση στο πεδίο DocType: Contact Us Settings,Forward To Email Address,Προώθηση στις διευθύνσεις ηλεκτρονικού ταχυδρομείου +DocType: Contact Phone,Is Primary Phone,Είναι το πρωτεύον τηλέφωνο apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Στείλτε ένα email στο {0} για να το συνδέσετε εδώ. DocType: Auto Email Report,Weekdays,Εργάσιμες +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Οι {0} εγγραφές θα εξαχθούν apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Το πεδίο τίτλου πρέπει να είναι ένα έγκυρο όνομα πεδίου DocType: Post Comment,Post Comment,Αναρτήστε Σχόλιο apps/frappe/frappe/config/core.py,Documents,Έγγραφα @@ -2063,7 +2105,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Αυτό το πεδίο θα εμφανιστεί μόνο αν η ΌνομαΠεδίου ορίζεται εδώ έχει αξία ή οι κανόνες είναι αλήθεια (παραδείγματα): myfield eval: doc.myfield == «Αξία μου» eval: doc.age> 18 DocType: Social Login Key,Office 365,Γραφείο 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Σήμερα +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> Printing and Branding> Template Address. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Αφού οριστεί, οι χρήστες θα έχουν πρόσβαση μονο σε έγγραφα ( π.Χ. Blog post), όπου υπάρχει σύνδεσμος ( π.Χ. Blogger ) ." +DocType: Data Import Beta,Submit After Import,Υποβολή μετά την εισαγωγή DocType: Error Log,Log of Scheduler Errors,Αρχείο καταγραφής των σφαλμάτων του scheduler DocType: User,Bio,Βιογραφικό DocType: OAuth Client,App Client Secret,App μυστικό πελάτη @@ -2082,10 +2126,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Απενεργοποίηση συνδέσμου εγγραφής πελάτη στη σελίδα σύνδεσης apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Ανατέθηκε σε / ιδιοκτήτης DocType: Workflow State,arrow-left,Βέλος αριστερά +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Εξαγωγή 1 εγγραφής DocType: Workflow State,fullscreen,Πλήρης οθόνη DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Δημιουργία χάρτη apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Μη εισαγωγή DocType: Web Page,Center,Κέντρο DocType: Notification,Value To Be Set,Τιμή που πρέπει να οριστεί apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Επεξεργασία {0} @@ -2105,6 +2151,7 @@ DocType: Print Format,Show Section Headings,Εμφάνιση Επικεφαλί DocType: Bulk Update,Limit,Όριο apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Λάβαμε ένα αίτημα για διαγραφή {0} δεδομένων που σχετίζονται με: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Προσθέστε μια νέα ενότητα +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Φιλτραρισμένα αρχεία apps/frappe/frappe/www/printview.py,No template found at path: {0},Δεν βρέθηκε πρότυπο στην διαδρομή: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Δεν λογαριασμού ηλεκτρονικού ταχυδρομείου DocType: Comment,Cancelled,Ακυρώθηκε @@ -2191,10 +2238,13 @@ 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} 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,Θα είναι το αναγνωριστικό σύνδεσής σας +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Τύποι εγγράφων παγκόσμιας αναζήτησης Επαναφορά. ,Lead Conversion Time,Χρόνος μετατροπής μολύβδου apps/frappe/frappe/desk/page/activity/activity.js,Build Report,šΚατασκευή έκθεσης DocType: Note,Notify users with a popup when they log in,Ειδοποίηση για τους χρήστες με ένα popup όταν συνδεθείτε +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Οι βασικές λειτουργικές μονάδες {0} δεν μπορούν να αναζητηθούν στη Global Search. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Άνοιγμα συνομιλίας apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} Δεν υπάρχει, επιλέξτε ένα νέο στόχο για τη συγχώνευση" DocType: Data Migration Connector,Python Module,Μονάδα Python @@ -2211,8 +2261,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Κλείσιμο apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Δεν είναι δυνατή η αλλαγή κατάστασης εγγράφου από 0 σε 2 DocType: File,Attached To Field,Επισυνάπτεται στο πεδίο -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ρύθμιση> Δικαιώματα χρήστη -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Ενημέρωση +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Ενημέρωση DocType: Transaction Log,Transaction Hash,Χάσμα συναλλαγών DocType: Error Snapshot,Snapshot View,Προβολή στιγμιότυπου apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Παρακαλώ αποθηκεύστε το ενημερωτικό δελτίο πριν από την αποστολή @@ -2228,6 +2277,7 @@ DocType: Data Import,In Progress,Σε εξέλιξη apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Στην ουρά για backup. Μπορεί να χρειαστούν μερικά λεπτά έως μία ώρα. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Η άδεια χρήστη ήδη υπάρχει +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Χαρτογράφηση της στήλης {0} στο πεδίο {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Προβολή {0} DocType: User,Hourly,Ωριαίος apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Εγγραφή OAuth App πελάτη @@ -2240,7 +2290,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Δεν μπορεί να είναι ""{2}"". Θα πρέπει να είναι ένα από τα ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},κέρδισε το {0} μέσω αυτόματου κανόνα {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ή {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Ενημέρωση κωδικού DocType: Workflow State,trash,Σκουπίδια DocType: System Settings,Older backups will be automatically deleted,Παλαιότερα αντίγραφα ασφαλείας θα διαγραφούν αυτόματα apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Μη έγκυρο αναγνωριστικό κλειδιού πρόσβασης ή κλειδί μυστικής πρόσβασης. @@ -2268,6 +2317,7 @@ DocType: Address,Preferred Shipping Address,Προτιμώμενη διεύθυ apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Με το κεφάλι Επιστολή apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} δημιούργησε {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Δεν επιτρέπεται για {0}: {1} στη σειρά {2}. Περιορισμένο πεδίο: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-δυτικό-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Εάν αυτό είναι επιλεγμένο, θα εισαχθούν σειρές με έγκυρα δεδομένα και μη έγκυρες σειρές θα πεταχτούν σε ένα νέο αρχείο για να εισαγάγετε αργότερα." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Το έγγραφο είναι μόνο επεξεργάσιμη από τους χρήστες του ρόλου @@ -2294,6 +2344,7 @@ DocType: Custom Field,Is Mandatory Field,Είναι υποχρεωτικό πε DocType: User,Website User,Χρήστης ιστοτόπου apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Ορισμένες στήλες μπορεί να αποκόπτονται κατά την εκτύπωση σε PDF. Προσπαθήστε να κρατήσετε τον αριθμό των στηλών κάτω των 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,δεν ισούται +DocType: Data Import Beta,Don't Send Emails,Μην στείλετε μηνύματα ηλεκτρονικού ταχυδρομείου DocType: Integration Request,Integration Request Service,Υπηρεσία Αίτηση Ολοκλήρωσης DocType: Access Log,Access Log,Αρχείο καταγραφής πρόσβασης DocType: Website Script,Script to attach to all web pages.,Script για να επισυνάψετε σε όλες τις ιστοσελίδες. @@ -2333,6 +2384,7 @@ DocType: Contact,Passive,Αδρανής DocType: Auto Repeat,Accounts Manager,Διαχειριστής λογαριασμών apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Ανάθεση για {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Η πληρωμή σας ακυρώνεται. +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/views/reports/report_view.js,Select File Type,Επιλογή τύπου αρχείου apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Προβολή όλων DocType: Help Article,Knowledge Base Editor,Γνώση Επεξεργαστής Βάσης @@ -2365,6 +2417,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Δεδομένα apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Κατάσταση εγγράφου apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Απαιτείται έγκριση +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Πρέπει να δημιουργηθούν οι ακόλουθες εγγραφές πριν μπορέσουμε να εισαγάγουμε το αρχείο σας. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Κωδικός Εξουσιοδότησης apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Δεν επιτρέπεται η εισαγωγή DocType: Deleted Document,Deleted DocType,διαγράφεται DocType @@ -2418,8 +2471,8 @@ DocType: System Settings,System Settings,Ρυθμίσεις συστήματος DocType: GCalendar Settings,Google API Credentials,Τα διαπιστευτήρια API Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Η έναρξη της περιόδου σύνδεσης απέτυχε apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη σε {0} και να αντιγραφεί {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},υποβάλατε αυτό το έγγραφο {0} DocType: Workflow State,th,Th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} χρόνια πριν DocType: Social Login Key,Provider Name,Ονομα πάροχου apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Δημιουργία νέου {0} DocType: Contact,Google Contacts,Επαφές Google @@ -2427,6 +2480,7 @@ DocType: GCalendar Account,GCalendar Account,Λογαριασμός GCalendar DocType: Email Rule,Is Spam,είναι Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Έκθεση {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Άνοιγμα {0} +DocType: Data Import Beta,Import Warnings,Προειδοποιήσεις εισαγωγής DocType: OAuth Client,Default Redirect URI,Προεπιλογή Ανακατεύθυνση URI DocType: Auto Repeat,Recipients,Παραλήπτες DocType: System Settings,Choose authentication method to be used by all users,Επιλέξτε τη μέθοδο ελέγχου ταυτότητας που θα χρησιμοποιηθεί από όλους τους χρήστες @@ -2544,6 +2598,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Η αναφ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Σφάλμα Webhook Slack DocType: Email Flag Queue,Unread,Αδιάβαστος DocType: Bulk Update,Desk,Γραφείο +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Περνώντας τη στήλη {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Το φίλτρο πρέπει να είναι πλειάδα ή λίστα (σε μια λίστα) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Γράψτε ένα ερώτημα select. Σημείωση: το αποτέλεσμα δεν σελιδοποιείται (όλα τα δεδομένα αποστέλλονται σε μια δόση). DocType: Email Account,Attachment Limit (MB),Όριο συνημμένο (mb) @@ -2558,6 +2613,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Δημιουργία νέου DocType: Workflow State,chevron-down,Chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Ηλεκτρονικό ταχυδρομείο δεν αποστέλλονται σε {0} (αδιάθετων / άτομα με ειδικές ανάγκες) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Επιλέξτε πεδία για εξαγωγή DocType: Async Task,Traceback,Ανατρέχω DocType: Currency,Smallest Currency Fraction Value,Ο μικρότερος Νόμισμα κλάσμα Αξία apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Προετοιμασία αναφοράς @@ -2566,6 +2622,7 @@ DocType: Workflow State,th-list,Th-list DocType: Web Page,Enable Comments,Ενεργοποίηση σχολίων apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Σημειώσεις DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Περιορισμός χρηστών μόνο από αυτην τη διεύθυνση ip. Pολλαπλές διευθύνσεις ip μπορούν να προστεθούν διαχωρiσμένες με κόμμα. Eπίσης γίνονται δεκτές και μερικές διευθύνσεις ip, όπως (111.111.111)" +DocType: Data Import Beta,Import Preview,Προεπισκόπηση προεπισκόπησης DocType: Communication,From,Από apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Επιλέξτε πρώτα έναν κόμβο ομάδας. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Βρες {0} σε {1} @@ -2664,6 +2721,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Μεταξύ DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Στην ουρά +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ρυθμίσεις> Προσαρμογή φόρμας DocType: Braintree Settings,Use Sandbox,χρήση Sandbox apps/frappe/frappe/utils/goal.py,This month,Αυτο το μηνα apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Νέα προσαρμοσμένη μορφή Εκτύπωση @@ -2679,6 +2737,7 @@ DocType: Session Default,Session Default,Προεπιλεγμένη περίοδ DocType: Chat Room,Last Message,Τελευταίο μήνυμα DocType: OAuth Bearer Token,Access Token,Η πρόσβαση παραχωρήθηκε DocType: About Us Settings,Org History,Ιστορικό οργανισμού +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Περίπου τα {0} υπόλοιπα DocType: Auto Repeat,Next Schedule Date,Επόμενη ημερομηνία προγραμματισμού DocType: Workflow,Workflow Name,Όνομα ροής εργασιών DocType: DocShare,Notify by Email,Ειδοποίηση με e-mail @@ -2708,6 +2767,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Συγγραφέας apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,συνεχίσετε την αποστολή apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Ξανανοίγω +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Εμφάνιση προειδοποιήσεων apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Χρήστης αγορών DocType: Data Migration Run,Push Failed,Το πάτημα απέτυχε @@ -2744,6 +2804,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Σύν apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Δεν επιτρέπεται να βλέπετε το ενημερωτικό δελτίο. DocType: User,Interests,Ενδιαφέροντα apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Οι οδηγίες επαναφοράς κωδικού πρόσβασης έχουν αποσταλθεί στο e-mail σας +DocType: Energy Point Rule,Allot Points To Assigned Users,Allot Points στους Assigned Users apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Το επίπεδο 0 είναι για δικαιώματα επιπέδου εγγράφου, \ υψηλότερα επίπεδα για δικαιώματα πεδίου." DocType: Contact Email,Is Primary,Είναι πρωτογενής @@ -2766,6 +2827,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,Έναρξη εισαγωγής +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Τύπος εξαγωγής DocType: Workflow State,circle-arrow-left,Circle-arrow-left DocType: System Settings,Force User to Reset Password,Αναγκάστε τον χρήστη να επαναφέρει τον κωδικό πρόσβασης apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Για να λάβετε την ενημερωμένη αναφορά, κάντε κλικ στο {0}." @@ -2778,13 +2840,16 @@ DocType: Contact,Middle Name,Μεσαίο όνομα DocType: Custom Field,Field Description,Περιγραφή πεδίου apps/frappe/frappe/model/naming.py,Name not set via Prompt,Το όνομα δεν έχει οριστεί μέσω διαλόγου προτροπής apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Εισερχόμενα e-mail +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Ενημέρωση {0} από {1}, {2}" DocType: Auto Email Report,Filters Display,φίλτρα οθόνης apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ο τομέας "τροποποιημένος_ε" πρέπει να είναι παρών για να κάνει μια τροπολογία. +DocType: Contact,Numbers,Αριθμοί apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} εκτιμά την εργασία σας στις {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Αποθήκευση φίλτρων DocType: Address,Plant,Βιομηχανικός εξοπλισμός apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Απάντηση σε όλους DocType: DocType,Setup,Εγκατάσταση +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Όλα τα αρχεία DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Διεύθυνση ηλεκτρονικού ταχυδρομείου, των οποίων οι επαφές Google πρόκειται να συγχρονιστούν." DocType: Email Account,Initial Sync Count,Αρχική Sync Καταμέτρηση DocType: Workflow State,glass,Ποτήρι @@ -2809,7 +2874,7 @@ DocType: Workflow State,font,Γραμματοσειρά DocType: DocType,Show Preview Popup,Εμφάνιση αναδυόμενου προεπισκόπησης apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Αυτό είναι ένα κοινό κωδικό top-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Παρακαλούμε ενεργοποιήστε τα pop-ups -DocType: User,Mobile No,Αρ. Κινητού +DocType: Contact,Mobile No,Αρ. Κινητού DocType: Communication,Text Content,Περιεχόμενο κειμένου DocType: Customize Form Field,Is Custom Field,Είναι Προσαρμοσμένο πεδίο DocType: Workflow,"If checked, all other workflows become inactive.","Εάν είναι επιλεγμένο, όλες οι άλλες ροές εργασίας γίνονται ανενεργές." @@ -2855,6 +2920,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Πρ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Όνομα της νέας μορφοποίησης εκτύπωσης apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Εναλλαγή πλευρικής εργαλειοθήκης DocType: Data Migration Run,Pull Insert,Τραβήξτε Εισαγωγή +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Τα μέγιστα επιτρεπόμενα σημεία μετά από πολλαπλασιασμό με την τιμή του πολλαπλασιαστή (Σημείωση: Για το όριο δεν αφήνετε αυτό το πεδίο άδειο ή το σύνολο 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Μη έγκυρο πρότυπο apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Παράνομη ερώτηση SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Υποχρεωτικό: DocType: Chat Message,Mentions,Αναφέρει @@ -2869,6 +2937,7 @@ DocType: User Permission,User Permission,Δικαίωμα χρήστη apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Ιστολόγιο apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,Το LDAP δεν είναι εγκατεστημένο apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Κατεβάστε με δεδομένα +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},αλλαγμένες τιμές για {0} {1} DocType: Workflow State,hand-right,Hand-right DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Περιοχή @@ -2895,10 +2964,12 @@ DocType: Braintree Settings,Public Key,Δημόσιο κλειδί DocType: GSuite Settings,GSuite Settings,Ρυθμίσεις GSuite DocType: Address,Links,Σύνδεσμοι DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Χρησιμοποιεί το όνομα της διεύθυνσης ηλεκτρονικού ταχυδρομείου που αναφέρεται σε αυτόν τον λογαριασμό ως όνομα του αποστολέα για όλα τα μηνύματα ηλεκτρονικού ταχυδρομείου που αποστέλλονται μέσω αυτού του λογαριασμού. +DocType: Energy Point Rule,Field To Check,Πεδίο για έλεγχο apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Επαφές Google - Δεν ήταν δυνατή η ενημέρωση της επαφής στις Επαφές Google {0}, ο κωδικός σφάλματος {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Επιλέξτε τον τύπο εγγράφου. apps/frappe/frappe/model/base_document.py,Value missing for,Η τιμή λείπει για apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Προσθήκη παιδιού +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Πρόοδος εισαγωγής DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Αν η κατάσταση είναι ικανοποιημένη, ο χρήστης θα ανταμειφθεί με τα σημεία. π.χ. doc.status == 'Κλειστό'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Οι υποβεβλημένες εγγραφές δεν μπορούν να διαγραφούν. @@ -2935,6 +3006,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Εξουσιοδοτή apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Η σελίδα που ψάχνετε λείπει. Αυτό θα μπορούσε να είναι επειδή κινείται ή υπάρχει ένα τυπογραφικό λάθος στο σύνδεσμο. apps/frappe/frappe/www/404.html,Error Code: {0},Κωδικός σφάλματος: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Περιγραφή για τη σελίδα παράθεσης, σε μορφή απλού κειμένου, μόνο μια-δυο γραμμές. (Μέγιστο 140 χαρακτήρες)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} είναι υποχρεωτικά πεδία DocType: Workflow,Allow Self Approval,Να επιτρέπεται η αυτόνομη έγκριση DocType: Event,Event Category,Κατηγορία εκδηλώσεων apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2983,8 +3055,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Μετακομίζ DocType: Address,Preferred Billing Address,Προτιμώμενη διεύθυνση χρέωσης apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Πάρα πολλές εγγραφές σε ένα αίτημα. Παρακαλώ να στέλνετε μικρότερα αιτήματα. apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Το Google Drive έχει ρυθμιστεί. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Ο τύπος εγγράφου {0} επαναλήφθηκε. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,τιμές Άλλαξε DocType: Workflow State,arrow-up,Βέλος πάνω +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Θα πρέπει να υπάρχει τουλάχιστον μία σειρά για τον πίνακα {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Για να ρυθμίσετε την αυτόματη επανάληψη, ενεργοποιήστε την επιλογή "Να επιτρέπεται η αυτόματη επανάληψη" από {0}." DocType: OAuth Bearer Token,Expires In,Λήγει σε DocType: DocField,Allow on Submit,Επιτρέπεται κατά την υποβολή @@ -3071,6 +3145,7 @@ DocType: Custom Field,Options Help,Βοήθεια επιλογών DocType: Footer Item,Group Label,ομάδα 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 θα εξαχθεί 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,Περιορίστε στον τομέα @@ -3088,6 +3163,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Κωδικός ελέγχου DocType: Webhook,Webhook Request,Αίτημα Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Αποτυχία: {0} στο {1}: {2} DocType: Data Migration Mapping,Mapping Type,Τύπος χαρτογράφησης +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Επιλέξτε Υποχρεωτική apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Αναζήτηση apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Δεν υπάρχει ανάγκη για σύμβολα, ψηφία, ή κεφαλαία γράμματα." DocType: DocField,Currency,Νόμισμα @@ -3118,11 +3194,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Επιστολή Head Based On apps/frappe/frappe/utils/oauth.py,Token is missing,Κουπόνι λείπει apps/frappe/frappe/www/update-password.html,Set Password,Ορισμός κωδικού πρόσβασης +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Έγινε επιτυχής εισαγωγή {0} εγγραφών. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Σημείωση: Η αλλαγή του ονόματος σελίδας θα διακόψει την προηγούμενη διεύθυνση URL σε αυτήν τη σελίδα. apps/frappe/frappe/utils/file_manager.py,Removed {0},Αφαιρέθηκε {0} DocType: SMS Settings,SMS Settings,Ρυθμίσεις SMS DocType: Company History,Highlight,Επισήμανση DocType: Dashboard Chart,Sum,Αθροισμα +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,μέσω εισαγωγής δεδομένων DocType: OAuth Provider Settings,Force,Δύναμη apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Τελευταία συγχρονισμένη {0} DocType: DocField,Fold,Αναδίπλωση @@ -3159,6 +3237,7 @@ DocType: Workflow State,Home,Αρχική DocType: OAuth Provider Settings,Auto,Αυτο DocType: System Settings,User can login using Email id or User Name,Ο χρήστης μπορεί να συνδεθεί χρησιμοποιώντας το αναγνωριστικό email ή το όνομα χρήστη DocType: Workflow State,question-sign,Question-sign +apps/frappe/frappe/model/base_document.py,{0} is disabled,Το {0} είναι απενεργοποιημένο apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Η "διαδρομή" πεδίου είναι υποχρεωτική για προβολές ιστού apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Εισαγωγή στήλης Πριν από το {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Ο χρήστης από αυτό το πεδίο θα ανταμείβεται πόντους @@ -3192,6 +3271,7 @@ DocType: Website Settings,Top Bar Items,Αντικείμενα top bar DocType: Notification,Print Settings,Ρυθμίσεις εκτύπωσης DocType: Page,Yes,Ναι DocType: DocType,Max Attachments,Μέγιστα συνημμένα +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Περίπου {0} δευτερόλεπτα DocType: Calendar View,End Date Field,Πεδίο λήξης ημερομηνίας apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Συνοπτικές συντομεύσεις DocType: Desktop Icon,Page,Σελίδα @@ -3302,6 +3382,7 @@ DocType: GSuite Settings,Allow GSuite access,Επιτρέψτε την πρόσ DocType: DocType,DESC,DESC DocType: DocType,Naming,Ονομασία apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Επιλέξτε All +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Στήλη {0} apps/frappe/frappe/config/customization.py,Custom Translations,Προσαρμοσμένη Μεταφράσεις apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Πρόοδος apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,ανά Ρόλο @@ -3343,11 +3424,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Α DocType: Stripe Settings,Stripe Settings,Ρυθμίσεις ταινιών DocType: Data Migration Mapping,Data Migration Mapping,Χαρτογράφηση μετανάστευσης δεδομένων DocType: Auto Email Report,Period,Περίοδος +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Περίπου το {0} λεπτό που απομένει apps/frappe/frappe/www/login.py,Invalid Login Token,Άκυρη Είσοδος Διακριτικό 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,Share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Η ουρά πρέπει να είναι μία από τις {0} @@ -3378,6 +3461,7 @@ DocType: Calendar View,Start Date Field,Πεδίο Έναρξης Ημερομη DocType: Role,Role Name,Όνομα ρόλου apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Διακόπτη στο γραφείο apps/frappe/frappe/config/core.py,Script or Query reports,Σενάριο ή ερωτήματος εκθέσεις +DocType: Contact Phone,Is Primary Mobile,Είναι πρωτεύον κινητό DocType: Workflow Document State,Workflow Document State,Κατάσταση εγγράφου ροής εργασίας apps/frappe/frappe/public/js/frappe/request.js,File too big,Πολύ μεγάλο αρχείο apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου προστεθούν πολλές φορές @@ -3423,6 +3507,7 @@ DocType: DocField,Float,Κινητής υποδιαστολής DocType: Print Settings,Page Settings,Ρυθμίσεις σελίδας apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Οικονομία... apps/frappe/frappe/www/update-password.html,Invalid Password,Λανθασμένος κωδικός +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Εισήχθη με επιτυχία η {0} εγγραφή από {1}. DocType: Contact,Purchase Master Manager,Κύρια εγγραφή υπευθύνου αγορών apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Κάντε κλικ στο εικονίδιο κλειδώματος για να μεταβείτε στο δημόσιο / ιδιωτικό DocType: Module Def,Module Name,Όνομα λειτουργικής μονάδας @@ -3456,6 +3541,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Παρακαλώ εισάγετε ένα έγκυρο αριθμό κινητού apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Ορισμένες από τις λειτουργίες ενδέχεται να μην λειτουργούν στο πρόγραμμα περιήγησής σας. Ενημερώστε τον περιηγητή σας στην πιο πρόσφατη έκδοση. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Δεν ξέρω, ρωτήστε «βοήθεια»" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ακύρωσε αυτό το έγγραφο {0} DocType: DocType,Comments and Communications will be associated with this linked document,Σχόλια και Επικοινωνιών θα σχετίζονται με αυτό το συνδεδεμένο έγγραφο apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Φίλτρο ... DocType: Workflow State,bold,Έντονη γραφή @@ -3474,6 +3560,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Προσθή DocType: Comment,Published,Δημοσιευμένο apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Σας ευχαριστούμε για το email σας DocType: DocField,Small Text,Μικρό κείμενο +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Ο αριθμός {0} δεν μπορεί να οριστεί ως πρωτεύον για το Phone καθώς και για τον αριθμό κινητού τηλεφώνου DocType: Workflow,Allow approval for creator of the document,Επιτρέψτε την έγκριση του δημιουργού του εγγράφου apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Αποθήκευση αναφοράς DocType: Webhook,on_cancel,on_cancel @@ -3531,6 +3618,7 @@ DocType: Print Settings,PDF Settings,Ρυθμίσεις pdf DocType: Kanban Board Column,Column Name,Όνομα στήλης DocType: Language,Based On,Με βάση την DocType: Email Account,"For more information, click here.","Για περισσότερες πληροφορίες, κάντε κλικ εδώ ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Ο αριθμός των στηλών δεν ταιριάζει με τα δεδομένα apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Κάντε Προεπιλογή apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Χρόνος εκτέλεσης: {0} δευτ apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Μη συμπεριλαμβανόμενη διαδρομή @@ -3620,7 +3708,7 @@ 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: Deleted Document,GCalendar Sync ID,Αναγνωριστικό συγχρονισμού GCalendar DocType: Prepared Report,Report Start Time,Αναφορά ώρας έναρξης -apps/frappe/frappe/config/settings.py,Export Data,Εξαγωγή δεδομένων +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Εξαγωγή δεδομένων 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.,"Αυτή είναι μια αναφορά ιστορικού. Ορίστε τα κατάλληλα φίλτρα και, στη συνέχεια, δημιουργήστε ένα νέο." @@ -3638,7 +3726,6 @@ DocType: Report,Disable Prepared Report,Απενεργοποίηση προετ apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Ο χρήστης {0} έχει ζητήσει τη διαγραφή δεδομένων apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Παράνομη πρόσβαση Token. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Η εφαρμογή έχει ενημερωθεί σε μια νέα έκδοση, παρακαλώ ανανεώστε αυτή τη σελίδα" -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> Printing and Branding> Template Address. DocType: Notification,Optional: The alert will be sent if this expression is true,Προαιρετικά: η ειδοποίηση θα σταλεί εάν αυτή η έκφραση είναι αληθής DocType: Data Migration Plan,Plan Name,Όνομα προγράμματος DocType: Print Settings,Print with letterhead,Εκτύπωση με επιστολόχαρτο @@ -3679,6 +3766,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : Δεν είναι δυνατή η ρύθμιση τροποποίησης χωρίς ακύρωση apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Ολοσέλιδος DocType: DocType,Is Child Table,Είναι θυγατρικός πίνακας +DocType: Data Import Beta,Template Options,Επιλογές προτύπου apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} Πρέπει να είναι μία από {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} βλέπουν το έγγραφο αυτή τη στιγμή apps/frappe/frappe/config/core.py,Background Email Queue,Ιστορικό Email Ουρά @@ -3686,7 +3774,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Επαναφορά DocType: Communication,Opened,Άνοιξε DocType: Workflow State,chevron-left,Chevron-αριστερά DocType: Communication,Sending,Αποστολή -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Δεν επιτρέπεται από αυτήν την διεύθυνση IP DocType: Website Slideshow,This goes above the slideshow.,Αυτό πηγαίνει πάνω από το προβολή παρουσίασης. DocType: Contact,Last Name,Επώνυμο DocType: Event,Private,Ιδιωτικός @@ -3700,7 +3787,6 @@ DocType: Workflow Action,Workflow Action,Ενέργεια ροής εργασί apps/frappe/frappe/utils/bot.py,I found these: ,Βρήκα αυτά: DocType: Event,Send an email reminder in the morning,Στείλτε ένα email υπενθύμισης το πρωί DocType: Blog Post,Published On,Δημοσιεύθηκε στις -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 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} @@ -3721,7 +3807,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,Warning-sign DocType: Prepared Report,Prepared Report,Προετοιμασμένη αναφορά apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Προσθέστε μετα-ετικέτες στις ιστοσελίδες σας -DocType: Contact,Phone Nos,Αριθμοί τηλεφώνου DocType: Workflow State,User,Χρήστης DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Εμφάνιση τίτλου στο παράθυρο του browser ως "πρόθεμα - τίτλος" DocType: Payment Gateway,Gateway Settings,Ρυθμίσεις πύλης @@ -3738,6 +3823,7 @@ DocType: Data Migration Connector,Data Migration,Μετεγκατάσταση δ DocType: User,API Key cannot be regenerated,Το κλειδί API δεν μπορεί να αναγεννηθεί apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Κάτι πήγε στραβά DocType: System Settings,Number Format,Μορφοποίηση αριθμών +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Έγινε επιτυχής εισαγωγή {0} εγγραφής. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Περίληψη DocType: Event,Event Participants,Συμμετέχοντες στην εκδήλωση DocType: Auto Repeat,Frequency,Συχνότητα @@ -3745,7 +3831,7 @@ DocType: Custom Field,Insert After,Εισαγωγή μετά την DocType: Event,Sync with Google Calendar,Συγχρονισμός με το Ημερολόγιο Google DocType: Access Log,Report Name,Όνομα έκθεσης DocType: Desktop Icon,Reverse Icon Color,Αντίστροφη Icon Χρώμα -DocType: Notification,Save,Αποθήκευση +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Αποθήκευση apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Επόμενη προγραμματισμένη ημερομηνία apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Αναθέστε σε αυτόν που έχει τις λιγότερες αναθέσεις apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,τμήμα Τομέας @@ -3768,11 +3854,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ρυθμίσεις> Προσαρμογή φόρμας DocType: Google Contacts,Last Sync On,Ο τελευταίος συγχρονισμός είναι ενεργοποιημένος DocType: Deleted Document,Deleted Document,Διαγράφηκε έγγραφο apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ωχ! κάτι πήγε στραβά DocType: Desktop Icon,Category,Κατηγορία +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Τιμή {0} που λείπει για {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Πρόσθεσε επαφές apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Τοπίο apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Επεκτάσεις πλευρά του πελάτη σενάριο σε Javascript @@ -3795,6 +3881,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ενημέρωση ενεργειακού σημείου apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Επιλέξτε μια άλλη μέθοδο πληρωμής. Το PayPal δεν υποστηρίζει τις συναλλαγές μετρητών «{0}» DocType: Chat Message,Room Type,Τύπος δωματίου +DocType: Data Import Beta,Import Log Preview,Εισαγωγή προεπισκόπησης πρωτοκόλλου apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,πεδίο αναζήτησης {0} δεν είναι έγκυρη apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,φορτωμένο αρχείο DocType: Workflow State,ok-circle,Ok-circle @@ -3861,6 +3948,7 @@ DocType: DocType,Allow Auto Repeat,Να επιτρέπεται η αυτόματ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Δεν υπάρχουν τιμές που να εμφανίζονται DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Πρότυπο ηλεκτρονικού ταχυδρομείου +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Αναβαθμίστηκε με επιτυχία η εγγραφή {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Ο χρήστης {0} δεν έχει πρόσβαση doctype μέσω της άδειας ρόλου για το έγγραφο {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Το όνομα χρήστη και ο κωδικός πρόσβασης είναι απαραίτητα apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Παρακαλώ ανανεώστε για να λάβετε το τελευταίο έγγραφο. diff --git a/frappe/translations/es.csv b/frappe/translations/es.csv index 57aa318f05..c30078ee87 100644 --- a/frappe/translations/es.csv +++ b/frappe/translations/es.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Las nuevas {} versiones para las siguientes aplicaciones están disponibles apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Por favor, seleccione un campo de cantidad." +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Cargando archivo de importación ... DocType: Assignment Rule,Last User,Último usuario apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Una nueva tarea, {0}, le ha sido asignada por {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Valores predeterminados de sesión guardados +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Recargar archivo DocType: Email Queue,Email Queue records.,Registros de Email en cola. DocType: Post,Post,Publicar DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 rol actualiza los permisos de usuario apps/frappe/frappe/public/js/frappe/model/model.js,Rename {0},Cambiar el nombre {0} DocType: Workflow State,zoom-out,Alejar +DocType: Data Import Beta,Import Options,Opciones de importación apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,No se puede abrir {0} cuando su instancia está abierto/a apps/frappe/frappe/model/document.py,Table {0} cannot be empty,La tabla {0} no puede estar vacía DocType: SMS Parameter,Parameter,Parámetro @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mensual DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Habilitar correos entrantes apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Peligro -apps/frappe/frappe/www/login.py,Email Address,Dirección de correo electrónico +DocType: Address,Email Address,Dirección de correo electrónico DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Envíar una notificación al no ser leído apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Exportación no permitida. Se necesita el rol {0} para exportar. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrad DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opciones de contacto, como 'Consultas de Ventas, Consultas de soporte, etc' cada una en una nueva línea o separados por comas." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Añadir una Etiqueta ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Retrato -DocType: Data Migration Run,Insert,Insertar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insertar apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Permitir Acceso a Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Seleccionar {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Por favor ingrese la URL Base @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Hace un mi 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.","Aparte del Administrador del Sistema, funciones con acceso a Definir Permisos de Usuarios pueden establecer permisos para otros usuarios para que ese Tipo de Documento." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,Configurar tema DocType: Company History,Company History,Historia de la compañía -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Reiniciar +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Reiniciar DocType: Workflow State,volume-up,volume-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks llama a solicitudes de API en aplicaciones web +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Mostrar rastreo DocType: DocType,Default Print Format,Formato de impresión por defecto DocType: Workflow State,Tags,Etiquetas apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ninguno: Fin del flujo de trabajo apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El campo {0} no puede establecerse como único en {1}, ya que existen valores no únicos" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipos de Documentos +DocType: Global Search Settings,Document Types,Tipos de Documentos DocType: Address,Jammu and Kashmir,Jammu and Kashmir DocType: Workflow,Workflow State Field,Campo del Estado del Flujo de Trabajo -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuración> Usuario DocType: Language,Guest,Invitado DocType: DocType,Title Field,Campo de título DocType: Error Log,Error Log,Registro de Errores @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Repeticiones como ""abcabcabc"" son sólo un poco más difícil de adivinar que el ""abc""" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Si usted piensa que esto no está autorizado, por favor, cambie la contraseña del administrador." +DocType: Data Import Beta,Data Import Beta,Beta de importación de datos apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} es obligatorio DocType: Assignment Rule,Assignment Rules,Reglas de asignación DocType: Workflow State,eject,expulsar @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Nombre de la Acción del Gr apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,El 'DocType' no se puede fusionar DocType: Web Form Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,No es un archivo zip +DocType: Global Search DocType,Global Search DocType,Búsqueda global DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                          New {{ doc.doctype }} #{{ doc.name }}
                          ","Para añadir temas dinámicos, utilice etiquetas jinja como
                           New {{ doc.doctype }} #{{ doc.name }} 
                          " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Evento de Documento apps/frappe/frappe/public/js/frappe/utils/user.js,You,Usted DocType: Braintree Settings,Braintree Settings,Configuración de Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Se crearon {0} registros con éxito. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Guardar Filtro DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},No se puede eliminar {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Introduzca el parámetro u apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Repetición automática creada para este documento apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Ver informe en su navegador apps/frappe/frappe/config/desk.py,Event and other calendars.,Eventos y otros calendarios. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 fila obligatoria) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Todos los campos son necesarios para enviar el comentario DocType: Custom Script,Adds a client custom script to a DocType,Agrega un script personalizado de cliente a un DocType DocType: Print Settings,Printer Name,Nombre de la Impresora @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Actualización masiva DocType: Workflow State,chevron-up,chevron -up DocType: DocType,Allow Guest to View,Permitir ver al invitado apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} no debe ser igual que {1} -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 comparación, use> 5, <10 o = 324. Para rangos, use 5:10 (para valores entre 5 y 10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Eliminar {0} artículos de forma permanente? apps/frappe/frappe/utils/oauth.py,Not Allowed,No permitido @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Visualización DocType: Email Group,Total Subscribers,Suscriptores Totales apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Arriba {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Numero de fila apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Si un rol no tiene acceso en al Nivel 0, entonces los niveles más altos tampoco tendrán permisos." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Guardar como DocType: Comment,Seen,Visto @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/www/printview.py,Not allowed to print draft documents,No se puede imprimir documentos en borrador apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Reset to defaults,Restablecer predeterminados DocType: Workflow,Transition Rules,Reglas de Transición +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Showing only first {0} rows in preview,Mostrando solo las primeras {0} filas en la vista previa apps/frappe/frappe/core/doctype/report/report.js,Example:,Ejemplo : DocType: Workflow,Defines workflow states and rules for a document.,Define los estados de flujo de trabajo y reglas para un documento. DocType: Workflow State,Filter,Filtro @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Cerrado DocType: Blog Settings,Blog Title,Título del Blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Roles estándar no pueden ser desactivados apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Tipo de Chat +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Columnas de mapa DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Boletín de noticias apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,No se puede utilizar sub-query en order by @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Añadir una columna apps/frappe/frappe/www/contact.html,Your email address,Su dirección de correo electrónico DocType: Desktop Icon,Module,Módulo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Se actualizaron satisfactoriamente {0} registros de {1}. DocType: Notification,Send Alert On,Enviar alerta en DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Personalizar etiquetas, ocultar campos, predeterminados, etc" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Descomprimiendo archivos ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,El usuario {0} no se puede eliminar DocType: System Settings,Currency Precision,Precisión de monedas apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,"Otra transacción está bloqueando esta. Por favor, inténtelo de nuevo en unos segundos." +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Filtros claros DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Los archivos adjuntos no se pudieron vincular correctamente al nuevo documento DocType: Chat Message Attachment,Attachment,Adjunto @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,No se pueden apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar: no se pudo actualizar el evento {0} en Google Calendar, código de error {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Buscar o escribir un comando DocType: Activity Log,Timeline Name,Nombre de la línea de tiempo +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Solo uno {0} se puede establecer como primario. DocType: Email Account,e.g. smtp.gmail.com,por ejemplo smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Añadir una nueva regla DocType: Contact,Sales Master Manager,Gerente principal de ventas @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Campo de segundo nombre de LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importando {0} de {1} DocType: GCalendar Account,Allow GCalendar Access,Permitir el Acceso de GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} es un campo obligatorio +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} es un campo obligatorio apps/frappe/frappe/templates/includes/login/login.js,Login token required,Se necesita un token de inicio de sesión apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rango mensual: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Seleccionar múltiples elementos de la lista @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},No se puede conectar: {0 apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Una palabra de por sí es fácil de adivinar. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},La asignación automática falló: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Buscar... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Por favor, seleccione la empresa" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la hoja apps/frappe/frappe/utils/file_manager.py,Added {0},{0} agregado apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,No hay registros coincidentes. Buscar algo nuevo @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,ID de cliente de OAuth DocType: Auto Repeat,Subject,Asunto apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Volver al Escritorio DocType: Web Form,Amount Based On Field,Cantidad basada en el Campo -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure la cuenta de correo electrónico predeterminada desde Configuración> Correo electrónico> Cuenta de correo electrónico apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,El usuario es obligatorio para compartir DocType: DocField,Hidden,Oculto DocType: Web Form,Allow Incomplete Forms,Permitir formularios incompletos @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} y {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Iniciar una conversación. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Agregar siempre ""Borrador"" al imprimir borradores de documentos" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Error en la notificación: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Hace {0} año (s) DocType: Data Migration Run,Current Mapping Start,Inicio de mapeo actual apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,El correo electrónico se ha marcado como spam DocType: Comment,Website Manager,Administrar Página Web @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,Código de barras apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,El uso de la sub-query o función está restringido. apps/frappe/frappe/config/customization.py,Add your own translations,Añada sus propias traducciones DocType: Country,Country Name,Nombre del País +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Plantilla en blanco DocType: About Us Team Member,About Us Team Member,Miembro del Equipo Acerca de Nosotros apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Los permisos se establecen en los roles y en los tipos de documentos (llamados 'DocType') Se establecen permisos como: lectura, escritura, crear, borrar, validar, cancelar, corregir, reporte, importar, exportar, imprimir, Email y los permisos de usuario" DocType: Event,Wednesday,Miércoles @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Enlace de imagen de sitio web DocType: Web Form,Sidebar Items,Elementos de barra lateral DocType: Web Form,Show as Grid,Mostrar como Cuadrícula apps/frappe/frappe/installer.py,App {0} already installed,Aplicación {0} ya instalada +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Los usuarios asignados al documento de referencia obtendrán puntos. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Sin Vista Previa DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Archivos descomprimidos {0} @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Días anteriores apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Los eventos diarios deben finalizar el mismo día. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Editar... DocType: Workflow State,volume-down,volume-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Acceso no permitido desde esta dirección IP apps/frappe/frappe/desk/reportview.py,No Tags,Sin Etiquetas DocType: Email Account,Send Notification to,Enviar notificación a DocType: DocField,Collapsible,Plegable @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Desarrollador apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Creado apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} en la fila {1} no puede tener tanto URL como elementos hijos +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Debe haber al menos una fila para las siguientes tablas: {0} DocType: Print Format,Default Print Language,Lenguaje de impresión predeterminado apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancestros De apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} no se puede eliminar @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Anfitrión +DocType: Data Import Beta,Import File,Importar archivo apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Columna {0} ya existe. DocType: ToDo,High,Alto apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nuevo Evento @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Enviar notificaciones para hi apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Profesor apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,No se encuentra en modo desarrollador apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,La copia de seguridad de archivos está lista -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Puntos máximos permitidos después de multiplicar puntos con el valor del multiplicador (Nota: para ningún valor de límite establecido como 0) DocType: DocField,In Global Search,En Búsqueda Global DocType: System Settings,Brute Force Security,Fuerza Bruta de Seguridad DocType: Workflow State,indent-left,Guión - izquierda @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Usuario '{0}' ya tiene el papel '{1}' DocType: System Settings,Two Factor Authentication method,Método de autenticación de dos factores apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Primero configure el nombre y guarde el registro. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 registros apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Compartido con {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Darse de baja DocType: View Log,Reference Name,Nombre de referencia @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Conector de migració apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1},{0} revertido {1} DocType: Email Account,Track Email Status,Seguir el Estado del Correo Electrónico DocType: Note,Notify Users On Every Login,Notificar a los usuarios en cada inicio de sesión +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,No se puede hacer coincidir la columna {0} con ningún campo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Se actualizaron satisfactoriamente {0} registros. DocType: PayPal Settings,API Password,Contraseña de API apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Ingrese al módulo python o seleccione el tipo de conector apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Nombre de campo no establecido para el dato personalizado @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,User Permissions are used to limit users to specific records.,Los Permisos de Usuario se usan para limitar a los usuarios a registros específicos. DocType: Notification,Value Changed,Valor Cambiado apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Nombre duplicado {0} {1} -DocType: Email Queue,Retry,Reintentar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Reintentar +DocType: Contact Phone,Number,Número DocType: Web Form Field,Web Form Field,Campo de Formulario Web apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Tienes un nuevo mensaje de: +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 comparación, use> 5, <10 o = 324. Para rangos, use 5:10 (para valores entre 5 y 10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Editar HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Por favor ingrese la URL de Redireccion apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Ver propiedades (vía apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Haga clic en un archivo para seleccionarlo. DocType: Note Seen By,Note Seen By,Nota vista por apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Trate de usar un patrón teclado ya con más vueltas -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Tabla de Líderes +,LeaderBoard,Tabla de Líderes DocType: DocType,Default Sort Order,Orden de clasificación predeterminado DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Correo Electrónico Responder Ayuda @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Centavo apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Escribir correo apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Diferentes estados para el flujo de trabajo (Por ejemplo: Borrador, Aprobado, Cancelado)" DocType: Print Settings,Allow Print for Draft,Permitir Impresión para Borrador +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.","Error al conectarse a la aplicación QZ Tray ...

                          Debe tener la aplicación QZ Tray instalada y en ejecución para usar la función de Impresión sin formato.

                          Haga clic aquí para descargar e instalar la bandeja QZ .
                          Haga clic aquí para obtener más información sobre la impresión sin procesar ." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Establecer cantidad apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Presentar este documento para confirmar DocType: Contact,Unsubscribed,No suscrito @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Unidad Organizacional para ,Transaction Log Report,Informe de Registro de Transacciones DocType: Custom DocPerm,Custom DocPerm,DocPerm Personalizado DocType: Newsletter,Send Unsubscribe Link,Enviar Enlace de cancelar suscripción +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Hay algunos registros vinculados que deben crearse antes de que podamos importar su archivo. ¿Desea crear los siguientes registros faltantes automáticamente? DocType: Access Log,Method,Método DocType: Report,Script Report,Informe de secuencias de comandos (Scripts) DocType: OAuth Authorization Code,Scopes,Alcances @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Subido correctamente apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Estás conectado a internet. DocType: Social Login Key,Enable Social Login,Habilitar Sesión Social +DocType: Data Import Beta,Warnings,Advertencias DocType: Communication,Event,Evento apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","hace {0}, {1} escribió:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,No se puede eliminar de campo estándar. Solo puede ocultarlo si lo desea @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Insertar DocType: Kanban Board Column,Blue,Azul apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Se eliminarán todas las personalizaciones. Por favor confirmar. DocType: Page,Page HTML,Página HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Exportar filas con errores apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,El nombre del Grupo no puede estar vacío. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Sólo se pueden crear más nodos bajo nodos de tipo ' Grupo ' DocType: SMS Parameter,Header,Encabezado @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Tiempo de espera agotado apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Activar / Desactivar Dominios DocType: Role Permission for Page and Report,Allow Roles,Permitir Roles +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Importó con éxito {0} registros de {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Expresión simple de Python, ejemplo: estado en ("no válido")" DocType: User,Last Active,Último Activo DocType: Email Account,SMTP Settings for outgoing emails,Configuración SMTP para los correos salientes apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,elige un DocType: Data Export,Filter List,Lista de Filtros DocType: Data Export,Excel,Sobresalir -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Su contraseña se ha actualizado. Esta es su nueva contraseña DocType: Email Account,Auto Reply Message,Mensaje de Repuesta Automática DocType: Data Migration Mapping,Condition,Condición apps/frappe/frappe/utils/data.py,{0} hours ago,Hace {0} horas @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID de usuario DocType: Communication,Sent,Enviado DocType: Address,Kerala,Kerala -DocType: File,Lft,Izquierda- apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administración DocType: User,Simultaneous Sessions,Sesiones simultáneas DocType: Social Login Key,Client Credentials,Credenciales del Cliente @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Actuali apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Maestro DocType: DocType,User Cannot Create,El usuario no puede crear apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Hecho exitosamente -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Carpeta {0} no existe apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Acceso Dropbox está aprobado! DocType: Customize Form,Enter Form Type,Seleccione el Tipo de Formulario DocType: Google Drive,Authorize Google Drive Access,Autorizar acceso a Google Drive @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,No hay registros etiquetados. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Quitar Campo apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,No estás conectado a Internet. Vuelve a intentar después de algún tiempo. -DocType: User,Send Password Update Notification,Enviar notificación de cambio de contraseña apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Precaución, autorizando 'DocType'" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formatos personalizados para impresión, correo electrónico" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Suma de {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Código de Verificac apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,La integración de contactos de Google está deshabilitada. DocType: Assignment Rule,Description,Descripción DocType: Print Settings,Repeat Header and Footer in PDF,Repetir encabezado y pie de página en PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Fracaso DocType: Address Template,Is Default,Es por defecto DocType: Data Migration Connector,Connector Type,Tipo de conector apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Nombre de la columna no puede estar vacío @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Ir a la página {0} DocType: LDAP Settings,Password for Base DN,Contraseña para la base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Campo de Tabla apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Columnas basadas en +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Importing {0} of {1}, {2}","Importar {0} de {1}, {2}" DocType: Workflow State,move,mover apps/frappe/frappe/model/document.py,Action Failed,Accion Fallida apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Por Usuario @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Habilitar impresión sin formato DocType: Website Route Redirect,Source,Referencia apps/frappe/frappe/templates/includes/list/filters.html,clear,Limpiar apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Terminado +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuración> Usuario DocType: Prepared Report,Filter Values,Valores del Filtro DocType: Communication,User Tags,Etiquetas de usuario DocType: Data Migration Run,Fail,Falla @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Segu ,Activity,Actividad DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Ayuda : Para vincular a otro registro en el sistema , utilice ""# Form / nota / [ Nota Nombre ]"" como la dirección URL Link. (no utilice "" http://"" )" DocType: User Permission,Allow,Permitir +DocType: Data Import Beta,Update Existing Records,Actualizar registros existentes apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Evitemos de palabras y caracteres repetidos DocType: Energy Point Rule,Energy Point Rule,Regla de puntos de energía DocType: Communication,Delayed,Retrasado @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Campo de la pista DocType: Notification,Set Property After Alert,Establecer propiedad después de la Alerta apps/frappe/frappe/config/customization.py,Add fields to forms.,Agregar campos a los formularios. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Parece que algo está mal con la configuración de PayPal del sitio -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.","Error al conectarse a la aplicación QZ Tray ...

                          Debe tener la aplicación QZ Tray instalada y en ejecución para usar la función de Impresión sin formato.

                          Haga clic aquí para descargar e instalar la bandeja QZ .
                          Haga clic aquí para obtener más información sobre la impresión sin procesar ." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Agregar una opinión -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Tamaño de fuente (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Solo los DocTypes estándar pueden personalizarse desde el formulario Personalizar. DocType: Email Account,Sendgrid,SendGrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,¡Lo siento! No se pueden eliminar los comentarios generados automáticamente DocType: Google Settings,Used For Google Maps Integration.,Utilizado para la integración de Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referencia a 'DocType' +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,No se exportarán registros DocType: User,System User,Usuario del sistema DocType: Report,Is Standard,Es estándar DocType: Desktop Icon,_report,_informe @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,signo-menos apps/frappe/frappe/public/js/frappe/request.js,Not Found,No encontrado apps/frappe/frappe/www/printview.py,No {0} permission,{0} No tiene permiso apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportar permisos personalizados +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,No se Encontraron Artículos. DocType: Data Export,Fields Multicheck,Campos Multicheck DocType: Activity Log,Login,Iniciar sesión DocType: Web Form,Payments,Pagos. @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Por defecto entrante DocType: Workflow State,repeat,repetir DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},El valor debe ser uno de {0} DocType: Role,"If disabled, this role will be removed from all users.","Si está desactivado, este rol será eliminado de todos los usuarios." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Ir a la lista {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Ir a la lista {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Help on Search,Ayuda en Búsqueda DocType: Milestone,Milestone Tracker,Rastreador de hitos apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Registrado pero discapacitados @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Nombre de Campo Local DocType: DocType,Track Changes,Rastrear Cambios DocType: Workflow State,Check,Marcar DocType: Chat Profile,Offline,Desconectado +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importado con éxito {0} DocType: User,API Key,Clave de API DocType: Email Account,Send unsubscribe message in email,Enviar mensaje de correo electrónico para darse de baja apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Editar titulo @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print DocType: Bulk Update,Field,Campo DocType: Communication,Received,Recibido DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Disparo en métodos válidos como "before_insert", "after_update", etc (dependerá del tipo de documento seleccionado)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},valor cambiado de {0} {1} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Agregando como administrador del sistema a este usuario ya que debe haber al menos uno DocType: Chat Message,URLs,URLs DocType: Data Migration Run,Total Pages,Paginas Totales apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} ya ha asignado el valor predeterminado para {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                          No results found for '

                          ,

                          No se encontraron resultados para '

                          DocType: DocField,Attach Image,Adjuntar Imagen DocType: Workflow State,list-alt,Listado apps/frappe/frappe/www/update-password.html,Password Updated,Contraseña Actualizada @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},No permitido para {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 no es un formato de informe válido. Formato del informe debe \ uno de los siguientes% s DocType: Chat Message,Chat,Chat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuración> Permisos de usuario DocType: LDAP Group Mapping,LDAP Group Mapping,Mapeo de grupo LDAP DocType: Dashboard Chart,Chart Options,Opciones de gráfico +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Columna sin título apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} de {1} a {2} en fila # {3} DocType: Communication,Expired,Expirado apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,¡Parece que el token que estás usando no es válido! @@ -1528,6 +1558,7 @@ DocType: DocType,System,Sistema DocType: Web Form,Max Attachment Size (in MB),Tamaño máximo de Adjunto (en MB) apps/frappe/frappe/www/login.html,Have an account? Login,¿Tiene una cuenta? Iniciar sesión DocType: Workflow State,arrow-down,flecha hacia abajo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Fila {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},El usuario no tiene permitido eliminar {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} de {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Última actualización el @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Rol Personalizado apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Inicio / Carpeta de Prueba 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ingrese su contraseña DocType: Dropbox Settings,Dropbox Access Secret,Acceso Secreto a Dropbox +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatorio) DocType: Social Login Key,Social Login Provider,Proveedor de Inicio de Sesión Social apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Añadir otro comentario apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,"No se encontraron datos en el archivo. Por favor, vuelva a conectar el nuevo archivo con los datos." @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mostrar pa apps/frappe/frappe/desk/form/assign_to.py,New Message,Nuevo Mensaje DocType: File,Preview HTML,Vista Previa HTML DocType: Desktop Icon,query-report,consulta de informe +DocType: Data Import Beta,Template Warnings,Advertencias de plantilla apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtros guardados DocType: DocField,Percent,Por ciento apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,"Por favor, defina los filtros" @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Personalizar DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Si está habilitado, a los usuarios que inicien sesión desde la Dirección IP Restringida, no se les solicitará la autenticación de dos factores." DocType: Auto Repeat,Get Contacts,Obtener Contactos apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Publicar bajo {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Saltar columna sin título DocType: Notification,Send alert if date matches this field's value,Enviar una alarma si la fecha coincide con el valor de este campo DocType: Workflow,Transitions,Transiciones apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} a {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,retroceder apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Por favor, establezca las llaves de acceso de Dropbox en la configuración de su sistema" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Eliminar este registro para permitir el envío a esta dirección de correo electrónico +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Si no es un puerto estándar (por ejemplo, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Personalizar atajos apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Sólo los campos obligatorios son necesarios para los nuevos registros. Puede eliminar columnas de carácter no obligatorio, si lo desea." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Mostrar más actividad @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Visto por la tabla apps/frappe/frappe/www/third_party_apps.html,Logged in,Conectado apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Bandeja de entrada y envío por defecto DocType: System Settings,OTP App,Aplicación OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Se actualizó correctamente el registro {0} de {1}. DocType: Google Drive,Send Email for Successful Backup,Enviar correo electrónico para una Copia de Seguridad exitosa +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,El programador está inactivo. No se pueden importar datos. DocType: Print Settings,Letter,Carta DocType: DocType,"Naming Options:
                          1. field:[fieldname] - By Field
                          2. naming_series: - By Naming Series (field called naming_series must be present
                          3. Prompt - Prompt user for a name
                          4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                          5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Siguiente token de sincronización DocType: Energy Point Settings,Energy Point Settings,Configuraciones de puntos de energía DocType: Async Task,Succeeded,Terminado apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Los siguientes campos son obligatorios en {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                            No results found for '

                            ,

                            No se encontraron resultados para '

                            apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Restablecer los permisos para {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Usuarios y Permisos DocType: S3 Backup Settings,S3 Backup Settings,Configuración de Copia de Seguridad S3 @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,En DocType: Notification,Value Change,Cambio de Valor DocType: Google Contacts,Authorize Google Contacts Access,Autorizar acceso a contactos de Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Mostrando solo Campos Numéricos del Informe +DocType: Data Import Beta,Import Type,Tipo de importación DocType: Access Log,HTML Page,Página HTML DocType: Address,Subsidiary,Subsidiaria apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Intentando la conexión a la bandeja QZ ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Servidor d DocType: Custom DocPerm,Write,Escribir apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Solo el administrador puede crear consultas / Informes con scripts apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Actualización -DocType: File,Preview,Vista Previa +DocType: Data Import Beta,Preview,Vista Previa apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","El campo ""valor"" es obligatorio. Por favor, especifique un valor a ser actualizado" DocType: Customize Form,Use this fieldname to generate title,Utilice este nombre de campo para generar título apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importar correo electrónico de: @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Navegador no c DocType: Social Login Key,Client URLs,URL de Cliente apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Falta información apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} creado con éxito +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Omitiendo {0} de {1}, {2}" DocType: Custom DocPerm,Cancel,Cancelar apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Eliminar a granel apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Archivo {0} no existe @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,Token de Sesión DocType: Currency,Symbol,Símbolo. apps/frappe/frappe/model/base_document.py,Row #{0}:,Fila #{0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Confirmar eliminación de datos -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nueva contraseña enviada por correo electrónico apps/frappe/frappe/auth.py,Login not allowed at this time,No se permite iniciar sesión en este momento DocType: Data Migration Run,Current Mapping Action,Acción actual de mapeo DocType: Dashboard Chart Source,Source Name,Nombre de la Fuente @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Seguido por DocType: LDAP Settings,LDAP Email Field,Campo de correo electrónico de LDAP apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,Lista {0} +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exportar {0} registros apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Ya esta en las tareas por hacer del usuario DocType: User Email,Enable Outgoing,Habilitar correos salientes DocType: Address,Fax,Fax @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Imprimir Documentos apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Saltar al campo DocType: Contact Us Settings,Forward To Email Address,Reenviar a la dirección de correo electrónico +DocType: Contact Phone,Is Primary Phone,Es el teléfono principal apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envíe un correo electrónico a {0} para vincularlo aquí. DocType: Auto Email Report,Weekdays,Días de la Semana +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Se exportarán {0} registros apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,El campo del título debe ser un nombre válido DocType: Post Comment,Post Comment,Publicar Comentario apps/frappe/frappe/config/core.py,Documents,Documentos @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",aparecerá este campo sólo si el nombre del campo definido aquí tiene valor o las reglas son verdaderos (ejemplos): eval myfield: doc.myfield == 'Mi Valor' eval: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hoy +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.,No se encontró una plantilla de dirección predeterminada. Cree uno nuevo desde Configuración> Impresión y marca> Plantilla de dirección. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Una vez que haya establecido esto, los usuarios sólo podrán acceder a ciertos documentos, (por ejemplo: Entrada de blog si esta relacionado con Blogger)." +DocType: Data Import Beta,Submit After Import,Enviar después de la importación DocType: Error Log,Log of Scheduler Errors,Bitácora de errores en el programador de tareas DocType: User,Bio,Biografía DocType: OAuth Client,App Client Secret,Clave Secreta de Aplicación @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Desactivar registro de clientes en la página de inicio de sesión apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Asignado a / Propietario DocType: Workflow State,arrow-left,flecha -izquierda +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Exportar 1 registro DocType: Workflow State,fullscreen,Pantalla completa DocType: Chat Token,Chat Token,Token de Chat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Crear gráfico apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,No importar DocType: Web Page,Center,Centro DocType: Notification,Value To Be Set,Valor a Establecer apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Editar {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,Mostrar títulos de las secciones DocType: Bulk Update,Limit,Límite apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Hemos recibido una solicitud de eliminación de {0} datos asociados con: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Agregar una nueva sección +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Registros filtrados apps/frappe/frappe/www/printview.py,No template found at path: {0},No se encontraron plantillas en la ruta: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,No se cuenta de correo electrónico DocType: Comment,Cancelled,Cancelado @@ -2190,10 +2237,13 @@ DocType: Communication Link,Communication Link,Enlace de comunicación apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Formato de salida no válido apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},No se puede {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Aplicar esta regla, si el usuario es el propietario" +DocType: Global Search Settings,Global Search Settings,Configuración de búsqueda global apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Será su ID de inicio de sesión +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Búsqueda global de tipos de documentos Restablecer. ,Lead Conversion Time,Tiempo de Conversión de Iniciativas apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Crear reporte DocType: Note,Notify users with a popup when they log in,Notificar a los usuarios con un mensaje emergente cuando se conectan +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Los módulos principales {0} no se pueden buscar en la búsqueda global. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Conversación abierta apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} no existe, seleccione un nuevo objetivo para fusionar" DocType: Data Migration Connector,Python Module,Módulo Python @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Cerrar apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,No se puede cambiar docstatus de 0 a 2 DocType: File,Attached To Field,Adjuntar al Campo -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuración> Permisos de usuario -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Actualizar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Actualizar DocType: Transaction Log,Transaction Hash,Hash de Transacción DocType: Error Snapshot,Snapshot View,Vista Instantánea apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Por favor, guarde el boletín antes de enviarlo" @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,En Progreso apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,En cola para copia de seguridad. Se puede tomar un par de minutos a una hora. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,El permiso de Usuario ya existe +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Asignando la columna {0} al campo {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Ver {0} DocType: User,Hourly,Cada Hora apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Register OAuth cliente de aplicación @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,URL de pasarela SMS apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} no puede ser ""{2}"". Debe ser uno de ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ganado por {0} a través de la regla automática {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} o {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Actualización de contraseña DocType: Workflow State,trash,Basura DocType: System Settings,Older backups will be automatically deleted,Copias de seguridad anteriores se eliminarán de forma automática apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Clave de Acceso inválida o Clave de Acceso Secreta. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,Dirección de envío preferida apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Con Membrete apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} creado {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},No está permitido para {0}: {1} en la fila {2}. Campo restringido: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Cuenta de correo electrónico no configurada. Cree una nueva cuenta de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Si esto está marcado, las filas con datos válidos se importarán y las filas no válidas se arrojarán a un nuevo archivo para que usted las importe más tarde." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,El documento es editable únicamente por los usuarios con rol @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,Es un campo obligatorio DocType: User,Website User,Usuario del Sitio Web apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Algunas columnas pueden cortarse al imprimir en PDF. Intenta mantener el número de columnas por debajo de 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,No es igual +DocType: Data Import Beta,Don't Send Emails,No envíe correos electrónicos DocType: Integration Request,Integration Request Service,Solicitud de Servicio de Integración DocType: Access Log,Access Log,Registro de acceso DocType: Website Script,Script to attach to all web pages.,Script para unir a todas las páginas web. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,Pasivo DocType: Auto Repeat,Accounts Manager,Gerente de Cuentas apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Asignación para {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Su pago se cancela. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure la cuenta de correo electrónico predeterminada desde Configuración> Correo electrónico> Cuenta de correo electrónico apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Seleccione el tipo de archivo apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Ver Todo DocType: Help Article,Knowledge Base Editor,Editor de la Base de Conocimiento @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Datos apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Estado del Documento apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Aprobación requerida +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Deben crearse los siguientes registros antes de que podamos importar su archivo. DocType: OAuth Authorization Code,OAuth Authorization Code,Código de autorización OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,No tienes permisos para importar DocType: Deleted Document,Deleted DocType,DocType eliminado @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,Configuración del Sistema DocType: GCalendar Settings,Google API Credentials,Credenciales de la API de Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Error de Inicio de Sesión apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Este correo electrónico fue enviado a {0} y copiado a {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},envió este documento {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Hace {0} año (s) DocType: Social Login Key,Provider Name,Nombre del Proveedor apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Crear: {0} DocType: Contact,Google Contacts,Contactos de Google @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,Cuenta de GCalendar DocType: Email Rule,Is Spam,es spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Informe {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Abrir {0} +DocType: Data Import Beta,Import Warnings,Advertencias de importación DocType: OAuth Client,Default Redirect URI,Predeterminado URI de redireccionamiento DocType: Auto Repeat,Recipients,Destinatarios DocType: System Settings,Choose authentication method to be used by all users,Elegir el método de autenticación que deben utilizar todos los usuarios @@ -2543,6 +2597,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Informe actu apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Error de Slack Webhook DocType: Email Flag Queue,Unread,No leído DocType: Bulk Update,Desk,Escritorio +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Saltar columna {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtro debe ser una tupla o lista (en una lista) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Escriba una consulta del tipo 'SELECT'. Nota: el resultado no se compagina (todos los datos se envían en una sola vez). DocType: Email Account,Attachment Limit (MB),Límite Adjunto (MB) @@ -2557,6 +2612,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Crear DocType: Workflow State,chevron-down,chevron -down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Correo electrónico no enviado a {0} (dado de baja / desactivado) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Seleccionar campos para exportar DocType: Async Task,Traceback,Rastrear DocType: Currency,Smallest Currency Fraction Value,Valor de Fracción de Moneda mas pequeño apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Preparando Informe @@ -2565,6 +2621,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Habilitar Comentarios apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notas DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Restringir el usuario a esta dirección IP. Todas las direcciones IP se pueden agregar separadas con comas, también se aceptan direcciones IP parciales como ( 111.111.111 )" +DocType: Data Import Beta,Import Preview,Vista previa de importación DocType: Communication,From,Desde apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Seleccione primero un nodo de grupo apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Encontrar {0} en {1} @@ -2663,6 +2720,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Entre DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,En cola +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurar> Personalizar formulario DocType: Braintree Settings,Use Sandbox,Utilizar Sandbox apps/frappe/frappe/utils/goal.py,This month,Este mes apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nuevo formato de impresión personalizado @@ -2678,6 +2736,7 @@ DocType: Session Default,Session Default,Predeterminado de sesión DocType: Chat Room,Last Message,Ultimo Mensaje DocType: OAuth Bearer Token,Access Token,Token de Acceso DocType: About Us Settings,Org History,Historia de la organización +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Quedan aproximadamente {0} minutos DocType: Auto Repeat,Next Schedule Date,Siguiente Fecha Programada DocType: Workflow,Workflow Name,Nombre de flujo de trabajo DocType: DocShare,Notify by Email,Notificar por Email @@ -2707,6 +2766,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Reanudar el Envío apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Reabrir +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Mostrar advertencias apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Usuario de compras DocType: Data Migration Run,Push Failed,Push Failed @@ -2743,6 +2803,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Búsqu apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,No se le permite ver el boletín. DocType: User,Interests,Intereses apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Las instrucciones para el restablecimiento de la contraseña han sido enviadas a su correo electrónico +DocType: Energy Point Rule,Allot Points To Assigned Users,Asigne puntos a usuarios asignados apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nivel 0 es para permisos de nivel de documento, \ niveles superiores para permisos a nivel de campo." DocType: Contact Email,Is Primary,Es primaria @@ -2765,6 +2826,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,See the document at {0},Ver el documento en {0} DocType: Stripe Settings,Publishable Key,Clave publicable apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Comience a Importar +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Tipo de Exportación DocType: Workflow State,circle-arrow-left,izquierda - circle-arrow DocType: System Settings,Force User to Reset Password,Forzar al usuario a restablecer la contraseña apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Para obtener el reporte actualizado, hacer clic en {0}." @@ -2777,13 +2839,16 @@ DocType: Contact,Middle Name,Segundo nombre DocType: Custom Field,Field Description,Descripción de Campo apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nombre no establecido a través de Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Bandeja de entrada de email +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Actualización {0} de {1}, {2}" DocType: Auto Email Report,Filters Display,Visualización de Filtros apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",El campo "enmendado_desde" debe estar presente para hacer una enmienda. +DocType: Contact,Numbers,Números apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} agradeció tu trabajo en {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Guardar filtros DocType: Address,Plant,Planta apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Responder a todos DocType: DocType,Setup,Configuración +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Todos los registros DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Dirección de correo electrónico cuyos contactos de Google se deben sincronizar. DocType: Email Account,Initial Sync Count,Conde de sincronización inicial DocType: Workflow State,glass,vidrio @@ -2808,7 +2873,7 @@ DocType: Workflow State,font,Fuente. DocType: DocType,Show Preview Popup,Mostrar ventana emergente de vista previa apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Es una de las 100 contraseñas mas comunes. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Por favor, active los pop-ups" -DocType: User,Mobile No,Nº Móvil +DocType: Contact,Mobile No,Nº Móvil DocType: Communication,Text Content,Contenido del texto DocType: Customize Form Field,Is Custom Field,Es un campo personalizado DocType: Workflow,"If checked, all other workflows become inactive.","Si se selecciona, los otros flujos de trabajo serán desactivados." @@ -2854,6 +2919,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Añad apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nombre del nuevo formato de impresión apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Alternar Barra Lateral DocType: Data Migration Run,Pull Insert,Pull Insert +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Puntos máximos permitidos después de multiplicar puntos con el valor del multiplicador (Nota: para ningún límite, deje este campo vacío o establezca 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Plantilla inválida apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Consulta SQL ilegal apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obligatorio: DocType: Chat Message,Mentions,Menciones @@ -2868,6 +2936,7 @@ DocType: User Permission,User Permission,Permiso de Usuario apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP No Instalado apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Descargar con datos +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valores modificados para {0} {1} DocType: Workflow State,hand-right,mano-derecha DocType: Website Settings,Subdomain,Sub-dominio DocType: S3 Backup Settings,Region,Región @@ -2894,10 +2963,12 @@ DocType: Braintree Settings,Public Key,Public Key DocType: GSuite Settings,GSuite Settings,Configuración de GSuite DocType: Address,Links,Enlaces DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Utiliza el nombre de la dirección de correo electrónico mencionado en esta cuenta como el nombre del remitente para todos los correos electrónicos enviados con esta cuenta. +DocType: Energy Point Rule,Field To Check,Campo para verificar apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Contactos de Google: no se pudo actualizar el contacto en Contactos de Google {0}, código de error {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Por favor seleccione el Tipo de Documento. apps/frappe/frappe/model/base_document.py,Value missing for,Falta un valor para apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Agregar hijo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Progreso de importación DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Si se cumple la condición, el usuario será recompensado con los puntos. p.ej. doc.status == 'Cerrado'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: El registro enviado no puede ser eliminado. @@ -2934,6 +3005,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizar acceso a Goo apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,La página que está buscando no se encuentra. Esto podría ser debido a que fue movida o hay un error tipográfico en el enlace. apps/frappe/frappe/www/404.html,Error Code: {0},Código de error: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descripción para listarlo en la pagina, en texto sin formato, solo unas lineas. (máx. 140 caracteres)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} son campos obligatorios DocType: Workflow,Allow Self Approval,Permitir la Auto Aprobación DocType: Event,Event Category,Categoría de Evento apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2981,8 +3053,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Mover a DocType: Address,Preferred Billing Address,Dirección de facturación preferida apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Demasiados elementos en una sola solicitud . Favor de enviar peticiones más pequeñas apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive ha sido configurado. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,El tipo de documento {0} se ha repetido. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valores Cambiados DocType: Workflow State,arrow-up,flecha hacia arriba +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Debe haber al menos una fila para la tabla {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Para configurar la repetición automática, habilite "Permitir repetición automática" desde {0}." DocType: OAuth Bearer Token,Expires In,Expira en DocType: DocField,Allow on Submit,Permitir en 'validar' @@ -3069,6 +3143,7 @@ DocType: Custom Field,Options Help,Opciones de ayuda DocType: Footer Item,Group Label,Etiqueta de Grupo DocType: Kanban Board,Kanban Board,Tablero Kanban apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Contactos de Google ha sido configurado. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,1 record will be exported,Se exportará 1 registro DocType: DocField,Report Hide,Ocultar reporte apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},vista de árbol no está disponible para {0} DocType: DocType,Restrict To Domain,Restringir a Domiñio @@ -3086,6 +3161,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Código de Verificación DocType: Webhook,Webhook Request,Solicitud de Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Fallido: {0} a {1}: {2} DocType: Data Migration Mapping,Mapping Type,Tipo de Mapeo +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Selección Obligatoria apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Explorar apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","No hay necesidad de símbolos, dígitos o letras mayúsculas." DocType: DocField,Currency,Divisa / Moneda @@ -3116,11 +3192,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Cabecera de carta basada en apps/frappe/frappe/utils/oauth.py,Token is missing,Falta el Token apps/frappe/frappe/www/update-password.html,Set Password,Establecer Contraseña +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Importados con éxito {0} registros. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Nota: Cambiar el nombre de la página romperá la URL previa de esta página apps/frappe/frappe/utils/file_manager.py,Removed {0},Eliminado {0} DocType: SMS Settings,SMS Settings,Ajustes de SMS DocType: Company History,Highlight,Resaltar DocType: Dashboard Chart,Sum,Suma +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,a través de la importación de datos DocType: OAuth Provider Settings,Force,Fuerza apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Última sincronización {0} DocType: DocField,Fold,Plegar @@ -3157,6 +3235,7 @@ DocType: Workflow State,Home,Inicio DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,El Usuario puede iniciar sesión con ID de correo electrónico o nombre de usuario DocType: Workflow State,question-sign,Requiere firma +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} está deshabilitado apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views","El campo ""ruta"" es obligatoria para las vistas web" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Insertar Columna Antes de {0} DocType: Energy Point Rule,The user from this field will be rewarded points,El usuario de este campo recibirá puntos recompensados. @@ -3190,6 +3269,7 @@ DocType: Website Settings,Top Bar Items,Elementos de la Barra Superior DocType: Notification,Print Settings,Ajustes de Impresión DocType: Page,Yes,Sí DocType: DocType,Max Attachments,Máximo de adjuntos +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Quedan aproximadamente {0} segundos DocType: Calendar View,End Date Field,Campo de Fecha de Finalización apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Atajos globales DocType: Desktop Icon,Page,Página @@ -3300,6 +3380,7 @@ DocType: GSuite Settings,Allow GSuite access,Permitir acceso a GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Nombrando apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Seleccionar todo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Columna {0} apps/frappe/frappe/config/customization.py,Custom Translations,Traducciones Personalizadas apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Progreso apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,por Rol. @@ -3341,11 +3422,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Env DocType: Stripe Settings,Stripe Settings,Configuración de Stripe DocType: Data Migration Mapping,Data Migration Mapping,Asignación de migración de datos DocType: Auto Email Report,Period,Período +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Quedan aproximadamente {0} minutos apps/frappe/frappe/www/login.py,Invalid Login Token,Invalid Login Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Descartar apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,Hace una hora DocType: Website Settings,Home Page,Página de inicio DocType: Error Snapshot,Parent Error Snapshot,Instantanea de Error Padre +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Asigna columnas de {0} a campos en {1} DocType: Access Log,Filters,Filtros DocType: Workflow State,share-alt,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Cola debe ser una de {0} @@ -3376,6 +3459,7 @@ DocType: Calendar View,Start Date Field,Campo de Fecha de Inicio DocType: Role,Role Name,Nombre del rol apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Pasar a Escritorio apps/frappe/frappe/config/core.py,Script or Query reports,Script o Reporte de Consulta +DocType: Contact Phone,Is Primary Mobile,Es el móvil principal DocType: Workflow Document State,Workflow Document State,Estado de los Documentos del Flujo de Trabajo apps/frappe/frappe/public/js/frappe/request.js,File too big,El archivo es demasiado grande apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Cuenta de correo electrónico añadida varias veces @@ -3421,6 +3505,7 @@ DocType: DocField,Float,Coma Flotante DocType: Print Settings,Page Settings,Configuración de Página apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Guardando... apps/frappe/frappe/www/update-password.html,Invalid Password,Contraseña invalida +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importó con éxito el registro {0} de {1}. DocType: Contact,Purchase Master Manager,Director de compras apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Haga clic en el ícono de candado para alternar público / privado DocType: Module Def,Module Name,Nombre del módulo @@ -3454,6 +3539,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,"Por favor, ingrese un numero de móvil válido" apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Es posible que algunas de las funciones no funcionen en su navegador. Actualice su navegador a la última versión. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","No sabe, pregunte "ayuda"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},canceló este documento {0} DocType: DocType,Comments and Communications will be associated with this linked document,Comentarios y Comunicaciones estarán asociados con este documento vinculado apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtro... DocType: Workflow State,bold,negrita @@ -3472,6 +3558,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Añadir / Adm DocType: Comment,Published,Publicado apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Gracias por su Email DocType: DocField,Small Text,Texto pequeño +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,El número {0} no se puede establecer como primario para el teléfono ni para el número móvil. DocType: Workflow,Allow approval for creator of the document,Permitir aprobación para el creador del documento apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Guardar reporte DocType: Webhook,on_cancel,on_cancel @@ -3529,6 +3616,7 @@ DocType: Print Settings,PDF Settings,Configuración de paginas PDF DocType: Kanban Board Column,Column Name,Nombre de columna DocType: Language,Based On,Basado en DocType: Email Account,"For more information, click here.","Para más información, haga clic aquí ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,El número de columnas no coincide con los datos. apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Hacer por Defecto apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Tiempo de ejecución: {0} segundos apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Ruta de inclusión no válida @@ -3618,7 +3706,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Subir {0} archivos DocType: Deleted Document,GCalendar Sync ID,ID de Sincronización de GCalendar DocType: Prepared Report,Report Start Time,Hora de Inicio del Informe -apps/frappe/frappe/config/settings.py,Export Data,Exportar Datos +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportar Datos apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Seleccione columnas DocType: Translation,Source Text,Texto de origen 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.,Esto es un reporte predeterminado. Por favor seleccione los filtros apropiados y genere uno nuevo. @@ -3636,7 +3724,6 @@ DocType: Report,Disable Prepared Report,Deshabilitar informe preparado apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,El usuario {0} ha solicitado la eliminación de datos apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,"Código de acceso ilegal. Por favor, inténtelo de nuevo" apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","La aplicación se ha actualizado a una nueva versión, por favor, volver a cargar esta página" -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.,No se encontró una plantilla de dirección predeterminada. Cree uno nuevo desde Configuración> Impresión y marca> Plantilla de dirección. DocType: Notification,Optional: The alert will be sent if this expression is true,Opcional: La alerta será enviada si esta expresión es verdadera DocType: Data Migration Plan,Plan Name,Nombre del Plan DocType: Print Settings,Print with letterhead,Imprimir con membrete @@ -3677,6 +3764,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,"{0}: no se puede establecer ""corregir"" sin cancelar" apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Página completa DocType: DocType,Is Child Table,Es una tabla secundaria +DocType: Data Import Beta,Template Options,Opciones de plantilla apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} debe ser uno de {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} se encuentra viendo actualmente este documento apps/frappe/frappe/config/core.py,Background Email Queue,Cola de correo en segundo plano @@ -3684,7 +3772,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Restablecer contrase DocType: Communication,Opened,Abierto DocType: Workflow State,chevron-left,izquierda chevron DocType: Communication,Sending,Enviando -apps/frappe/frappe/auth.py,Not allowed from this IP Address,No permitido desde esta dirección IP DocType: Website Slideshow,This goes above the slideshow.,Esto va encima de la presentación de diapositivas. DocType: Contact,Last Name,Apellido DocType: Event,Private,Privado @@ -3698,7 +3785,6 @@ DocType: Workflow Action,Workflow Action,Acciones de flujos de trabajo apps/frappe/frappe/utils/bot.py,I found these: ,He encontrado los siguientes: DocType: Event,Send an email reminder in the morning,Enviar un recordatorio por correo electrónico en la mañana. DocType: Blog Post,Published On,Publicado el -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Cuenta de correo electrónico no configurada. Cree una nueva cuenta de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico DocType: Contact,Gender,Género apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Información obligatoria faltante: apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} revirtió sus puntos en {1} @@ -3719,7 +3805,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,Icono de advertencia DocType: Prepared Report,Prepared Report,Informe Preparado apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Agregue metaetiquetas a sus páginas web -DocType: Contact,Phone Nos,Números telefónicos DocType: Workflow State,User,Usuario DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Mostrar título en la ventana del navegador como ""Prefijo - título""" DocType: Payment Gateway,Gateway Settings,Configuraciones de Gateway @@ -3736,6 +3821,7 @@ DocType: Data Migration Connector,Data Migration,Migración de datos DocType: User,API Key cannot be regenerated,La clave API no se puede regenerar apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Algo salió mal DocType: System Settings,Number Format,Formato de Número +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Registro importado con éxito {0}. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Resumen DocType: Event,Event Participants,Participantes del Evento DocType: Auto Repeat,Frequency,Frecuencia @@ -3743,7 +3829,7 @@ DocType: Custom Field,Insert After,insertar Después DocType: Event,Sync with Google Calendar,Sincronizar con Google Calendar DocType: Access Log,Report Name,Nombre del reporte DocType: Desktop Icon,Reverse Icon Color,Revertir Color de Icono -DocType: Notification,Save,Guardar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Guardar apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Siguiente Fecha Programada apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Asignar a quien tiene menos tareas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Encabezado de sección @@ -3766,11 +3852,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co apps/frappe/frappe/core/doctype/doctype/doctype.py,Max width for type Currency is 100px in row {0},El ancho máximo para el tipo de divisa es 100px en la línea {0} apps/frappe/frappe/config/website.py,Content web page.,Contenido de la página web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,Agregar un nuevo rol -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurar> Personalizar formulario DocType: Google Contacts,Last Sync On,Última Sincronización Activada DocType: Deleted Document,Deleted Document,documento eliminado apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Ops! parece que algo salió mal DocType: Desktop Icon,Category,Categoría +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Falta el valor {0} para {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Añadir Contactos apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paisaje apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensiones de script del lado del cliente en Javascript @@ -3793,6 +3879,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Actualización de puntos de energía apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Por favor seleccione otro método de pago. PayPal no admite transacciones en moneda '{0}' DocType: Chat Message,Room Type,Tipo de Habitación +DocType: Data Import Beta,Import Log Preview,Vista previa de registro de importación apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,campo de búsqueda {0} no es válido apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,archivo subido DocType: Workflow State,ok-circle,ok- círculo @@ -3859,6 +3946,7 @@ DocType: DocType,Allow Auto Repeat,Permitir repetición automática apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,No hay valores para mostrar DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Plantilla de Correo Electrónico +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Se actualizó correctamente el registro {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},El usuario {0} no tiene acceso a doctype a través del permiso de rol para el documento {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Se requiere un usuario y una contraseña apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Por favor, actualice para obtener el último documento." diff --git a/frappe/translations/es_pe.csv b/frappe/translations/es_pe.csv index aebdbcfbb2..c4f63afc7c 100644 --- a/frappe/translations/es_pe.csv +++ b/frappe/translations/es_pe.csv @@ -16,7 +16,7 @@ apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Ajustes para DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opciones de contacto , como "" Consultas de Ventas , Soporte de consultas"" , etc cada uno en una nueva línea o separados por comas." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Seleccione {0} apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Hace 1 minuto -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipos de Documento +DocType: Global Search Settings,Document Types,Tipos de Documento apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Presentacion de imágenes incrustadas en páginas web . apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,El DocType no se puede fusionar DocType: Newsletter,Email Sent?,Enviar Email ? @@ -123,10 +123,8 @@ DocType: DocField,Section Break,Salto de sección apps/frappe/frappe/desk/query_report.py,Must specify a Query to run,Debe especificar una consulta para ejecutar DocType: Event,Saturday,Sábado apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed.","La tarea {0}, que asignó a {1}, se ha cerrado." -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Su contraseña se ha actualizado. Aquí está tu nueva contraseña apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Open a module or tool,Abra un Módulo o Herramienta DocType: Customize Form,Enter Form Type,Introduzca Tipo de Formulario -DocType: User,Send Password Update Notification,Enviar contraseña Notificación de actualización apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permitir DocType , tipo de documento . ¡Ten cuidado!" apps/frappe/frappe/core/doctype/data_import/importer.py,Start entering data below this line,Empiece a introducir datos por debajo de esta línea DocType: Workflow State,eye-close,ojo -cierre @@ -418,7 +416,6 @@ DocType: Custom DocPerm,Report,Informe DocType: Report,Ref DocType,Referencia Tipo de Documento apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: no se puede 'Corregir' sin antes cancelar DocType: Communication,Sending,Envío -apps/frappe/frappe/auth.py,Not allowed from this IP Address,No se permite desde esta dirección IP DocType: Website Slideshow,This goes above the slideshow.,Esto va por encima de la presentación de diapositivas. DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Enviar Emails con adjuntos en formato PDF (recomendado) DocType: Web Page,Left,Izquierda diff --git a/frappe/translations/et.csv b/frappe/translations/et.csv index 2f7e1fcfc7..35285d7f94 100644 --- a/frappe/translations/et.csv +++ b/frappe/translations/et.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Uued {} järgmised rakendused on saadaval apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Palun valige väljal Kogus. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Impordifaili laadimine ... DocType: Assignment Rule,Last User,Viimane kasutaja apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Uus ülesanne, {0}, on määratud teile {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Seansi vaikesätted on salvestatud +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Laadige fail uuesti DocType: Email Queue,Email Queue records.,E Queue arvestust. DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Kuu DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Luba Saabuva apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Oht -apps/frappe/frappe/www/login.py,Email Address,E-posti aadress +DocType: Address,Email Address,E-posti aadress DocType: Workflow State,th-large,th-suur DocType: Communication,Unread Notification Sent,Lugemata saadetud teates apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Ekspordi ole lubatud. Peate {0} rolli ekspordi. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt võimalusi, nagu "Sales Query, Support Query" jne iga uue liini või komadega eraldatult." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Lisage silt ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portree -DocType: Data Migration Run,Insert,Sisesta +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Sisesta apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Luba Google Drive'i juurdepääs apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Vali {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Palun sisestage Base URL @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minut ta 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 DocType: Company History,Company History,Firma ajalugu -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,lähtestama +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,lähtestama DocType: Workflow State,volume-up,mahu-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,"Webhooksid, mis kutsuvad API-taotlusi veebirakendusi" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Kuva jälgimisvõimalus DocType: DocType,Default Print Format,Vaikimisi Prindi Formaat DocType: Workflow State,Tags,Sildid apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Puudub: End of töökorraldus apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} välja ei saa seada ainulaadne {1}, sest on mitte-unikaalne olemasolevate väärtuste" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumendi liigid +DocType: Global Search Settings,Document Types,Dokumendi liigid DocType: Address,Jammu and Kashmir,Jammu ja Kashmiri DocType: Workflow,Workflow State Field,Töövoo riik Field -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Seadistamine> Kasutaja DocType: Language,Guest,Külaline DocType: DocType,Title Field,Pealkiri Field DocType: Error Log,Error Log,Viga Logi @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Kordab nagu "abcabcabc" on vaid veidi raskem ära arvata kui "abc" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Kui arvad, et see on lubamatu, palun muuta administraatori parool." +DocType: Data Import Beta,Data Import Beta,Andmete impordi beetaversioon apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} on kohustuslik DocType: Assignment Rule,Assignment Rules,Loovutamisreeglid DocType: Workflow State,eject,väljutada @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Töövoo Action nimi apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ei saa liita DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ei zip faili +DocType: Global Search DocType,Global Search DocType,Globaalne otsing DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                            New {{ doc.doctype }} #{{ doc.name }}
                            ","Dünaamilise teema lisamiseks kasutage jinja silte, näiteks
                             New {{ doc.doctype }} #{{ doc.name }} 
                            " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc sündmus apps/frappe/frappe/public/js/frappe/utils/user.js,You,Sa DocType: Braintree Settings,Braintree Settings,Braintree seaded +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} kirjed on edukalt loodud. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Salvesta filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} ei saa kustutada @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Sisesta url parameeter sõ apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Selle dokumendi jaoks loodud automaatne kordus apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Vaadake aruannet oma brauseris apps/frappe/frappe/config/desk.py,Event and other calendars.,Sündmus ja teiste kalendreid. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 rida kohustuslik) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Kõik väljad on vajalik esitada kommentaari. DocType: Custom Script,Adds a client custom script to a DocType,Lisab kliendi kohandatud skripti DocType'i DocType: Print Settings,Printer Name,Printeri nimi @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,hulgivärskendamine DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Luba külastajana Vaata apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ei tohiks olla sama kui {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Kustuta {0} üksuse jäädavalt? apps/frappe/frappe/utils/oauth.py,Not Allowed,Ei ole lubatud @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Display DocType: Email Group,Total Subscribers,Kokku Tellijaid apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Üles {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Rida number apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Kui Role ei ole juurdepääsu tasemel 0, siis kõrgem tase on mõttetu." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Salvesta kui DocType: Comment,Seen,Seen @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Määrab töökorraldust riikide ja reeglid dokument. DocType: Workflow State,Filter,Filter @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Suletud DocType: Blog Settings,Blog Title,Blogi pealkiri apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standard rolle ei saa välja lülitada apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Vestluse tüüp +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kaardiveerud DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Infobülletään apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Ei saa kasutada sub-päringu järjekorras @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Lisa veerg apps/frappe/frappe/www/contact.html,Your email address,Sinu e-maili aadress DocType: Desktop Icon,Module,Moodul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} kirje edukalt värskendatud {1} -st. DocType: Notification,Send Alert On,Saada Alert On DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Kohanda Label, Print Peida Vaikimisi jms" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Failide lahtipakkimine ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,"Kasutaja {0} ei saa kustutada," DocType: System Settings,Currency Precision,Valuuta Precision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Teine tehing takistab seda. Palun proovige uuesti mõne sekundiga. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Tühjendage filtrid DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Manuseid ei saa uue dokumendiga õigesti seostada DocType: Chat Message Attachment,Attachment,Attachment @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Ei saa saata apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google'i kalender - sündmust {0} ei saanud Google'i kalendris värskendada, veakood {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Otsi või anna käsk DocType: Activity Log,Timeline Name,Timeline Nimi +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Ainult ühte {0} saab seada primaarseks. DocType: Email Account,e.g. smtp.gmail.com,nt smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Lisa uus reegel DocType: Contact,Sales Master Manager,Müük Master Manager @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP keskmise nime väli apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} {1} importimine DocType: GCalendar Account,Allow GCalendar Access,Luba GCalendar'i juurdepääs -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} on kohustuslik väli +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} on kohustuslik väli apps/frappe/frappe/templates/includes/login/login.js,Login token required,Sisselogimisnumber on nõutav apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Kuu asetus: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Valige mitu loendielementi @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Ei saa ühendust: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Sõna ise on lihtne ära arvata. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automaatne määramine ebaõnnestus: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Otsing... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Palun valige Company apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Ühendamine on võimalik ainult vahel Group-to-Group või lehttipuga-to-lehttipuga apps/frappe/frappe/utils/file_manager.py,Added {0},Lisatud {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Ühtegi sobivat arvestust. Otsi midagi uut @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,OAuthi kliendi ID DocType: Auto Repeat,Subject,Subjekt apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tagasi töölauale DocType: Web Form,Amount Based On Field,Põhinev summa Field -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Seadistage vaikimisi kasutatav e-posti konto seadistustes> E-post> E-posti konto apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Kasutaja on kohustuslik Share DocType: DocField,Hidden,Peidetud DocType: Web Form,Allow Incomplete Forms,Laske Puudulik vormid @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ja {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Alusta vestlust. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Alati lisada "eelnõu" Rubriik trükkimiseks dokumentide eelnõud apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Viga teatises: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} aasta tagasi DocType: Data Migration Run,Current Mapping Start,Praegune kaardistamine algab apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Saatke on märgistatud rämpspostina DocType: Comment,Website Manager,Koduleht Manager @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,vöötkoodi apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Sub-päringu või funktsiooni kasutamine on piiratud apps/frappe/frappe/config/customization.py,Add your own translations,Lisa oma tõlked DocType: Country,Country Name,Riik nimi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Tühi mall DocType: About Us Team Member,About Us Team Member,Meist Team liige apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Õigused on seatud Rollid ja dokumentide liigid (nn doctypes) seades õigused nagu lugeda, kirjutada, luua, kustutada, Esita, Loobu, muudab, aruanne, Import, eksport, Print, e-post ja Set User reeglid." DocType: Event,Wednesday,Kolmapäev @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Koduleht Theme Image Link DocType: Web Form,Sidebar Items,Külgriba üksused DocType: Web Form,Show as Grid,Kuva võrk apps/frappe/frappe/installer.py,App {0} already installed,App {0} juba paigaldatud +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Viitedokumendile määratud kasutajad saavad punkte. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Eelvaatlust pole DocType: Workflow State,exclamation-sign,hüüatus-märk apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Pakendatud {0} faili @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Päeva enne apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Igapäevased üritused peaksid lõppema samal päeval. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redigeerimine ... DocType: Workflow State,volume-down,hääl maha +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Sellelt IP-aadressilt pole juurdepääs lubatud apps/frappe/frappe/desk/reportview.py,No Tags,No tags DocType: Email Account,Send Notification to,Saada teavitamine DocType: DocField,Collapsible,Kokkupandav @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Väljatöötaja apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Loodud apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} järjest {1} ei saa olla nii URL ja laps teemad +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Järgmiste tabelite jaoks peaks olema vähemalt üks rida: {0} DocType: Print Format,Default Print Language,Vaikimisi trükikeel apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Esivanemad apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,"Juur {0} ei saa kustutada," @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,võõrustaja +DocType: Data Import Beta,Import File,Impordi fail apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Veerg {0} on juba olemas. DocType: ToDo,High,Kõrgel apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Uus sündmus @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Saada teatised e-posti lõime apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Mitte Arendaja režiim apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Failide varukoopia on valmis -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maksimaalne lubatud punktide arv pärast punktide korrutamist kordaja väärtusega (märkus: kui piire ei ole seatud väärtuseks 0) DocType: DocField,In Global Search,Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-vasakule @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Kasutaja {0} 'on juba roll "{1}" DocType: System Settings,Two Factor Authentication method,Kaks teguri autentimise meetodit apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Esmalt määrake nimi ja salvestage see kirje. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 plaati apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Jagatakse {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Tühista DocType: View Log,Reference Name,Viide nimi @@ -813,6 +830,8 @@ 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 DocType: Note,Notify Users On Every Login,Teata Kasutajad iga sisselogimine +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Veergu {0} ei saa ühegi väljaga sobitada +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} kirje edukalt värskendatud. DocType: PayPal Settings,API Password,API salasõna apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Sisestage pythoni moodul või valige pistiku tüüp apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname ole seatud Custom Field @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplikaatnimi {0} {1} -DocType: Email Queue,Retry,Uuesti proovima +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Uuesti proovima +DocType: Contact Phone,Number,Number DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Teil on uus sõnum: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Palun sisestage ümbersuunamise URL apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Vaata pakkumisi (via apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Faili valimiseks klõpsake sellel. DocType: Note Seen By,Note Seen By,Märkus näinud apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Proovi kasutada pikema klaviatuuri mustrit rohkem pöördeid -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LEADERBOARD +,LeaderBoard,LEADERBOARD DocType: DocType,Default Sort Order,Vaikimisi sortimisjärjestus DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Saada vastuse spikker @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Sent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Koosta meil apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Ühendriigid töövoo (nt eelnõu heaks kiidetud, tühistatud)." DocType: Print Settings,Allow Print for Draft,Laske Print eelnõ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.","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/link_selector.js,Set Quantity,Kindlaksmääratud koguses apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Esita selle dokumendi kinnitamiseks DocType: Contact,Unsubscribed,Tellimata @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Kasutajate organisatsioonil ,Transaction Log Report,Tehingu logi aruanne DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Saada tellimus Link +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Enne faili importimist tuleb luua mõned lingitud kirjed. Kas soovite luua järgmised puuduvad kirjed automaatselt? DocType: Access Log,Method,Meetod DocType: Report,Script Report,Script aruanne DocType: OAuth Authorization Code,Scopes,õppesuuna @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Üleslaadimine õnnestus apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Te olete Internetiga ühendatud. DocType: Social Login Key,Enable Social Login,Sisselogimise lubamine +DocType: Data Import Beta,Warnings,Hoiatused DocType: Communication,Event,Sündmus apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","On {0}, {1} kirjutas:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Ei saa kustutada standard valdkonnas. Saate peita, kui soovite" @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Sisesta A DocType: Kanban Board Column,Blue,Blue apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Kõik kohandused eemaldatakse. Palun kinnita. DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Ekspordi rikutud read apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Grupi nimi ei saa olla tühi. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Lisaks sõlmed saab ainult loodud töörühm tüüpi sõlmed DocType: SMS Parameter,Header,Päise @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Küsi Timed Out apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Domeenide lubamine / keelamine DocType: Role Permission for Page and Report,Allow Roles,Luba rollid +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} kirje {1} edukalt imporditud. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Lihtne Pythoni avaldus, näide: olek (kehtetu)" DocType: User,Last Active,Viimati aktiivne DocType: Email Account,SMTP Settings for outgoing emails,SMTP Settings väljuva e- apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vali DocType: Data Export,Filter List,Filtreeri nimekiri DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Sinu parool on uuendatud. Siin on uus salasõna 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 @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,kasutaja ID DocType: Communication,Sent,Saadetud DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administreerimine DocType: User,Simultaneous Sessions,samaaegne Sessions DocType: Social Login Key,Client Credentials,Klient volikirjad @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Uuendat apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,kapten DocType: DocType,User Cannot Create,Kasutaja ei saa luua apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Edukalt tehtud -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} ei ole olemas apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox juurdepääs on heaks! DocType: Customize Form,Enter Form Type,Sisesta vorm Type DocType: Google Drive,Authorize Google Drive Access,Google Drive'i juurdepääsu volitamine @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,No arvestust märgistatud. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Eemalda Field apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Te pole Internetiga ühendatud. Uuesti proovige pärast mõnda aega. -DocType: User,Send Password Update Notification,Saada Salasõna värskendus teatamine apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Lubades DocType, DocType. Ole ettevaatlik!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Kohandatud Vormid trükkimine, e-post" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} summa @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Vale kinnituskood apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google'i kontaktide integreerimine on keelatud. DocType: Assignment Rule,Description,Kirjeldus DocType: Print Settings,Repeat Header and Footer in PDF,Korda Päis ja jalus PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Rike DocType: Address Template,Is Default,Kas Vaikimisi DocType: Data Migration Connector,Connector Type,Pistiku tüüp apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Veerg nimi ei saa olla tühi @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Minge lehele {0} DocType: LDAP Settings,Password for Base DN,Salasõna Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabel Field 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/model/document.py,Action Failed,Action ebaõnnestus apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Kasutaja ei ole @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Luba töötlemata printimine DocType: Website Route Redirect,Source,Allikas apps/frappe/frappe/templates/includes/list/filters.html,clear,selge apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Valmis +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Seadistamine> Kasutaja DocType: Prepared Report,Filter Values,Filtri väärtused DocType: Communication,User Tags,Kasutaja Sildid DocType: Data Migration Run,Fail,Ebaõnnestus @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Jäl ,Activity,Aktiivsus DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",Abi: Et link teisele rekordi süsteemi kasutama "# vorm / Note / [Märkus Nimi]" kui Link URL. (ei kasuta "http: //") DocType: User Permission,Allow,Lubama +DocType: Data Import Beta,Update Existing Records,Värskendage olemasolevaid kirjeid apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Olgem vältida korduvaid sõnu ja sümboleid DocType: Energy Point Rule,Energy Point Rule,Energiapunkti reegel DocType: Communication,Delayed,Hilinenud @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Jäljeväli DocType: Notification,Set Property After Alert,Määra Property Pärast Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Lisa väljad vorme. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Paistab midagi on valesti selle saidi Paypal konfiguratsiooni. -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/sidebar/review.js,Add Review,Lisage arvustus -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Fondi suurus (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Vormi kohandamise kaudu on lubatud kohandada ainult tavalisi DocTypes. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Kahjuks Sa ei saa kustutada Isegenereeritud kommentaarid DocType: Google Settings,Used For Google Maps Integration.,Kasutatakse Google Mapsi integreerimiseks. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Viide DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Ühtegi kirjet ei ekspordita DocType: User,System User,Süsteemi kasutaja DocType: Report,Is Standard,Kas Standard DocType: Desktop Icon,_report,_aruanne @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,miinus-märk apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ei leitud apps/frappe/frappe/www/printview.py,No {0} permission,No {0} luba apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Ekspordi Kohandatudõigused +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ühtegi toodet pole leitud. DocType: Data Export,Fields Multicheck,Väli Multicheck DocType: Activity Log,Login,Logi sisse DocType: Web Form,Payments,Maksed @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Posti- DocType: Email Account,Default Incoming,Vaikimisi Saabuva DocType: Workflow State,repeat,kordus DocType: Website Settings,Banner,Lipp +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Väärtus peab olema üks {0} DocType: Role,"If disabled, this role will be removed from all users.","Kui lülitada, see roll eemaldatakse kõik kasutajad." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Minge loendisse {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Minge loendisse {0} 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 @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Kohalik väljadnimi DocType: DocType,Track Changes,Rada muutus DocType: Workflow State,Check,Check DocType: Chat Profile,Offline,offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} importimine õnnestus DocType: User,API Key,API võti DocType: Email Account,Send unsubscribe message in email,Saada loobun sõnum e-kirja apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Muuda Pealkiri @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} on juba väärtuse {1} jaoks vaikeväärtuse määranud. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                            No results found for '

                            ,

                            Päringule 'ei leitud tulemusi

                            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 @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Pole lubatud {0} jaok 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Seadistamine> Kasutaja õigused DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-grupi kaardistamine DocType: Dashboard Chart,Chart Options,Diagrammi valikud +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Pealkirjata veerg apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} on {1} kuni {2} järjest # {3} DocType: Communication,Expired,Aegunud apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Tundub, et teie kasutatav märgis on kehtetu!" @@ -1528,6 +1558,7 @@ DocType: DocType,System,Süsteem DocType: Web Form,Max Attachment Size (in MB),Max Manus Suurus (MB) apps/frappe/frappe/www/login.html,Have an account? Login,Ole kontot? Logi sisse DocType: Workflow State,arrow-down,Nool alla +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rida {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Keelatud kasutaja kustutada {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Viimati uuendatud @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Custom Role apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Home / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sisestage parool DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Kohustuslik) 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. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Kuva juhtp apps/frappe/frappe/desk/form/assign_to.py,New Message,Uus sõnum DocType: File,Preview HTML,Eelvaade HTML DocType: Desktop Icon,query-report,päringu-aruanne +DocType: Data Import Beta,Template Warnings,Hoiatused malli kohta apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filtrid salvestatud DocType: DocField,Percent,Protsenti apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Palun määra filtrid @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Tava DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Kui lubatud, siis piiratud IP-aadressi sisselülitanud kasutajatel ei soovitata kasutada kahte faktorit" DocType: Auto Repeat,Get Contacts,Hankige kontaktid apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Ametikohad Filed under {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Jäta pealkirjata veerg vahele DocType: Notification,Send alert if date matches this field's value,Saada alert kui kuupäev sobib see väli väärtus DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} kuni {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,samm-tagasi apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Palun määra Dropbox sissepääsuvõtmetena saidi config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Kustuta see rekord lubada saates selle e-posti aadress +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Kui mittestandardne port (nt POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Otseteede kohandamine apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Ainult kohustuslikud väljad on vajalikud uue rekordi. Võite kustutada mittekohustuslikud kolonnid, kui soovite." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Kuva rohkem tegevust @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Näinud tabel apps/frappe/frappe/www/third_party_apps.html,Logged in,Sisse logitud apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Vaikimisi saatmine ja Inbox DocType: System Settings,OTP App,OTP rakendus +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} kirje {1} edukalt värskendatud. DocType: Google Drive,Send Email for Successful Backup,E-post edukaks varundamiseks +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Ajasti on passiivne. Andmeid ei saa importida. DocType: Print Settings,Letter,Täht DocType: DocType,"Naming Options:
                            1. field:[fieldname] - By Field
                            2. naming_series: - By Naming Series (field called naming_series must be present
                            3. Prompt - Prompt user for a name
                            4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                            5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Järgmine sünkroniseerimine DocType: Energy Point Settings,Energy Point Settings,Energiapunkti seaded DocType: Async Task,Succeeded,Õnnestus apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Kohustuslikud väljad on nõutud {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                              No results found for '

                              ,

                              Päringule 'ei leitud tulemusi

                              apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Taasta Õigused {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Kasutajad ja reeglid DocType: S3 Backup Settings,S3 Backup Settings,S3 varundamise seaded @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Sisse DocType: Notification,Value Change,Väärtus Muutus DocType: Google Contacts,Authorize Google Contacts Access,Google'i kontaktide juurdepääsu volitamine apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Kuvatakse aruandest ainult Numbrilised väljad +DocType: Data Import Beta,Import Type,Impordi tüüp DocType: Access Log,HTML Page,HTML-leht DocType: Address,Subsidiary,Tütarettevõte apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ-salvega ühenduse loomise proovimine ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Vale Outgo DocType: Custom DocPerm,Write,Kirjutage apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Ainult administraator lubatud luua Query / Script Aruanded apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ajakohastamine -DocType: File,Preview,Eelvaade +DocType: Data Import Beta,Preview,Eelvaade apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Väli "väärtus" on kohustuslik. Palun täpsustage väärtust uuendatakse DocType: Customize Form,Use this fieldname to generate title,Kasutage seda fieldname genereerida pealkiri apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import e-posti @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser ei toe DocType: Social Login Key,Client URLs,Kliendi URL-id apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Mõned andmed puuduvad apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} loodud edukalt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Jäta vahele {0} {1}, {2}" DocType: Custom DocPerm,Cancel,Tühista apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Hulg Kustuta apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Faili {0} ei ole olemas @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,Sümbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Kinnitage andmete kustutamine -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Uus salasõna saadetakse apps/frappe/frappe/auth.py,Login not allowed at this time,Sisene ole lubatud sel ajal DocType: Data Migration Run,Current Mapping Action,Praegune kaardistamistegevus DocType: Dashboard Chart Source,Source Name,Allikas Nimi @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Järgneb DocType: LDAP Settings,LDAP Email Field,LDAP E-Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Nimekiri +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Ekspordi {0} kirjed apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Juba kasutaja teha nimekirja DocType: User Email,Enable Outgoing,Luba Väljuv DocType: Address,Fax,Fax @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Dokumentide printimine apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hüppa põllule DocType: Contact Us Settings,Forward To Email Address,Edasta e-posti aadress +DocType: Contact Phone,Is Primary Phone,Kas esmane telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Selle linkimiseks saatke e-kiri aadressile {0}. DocType: Auto Email Report,Weekdays,Nädalapäevad +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} kirjet eksporditakse apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Pealkiri valdkonnas peab olema kehtiv fieldname DocType: Post Comment,Post Comment,Postita kommentaar apps/frappe/frappe/config/core.py,Documents,Dokumendid @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","See väli ilmub ainult siis, kui fieldname määratletud siin on väärtuse või reeglid on tõsi (näited): myfield eval: doc.myfield == "Minu Value" eval: doc.age> 18" DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,täna +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> Trükkimine ja bränding> Aadressimall. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kui oled selle kasutajad saavad ainult juurdepääs dokumentidele (nt. Blog Post), kus on olemas seos (nt. Blogger)." +DocType: Data Import Beta,Submit After Import,Esita pärast importimist DocType: Error Log,Log of Scheduler Errors,Logi of Scheduler vead DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App kliendi saladus @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Keela Kliendi liitumine linki sisäänkirjautumissivulla apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Määratud / Omanik DocType: Workflow State,arrow-left,Nool vasakule +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Ekspordi 1 kirje DocType: Workflow State,fullscreen,Täisekraan DocType: Chat Token,Chat Token,Vestlusmärk apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Loo diagramm apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ära impordi DocType: Web Page,Center,Keskpunkt DocType: Notification,Value To Be Set,Väärtuste apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Muuda {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,Näita pealkirjad DocType: Bulk Update,Limit,piir apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},"Oleme saanud kustutamise taotluse {0} andmetega, mis on seotud: {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Lisage uus jaotis +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtreeritud salvestused apps/frappe/frappe/www/printview.py,No template found at path: {0},Ei leitud malli juures teed: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nr Post konto DocType: Comment,Cancelled,Tühistatud @@ -2190,10 +2237,13 @@ 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 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globaalse otsingu dokumenditüüpide lähtestamine. ,Lead Conversion Time,Plii ümberarvestusaeg apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Ehitamine aruanne DocType: Note,Notify users with a popup when they log in,"Teavitage kasutajatele hüpikaken, kui nad sisse logida" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Tuummooduleid {0} ei saa globaalses otsingus otsida. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Avage vestlus apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ei ole olemas, vali uus siht ühendada" DocType: Data Migration Connector,Python Module,Pythoni moodul @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Lähedane 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Seadistamine> Kasutaja õigused -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Uuenda +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Uuenda DocType: Transaction Log,Transaction Hash,Tehingu Hash DocType: Error Snapshot,Snapshot View,Pildistamise Vaata apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Palun salvesta Uudiskiri enne saatmist @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,In Progress apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Järjekorras backup. See võib võtta paar minutit tunnis. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Kasutaja luba on juba olemas +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Veeru {0} kaardistamine väljale {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Kuva {0} DocType: User,Hourly,Tunnis apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreeri OAuth Klient App @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ei saa olla ""{2}"". See peaks olema üks ""{3}""--st" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},saadud {0} automaatse reegli {1} kaudu apps/frappe/frappe/utils/data.py,{0} or {1},{0} või {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Salasõna uuendus DocType: Workflow State,trash,prügi DocType: System Settings,Older backups will be automatically deleted,Vanemad varukoopiaid kustutatakse automaatselt apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Kehtetu juurdepääsukoodi ID või salajane juurdepääsuvõimalus. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,Eelistatud kohaletoimetamine Aadress apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Kirjas peaga apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} loonud selle {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Pole lubatud {0} jaoks: {1} reas {2}. Piiratud väli: {3} +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. Palun looge uus e-posti konto jaotises Seadistamine> E-post> E-posti konto DocType: S3 Backup Settings,eu-west-1,eu-lääs-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Kui see on märgitud, imporditakse kehtivate andmetega rühmad ja hiljem importimiseks tühistatakse sobimatud read uude faili." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument on ainult muudetav kasutajad rolli @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,Kas kohustuslik väli DocType: User,Website User,Koduleht Kasutaja apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Mõned veerud võivad PDF-faile printimisel ära lõigata. Püüdke hoida veergude arv alla 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Ei võrdsete +DocType: Data Import Beta,Don't Send Emails,Ära saada meilisõnumeid DocType: Integration Request,Integration Request Service,Integratsiooni taotlus Service DocType: Access Log,Access Log,Juurdepääsu logi DocType: Website Script,Script to attach to all web pages.,Script lisada kõigile veebilehti. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,Passiivne DocType: Auto Repeat,Accounts Manager,Accounts Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Eesmärk {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Teie makse on tühistatud. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Seadistage vaikimisi kasutatav e-posti konto seadistustes> E-post> E-posti konto apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Valige File Type apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Vaata kõiki DocType: Help Article,Knowledge Base Editor,Teabebaasi Editor @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Andmed apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumendi staatus apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Nõutav on kinnitus +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Enne teie faili importimist tuleb luua järgmised kirjed. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth autoriseerimise koodi apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Ei ole lubatud importida DocType: Deleted Document,Deleted DocType,Kustutatud DocType @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,Süsteemi seaded DocType: GCalendar Settings,Google API Credentials,Google API-i volitused apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start ebaõnnestus apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},See e-posti saadeti {0} ja kopeerida {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},esitas selle dokumendi {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} aasta tagasi DocType: Social Login Key,Provider Name,Pakkuja nimi apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Loo uus {0} DocType: Contact,Google Contacts,Google'i kontaktid @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendari konto DocType: Email Rule,Is Spam,Kas Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Aruanne {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Avatud {0} +DocType: Data Import Beta,Import Warnings,Importhoiatused DocType: OAuth Client,Default Redirect URI,Vaikimisi suunamine URI DocType: Auto Repeat,Recipients,Toetuse saajad DocType: System Settings,Choose authentication method to be used by all users,"Vali autentimismeetod, mida kasutavad kõik kasutajad" @@ -2543,6 +2597,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Aruannet on apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhooki viga DocType: Email Flag Queue,Unread,lugemata DocType: Bulk Update,Desk,Kirjutuslaud +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Jäta vahele veerg {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter peab olema korteež või nimekiri (nimekirja) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Kirjutage SELECT päringu. Märkus tulemus ei saalitav (kõik andmed saadetakse korraga). DocType: Email Account,Attachment Limit (MB),Manuselimiidi (MB) @@ -2557,6 +2612,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Loo uus DocType: Workflow State,chevron-down,Chevron alla apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-post ei saadeta {0} (tellimata / välja lülitatud) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Valige eksporditavad väljad DocType: Async Task,Traceback,Jälgimise DocType: Currency,Smallest Currency Fraction Value,Väikseim Valuuta Murd Value apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Aruande ettevalmistamine @@ -2565,6 +2621,7 @@ DocType: Workflow State,th-list,th nimekirja DocType: Web Page,Enable Comments,Luba Kommentaarid apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Märkused DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Keelatud kasutaja selle IP-aadress ainult. Mitu IP aadressid saab lisada eraldades komadega. Samuti nõustub osaliselt IP aadresse nagu (111.111.111) +DocType: Data Import Beta,Import Preview,Impordi eelvaade DocType: Communication,From,pärit apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Vali rühm sõlme esimene. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Leia {0} on {1} @@ -2663,6 +2720,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,vahel DocType: Social Login Key,fairlogin,õiglane login DocType: Async Task,Queued,Järjekorras +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Seadistamine> Vormi kohandamine DocType: Braintree Settings,Use Sandbox,Kasuta liivakasti apps/frappe/frappe/utils/goal.py,This month,See kuu apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format @@ -2678,6 +2736,7 @@ DocType: Session Default,Session Default,Seansi vaikimisi DocType: Chat Room,Last Message,Viimane sõnum DocType: OAuth Bearer Token,Access Token,Access Token DocType: About Us Settings,Org History,Org ajalugu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Umbes {0} minutit on jäänud DocType: Auto Repeat,Next Schedule Date,Järgmise ajakava kuupäev DocType: Workflow,Workflow Name,Töövoo nimi DocType: DocShare,Notify by Email,Soovin e-postiga @@ -2707,6 +2766,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Jätka saatmine apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Taastada +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Kuva hoiatused apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Ostu Kasutaja DocType: Data Migration Run,Push Failed,Push Failed @@ -2743,6 +2803,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Täpse apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Teil pole lubatud uudiskirja vaadata. DocType: User,Interests,Huvid apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Parooli uuendamine juhised on saadetud e-posti +DocType: Energy Point Rule,Allot Points To Assigned Users,Jaotatud kasutajatele punkte apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Tase 0 on dokumendi tasandil õigusi, \ kõrgem tasemed valdkonnas tasandil õigusi." DocType: Contact Email,Is Primary,On esmane @@ -2765,6 +2826,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Ekspordi tüüp DocType: Workflow State,circle-arrow-left,Ringi Nool vasakule DocType: System Settings,Force User to Reset Password,Sundige kasutajat parooli lähtestama apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",Uuendatud aruande saamiseks klõpsake nuppu {0}. @@ -2777,13 +2839,16 @@ DocType: Contact,Middle Name,Keskmine nimi DocType: Custom Field,Field Description,Field kirjeldus apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nimi ei määra kaudu Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,postkastist +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{0} {1}, {2} värskendamine" DocType: Auto Email Report,Filters Display,filtrid Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Muudatuse tegemiseks peab olema väli "muudetud_st". +DocType: Contact,Numbers,Numbrid apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} hindas teie tööd {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Salvestage filtrid DocType: Address,Plant,Taim apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Vasta kõigile DocType: DocType,Setup,Setup +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Kõik plaadid DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-posti aadress, mille Google'i kontakte tuleb sünkroonida." DocType: Email Account,Initial Sync Count,Esmane Sync Krahv DocType: Workflow State,glass,klaas @@ -2808,7 +2873,7 @@ DocType: Workflow State,font,fondi DocType: DocType,Show Preview Popup,Kuva eelvaate hüpik apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,See on top-100 ühiseid salasõna. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Palun võimaldage pop-ups -DocType: User,Mobile No,Mobiili number +DocType: Contact,Mobile No,Mobiili number DocType: Communication,Text Content,tekst sisu DocType: Customize Form Field,Is Custom Field,Kas Custom Field DocType: Workflow,"If checked, all other workflows become inactive.","Kui see on märgitud, kõik muu tööprotsesse aktiivsed." @@ -2854,6 +2919,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Lisa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nimi uue Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Lülita külgriba sisse DocType: Data Migration Run,Pull Insert,Tõmmake sisestust +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maksimaalne lubatud punktide arv pärast punktide korrutamist kordaja väärtusega (märkus. Jätke see väli tühjaks või määrake 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Vale mall apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Ebaseaduslik SQL päring apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Kohustuslik: DocType: Chat Message,Mentions,Mainib @@ -2868,6 +2936,7 @@ DocType: User Permission,User Permission,Kasutaja luba apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blogi apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ei ole paigaldatud apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Lae andmeid +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},muudetud väärtused saidil {0} {1} DocType: Workflow State,hand-right,käsitsi õigus DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Piirkond @@ -2894,10 +2963,12 @@ DocType: Braintree Settings,Public Key,Avalik võti DocType: GSuite Settings,GSuite Settings,GSuite Seaded DocType: Address,Links,Lingid DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Kasutab sellel kontol mainitud e-posti aadressinime saatja nimena kõigil selle konto kaudu saadetud meilidel. +DocType: Energy Point Rule,Field To Check,Kontrollitav väli apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google'i kontaktid - Google'i kontaktide {0} kontakti ei saanud värskendada, veakood {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Palun valige dokumendi tüüp. apps/frappe/frappe/model/base_document.py,Value missing for,Väärtus puuduvad apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Lisa Child +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Impordi käik DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Kui tingimus on täidetud, premeeritakse kasutajat punktidega. nt. doc.status == 'Suletud'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Esitatud Record ei saa kustutada. @@ -2934,6 +3005,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google'i kalendri apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Lehe otsite on puudu. See võiks olla, sest see liigub või on kirjaviga link." apps/frappe/frappe/www/404.html,Error Code: {0},Veakood: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Kirjeldus nimekirjade lehele, lihttekstina, ainult paar rida. (max 140 tähemärki)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} on kohustuslikud väljad DocType: Workflow,Allow Self Approval,Lubage enese kinnitamine DocType: Event,Event Category,Sündmuse kategooria apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2981,8 +3053,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Kolima DocType: Address,Preferred Billing Address,Eelistatud Arved Aadress apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Liiga palju kirjutab ühe taotluse. Palun saada väiksemaid taotlusi apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive on konfigureeritud. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Dokumendi tüüpi {0} on korratud. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,väärtused muudetud DocType: Workflow State,arrow-up,Nool üles +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Tabeli {0} jaoks peaks olema vähemalt üks rida apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",Automaatse korduse konfigureerimiseks lubage suvandist {0} "Luba automaatne kordus". DocType: OAuth Bearer Token,Expires In,lõpeb DocType: DocField,Allow on Submit,Laske Submit @@ -3069,6 +3143,7 @@ DocType: Custom Field,Options Help,Valikud Abi 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 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 @@ -3086,6 +3161,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verifitseerimiskood DocType: Webhook,Webhook Request,Webhooki päring apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Ebaõnnestus: {0} kuni {1} {2} DocType: Data Migration Mapping,Mapping Type,Kaardistamise tüüp +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Vali Kohustuslik apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Sirvi apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Ei ole vaja sümbolid, numbrit või suurtähtedega." DocType: DocField,Currency,Valuuta @@ -3116,11 +3192,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Kirja pea põhineb apps/frappe/frappe/utils/oauth.py,Token is missing,Token puudub apps/frappe/frappe/www/update-password.html,Set Password,Määra parool +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} kirje importimine õnnestus. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Märkus: Kui muudate Page Nimi murdub eelmise URL sellele lehele. apps/frappe/frappe/utils/file_manager.py,Removed {0},Eemaldatud {0} DocType: SMS Settings,SMS Settings,SMS seaded DocType: Company History,Highlight,Highlight DocType: Dashboard Chart,Sum,Summa +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,andmete impordi kaudu DocType: OAuth Provider Settings,Force,jõud apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Viimati sünkroonitud {0} DocType: DocField,Fold,Voldi @@ -3157,6 +3235,7 @@ DocType: Workflow State,Home,Kodu DocType: OAuth Provider Settings,Auto,auto DocType: System Settings,User can login using Email id or User Name,Kasutaja saab sisse logida kasutades e-posti id või kasutajanime DocType: Workflow State,question-sign,Küsimus-märk +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} on keelatud apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Väljade "marsruut" on veebivaate jaoks kohustuslik apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Lisab veergu enne {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Selle välja kasutajale antakse punkte @@ -3190,6 +3269,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Esemed DocType: Notification,Print Settings,Print Settings DocType: Page,Yes,Jah DocType: DocType,Max Attachments,Max failid +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Umbes {0} sekundit on jäänud DocType: Calendar View,End Date Field,Lõppkuupäeva väljad apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globaalsed otseteed DocType: Desktop Icon,Page,Page @@ -3300,6 +3380,7 @@ DocType: GSuite Settings,Allow GSuite access,Luba GSuite juurdepääsu DocType: DocType,DESC,DESC DocType: DocType,Naming,Nimetamine apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Vali kõik +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Veerg {0} apps/frappe/frappe/config/customization.py,Custom Translations,Custom tõlked apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,edu apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,Rolli järgi @@ -3341,11 +3422,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Saa DocType: Stripe Settings,Stripe Settings,triip Seaded DocType: Data Migration Mapping,Data Migration Mapping,Andmevahetuse kaardistamine DocType: Auto Email Report,Period,Periood +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Umbes {0} minutit on jäänud apps/frappe/frappe/www/login.py,Invalid Login Token,Vale Logi Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Visake ära apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 tund tagasi DocType: Website Settings,Home Page,Esileht DocType: Error Snapshot,Parent Error Snapshot,Parent Error Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Kaardista veerud alates {0} väljadest väljal {1} DocType: Access Log,Filters,Filtrid DocType: Workflow State,share-alt,aktsiate alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Järjekord peaks olema üks {0} @@ -3365,6 +3448,7 @@ DocType: Calendar View,Start Date Field,Alguskuupäev DocType: Role,Role Name,Role nimi apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Switch to Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script või Query aruanded +DocType: Contact Phone,Is Primary Mobile,Kas peamine mobiiltelefon DocType: Workflow Document State,Workflow Document State,Töövoo Dokumendi riik apps/frappe/frappe/public/js/frappe/request.js,File too big,Fail on liiga suur apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Saatke konto lisatakse mitu korda @@ -3410,6 +3494,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Lehekülje seaded apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Saving ... apps/frappe/frappe/www/update-password.html,Invalid Password,vale parool +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} kirje {1} edukalt imporditud. DocType: Contact,Purchase Master Manager,Ostu Master Manager apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Avaliku / privaatse vahetamiseks klõpsake lukuikoonil DocType: Module Def,Module Name,Moodul nimi @@ -3443,6 +3528,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Palun sisestage kehtiv mobiiltelefoni nos apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Mõned funktsioonid ei pruugi töötada brauseris. Palun uuendage oma brauseri uusimat versiooni. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Ei tea, küsi "aidata"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},tühistas selle dokumendi {0} DocType: DocType,Comments and Communications will be associated with this linked document,Kommentaarid ja Kommunikatsiooniministeerium on seotud selle seotud dokument apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,julge @@ -3461,6 +3547,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Lisa / Manage DocType: Comment,Published,Avaldatud apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Täname e-posti DocType: DocField,Small Text,Väike tekst +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Numbrit {0} ei saa nii telefoni kui ka mobiilinumbri jaoks primaarseks seada. DocType: Workflow,Allow approval for creator of the document,Luba dokumendi looja heakskiit apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Salvesta aruanne DocType: Webhook,on_cancel,on_cancel @@ -3518,6 +3605,7 @@ DocType: Print Settings,PDF Settings,PDF Seaded DocType: Kanban Board Column,Column Name,Veerg nimi DocType: Language,Based On,Põhineb DocType: Email Account,"For more information, click here.","Lisateabe saamiseks klõpsake siin ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Veergude arv ei kattu andmetega apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Tee Vaikimisi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Täitmise aeg: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Kehtetu kaasamise tee @@ -3607,7 +3695,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Laadige üles {0} faili DocType: Deleted Document,GCalendar Sync ID,GCalendari sünkroonimis ID DocType: Prepared Report,Report Start Time,Aruande algusaeg -apps/frappe/frappe/config/settings.py,Export Data,Ekspordi andmed +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Ekspordi andmed 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. @@ -3625,7 +3713,6 @@ DocType: Report,Disable Prepared Report,Keela ettevalmistatud aruanne apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Kasutaja {0} taotles andmete kustutamist apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Ebaseadusliku juurdepääsu žetooni. Palun proovi uuesti apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Taotlus on uuendatud uus versioon, siis värskendage seda lehekülge" -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> Trükkimine ja bränding> Aadressimall. DocType: Notification,Optional: The alert will be sent if this expression is true,"Valikuline: Teate saadetakse, kui see väljend on tõsi" DocType: Data Migration Plan,Plan Name,Plaani nimi DocType: Print Settings,Print with letterhead,Prindi koos kirjaplank @@ -3666,6 +3753,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Ei saa määrata Muuta ilma Tühista apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Page DocType: DocType,Is Child Table,Kas lapse tabelis +DocType: Data Import Beta,Template Options,Malli valikud apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} peab olema üks {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} loeb praegu seda dokumenti apps/frappe/frappe/config/core.py,Background Email Queue,Taust E Queue @@ -3673,7 +3761,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Parooli lähtestamin DocType: Communication,Opened,Avati DocType: Workflow State,chevron-left,Chevron-vasakule DocType: Communication,Sending,Saatmine -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Ei ole lubatud selle IP aadress DocType: Website Slideshow,This goes above the slideshow.,See läheb üle slaidiesitlust. DocType: Contact,Last Name,Perekonnanimi DocType: Event,Private,Private @@ -3687,7 +3774,6 @@ DocType: Workflow Action,Workflow Action,Töövoo Action apps/frappe/frappe/utils/bot.py,I found these: ,Ma leidsin need: DocType: Event,Send an email reminder in the morning,Saada talle meeldetuletus hommikul DocType: Blog Post,Published On,Avaldatud -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. Palun looge uus e-posti konto jaotises Seadistamine> E-post> E-posti konto 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} @@ -3708,7 +3794,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,hoiatus-märk DocType: Prepared Report,Prepared Report,Ettevalmistatud aruanne apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Lisage oma veebilehtedele metasilte -DocType: Contact,Phone Nos,Telefoninumbrid 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 @@ -3725,6 +3810,7 @@ DocType: Data Migration Connector,Data Migration,Andmeedastus DocType: User,API Key cannot be regenerated,API-koodi ei saa taastada apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Midagi läks valesti DocType: System Settings,Number Format,Number Format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Kirje {0} importimine õnnestus. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Kokkuvõte DocType: Event,Event Participants,Sündmuse osalised DocType: Auto Repeat,Frequency,sagedus @@ -3732,7 +3818,7 @@ DocType: Custom Field,Insert After,Sisesta Pärast DocType: Event,Sync with Google Calendar,Sünkrooni Google'i kalendriga DocType: Access Log,Report Name,Aruande nimetus DocType: Desktop Icon,Reverse Icon Color,Tagurpidi Märk Värv -DocType: Notification,Save,Salvesta +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Salvesta apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Järgmine planeeritud kuupäev apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Määrake sellele, kellel on kõige vähem ülesandeid" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,§ rubriik @@ -3755,11 +3841,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Seadistamine> Vormi kohandamine 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 DocType: Desktop Icon,Category,Kategooria +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Väärtus {0} puudub {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Lisage kontakte apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Maastik apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Klient skripti laienduste Javascript @@ -3782,6 +3868,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiapunkti värskendus apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Palun valige teine makseviis. PayPal ei toeta tehingud sularaha "{0}" DocType: Chat Message,Room Type,Toatüüp +DocType: Data Import Beta,Import Log Preview,Impordi logi eelvaade apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Otsi valdkonnas {0} ei ole kehtiv apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,üles laaditud fail DocType: Workflow State,ok-circle,ok ringi @@ -3848,6 +3935,7 @@ DocType: DocType,Allow Auto Repeat,Luba automaatne kordus apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,"Pole väärtusi, mida näidata" DocType: Desktop Icon,_doctype,_doktüüp DocType: Communication,Email Template,E-posti mall +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} kirje edukalt värskendatud. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Kasutajal {0} pole dokumendi {1} rolliõiguse kaudu juurdepääsu doktüübile apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Mõlemad kasutajanime ja parooli vaja apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Palun värskenda saada viimaseid dokument. diff --git a/frappe/translations/fa.csv b/frappe/translations/fa.csv index 4a4463bae9..9d5a0e691c 100644 --- a/frappe/translations/fa.csv +++ b/frappe/translations/fa.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,{} جدید برای برنامه های زیر در دسترس است apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,لطفا مقدار درست را انتخاب کنید. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,بارگیری پرونده واردات ... DocType: Assignment Rule,Last User,آخرین کاربر apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",یک کار جدید، {0}، توسط {1} به شما داده شده است. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,جلسه پیش فرض ذخیره شده است +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,بارگیری مجدد پرونده DocType: Email Queue,Email Queue records.,سوابق ایمیل صف. DocType: Post,Post,پست DocType: Address,Punjab,پنجاب @@ -44,6 +46,7 @@ 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,پارامتر @@ -68,7 +71,7 @@ DocType: Auto Repeat,Monthly,ماهیانه DocType: Address,Uttarakhand,اوتاراکند DocType: Email Account,Enable Incoming,فعال ورودی apps/frappe/frappe/core/doctype/version/version_view.html,Danger,خطر -apps/frappe/frappe/www/login.py,Email Address,آدرس ایمیل +DocType: Address,Email Address,آدرس ایمیل DocType: Workflow State,th-large,TH-بزرگ DocType: Communication,Unread Notification Sent,هشدار از طریق ارسال خوانده نشده apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,صادرات پذیر نیست. شما {0} نقش به صادرات نیاز دارید. @@ -96,7 +99,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,خارج ش DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",گزینه های تماس، مانند "فروش پرس و جو، پشتیبانی پرس و جو" و غیره که هر کدام در یک خط جدید و یا از هم جدا شده توسط کاما. apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,اضافه کردن یک تگ ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,پرتره -DocType: Data Migration Run,Insert,درج +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,درج apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,به Google اجازه دسترسی به درایو apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},انتخاب {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,لطفا آدرس پایه را وارد کنید @@ -116,17 +119,17 @@ 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,پیکربندی موضوع DocType: Company History,Company History,تاریخچه شرکت -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,تنظیم مجدد +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,تنظیم مجدد DocType: Workflow State,volume-up,صدا apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,مدیران وب خواستار درخواست API به برنامه های وب می شوند +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,نمایش ردگیری DocType: DocType,Default Print Format,به طور پیش فرض فرمت چاپ DocType: Workflow State,Tags,برچسب ها apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,هیچ: پایان گردش کار apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} درست است نه می تواند تنظیم شود که در {1} منحصر به فرد، به عنوان مقادیر غیر منحصر به فرد موجود وجود دارد -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,انواع سند +DocType: Global Search Settings,Document Types,انواع سند DocType: Address,Jammu and Kashmir,جامو و کشمیر DocType: Workflow,Workflow State Field,فیلد وضعیت گردش کار -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,تنظیم> کاربر DocType: Language,Guest,مهمان DocType: DocType,Title Field,عنوان درست DocType: Error Log,Error Log,ورود به خطا @@ -135,6 +138,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",تکرار مانند "abcabcabc" فقط کمی سخت تر به حدس زدن از "ABC" DocType: Notification,Channel,کانال apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",اگر شما فکر می کنم این غیر مجاز است، لطفا رمز عبور Administrator را تغییر دهید. +DocType: Data Import Beta,Data Import Beta,واردات داده بتا apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} الزامی است DocType: Assignment Rule,Assignment Rules,قوانین واگذاری DocType: Workflow State,eject,بیرون انداختن @@ -160,6 +164,7 @@ DocType: Workflow Action Master,Workflow Action Name,نام اقدام گردش apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE نمی تواند با هم ادغام شدند DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,نه یک فایل فشرده +DocType: Global Search DocType,Global Search DocType,DocType جستجوی جهانی DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                              New {{ doc.doctype }} #{{ doc.name }}
                              ","برای اضافه کردن موضوع پویا، از برچسب جینجا مانند
                               New {{ doc.doctype }} #{{ doc.name }} 
                              " @@ -207,6 +212,7 @@ DocType: SMS Settings,Enter url parameter for message,پارامتر URL برا apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,تکرار خودکار ایجاد شده برای این سند apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,مشاهده گزارش در مرورگر خود apps/frappe/frappe/config/desk.py,Event and other calendars.,رویداد و دیگر تقویم. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 ردیف اجباری) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,تمام زمینه های لازم برای ارسال نظر می باشد. DocType: Custom Script,Adds a client custom script to a DocType,اسکریپت سفارشی مشتری را به DocType اضافه می کند DocType: Print Settings,Printer Name,نام چاپگر @@ -247,7 +253,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},جا DocType: Bulk Update,Bulk Update,به روز رسانی فله DocType: Workflow State,chevron-up,شورون تا DocType: DocType,Allow Guest to View,اجازه مهمان نمایش -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: Webhook,on_change,در تغییر apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,حذف {0} موارد به طور دائم؟ apps/frappe/frappe/utils/oauth.py,Not Allowed,ممنوع @@ -262,6 +267,7 @@ DocType: Data Import,Update records,به روز رسانی سوابق apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Invalid module path,مسیر ماژول نامعتبر است DocType: DocField,Display,نمایش DocType: Email Group,Total Subscribers,مجموع مشترکین +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,شماره ردیف apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",اگر یک نقش دسترسی در سطح 0 را نداشته باشند، سپس سطوح بالاتر بی معنی است. apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ذخیره به عنوان DocType: Comment,Seen,مشاهده @@ -321,6 +327,7 @@ DocType: Activity Log,Closed,بسته DocType: Blog Settings,Blog Title,وبلاگ عنوان apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,نقش استاندارد نمی تواند غیر فعال شود apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,نوع چت +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,ستون های نقشه DocType: Address,Mizoram,میزورام DocType: Newsletter,Newsletter,عضویت در خبرنامه apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,می توانید زیر پرس و جو در سفارش استفاده نمی شده توسط @@ -385,6 +392,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,کاربر {0} نمی تواند حذف شود DocType: System Settings,Currency Precision,دقت ارز apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,یکی دیگر از معامله است مسدود کردن این یکی. لطفا پس از چند ثانیه دوباره سعی کنید. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,فیلترها را پاک کنید DocType: Test Runner,App,برنامه apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,پیوست ها به سند جدید نمی توانند به درستی مرتبط شوند DocType: Chat Message Attachment,Attachment,دلبستگی @@ -409,6 +417,7 @@ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,داشبورد apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,قادر به ارسال ایمیل های در این زمان apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,جستجو و یا استفاده از دستور DocType: Activity Log,Timeline Name,نام گاهشمار +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,فقط یک {0} می تواند به عنوان اصلی تنظیم شود. DocType: Email Account,e.g. smtp.gmail.com,به عنوان مثال smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,اضافه کردن یک قانون جدید DocType: Contact,Sales Master Manager,مدیر ارشد فروش @@ -424,7 +433,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html,"Your query has been receive apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,پیوند خودکار فقط در صورت فعال بودن ورودی می تواند فعال شود. DocType: LDAP Settings,LDAP Middle Name Field,زمینه نام میانی LDAP DocType: GCalendar Account,Allow GCalendar Access,اجازه دسترسی GCalendar را داشته باشید -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} فیلد اجباری است +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} فیلد اجباری است apps/frappe/frappe/templates/includes/login/login.js,Login token required,ورود به سیستم مورد نیاز apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,رتبه ماهانه: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,موارد چند لیست را انتخاب کنید @@ -453,6 +462,7 @@ DocType: Domain Settings,Domain Settings,تنظیمات دامنه apps/frappe/frappe/email/receive.py,Cannot connect: {0},نمی تواند اتصال: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,یک کلمه با خود را آسان به حدس زدن است. apps/frappe/frappe/templates/includes/search_box.html,Search...,جستجو کردن... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,لطفا انتخاب کنید شرکت apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,ادغام بین تنها گروه به گروه و یا برگ گره به گره برگ apps/frappe/frappe/utils/file_manager.py,Added {0},اضافه شده {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,هیچ پرونده تطبیق است. جستجو چیزی جدید @@ -465,7 +475,6 @@ DocType: Google Settings,OAuth Client ID,شناسه مشتری OAuth DocType: Auto Repeat,Subject,موضوع apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,بازگشت به میز DocType: Web Form,Amount Based On Field,مقدار بر اساس درست -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,لطفاً حساب پیش فرض پست الکترونیکی را از تنظیم> ایمیل> حساب ایمیل تنظیم کنید apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,کاربر اشتراک الزامی است DocType: DocField,Hidden,پنهان DocType: Web Form,Allow Incomplete Forms,اجازه می دهد فرم های ناقص @@ -502,6 +511,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} و {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,یک مکالمه شروع کنید DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",همیشه "پیش نویس" افزودن عنوان برای چاپ اسناد پیش نویس apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},خطا در اعلان: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پیش DocType: Data Migration Run,Current Mapping Start,شروع نقشه فعلی apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ایمیل شده است به عنوان هرزنامه علامتگذاری شده است DocType: Comment,Website Manager,مدیر وب سایت @@ -538,6 +548,7 @@ DocType: Workflow State,barcode,بارکد apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,استفاده از زیر پرس و جو یا تابع محدود شده است apps/frappe/frappe/config/customization.py,Add your own translations,اضافه کردن ترجمه خود را DocType: Country,Country Name,نام کشور +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,الگوی خالی DocType: About Us Team Member,About Us Team Member,درباره ما تیم کاربران apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.",مجوز بر نقش ها و انواع سند (به نام DocTypes) با تنظیم حقوق مانند مجموعه خواندن، نوشتن، ایجاد، حذف، ارسال، لغو، اصلاح، گزارش، واردات، صادرات، چاپ، ایمیل و تنظیم کاربر مجوز. DocType: Event,Wednesday,چهار شنبه @@ -549,6 +560,7 @@ DocType: Website Settings,Website Theme Image Link,وب سایت لینک تم DocType: Web Form,Sidebar Items,موارد نوار کناری DocType: Web Form,Show as Grid,نمایش به عنوان شبکه apps/frappe/frappe/installer.py,App {0} already installed,برنامه {0} در حال حاضر نصب +DocType: Energy Point Rule,Users assigned to the reference document will get points.,کاربران اختصاص یافته به سند مرجع امتیاز دریافت می کنند. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,بدون پیش نمایش DocType: Workflow State,exclamation-sign,علامت تعجب علامت apps/frappe/frappe/public/js/frappe/form/controls/link.js,empty,خالی @@ -583,6 +595,7 @@ DocType: Notification,Days Before,روز قبل از apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,رویدادهای روزانه باید در همان روز به پایان برسد. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ویرایش ... DocType: Workflow State,volume-down,حجم پایین +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,دسترسی از این آدرس IP مجاز نیست apps/frappe/frappe/desk/reportview.py,No Tags,بدون برچسب DocType: Email Account,Send Notification to,ارسال هشدار از طریق به DocType: DocField,Collapsible,پیش ساخته @@ -680,6 +693,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",هدف = "_blank" DocType: Workflow State,hdd,هارد DocType: Integration Request,Host,میزبان +DocType: Data Import Beta,Import File,وارد کردن پرونده apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,ستون {0} وجود داشته باشد. DocType: ToDo,High,زیاد apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,رویداد جدید @@ -708,8 +722,6 @@ DocType: User,Send Notifications for Email threads,اعلان ها را برای apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,پروفسور apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,نه در حالت برنامه نویس apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,نسخه پشتیبان تهیه فایل آماده است -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",حداکثر امتیاز مجاز بعد از ضرب امتیاز با مقدار ضرب (توجه: بدون مقدار تعیین شده به عنوان 0) DocType: DocField,In Global Search,در جهانی جستجو DocType: System Settings,Brute Force Security,امنیت نیروی بیرحمانه DocType: Workflow State,indent-left,تورفتگی سمت چپ @@ -751,6 +763,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',کاربر '{0}' در حال حاضر نقش دارد: '{1}' DocType: System Settings,Two Factor Authentication method,دو روش اعتبار فاکتور apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,اول نام را تنظیم کرده و رکورد را ذخیره کنید. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 رکورد apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},اشتراک گذاشته شده با {0} apps/frappe/frappe/email/queue.py,Unsubscribe,لغو اشتراک DocType: View Log,Reference Name,نام مرجع @@ -798,6 +811,7 @@ 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,ردیابی وضعیت ایمیل DocType: Note,Notify Users On Every Login,اطلاع کاربران در هر ورود +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,ستون {0} با هیچ زمینه ای مطابقت ندارد DocType: PayPal Settings,API Password,API رمز عبور apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,ماژول پایتون را وارد کنید یا نوع اتصال را انتخاب کنید apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname برای درست سفارشی تنظیم نشده @@ -826,9 +840,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,مقدار تغییر apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},نام تکراری {0} {1} -DocType: Email Queue,Retry,دوباره امتحان کنید +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,دوباره امتحان کنید +DocType: Contact Phone,Number,عدد DocType: Web Form Field,Web Form Field,فرم درست apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,شما یک پیام جدید از: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,ویرایش HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,لطفا URL تغییر مسیر را وارد کنید apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -853,7 +869,7 @@ DocType: Notification,View Properties (via Customize Form),نمایش خواص ( apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,برای انتخاب روی یک پرونده کلیک کنید. DocType: Note Seen By,Note Seen By,توجه داشته باشید که توسط apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,سعی کنید به استفاده از یک الگوی صفحه کلید دیگر با چرخش بیشتر -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,رهبران +,LeaderBoard,رهبران DocType: DocType,Default Sort Order,ترتیب مرتب سازی پیش فرض DocType: Address,Rajasthan,راجستان DocType: Email Template,Email Reply Help,ایمیل پاسخ کمک @@ -888,6 +904,7 @@ apps/frappe/frappe/utils/data.py,Cent,در صد apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,نوشتن ایمیل apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).",ایالات به طور (به عنوان مثال پیش نویس، مصوب، منتفی شد). DocType: Print Settings,Allow Print for Draft,اجازه چاپ برای پیش نویس +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/link_selector.js,Set Quantity,تنظیم تعداد apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ارسال این سند را به اعلام DocType: Contact,Unsubscribed,اشتراک لغو @@ -918,6 +935,7 @@ DocType: LDAP Settings,Organizational Unit for Users,واحد سازمانی ب ,Transaction Log Report,گزارش گزارش تراکنش DocType: Custom DocPerm,Custom DocPerm,DocPerm سفارشی DocType: Newsletter,Send Unsubscribe Link,ارسال پیوند لغو اشتراک +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,برخی از پرونده های مرتبط وجود دارد که باید قبل از وارد کردن پرونده شما ایجاد شوند. آیا می خواهید سوابق گمشده زیر را بطور خودکار ایجاد کنید؟ DocType: Access Log,Method,روش DocType: Report,Script Report,گزارش اسکریپت DocType: OAuth Authorization Code,Scopes,حوزه @@ -958,6 +976,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,با موفقیت بارگذاری شد apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,شما به اینترنت متصل هستید DocType: Social Login Key,Enable Social Login,فعال کردن ورود به سیستم اجتماعی +DocType: Data Import Beta,Warnings,هشدارها DocType: Communication,Event,واقعه apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",در {0}، {1} نوشته است: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,می تواند درست استاندارد را حذف کنید. شما می توانید آن را پنهان اگر شما می خواهید @@ -1013,6 +1032,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,قرار DocType: Kanban Board Column,Blue,ابی apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,همه موارد سفارشی حذف خواهد شد. لطفا تایید کنید. DocType: Page,Page HTML,صفحه HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,صادرات ردیف خطا apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,نام گروه نمیتواند خالی باشد apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,گره علاوه بر این می تواند تنها تحت نوع گره 'گروه' ایجاد DocType: SMS Parameter,Header,سربرگ @@ -1057,7 +1077,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,تنظیمات SMTP ب apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,را انتخاب کنید DocType: Data Export,Filter List,فیلتر لیست DocType: Data Export,Excel,اکسل -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,رمز عبورشما به روز شده است. در اینجا رمز عبور جدید شما است DocType: Email Account,Auto Reply Message,خودکار پاسخ پیام DocType: Data Migration Mapping,Condition,شرط apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ساعت پیش @@ -1066,7 +1085,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID کاربر DocType: Communication,Sent,فرستاده DocType: Address,Kerala,کرالا -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,مدیریت DocType: User,Simultaneous Sessions,جلسات به طور همزمان DocType: Social Login Key,Client Credentials,مدارک مشتری @@ -1098,7 +1116,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},به ر apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,استاد DocType: DocType,User Cannot Create,کاربر نمی تواند ایجاد apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,با موفقیت انجام شد -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,پوشه {0} وجود ندارد apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,دسترسی به Dropbox تأیید می شود! DocType: Customize Form,Enter Form Type,را وارد کنید فرم نوع DocType: Google Drive,Authorize Google Drive Access,دسترسی Google Drive را مجاز کنید @@ -1106,7 +1123,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,هیچ پرونده برچسب. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,حذف درست apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,شما به اینترنت وصل نیستید بعدا دوباره تلاش کنید -DocType: User,Send Password Update Notification,ارسال هشدار از طریق رمز عبور به روز رسانی apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",اجازه می دهد DOCTYPE، DOCTYPE. مواظب باش! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",فرمت سفارشی برای چاپ، ایمیل apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},جمع {0} @@ -1187,6 +1203,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,کد تأیید نا apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,ادغام مخاطبین Google غیرفعال است. DocType: Assignment Rule,Description,شرح DocType: Print Settings,Repeat Header and Footer in PDF,سربرگ و پاورقی تکرار در PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,شکست DocType: Address Template,Is Default,آیا پیش فرض DocType: Data Migration Connector,Connector Type,نوع اتصال apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,نام ستون نمی تواند خالی باشد @@ -1248,6 +1265,7 @@ DocType: Print Settings,Enable Raw Printing,چاپ خام را فعال کنید DocType: Website Route Redirect,Source,منبع apps/frappe/frappe/templates/includes/list/filters.html,clear,واضح apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,تمام شده +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,تنظیم> کاربر DocType: Prepared Report,Filter Values,ارزشهای فیلتر DocType: Communication,User Tags,کاربر برچسب ها DocType: Data Migration Run,Fail,شکست @@ -1303,6 +1321,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,دن ,Activity,فعالیت DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",راهنما: لینک به رکورد دیگری در سیستم، استفاده از "# فرم / توجه / [توجه داشته باشید نام]" را به عنوان URL لینک. (استفاده نمی "از http: //") DocType: User Permission,Allow,اجازه دادن +DocType: Data Import Beta,Update Existing Records,سوابق موجود را به روز کنید apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,بیایید اجتناب از تکرار کلمات و شخصیت DocType: Energy Point Rule,Energy Point Rule,قانون نقطه انرژی DocType: Communication,Delayed,به تاخیر افتاده @@ -1315,9 +1334,7 @@ DocType: Milestone,Track Field,زمینه پیگیری DocType: Notification,Set Property After Alert,تنظیم مشخصه پس از هشدار apps/frappe/frappe/config/customization.py,Add fields to forms.,اضافه کردن زمینه های به اشکال. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,به نظر می رسد مانند چیزی اشتباه است با پیکربندی پی پال این سایت است. -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/sidebar/review.js,Add Review,بررسی را اضافه کنید -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),اندازه قلم (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,فقط DocTypes استاندارد مجاز به سفارشی سازی فرم است. DocType: Email Account,Sendgrid,Sendgrid @@ -1353,6 +1370,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ف apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,متاسف! شما می توانید نظرات خودکار تولید را حذف کنید DocType: Google Settings,Used For Google Maps Integration.,مورد استفاده برای ادغام نقشه های Google. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DOCTYPE مرجع +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,هیچ سابقه ای صادر نمی شود DocType: User,System User,سیستم کاربر DocType: Report,Is Standard,آیا استاندارد DocType: Desktop Icon,_report,_گزارش @@ -1366,6 +1384,7 @@ DocType: Workflow State,minus-sign,منهای نشانه apps/frappe/frappe/public/js/frappe/request.js,Not Found,پیدا نشد apps/frappe/frappe/www/printview.py,No {0} permission,بدون {0} مجوز apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,صادرات و ویرایش سفارشی +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,موردی یافت نشد. DocType: Data Export,Fields Multicheck,زمینه های چندگانه DocType: Activity Log,Login,ورود به سیستم DocType: Web Form,Payments,پرداخت @@ -1423,7 +1442,7 @@ DocType: Email Account,Default Incoming,به طور پیش فرض ورودی DocType: Workflow State,repeat,تکرار DocType: Website Settings,Banner,پرچم DocType: Role,"If disabled, this role will be removed from all users.",اگر غیرفعال باشد، این نقش را از تمام کاربران حذف می شود. -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,به {0} لیست بروید +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,کمک در جستجو DocType: Milestone,Milestone Tracker,ردیاب نقطه عطف apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ثبت نام اما غیر فعال @@ -1466,7 +1485,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ 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,تعداد صفحات -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                              No results found for '

                              ,"

                              هیچ نتیجه ای برای 'یافت نشد

                              " DocType: DocField,Attach Image,ضمیمه تصویر DocType: Workflow State,list-alt,لیست ALT apps/frappe/frappe/www/update-password.html,Password Updated,رمز عبور به روز رسانی @@ -1486,8 +1504,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> مجوزهای کاربر DocType: LDAP Group Mapping,LDAP Group Mapping,نقشه برداری گروه LDAP DocType: Dashboard Chart,Chart Options,گزینه های نمودار +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,ستون بدون عنوان apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} از {1} به {2} در ردیف # {3} DocType: Communication,Expired,تمام شده apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,به نظر می رسد نشانه ای که استفاده می کنید نامعتبر است @@ -1512,6 +1532,7 @@ DocType: Custom Role,Custom Role,نقش سفارشی apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,صفحه اصلی / پوشه تست 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,رمز عبور خود را وارد کنید DocType: Dropbox Settings,Dropbox Access Secret,Dropbox به دسترسی راز +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(اجباری، الزامی) 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.,هیچ داده ای در فایل یافت نشد لطفا فایل جدید با داده را دوباره نصب کنید. @@ -1582,6 +1603,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,نمایش apps/frappe/frappe/desk/form/assign_to.py,New Message,پیام جدید DocType: File,Preview HTML,پیش نمایش HTML DocType: Desktop Icon,query-report,جستجوهای گزارش +DocType: Data Import Beta,Template Warnings,هشدارهای الگو apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,فیلترهای ذخیره شده DocType: DocField,Percent,در صد apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,لطفا فیلتر تنظیم @@ -1603,6 +1625,7 @@ DocType: Custom Field,Custom,رسم DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",در صورت فعال بودن، کاربرانی که از آدرس IP محدود شده وارد می شوند، برای دو فاکتور Auth دعوت نمی شوند DocType: Auto Repeat,Get Contacts,دریافت تماس ها apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},پست واصل تحت {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,پرش از ستون بدون عنوان DocType: Notification,Send alert if date matches this field's value,ارسال هشدار در صورت عضویت مسابقات ارزش این زمینه را DocType: Workflow,Transitions,انتقال apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} به {2} @@ -1626,6 +1649,7 @@ DocType: Workflow State,step-backward,گام به گام به عقب apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,لطفا کلیدهای دسترسی Dropbox به پیکربندی در سایت خود تنظیم apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,حذف این رکورد اجازه می دهد تا ارسال به این آدرس ایمیل +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)",اگر درگاه غیر استاندارد (به عنوان مثال POP3: 995/110 ، IMAP: 993/143) apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,میانبرها را شخصی سازی کنید apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,تنها فیلدها اجباری لازم برای پرونده جدید است. شما می توانید ستون اجباری اگر شما می خواهید حذف کنید. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,فعالیت بیشتر نشان دهید @@ -1728,6 +1752,7 @@ 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 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,نامه DocType: DocType,"Naming Options:
                              1. field:[fieldname] - By Field
                              2. naming_series: - By Naming Series (field called naming_series must be present
                              3. Prompt - Prompt user for a name
                              4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                              5. @@ -1741,6 +1766,7 @@ DocType: GCalendar Account,Next Sync Token,توالی همگام سازی بعد DocType: Energy Point Settings,Energy Point Settings,تنظیمات نقطه انرژی DocType: Async Task,Succeeded,پیش apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},زمینه های مورد نیاز اجباری در {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                No results found for '

                                ,"

                                هیچ نتیجه ای برای 'یافت نشد

                                " apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,مجوز های تنظیم مجدد برای {0}؟ apps/frappe/frappe/config/desktop.py,Users and Permissions,کاربران و ویرایش DocType: S3 Backup Settings,S3 Backup Settings,S3 تنظیمات پشتیبان گیری @@ -1811,6 +1837,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,به DocType: Notification,Value Change,تغییر ارزش DocType: Google Contacts,Authorize Google Contacts Access,دسترسی مخاطبین Google را مجاز کنید apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,نمایش فقط فیلدهای عددی از گزارش +DocType: Data Import Beta,Import Type,نوع واردات DocType: Access Log,HTML Page,صفحه HTML DocType: Address,Subsidiary,فرعی apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,تلاش برای اتصال به سینی QZ ... @@ -1820,7 +1847,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,سرور DocType: Custom DocPerm,Write,نوشتن apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,تنها مدیر مجاز به ایجاد پرس و جو / اسکریپت گزارش apps/frappe/frappe/public/js/frappe/form/save.js,Updating,به روز رسانی -DocType: File,Preview,پیش نمایش +DocType: Data Import Beta,Preview,پیش نمایش apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",درست "ارزش" الزامی است. لطفا مقدار را مشخص به روز می شود DocType: Customize Form,Use this fieldname to generate title,با استفاده از این fieldname برای تولید عنوان apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,واردات از ایمیل @@ -1930,7 +1957,6 @@ DocType: GCalendar Account,Session Token,نشانه نشست DocType: Currency,Symbol,نماد apps/frappe/frappe/model/base_document.py,Row #{0}:,ردیف # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,حذف داده را تأیید کنید -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,کلمه عبور جدید را در ایمیل فرستاده apps/frappe/frappe/auth.py,Login not allowed at this time,ورود در این زمان مجاز نیست DocType: Data Migration Run,Current Mapping Action,اقدامات نقشه برداری فعلی DocType: Dashboard Chart Source,Source Name,نام منبع @@ -1943,6 +1969,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,پی apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,به دنبال DocType: LDAP Settings,LDAP Email Field,LDAP ایمیل درست apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} فهرست +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,صادرات {0} سوابق apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,در حال حاضر در کاربر برای انجام لیست DocType: User Email,Enable Outgoing,فعال خروجی DocType: Address,Fax,فکس @@ -2000,6 +2027,7 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,اسناد چاپ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,پرش به میدان DocType: Contact Us Settings,Forward To Email Address,به جلو به آدرس پست الکترونیک +DocType: Contact Phone,Is Primary Phone,تلفن اولیه است DocType: Auto Email Report,Weekdays,روزهای کاری apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,عنوان درست باید fieldname معتبر باشد DocType: Post Comment,Post Comment,ارسال نظر @@ -2018,7 +2046,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",در این زمینه به نظر می رسد تنها در صورتی که FIELDNAME تعریف شده در اینجا دارای ارزش و یا قوانین واقعی (مثال): myfield محاسبه-: doc.myfield == 'ارزش من "تابع eval: doc.age> 18 DocType: Social Login Key,Office 365,دفتر 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,امروز +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",هنگامی که شما تعیین کرده اند این، کاربران تنها اسناد دسترسی قادر باشد (. به عنوان مثال وبلاگ پست) که در آن پیوند وجود دارد (به عنوان مثال بلاگر). +DocType: Data Import Beta,Submit After Import,ارسال پس از واردات DocType: Error Log,Log of Scheduler Errors,ورود از خطاها زمانبند DocType: User,Bio,بیوگرافی DocType: OAuth Client,App Client Secret,برنامه سرویس گیرنده راز @@ -2036,10 +2066,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,لینک ثبت نام مشتریان غیر فعال کردن در صفحه ورود apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,واگذار شده به / مالک DocType: Workflow State,arrow-left,پیکان چپ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,صادرات 1 رکورد DocType: Workflow State,fullscreen,تمام صفحه DocType: Chat Token,Chat Token,مکالمه چت apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,نمودار را ایجاد کنید apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,وارد نکنید DocType: Web Page,Center,مرکز DocType: Notification,Value To Be Set,ارزش به تنظیم شود apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},ویرایش {0} @@ -2058,6 +2090,7 @@ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under DocType: Print Format,Show Section Headings,نمایش سرفصل بخش DocType: Bulk Update,Limit,حد apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,یک بخش جدید اضافه کنید +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,سوابق فیلتر شده apps/frappe/frappe/www/printview.py,No template found at path: {0},بدون الگو در بر داشت در مسیر: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,حساب کاربری ایمیل DocType: Comment,Cancelled,لغو شد @@ -2142,7 +2175,9 @@ 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} 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,همان شناسه ورود خود را +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,تنظیم مجدد انواع اسناد جستجوی جهانی. ,Lead Conversion Time,زمان تبدیل سرب apps/frappe/frappe/desk/page/activity/activity.js,Build Report,ساخت گزارش DocType: Note,Notify users with a popup when they log in,کاربران آگاه کن با یک پنجره زمانی که آنها وارد سیستم شوید @@ -2162,8 +2197,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,ببند 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> مجوزهای کاربر -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,به روز رسانی +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,به روز رسانی DocType: Transaction Log,Transaction Hash,هش تراش DocType: Error Snapshot,Snapshot View,عکس فوری دیدگاه apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,لطفا قبل از ارسال خبرنامه نجات @@ -2190,7 +2224,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,دوره تخصیص DocType: SMS Settings,SMS Gateway URL,URL SMS دروازه apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} نمی تواند ""{2}"" باشد. ولی میتواند یکی از ""{3}"" باشد" apps/frappe/frappe/utils/data.py,{0} or {1},{0} یا {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,به روز رسانی رمز عبور DocType: Workflow State,trash,نخاله DocType: System Settings,Older backups will be automatically deleted,پشتیبان گیری قدیمی تر به طور خودکار حذف apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,شناسه کلید دسترسی نامعتبر یا کلید دسترسی راز. @@ -2217,6 +2250,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,هی DocType: Address,Preferred Shipping Address,ترجیح آدرس حمل و نقل apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,با سر نامه apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} ایجاد این {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل تنظیم نشده است. لطفاً یک حساب ایمیل جدید از طریق تنظیم> ایمیل> حساب ایمیل ایجاد کنید DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",اگر این چک شده باشد، ردیف هایی با اطلاعات معتبر وارد می شوند و ردیف های نامعتبر به یک فایل جدید برای شما وارد می شوند که بعدا وارد می شوند. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,سند تنها توسط کاربران از نقش قابل ویرایش است @@ -2243,6 +2277,7 @@ DocType: Custom Field,Is Mandatory Field,آیا فیلد اجباری DocType: User,Website User,وب سایت کاربر apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,ممکن است برخی از ستون ها هنگام چاپ به PDF قطع شوند. سعی کنید تعداد ستون ها را زیر 10 نگه دارید. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,برابر نیست +DocType: Data Import Beta,Don't Send Emails,ایمیل ارسال نکنید DocType: Integration Request,Integration Request Service,یکپارچه سازی خدمات درخواست پاسخ به DocType: Access Log,Access Log,ورود به سیستم DocType: Website Script,Script to attach to all web pages.,اسکریپت به ضمیمه به تمام صفحات وب است. @@ -2281,6 +2316,7 @@ DocType: Contact,Passive,غیر فعال DocType: Auto Repeat,Accounts Manager,مدیر حساب ها apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},تخصیص برای {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,پرداخت شما لغو می شود. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,لطفاً حساب پیش فرض پست الکترونیکی را از تنظیم> ایمیل> حساب ایمیل تنظیم کنید apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,انتخاب نوع فایل apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,نمایش همه DocType: Help Article,Knowledge Base Editor,دانش ویرایشگر پایه @@ -2312,6 +2348,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,داده apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,وضعیت سند apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,تأیید لازم است +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,قبل از وارد کردن پرونده شما باید سوابق زیر ایجاد شوند. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth حفظ کد مجوز apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,مجاز به واردات DocType: Deleted Document,Deleted DocType,DOCTYPE حذف @@ -2364,7 +2401,6 @@ DocType: GCalendar Settings,Google API Credentials,اعتبار گوگل API apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,جلسه شروع نشد apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},این ایمیل {0} به فرستاده شد و کپی شده را به {1} DocType: Workflow State,th,هفتم -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پیش DocType: Social Login Key,Provider Name,نام ارائه دهنده apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ایجاد جدید {0} DocType: Contact,Google Contacts,مخاطبین Google @@ -2372,6 +2408,7 @@ DocType: GCalendar Account,GCalendar Account,حساب GCalendar DocType: Email Rule,Is Spam,اسپم apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},گزارش {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},گسترش {0} +DocType: Data Import Beta,Import Warnings,هشدارهای واردات DocType: OAuth Client,Default Redirect URI,به طور پیش فرض تغییر مسیر URI DocType: Auto Repeat,Recipients,دریافت کنندگان DocType: System Settings,Choose authentication method to be used by all users,روش احراز هویت را انتخاب کنید که توسط تمام کاربران مورد استفاده قرار گیرد @@ -2502,6 +2539,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,ایجاد جدید DocType: Workflow State,chevron-down,شورون به پایین apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),ایمیل به ارسال {0} (لغو / غیر فعال) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,زمینه هایی را برای صادرات انتخاب کنید DocType: Async Task,Traceback,ردیابی DocType: Currency,Smallest Currency Fraction Value,کوچکترین ارز ارزش کسر apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,تهیه گزارش @@ -2510,6 +2548,7 @@ DocType: Workflow State,th-list,TH-لیست DocType: Web Page,Enable Comments,فعال نظرات apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,یادداشت DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),کاربر از این آدرس فقط IP محدود. آدرس IP مختلف را می توان با جدا با کاما اضافه شده است. همچنین آدرس IP جزئی را می پذیرد مانند (111.111.111) +DocType: Data Import Beta,Import Preview,پیش نمایش واردات DocType: Communication,From,از apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,اولین انتخاب یک گره گروه. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},یافتن {0} در {1} @@ -2604,6 +2643,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,بین DocType: Social Login Key,fairlogin,عادلانه DocType: Async Task,Queued,صف +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> سفارشی کردن فرم DocType: Braintree Settings,Use Sandbox,استفاده از گودال ماسهبازی apps/frappe/frappe/utils/goal.py,This month,این ماه apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,جدید سفارشی چاپ فرمت @@ -2647,6 +2687,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,نویسنده apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,رزومه ارسال apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,بازگشایی +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,نمایش هشدارها apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},RE: {0} DocType: Address,Purchase User,خرید کاربر DocType: Data Migration Run,Push Failed,فشار ناکرده @@ -2682,6 +2723,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,جست apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,شما مجاز به مشاهده این خبرنامه نیستید. DocType: User,Interests,منافع apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,دستورالعمل تنظیم مجدد رمز عبور به پست الکترونیک شما ارسال شده است +DocType: Energy Point Rule,Allot Points To Assigned Users,اختصاص امتیاز به کاربران اختصاص داده شده apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",سطح 0 است برای مجوز سطح سند، \ سطوح بالاتر برای مجوز سطح مزرعه. DocType: Contact Email,Is Primary,اولیه است @@ -2704,6 +2746,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,شروع واردات +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,نوع صادرات DocType: Workflow State,circle-arrow-left,دایره-پیکان سمت چپ DocType: System Settings,Force User to Reset Password,کاربر را مجدداً مجدداً رمزعبور را تنظیم کنید apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis کش سرور در حال اجرا نیست. لطفا با Administrator / مرکز تماس @@ -2717,10 +2760,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,نام و نام خا apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,صندوق دریافت ایمیل DocType: Auto Email Report,Filters Display,فیلتر ها apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",قسمت "amified_from" باید انجام شود تا یک اصلاحیه انجام شود. +DocType: Contact,Numbers,شماره apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,فیلترها را ذخیره کنید DocType: Address,Plant,گیاه apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,پاسخ به همه DocType: DocType,Setup,برپایی +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,همه رکوردها DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,آدرس ایمیلی که مخاطبین Google آنها باید همگام شوند. DocType: Email Account,Initial Sync Count,تعداد همگام سازی اولیه DocType: Workflow State,glass,شیشه @@ -2745,7 +2790,7 @@ DocType: Workflow State,font,فونت DocType: DocType,Show Preview Popup,نمایش پیش نمایش پنجره apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,این رمز مشترک بالا 100 است. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,لطفا پنجرههای بازشو را فعال -DocType: User,Mobile No,موبایل بدون +DocType: Contact,Mobile No,موبایل بدون DocType: Communication,Text Content,محتوای متن DocType: Customize Form Field,Is Custom Field,آیا درست سفارشی DocType: Workflow,"If checked, all other workflows become inactive.",در صورت انتخاب، تمام گردش های دیگر غیر فعال می شوند. @@ -2791,6 +2836,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,اض apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,نام جدید فرمت چاپ apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,نوار کناری را تغییر دهید DocType: Data Migration Run,Pull Insert,وارد کردن +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",حداکثر امتیاز مجاز بعد از ضرب امتیاز با مقدار ضرب (توجه: بدون محدودیت این قسمت را خالی بگذارید یا 0 را تنظیم کنید) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,الگوی نامعتبر apps/frappe/frappe/model/db_query.py,Illegal SQL Query,جستجوی غیرقانونی SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,اجباری: DocType: Chat Message,Mentions,اشاره کرد @@ -2830,9 +2878,11 @@ DocType: Braintree Settings,Public Key,کلید عمومی DocType: GSuite Settings,GSuite Settings,تنظیمات GSuite DocType: Address,Links,لینک DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,از تمام آدرس های ارسال شده با استفاده از این حساب از نام آدرس ایمیل که در این حساب به عنوان نام فرستنده ذکر شده استفاده می کند. +DocType: Energy Point Rule,Field To Check,زمینه برای بررسی apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,لطفا نوع سند را انتخاب کنید apps/frappe/frappe/model/base_document.py,Value missing for,ارزش از دست رفته برای apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,اضافه کردن کودک +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,پیشرفت واردات DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",اگر شرط راضی باشد کاربر با امتیاز پاداش می گیرد. به عنوان مثال. doc.status == 'بسته' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: رکورد ثبت شده نمی تواند حذف شود. @@ -2869,6 +2919,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,دسترسی به تق apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,صفحه مورد نظر شما به دنبال از دست رفته است. این می تواند دلیل آن است که نقل مکان کرد و یا یک خطای تایپی در لینک وجود دارد. apps/frappe/frappe/www/404.html,Error Code: {0},کد خطا: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",توضیحات برای لیست صفحه، در متن ساده، تنها یک زن و شوهر از خطوط. (حداکثر 140 حرف) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} فیلدهای اجباری هستند DocType: Workflow,Allow Self Approval,اجازه تصویب خود را DocType: Event,Event Category,دسته رویداد apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,جان دو @@ -2916,6 +2967,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,انتقال به DocType: Address,Preferred Billing Address,ترجیح آدرس صورت حساب apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,بیش از حد بسیاری می نویسد: در یک درخواست. لطفا درخواست کوچکتر ارسال apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive پیکربندی شده است. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,نوع سند {0} تکرار شده است. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,مقادیر تغییر DocType: Workflow State,arrow-up,فلش کردن DocType: OAuth Bearer Token,Expires In,منقضی می شود در @@ -3000,6 +3052,7 @@ DocType: Custom Field,Options Help,گزینه های راهنما 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 رکورد صادر می شود 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 @@ -3016,6 +3069,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,کد تأیید DocType: Webhook,Webhook Request,درخواست Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** شکست خورد: {0} به {1}: {2} DocType: Data Migration Mapping,Mapping Type,نوع نقشه برداری +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,انتخاب اجباری apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,فهرست apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.",بدون نیاز به نمادها، اعداد، یا حروف بزرگ. DocType: DocField,Currency,پول @@ -3051,6 +3105,7 @@ apps/frappe/frappe/utils/file_manager.py,Removed {0},حذف {0} DocType: SMS Settings,SMS Settings,تنظیمات SMS DocType: Company History,Highlight,برجسته DocType: Dashboard Chart,Sum,جمع +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,فرمت استاندارد چاپ نمی تواند به روز شود @@ -3084,6 +3139,7 @@ DocType: Workflow State,Home,خانه DocType: OAuth Provider Settings,Auto,خودکار DocType: System Settings,User can login using Email id or User Name,کاربر می تواند با استفاده از شناسه ایمیل یا نام کاربری وارد سیستم شوید DocType: Workflow State,question-sign,پرسش علامت +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} غیرفعال است apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",فیلد "route" برای مشاهده وب سایت اجباری است apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},درج ستون قبل از {0} DocType: Energy Point Rule,The user from this field will be rewarded points,کاربر از این زمینه امتیازات دریافت می کند @@ -3117,6 +3173,7 @@ DocType: Website Settings,Top Bar Items,موارد بالا نوار DocType: Notification,Print Settings,تنظیمات چاپ DocType: Page,Yes,بله DocType: DocType,Max Attachments,حداکثر فایل های پیوست +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,حدود {0} ثانیه باقی مانده است DocType: Calendar View,End Date Field,فیلد تاریخ پایان apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,میانبرهای جهانی DocType: Desktop Icon,Page,صفحه @@ -3288,6 +3345,7 @@ DocType: Calendar View,Start Date Field,فیلد تاریخ شروع DocType: Role,Role Name,نام نقش apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,تغییر به میز apps/frappe/frappe/config/core.py,Script or Query reports,اسکریپت یا پرس و جو گزارش +DocType: Contact Phone,Is Primary Mobile,موبایل اصلی است DocType: Workflow Document State,Workflow Document State,وضعیت سند گردش کار apps/frappe/frappe/public/js/frappe/request.js,File too big,فایل خیلی بزرگ apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,حساب ایمیل اضافه شده است چندین بار @@ -3381,6 +3439,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,افزودن DocType: Comment,Published,منتشر apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,تشکر از شما برای ایمیل شما DocType: DocField,Small Text,متن کوچک +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,شماره {0} را نمی توان به عنوان اصلی برای تلفن و همچنین شماره موبایل تعیین کرد. DocType: Workflow,Allow approval for creator of the document,برای تایید سند اجازه دهید اجازه دهید apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,ذخیره گزارش DocType: Webhook,on_cancel,on_cancel @@ -3436,6 +3495,7 @@ DocType: Print Settings,PDF Settings,تنظیمات PDF DocType: Kanban Board Column,Column Name,نام ستون DocType: Language,Based On,بر اساس DocType: Email Account,"For more information, click here.","برای اطلاعات بیشتر ، اینجا را کلیک کنید" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,تعداد ستون ها با داده ها مطابقت ندارد apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,پیش فرض قرار دادن apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,زمان اجرا: 0 {0} ثانیه apps/frappe/frappe/model/utils/__init__.py,Invalid include path,مسیر نامعتبر است @@ -3522,7 +3582,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You,ا apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have atleast one recipient,خبرنامه باید یک گیرنده داشته باشد DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,گزارش زمان شروع -apps/frappe/frappe/config/settings.py,Export Data,صادرات داده ها +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,صادرات داده ها 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.,این یک گزارش پس زمینه است. لطفا فیلترهای مناسب را تنظیم کرده و سپس یک مورد جدید ایجاد کنید. @@ -3540,7 +3600,6 @@ DocType: Report,Disable Prepared Report,گزارش آماده شده را غیر apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,کاربر {0} برای حذف داده ها درخواست کرده است apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,غیر قانونی دسترسی به رمز. لطفا دوباره تلاش کنید apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",نرم افزار شده است را به نسخه جدید به روز رسانی، لطفا این صفحه را تازه -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> چاپ و برندسازی> الگوی آدرس ایجاد کنید. DocType: Notification,Optional: The alert will be sent if this expression is true,اختیاری: هشدار ارسال خواهد شد اگر این عبارت درست است DocType: Data Migration Plan,Plan Name,نام برنامه DocType: Print Settings,Print with letterhead,چاپ با سربرگ @@ -3580,6 +3639,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: آیا می توانم تنظیم نشده اصلاح بدون لغو apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,صفحه کامل DocType: DocType,Is Child Table,آیا میز کودک +DocType: Data Import Beta,Template Options,گزینه های الگو apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} باید یکی از {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} در حال مشاهده این سند apps/frappe/frappe/config/core.py,Background Email Queue,پس زمینه صف ایمیل @@ -3587,7 +3647,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,تنظیم مجدد DocType: Communication,Opened,افتتاح شد DocType: Workflow State,chevron-left,شورون سمت چپ DocType: Communication,Sending,ارسال -apps/frappe/frappe/auth.py,Not allowed from this IP Address,از این آدرس IP مجاز نیست DocType: Website Slideshow,This goes above the slideshow.,این می رود در بالای تصاویر به صورت خودکار. DocType: Contact,Last Name,نام خانوادگی DocType: Event,Private,خصوصی @@ -3601,7 +3660,6 @@ DocType: Workflow Action,Workflow Action,اقدام گردش کار apps/frappe/frappe/utils/bot.py,I found these: ,من این پیدا شده است: DocType: Event,Send an email reminder in the morning,ارسال یک ایمیل به یادآوری در صبح DocType: Blog Post,Published On,منتشر شده در -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل تنظیم نشده است. لطفاً یک حساب ایمیل جدید از طریق تنظیم> ایمیل> حساب ایمیل ایجاد کنید DocType: Contact,Gender,جنس apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,اطلاعات اجباری از دست رفته: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,بررسی URL درخواست @@ -3621,7 +3679,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,علامت هشدار دهنده DocType: Prepared Report,Prepared Report,گزارش تهیه شده apps/frappe/frappe/config/website.py,Add meta tags to your web pages,برچسب های متا را به صفحات وب خود اضافه کنید -DocType: Contact,Phone Nos,شماره تلفن DocType: Workflow State,User,کاربر DocType: Website Settings,"Show title in browser window as ""Prefix - title""",نمایش عنوان در پنجره مرورگر به عنوان "پیشوند - عنوان" DocType: Payment Gateway,Gateway Settings,تنظیمات دروازه @@ -3645,7 +3702,7 @@ DocType: Custom Field,Insert After,درج پس از DocType: Event,Sync with Google Calendar,همگام سازی با تقویم Google DocType: Access Log,Report Name,گزارش نام DocType: Desktop Icon,Reverse Icon Color,معکوس نماد رنگ -DocType: Notification,Save,ذخیره +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,ذخیره apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,تاریخ برنامه ریزی شده بعدی apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,به کسی که کمترین تکالیف را دارد اختصاص دهید apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,بخش سرنویس @@ -3668,7 +3725,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> سفارشی کردن فرم DocType: Google Contacts,Last Sync On,آخرین همگام سازی در DocType: Deleted Document,Deleted Document,سند حذف apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,وای! چیزی را اشتباه رفت @@ -3695,6 +3751,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,به روز رسانی نقطه انرژی apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',لطفا روش پرداخت دیگری را انتخاب کنید. پی پال انجام تراکنش در ارز را پشتیبانی نمی کند '{0}' DocType: Chat Message,Room Type,نوع اتاق +DocType: Data Import Beta,Import Log Preview,پیش نمایش ورود به سیستم واردات apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,قسمت جستجو {0} معتبر نیست apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,پرونده بارگذاری شده DocType: Workflow State,ok-circle,OK-دایره diff --git a/frappe/translations/fi.csv b/frappe/translations/fi.csv index afc4e2aba1..1dc24d6f64 100644 --- a/frappe/translations/fi.csv +++ b/frappe/translations/fi.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Seuraavat sovellukset ovat uusia {} -versioita apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Valitse Määrä Field. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Ladataan tuontitiedostoa ... DocType: Assignment Rule,Last User,Viimeinen käyttäjä apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Uusi tehtävä, {0}, nimetty sinulle {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Istunnon oletukset tallennettu +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Lataa tiedosto uudelleen DocType: Email Queue,Email Queue records.,Sähköposti Jono kirjaa. DocType: Post,Post,Posti DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Kuukausi DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,aktivoi saapuva apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Vaara -apps/frappe/frappe/www/login.py,Email Address,Sähköpostiosoite +DocType: Address,Email Address,Sähköpostiosoite DocType: Workflow State,th-large,th-iso DocType: Communication,Unread Notification Sent,Lukematon Ilmoitus lähetetty apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,"vienti kielletty, tarvitset {0} rooli vientiin" @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,ylläpitäj DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Yhteystietojen vaihtoehtomääritykset, kuten ""myyntikysely, tukikysely"" jne jokainen omalla rivillä tai pilkulla erotettuna." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Lisää tagi ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Muotokuva -DocType: Data Migration Run,Insert,aseta +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,aseta apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,salli Google Drive pääsy apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Valitse {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Anna Base-URL-osoite @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuutti 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 DocType: Company History,Company History,yrityksen historia -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Palauta oletukset +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Palauta oletukset DocType: Workflow State,volume-up,volyymi-ylös apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks kutsuu API-pyyntöjä web-sovelluksiin +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Näytä jäljitys DocType: DocType,Default Print Format,oletus tulostusmuoto DocType: Workflow State,Tags,Tagit apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ei mitään: työketjun loppu apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} kenttää ei voi asettaa ainutlaatuiseksi {1}, sillä ei-ainutlaatuisia arvoja on olemassa" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentin tyypit +DocType: Global Search Settings,Document Types,Dokumentin tyypit DocType: Address,Jammu and Kashmir,Jammun ja Kashmirin DocType: Workflow,Workflow State Field,Työnketjun vaiheen kenttä -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Asennus> Käyttäjä DocType: Language,Guest,vieras DocType: DocType,Title Field,Otsikkokenttä DocType: Error Log,Error Log,error Log @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Toistot kuten "abcabcabc" on vain hieman vaikeampi arvata kuin "abc" DocType: Notification,Channel,kanava apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",vaihda järjestelmänvalvojan salasana mikäli luulet tämän olevan oikeuttamaton +DocType: Data Import Beta,Data Import Beta,Tietojen tuonti Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} on pakollinen DocType: Assignment Rule,Assignment Rules,Toimeksiannon säännöt DocType: Workflow State,eject,laukaise @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Työketjun toiminnon nimi apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,tietuetyyppiä ei voi yhdistää DocType: Web Form Field,Fieldtype,Kenttätyyppi apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ei zip-tiedosto +DocType: Global Search DocType,Global Search DocType,Globaali haku DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                New {{ doc.doctype }} #{{ doc.name }}
                                ",Voit lisätä dynaamisen aiheen käyttämällä jinja-tunnisteita
                                 New {{ doc.doctype }} #{{ doc.name }} 
                                @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc-tapahtuma apps/frappe/frappe/public/js/frappe/utils/user.js,You,Sinä DocType: Braintree Settings,Braintree Settings,Braintree-asetukset +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Luotiin {0} tietuetta onnistuneesti. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Tallenna suodatin DocType: Print Format,Helvetica,helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Ei voida poistaa {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,syötä url parametrin vie apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Automaattinen uusinta luotu tälle asiakirjalle apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Näytä raportti selaimessasi apps/frappe/frappe/config/desk.py,Event and other calendars.,Tapahtuma ja muut kalentereita. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 rivi pakollinen) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,"Vahvistaaksesi kommentti, kaikki pakkolliset kentät on täytettävä." DocType: Custom Script,Adds a client custom script to a DocType,Lisää asiakkaan mukautetun komentosarjan DocTypeen DocType: Print Settings,Printer Name,Tulostimen nimi @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Joukkopäivitä DocType: Workflow State,chevron-up,välimerkki-ylös DocType: DocType,Allow Guest to View,Salli Vieras View apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ei saisi olla sama kuin {1} -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 5-10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Poista {0} kohdetta pysyvästi? apps/frappe/frappe/utils/oauth.py,Not Allowed,Ei sallittu @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,näyttö DocType: Email Group,Total Subscribers,alihankkijat yhteensä apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Alkuun {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Rivinumero apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ellei roolilla ole oikeutta tasolle 0, niin korkeammat tasot eivät vaikuta" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Tallenna nimellä DocType: Comment,Seen,Nähty @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Määrittää dokumentille työketjun vaiheet ja säännöt. DocType: Workflow State,Filter,Suodatin @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,suljettu DocType: Blog Settings,Blog Title,Blogin otsikko apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Vakioroolit ei voi poistaa käytöstä apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Chat-tyyppi +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Karttasarakkeet DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Tiedote apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Ei voi käyttää osa-kyselyn mukaisessa järjestyksessä @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Lisää sarake apps/frappe/frappe/www/contact.html,Your email address,Sähköpostiosoitteesi DocType: Desktop Icon,Module,moduuli +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Päivitetty {0} tietue onnistuneesti {1}. DocType: Notification,Send Alert On,Hälytyksen lähetys päällä DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Muokkaa nimikettä, tulostuspiilotusta, oletusarvoa jne." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Pura tiedostoja ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Käyttäjää {0} ei voi poistaa DocType: System Settings,Currency Precision,valuutta Precision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Toinen tapahtuma on estää tämän. Yritä myöhemmin uudelleen. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Tyhjennä suodattimet DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Liitteitä ei voitu linkittää oikein uuteen asiakirjaan DocType: Chat Message Attachment,Attachment,Liite @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Sähköposte apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google-kalenteri - Tapahtumaa {0} ei voitu päivittää Google-kalenterissa, virhekoodi {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,klikkaa tai paina Ctrl-G DocType: Activity Log,Timeline Name,Aikajanan nimi +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Vain yksi {0} voidaan asettaa ensisijaiseksi. DocType: Email Account,e.g. smtp.gmail.com,"esim, smtp.gmail.com" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Lisää uusi sääntö DocType: Contact,Sales Master Manager,Perustietojen ylläpitäjä (myynti) @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP keskimmäinen nimikenttä apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Tuodaan {0} {1} DocType: GCalendar Account,Allow GCalendar Access,Salli GCalendar Access -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} on pakollinen kenttä +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} on pakollinen kenttä apps/frappe/frappe/templates/includes/login/login.js,Login token required,Kirjautumistunnus vaaditaan apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Kuukauden sijoitus: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Valitse useita luettelokohteita @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Ei voi muodostaa: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Sana itsessään on helppo arvata. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automaattinen määritys epäonnistui: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Hae... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Ole hyvä ja valitse Company apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,"voit yhdistää ainoastaan ryhmän-ryhmään, tai jatkosidoksen-jatkosidokseen" apps/frappe/frappe/utils/file_manager.py,Added {0},lisätty {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Suodattimeen kohdistuvia tietueita ei löytynyt. @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,OAuth Client ID DocType: Auto Repeat,Subject,Aihe apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Takaisin Työpisteeseen DocType: Web Form,Amount Based On Field,Laskettu määrä Field -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Käyttäjä vaaditaan jaettaessa DocType: DocField,Hidden,piilotettu DocType: Web Form,Allow Incomplete Forms,Salli Puutteellinen lomakkeet @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ja {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Aloita keskustelu. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Lisää aina ""Luonnos"" otsikko dokumenttien tulostuksiin" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Virhe ilmoituksessa: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vuosi sitten DocType: Data Migration Run,Current Mapping Start,Nykyinen kartoitus alkaa apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Sähköposti on merkitty roskapostiksi DocType: Comment,Website Manager,Verkkosivuston ylläpitäjä @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,Viivakoodi apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Alihakemiston tai toiminnon käyttöä rajoitetaan apps/frappe/frappe/config/customization.py,Add your own translations,Lisää oma käännökset DocType: Country,Country Name,Maan nimi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Tyhjä malli DocType: About Us Team Member,About Us Team Member,Tietoa tiimin jäsenistä apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Käyttöikeudet asetetaan rooleille ja tietuetyypeille. Asetettavissa on esim seuraavia oikeuksia: luku, kirjoitus, luonti, poistaminen, tallennus, peruutus, muokkaus, raportointi, tuonti, vienti, tulostus, sähköposti ja käyttäjän oikeuksien asetus." DocType: Event,Wednesday,Keskiviikko @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Verkkosivuston teemakuvan lin DocType: Web Form,Sidebar Items,Sivupalkki nimikkeet DocType: Web Form,Show as Grid,Näytä ruudukkona apps/frappe/frappe/installer.py,App {0} already installed,App {0} on jo asennettu +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Viiteasiakirjaan osoitetut käyttäjät saavat pisteitä. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Ei esikatselua DocType: Workflow State,exclamation-sign,huutomerkki apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Pakattu {0} tiedostoa @@ -597,6 +612,7 @@ DocType: Notification,Days Before,päivää ennen apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Päivittäisten tapahtumien tulisi päättyä samana päivänä. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Muokata... DocType: Workflow State,volume-down,volyymi-alas +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Tästä IP-osoitteesta pääsy ei ole sallittua apps/frappe/frappe/desk/reportview.py,No Tags,Ilman tagia DocType: Email Account,Send Notification to,Lähetä ilmoitus DocType: DocField,Collapsible,Kokoontaitettava @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Kehittäjä apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Luotu apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} rivi {1} ei voi sisältää sekä URL ja alasidoksia +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Seuraavissa taulukoissa tulisi olla vähintään yksi rivi: {0} DocType: Print Format,Default Print Language,Oletuskieli apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Esivanhemmat apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,kantaa {0} ei voi poistaa @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","tavoite = ""_tyhjä""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,isäntä +DocType: Data Import Beta,Import File,Tuo tiedosto apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Sarake {0} on jo olemassa. DocType: ToDo,High,korkeus apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Uusi tapahtuma @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Lähetä ilmoituksia sähköp apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ei kehittäjätilassa apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Tiedoston varmuuskopiointi on valmis -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Suurimmat sallitut pisteet kerrottuna pisteillä kertoimella (Huomautus: Ei rajaa asetettu arvoksi 0) DocType: DocField,In Global Search,Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,luetelmakohta vasemmassa @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',"Käyttäjällä {0} on jo rooli ""{1}""" DocType: System Settings,Two Factor Authentication method,Kaksiosaisen todennuksen tapa apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Aseta ensin nimi ja tallenna tietue. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 levyä apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Jaettu {0} kanssa apps/frappe/frappe/email/queue.py,Unsubscribe,Lopeta tilaus DocType: View Log,Reference Name,Viite Name @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Data Migration Connec 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 DocType: Note,Notify Users On Every Login,Muistuta käyttäjiä kirjauduttaessa +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Sarakkeita {0} ei voida sovittaa mihinkään kenttään +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Päivitetty {0} tietue onnistuneesti. DocType: PayPal Settings,API Password,API salasana apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Anna python-moduuli tai valitse liittimen tyyppi apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Kenttänimi ei asetettu oma kenttä @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},monista nimi {0} {1} -DocType: Email Queue,Retry,yritä uudelleen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,yritä uudelleen +DocType: Contact Phone,Number,Määrä DocType: Web Form Field,Web Form Field,Verkkosivun Lomakkeen kenttä apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Sinulla on uusi viesti osoitteesta: +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 5-10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,muokkaa HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Anna uudelleenohjaus-URL apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Näytä vaihtoehdot ( apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Napsauta tiedostoa valitaksesi sen. DocType: Note Seen By,Note Seen By,Huomautus nähdä apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Yritä käyttää pidempää näppäimistö kuvio enemmän kierrosta -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,leaderboard +,LeaderBoard,leaderboard DocType: DocType,Default Sort Order,Oletusjärjestys DocType: Address,Rajasthan,rajasthan DocType: Email Template,Email Reply Help,Sähköposti vastaus -ohje @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,sentti apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Kirjoita sähköposti apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Työketjun vaiheet (esim, Luonnos, Hyväksytty, Peruttu)" DocType: Print Settings,Allow Print for Draft,Salli Print for Draft +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/link_selector.js,Set Quantity,Aseta yksikkömäärä apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Vahvista hyväksyväsi tämän dokumentin DocType: Contact,Unsubscribed,Peruutettu @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organisaatioyksikkö käytt ,Transaction Log Report,Tapahtumaraportti DocType: Custom DocPerm,Custom DocPerm,Mukautettu DocPerm DocType: Newsletter,Send Unsubscribe Link,Send peruutuslinkki +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Jotkut linkitetyt tietueet on luotava, ennen kuin voimme tuoda tiedostoosi. Haluatko luoda seuraavat puuttuvat tietueet automaattisesti?" DocType: Access Log,Method,Menetelmä DocType: Report,Script Report,"raportti, kirjoitus" DocType: OAuth Authorization Code,Scopes,kaukoputket @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Lähetetty onnistuneesti apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Olet yhteydessä internetiin. DocType: Social Login Key,Enable Social Login,Salli sosiaalinen kirjautuminen +DocType: Data Import Beta,Warnings,varoitukset DocType: Communication,Event,tapahtuma apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Käytössä {0}, {1} kirjoitti:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"peruskenttää ei voi poistaa, halutessasi voit piilottaa sen" @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Lisää a DocType: Kanban Board Column,Blue,sininen apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,"kaikki omat muokkaukset poistetaan, vahvista" DocType: Page,Page HTML,HTML: +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Vie virheelliset rivit apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Ryhmän nimi ei voi olla tyhjä. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,tulevat sidoket voi olla ainoastaan 'ryhmä' tyyppisiä sidoksia DocType: SMS Parameter,Header,ylätunniste @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Pyyntö aikakatkaistiin apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Ota käyttöön / poista verkkotunnukset käytöstä DocType: Role Permission for Page and Report,Allow Roles,salli roolit +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} tietueet onnistuneesti tuotu {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Yksinkertainen Python-lauseke, esimerkki: Tila ("kelpaa")" DocType: User,Last Active,Paikalla DocType: Email Account,SMTP Settings for outgoing emails,SMTP asetukset (lähtevät sähköpostit) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,valitse DocType: Data Export,Filter List,Suodatusluettelo DocType: Data Export,Excel,kunnostautua -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Salasanasi on päivitetty. Tässä uusi salasanasi. 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 @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Käyttäjätunnus DocType: Communication,Sent,Lähetetty DocType: Address,Kerala,kerala -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,antaminen DocType: User,Simultaneous Sessions,Samanaikaiset istunnot DocType: Social Login Key,Client Credentials,Client valtakirjojen @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Päivit apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,valvonta DocType: DocType,User Cannot Create,Käyttäjä ei voi luoda apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Onnistunut -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Kansio {0} ei ole olemassa apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox pääsy on hyväksytty! DocType: Customize Form,Enter Form Type,Tietueen tyyppi DocType: Google Drive,Authorize Google Drive Access,Valtuuta Google Drive Access @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,tietueita ei ole tagattu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Poista Field apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Et ole yhteydessä Internetiin. Yritä uudelleen joskus. -DocType: User,Send Password Update Notification,Lähetä salasanan päivitysilmoitus apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",Sallitaan tietuetyyppi: tietuetyyppi. Ole varovainen! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Mukautetut muodot tulostukseen, sähköpostiin" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summa {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Virheellinen vahvist apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google-yhteystietojen integrointi on poistettu käytöstä. DocType: Assignment Rule,Description,Kuvaus DocType: Print Settings,Repeat Header and Footer in PDF,PDF:n toistuva ylä- ja alatunniste +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,vika DocType: Address Template,Is Default,käytä oletuksena DocType: Data Migration Connector,Connector Type,Liittimen tyyppi apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Sarake nimi ei voi olla tyhjä @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Siirry {0} -sivulle DocType: LDAP Settings,Password for Base DN,Salasana Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Taulukko Field 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/model/document.py,Action Failed,Toimenpide epäonnistui apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,User @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Ota raakatulostus käyttöön DocType: Website Route Redirect,Source,Lähde apps/frappe/frappe/templates/includes/list/filters.html,clear,tyhjennä apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Valmiit +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Asennus> Käyttäjä DocType: Prepared Report,Filter Values,Suodatinarvot DocType: Communication,User Tags,Käyttäjän tagit DocType: Data Migration Run,Fail,epäonnistua @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,seur ,Activity,Aktiviteettiloki DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","ohje: jos haluat linkittää tietueen toiseen tietueeseen järjestelmässä, käytä ""#Form/Note/[Nimi]"" URL linkkinä. (älä käytä ""http://"" linkitystä)" DocType: User Permission,Allow,Sallia +DocType: Data Import Beta,Update Existing Records,Päivitä olemassa olevat tietueet apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Oletetaan välttää toistuvat sanat ja merkit DocType: Energy Point Rule,Energy Point Rule,Energiapisteen sääntö DocType: Communication,Delayed,Myöhässä @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Seuraa kenttää DocType: Notification,Set Property After Alert,Aseta kiinteistön jälkeen Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Lisää kenttiä lomakkeisiin. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Näyttää jotain vikaa tässä sivuston Paypal kokoonpano. -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/sidebar/review.js,Add Review,Lisää arvostelu -DocType: File,rgt,Rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Fonttikoko (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Vain tavallisia DocTypes-tyyppejä voidaan mukauttaa mukautetusta lomakkeesta. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Suo apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Et voi poistaa automaattisesti luotua kommenttia DocType: Google Settings,Used For Google Maps Integration.,Käytetään Google Maps -integraatioon. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Viite-tietuetyyppi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Tietueita ei viedä DocType: User,System User,järjestelmäkäyttäjä DocType: Report,Is Standard,on perus DocType: Desktop Icon,_report,_report @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,miinus apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not Found apps/frappe/frappe/www/printview.py,No {0} permission,Ei {0} lupaa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Vie muokatut oikeudet +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Kohteita ei löytynyt. DocType: Data Export,Fields Multicheck,Fields Multicheck DocType: Activity Log,Login,Kirjaudu DocType: Web Form,Payments,Maksut @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Posti- DocType: Email Account,Default Incoming,oletus saapuvat DocType: Workflow State,repeat,Toista DocType: Website Settings,Banner,Banneri +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Arvon on oltava yksi {0} DocType: Role,"If disabled, this role will be removed from all users.","Jos käytössä, tämä asema poistetaan kaikilta käyttäjiltä." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Siirry {0} -luetteloon +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Siirry {0} -luetteloon 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 @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Paikallinen kentänimi DocType: DocType,Track Changes,Jäljitä muutokset DocType: Workflow State,Check,valintaruutu DocType: Chat Profile,Offline,Poissa +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Tuonti {0} onnistui DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Lähetä tilauksen peruutus viestin sähköpostitse apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Muokkaa otsikkoa @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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ä apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} on jo määrittänyt oletusarvon {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                No results found for '

                                ,

                                Ei tuloksia haulle '

                                DocType: DocField,Attach Image,Kuvaliite DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Salasana päivitetty @@ -1517,8 +1545,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Asennus> Käyttäjän oikeudet DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-ryhmän kartoitus DocType: Dashboard Chart,Chart Options,Kaavioasetukset +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Nimetön sarake apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} alkaen {1} ja {2} rivillä # {3} DocType: Communication,Expired,vanhentunut apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Näyttää siltä, että käyttämäsi tunnus on virheellinen!" @@ -1528,6 +1558,7 @@ DocType: DocType,System,järjestelmä DocType: Web Form,Max Attachment Size (in MB),Liitteen enimmäiskoko (Mt) apps/frappe/frappe/www/login.html,Have an account? Login,Onko sinulla tili? Kirjaudu sisään DocType: Workflow State,arrow-down,arrow-down +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rivi {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Käyttäjä ei saa poistaa {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} / {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Viimeksi päivitetty @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Mukautettu rooli apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Etusivu / Test-kansion 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,syötä salasana DocType: Dropbox Settings,Dropbox Access Secret,Dropbox pääsy salaus +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Pakollinen) 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. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Näytä ha apps/frappe/frappe/desk/form/assign_to.py,New Message,Uusi viesti DocType: File,Preview HTML,Esikatselu HTML DocType: Desktop Icon,query-report,Kysely-raportti +DocType: Data Import Beta,Template Warnings,Mallin varoitukset apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Suodattimet tallennettu DocType: DocField,Percent,Prosentti apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Aseta suodattimet @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Mukautettu DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jos tämä on käytössä, käyttäjät, jotka kirjautuvat rajoitetusta IP-osoitteesta, ei tule näyttöön kahden tekijän tunnistusta varten" DocType: Auto Repeat,Get Contacts,Hanki yhteystiedot apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Virkaa arkistoida {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Ohitetaan otsikon otsikko DocType: Notification,Send alert if date matches this field's value,"Lähetä hälytys, mikäli päivä täsmää tämän kentän arvoon" DocType: Workflow,Transitions,siirtymät apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} ja {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,askel-taaksepäin apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_otsikko} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Määritä Dropbox pääsyn asetukset apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Poista tämä ennätys jotta lähettämällä tähän sähköpostiosoitteeseen +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Jos epästandardinen portti (esim. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Muokkaa pikanäppäimiä apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Tietueiden lisäyksessä vain pakolliset kentät ovat välttämättömiä. Voit poistaa tarpeettomat sarakkeet. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Näytä lisää toimintaa @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Nähdä Taulukko apps/frappe/frappe/www/third_party_apps.html,Logged in,Kirjautunut apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,oletus lähtevät- ja saapuvat postilaatikko DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Päivitetty {0} ennätys {1} onnistuneesti. DocType: Google Drive,Send Email for Successful Backup,Lähetä sähköposti onnistuneeseen varmuuskopiointiin +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Aikataulu ei ole aktiivinen. Tietoja ei voi tuoda. DocType: Print Settings,Letter,Kirjain DocType: DocType,"Naming Options:
                                1. field:[fieldname] - By Field
                                2. naming_series: - By Naming Series (field called naming_series must be present
                                3. Prompt - Prompt user for a name
                                4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Seuraava synkronointitunnus DocType: Energy Point Settings,Energy Point Settings,Energiapisteen asetukset DocType: Async Task,Succeeded,Onnistui apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Syötä pakolliset kentät lomakkeelle {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                  No results found for '

                                  ,

                                  Ei tuloksia haulle '

                                  apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset Käyttöoikeudet {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Käyttäjät ja käyttöoikeudet DocType: S3 Backup Settings,S3 Backup Settings,S3-varmuuskopioasetukset @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,sisältyy DocType: Notification,Value Change,Muuta arvoa DocType: Google Contacts,Authorize Google Contacts Access,Valtuuta Google-yhteystietojen käyttöoikeus apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Näytetään vain Numeeriset kentät Raportista +DocType: Data Import Beta,Import Type,Tuo tyyppi DocType: Access Log,HTML Page,HTML-sivu DocType: Address,Subsidiary,tytäryhtiö apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Yritetään kytkeä QZ-lokeroon ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,virheellin DocType: Custom DocPerm,Write,Kirjoita apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Ainoastaan ylläpitäjä voi tehdä kyselyn / laatia raportteja apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Päivittää -DocType: File,Preview,Esikatselu +DocType: Data Import Beta,Preview,Esikatselu apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Kenttä "arvo" on pakollinen. Ilmoitathan arvoa päivitetään DocType: Customize Form,Use this fieldname to generate title,Käytä tätä kenttää otsikossa apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,tuo sähköposti mistä @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Selainta ei tu DocType: Social Login Key,Client URLs,Asiakkaan URL-osoitteet apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Joitakin tietoja puuttuu apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} luotu onnistuneesti +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Ohitetaan {0} {1}, {2}" DocType: Custom DocPerm,Cancel,Peru apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Irtotavarana poisto apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Tiedoston {0} ei ole olemassa @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,symbooli apps/frappe/frappe/model/base_document.py,Row #{0}:,Rivi # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Vahvista tietojen poisto -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Uusi salasana lähetetty apps/frappe/frappe/auth.py,Login not allowed at this time,Kirjaudu kielletty tällä hetkellä DocType: Data Migration Run,Current Mapping Action,Nykyinen kartoitus DocType: Dashboard Chart Source,Source Name,Source Name @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Kiin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Jonka jälkeen DocType: LDAP Settings,LDAP Email Field,LDAP Sähköposti Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} lista +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Vie {0} tietueita apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Jo käyttäjän tehtävälistalla DocType: User Email,Enable Outgoing,aktivoi lähtevä DocType: Address,Fax,Faksi @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Tulosta asiakirjat apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hyppää kentälle DocType: Contact Us Settings,Forward To Email Address,lähetä eteenpäin sähköpostiosoitteeseen +DocType: Contact Phone,Is Primary Phone,On ensisijainen puhelin apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Lähetä sähköposti osoitteeseen {0} linkittääksesi sen tähän. DocType: Auto Email Report,Weekdays,Arkisin +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} tietueet viedään apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Otsikkokentän on oltava kelvollinen kenttänimi DocType: Post Comment,Post Comment,Lähetä Kommentti apps/frappe/frappe/config/core.py,Documents,Dokumentit @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","Tämä kenttä näkyy vain, jos fieldname määritelty tässä on arvo TAI säännöt ovat totta (esimerkkejä): myfield eval: doc.myfield == 'My Arvo "eval: doc.age> 18" DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Tänään +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.,Oletuksena olevaa osoitemallia ei löytynyt. Luo uusi kansiosta Asetukset> Tulostaminen ja tuotemerkit> Osoitemalli. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kun olet asettanut tämän, käyttäjät voivat vain tutustua asiakirjoihin (esim. Blogiviesti) jos linkki on olemassa (esim. Blogger)." +DocType: Data Import Beta,Submit After Import,Lähetä tuonnin jälkeen DocType: Error Log,Log of Scheduler Errors,aikatauluvirheloki DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App asiakassalaisuutesi @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,poista asiakkaan kirjautumislinkki käytöstä kirjautumissivulta apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,nimetty / omistaja DocType: Workflow State,arrow-left,arrow-left +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Vie 1 tietue DocType: Workflow State,fullscreen,kokonäyttö DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Luo kaavio apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Älä tuo DocType: Web Page,Center,keskus DocType: Notification,Value To Be Set,Asetettava arvo apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Muokkaa {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,Näytä otsikoita DocType: Bulk Update,Limit,Raja apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},"Olemme vastaanottaneet pyynnön {0} tietojen poistamiseen, jotka liittyvät: {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Lisää uusi jakso +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Suodatetut levyt apps/frappe/frappe/www/printview.py,No template found at path: {0},mallipohjaa ei löydy osoitteesta: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ei email DocType: Comment,Cancelled,peruttu @@ -2190,10 +2237,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globaalin haun asiakirjatyypit palautetaan. ,Lead Conversion Time,Lyijyn muuntoaika apps/frappe/frappe/desk/page/activity/activity.js,Build Report,tee raportti DocType: Note,Notify users with a popup when they log in,Ilmoita käyttäjille popup kun he kirjautuvat +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Ydinmoduuleja {0} ei voida hakea globaalista hausta. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Avaa Chat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ei löydy, valitse uusi yhdistettävä tavoite" DocType: Data Migration Connector,Python Module,Python-moduuli @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Sulje 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Asennus> Käyttäjän oikeudet -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Muuta +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Muuta DocType: Transaction Log,Transaction Hash,Transaction Hash DocType: Error Snapshot,Snapshot View,Tilannekuvanäkymä apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Säilytä uutiskirje ennen lähettämistä @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,Käynnissä apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Jonossa varmuuskopiointia. Se voi kestää muutamasta minuutista tuntiin. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Käyttäjäoikeus on jo olemassa +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kartoitetaan sarake {0} kenttään {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Näytä {0} DocType: User,Hourly,tunti- apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Rekisteröidy OAuth-asiakkaan App @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,Tekstiviesti reititin URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ei voi olla ""{2}"" sen tulisi olla yksi ""{3}"":sta" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},saavuttanut {0} automaattisen säännön {1} kautta apps/frappe/frappe/utils/data.py,{0} or {1},{0} tai {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Salasanan päivitys DocType: Workflow State,trash,roska DocType: System Settings,Older backups will be automatically deleted,Vanhemmat varmuuskopioita poistetaan automaattisesti apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Virheellinen käyttöavainkoodi tai salainen avainavaaja. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,Suositellut toimitusosottet apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Letter pää apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{1} tekijä: {0} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Ei sallittu {0}: {1} rivillä {2}. Rajoitettu kenttä: {3} +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 DocType: S3 Backup Settings,eu-west-1,EU-länsi-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jos tämä on valittuna, tuodaan rivit, joilla on kelvolliset tiedot, ja virheelliset rivit tuodaan myöhemmin uusiin tiedostoihin." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumenttinon muokattavissa roolin käyttäjillä @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,kenttä vaaditaan DocType: User,Website User,Verkkosivuston käyttäjä apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Jotkut sarakkeet saattavat katkeaa tulostettaessa PDF-tiedostoon. Yritä pitää sarakkeiden lukumäärä alle 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,erisuuri +DocType: Data Import Beta,Don't Send Emails,Älä lähetä sähköpostia DocType: Integration Request,Integration Request Service,Integration Request Service DocType: Access Log,Access Log,Käyttöloki DocType: Website Script,Script to attach to all web pages.,Kaikille verkkosivuille liitetty skripti. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,Passiivinen DocType: Auto Repeat,Accounts Manager,Talouden ylläpitäjä apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Tehtävä {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Maksu on peruutettu. +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/views/reports/report_view.js,Select File Type,Valitse tiedostotyyppi apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Näytä kaikki DocType: Help Article,Knowledge Base Editor,Tietovaraston ylläpitäjä @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,tiedot apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumentin tila apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Hyväksyntä vaaditaan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Seuraavat tietueet on luotava, ennen kuin voimme tuoda tiedostoosi." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Authorization Code apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Ei voi tuoda DocType: Deleted Document,Deleted DocType,poistettu dOCTYPE @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,järjestelmäasetukset DocType: GCalendar Settings,Google API Credentials,Google-sovelluksen API-tunnistetiedot apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start epäonnistui apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Tämä sähköposti lähetettiin {0} ja kopioidaan {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},lähetti tämän asiakirjan {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vuosi sitten DocType: Social Login Key,Provider Name,Palveluntarjoajan nimi apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Lisää uusi {0} DocType: Contact,Google Contacts,Google-yhteystiedot @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar-tili DocType: Email Rule,Is Spam,roskaposti apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Raportti {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} +DocType: Data Import Beta,Import Warnings,Tuo varoitukset DocType: OAuth Client,Default Redirect URI,Default uudelleenohjaus URI DocType: Auto Repeat,Recipients,Vastaanottajat DocType: System Settings,Choose authentication method to be used by all users,Valitse kaikkien käyttäjien käyttämä todentamismenetelmä @@ -2543,6 +2597,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Raportti pä apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Löysä Webhook-virhe DocType: Email Flag Queue,Unread,Lukemattomat DocType: Bulk Update,Desk,pöytä +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Ohittava sarake {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Suodattimen on oltava monikko tai luettelon (luettelossa) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,"Kirjoita valintakysely, huom: vastausta ei ole jaoteltu sivuihin vaan se tulee yhtenä datana" DocType: Email Account,Attachment Limit (MB),Liitteen kokorajoitus (MB) @@ -2557,6 +2612,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Lisää uusi DocType: Workflow State,chevron-down,välimerkki-alas apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email ei lähetetty {0} (jääneitä / vammaiset) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Valitse vietävät kentät DocType: Async Task,Traceback,Jäljittää DocType: Currency,Smallest Currency Fraction Value,Pienin Valuutta bråkdelsvärdet apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Valmistellaan raporttia @@ -2565,6 +2621,7 @@ DocType: Workflow State,th-list,th-luettelo DocType: Web Page,Enable Comments,Ota kommentointi käyttöön apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Muistiinpanot DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"rajoita käyttö pelkästään tähän IP-osoitteseen, useampia IP-osoitteita voidaan lisätä pilkulla erottuna, myös osittaiset IP-osoitteet kuten (111.111.111) ovat hyväksyttyjä" +DocType: Data Import Beta,Import Preview,Tuo esikatselu DocType: Communication,From,Keneltä apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Valitse ensin ryhmä sidos apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},"Etsi {0}, {1}:sta" @@ -2663,6 +2720,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Välillä DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Jonossa +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Asennus> Mukauta lomaketta DocType: Braintree Settings,Use Sandbox,Käytä Sandbox apps/frappe/frappe/utils/goal.py,This month,Tässä kuussa apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,uusi oma tulostusmuoto @@ -2678,6 +2736,7 @@ DocType: Session Default,Session Default,Istunnon oletus DocType: Chat Room,Last Message,Viimeinen viesti DocType: OAuth Bearer Token,Access Token,Access Token DocType: About Us Settings,Org History,Org History +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Noin {0} minuuttia jäljellä DocType: Auto Repeat,Next Schedule Date,Seuraava aikataulu DocType: Workflow,Workflow Name,Työnketjun nimi DocType: DocShare,Notify by Email,Ilmoita sähköpostilla @@ -2707,6 +2766,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,kirjailija apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,jatka lähettäminen apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Avaa uudestaan +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Näytä varoitukset apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Oston peruskäyttäjä DocType: Data Migration Run,Push Failed,Push Failed @@ -2743,6 +2803,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,tarkka apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Et saa tutustua uutiskirjeeseen. DocType: User,Interests,etu apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Salasanan palautusohjeet on lähetetty sähköpostiisi +DocType: Energy Point Rule,Allot Points To Assigned Users,Kaikkien pisteiden osoittaminen osoitetulle käyttäjälle apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Taso 0 on dokumenttien tason käyttöoikeuksia, \ korkeammat tasot kenttätasolla käyttöoikeudet." DocType: Contact Email,Is Primary,On ensisijainen @@ -2765,6 +2826,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Vientityyppi DocType: Workflow State,circle-arrow-left,kierrä-nuoli-vasen DocType: System Settings,Force User to Reset Password,Pakota käyttäjä palauttamaan salasana apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",Saada päivitetty raportti napsauttamalla {0}. @@ -2777,13 +2839,16 @@ DocType: Contact,Middle Name,Toinen nimi DocType: Custom Field,Field Description,Kentän kuvaus apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nimeä ei ole asetettu kautta Kysy apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Sähköposti Saapuneet +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Päivitetään {0} {1}, {2}" DocType: Auto Email Report,Filters Display,Suodattimet Näyttö apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Kenttä "muokattu_from" on oltava läsnä muutoksen tekemistä varten. +DocType: Contact,Numbers,numerot apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} arvosti työtäsi {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Tallenna suodattimet DocType: Address,Plant,Laite apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Vastaa kaikille DocType: DocType,Setup,Asetukset +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Kaikki levyt DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Sähköpostiosoite, jonka Google-yhteystiedot on synkronoitava." DocType: Email Account,Initial Sync Count,Alustava synkronointi Count DocType: Workflow State,glass,lasi @@ -2808,7 +2873,7 @@ DocType: Workflow State,font,fonttilaji DocType: DocType,Show Preview Popup,Näytä esikatselu-ponnahdusikkuna apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Tämä on yksi 100:sta yleisimmästä salasanasta. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Aktivoi ponnahdusikkunat -DocType: User,Mobile No,Matkapuhelin +DocType: Contact,Mobile No,Matkapuhelin DocType: Communication,Text Content,tekstisisältö DocType: Customize Form Field,Is Custom Field,Onko Oma kenttä DocType: Workflow,"If checked, all other workflows become inactive.",Valittuna kaikki muut työketjut asetetaan passiivisiksi @@ -2854,6 +2919,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,lisä apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,nimeä uusi tulostusmuoto apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Vaihda sivupalkki DocType: Data Migration Run,Pull Insert,Vedä Insert +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Suurimmat sallitut pisteet kerrottuna pisteillä kertoimella (Huomautus: Jätä tämä kenttä tyhjäksi tai aseta 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Virheellinen malli apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Laiton SQL-kysely apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Pakollinen: DocType: Chat Message,Mentions,mainitsee @@ -2868,6 +2936,7 @@ DocType: User Permission,User Permission,Käyttöoikeus apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blogi apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ei ole asennettu apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,lataa tiedoilla +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},muutetut arvot kohteelle {0} {1} DocType: Workflow State,hand-right,käsi-oikea DocType: Website Settings,Subdomain,Alitoimialue DocType: S3 Backup Settings,Region,Alue @@ -2894,10 +2963,12 @@ DocType: Braintree Settings,Public Key,Julkinen avain DocType: GSuite Settings,GSuite Settings,GSuite Asetukset DocType: Address,Links,Linkit DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Käytä tässä tilissä mainittua sähköpostiosoitteen nimeä lähettäjän nimellä kaikissa tällä tilillä lähetetyissä sähköposteissa. +DocType: Energy Point Rule,Field To Check,Tarkistettava kenttä apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google-yhteystiedot - Yhteystietoa ei voitu päivittää Google-yhteystiedoissa {0}, virhekoodi {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Valitse asiakirjatyyppi. apps/frappe/frappe/model/base_document.py,Value missing for,Arvo puuttuu apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,lisää alasidos +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Tuo eteneminen DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Jos ehto täyttyy, käyttäjä palkitaan pisteillä. esimerkiksi. doc.status == 'Suljettu'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Vahvistettua tietuetta ei voi poistaa. @@ -2934,6 +3005,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Valtuuta Google-kalent apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Etsimääsi sivua ei löytynyt. Saatoit kirjoittaa väärän osoitteen, tai sivua jota etsit ei enää ole olemassa." apps/frappe/frappe/www/404.html,Error Code: {0},Virhekoodi: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","luettelosivun kuvaus, tekstimuodossa, vain muutama rivi (max 140 merkkiä)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ovat pakollisia kenttiä DocType: Workflow,Allow Self Approval,Salli itseluottamus DocType: Event,Event Category,Tapahtumaluokka apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2981,8 +3053,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Muuttaa DocType: Address,Preferred Billing Address,Suositeltu laskutusosoite apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Liian paljon kirjoitusta yhteen pyytöön, lähetä lyhyempi pyyntö" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive on määritetty. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Asiakirjatyyppi {0} on toistettu. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,arvot Muuttunut DocType: Workflow State,arrow-up,arrow-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Pöydässä {0} pitäisi olla vähintään yksi rivi apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Jos haluat määrittää automaattisen toiston, ota "Salli automaattinen toisto" kohdasta {0}." DocType: OAuth Bearer Token,Expires In,Vanhenee DocType: DocField,Allow on Submit,Salli vahvistuksessa @@ -3069,6 +3143,7 @@ DocType: Custom Field,Options Help,"vaihtoehdo, ohjeet" 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 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 @@ -3086,6 +3161,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verification Code DocType: Webhook,Webhook Request,Webhook-pyyntö apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Epäonnistui: {0} on {1}: {2} DocType: Data Migration Mapping,Mapping Type,Kartoitustyyppi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Valitse Pakollinen apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,selaa apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Ei tarvetta symboleja, numeroita tai isoja kirjaimia." DocType: DocField,Currency,Valuutta @@ -3116,11 +3192,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Kirjeen pää perustuu apps/frappe/frappe/utils/oauth.py,Token is missing,Token puuttuu apps/frappe/frappe/www/update-password.html,Set Password,Aseta salasana +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} tietueiden tuonti onnistui. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Huom muuttaminen Sivun nimi murtuu edellinen URL tälle sivulle. apps/frappe/frappe/utils/file_manager.py,Removed {0},Poistettu {0} DocType: SMS Settings,SMS Settings,Tekstiviesti asetukset DocType: Company History,Highlight,kohokohta DocType: Dashboard Chart,Sum,Summa +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,tietojen tuonnin kautta DocType: OAuth Provider Settings,Force,Pakottaa apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Viimeksi synkronoitu {0} DocType: DocField,Fold,Taitos @@ -3157,6 +3235,7 @@ DocType: Workflow State,Home,Siirry etusivulle DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Käyttäjä voi kirjautua sisään käyttämällä sähköpostiosoitetta tai käyttäjänimeä DocType: Workflow State,question-sign,Kysymys-merkki +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} on poistettu käytöstä apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Kentän "reitti" on pakollinen Web-näkymille apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Lisää sarake ennen {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Tämän kentän käyttäjälle maksetaan pisteitä @@ -3190,6 +3269,7 @@ DocType: Website Settings,Top Bar Items,Ylävalikko nimikkeet DocType: Notification,Print Settings,Tulostus asetukset DocType: Page,Yes,Kyllä DocType: DocType,Max Attachments,Liitteitä enintään +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Noin {0} sekuntia jäljellä DocType: Calendar View,End Date Field,Loppupäivän kenttä apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globaalit pikakuvakkeet DocType: Desktop Icon,Page,Sivu @@ -3300,6 +3380,7 @@ DocType: GSuite Settings,Allow GSuite access,Salli GSuite pääsy DocType: DocType,DESC,laskeva DocType: DocType,Naming,Nimeäminen apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Valitse kaikki +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Sarake {0} apps/frappe/frappe/config/customization.py,Custom Translations,Mukautetut kielikäännökset apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Edistyminen apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,Rooli @@ -3341,11 +3422,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Lä DocType: Stripe Settings,Stripe Settings,raita Asetukset DocType: Data Migration Mapping,Data Migration Mapping,Data Migration Mapping DocType: Auto Email Report,Period,Aikajakso +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Noin {0} minuutti jäljellä apps/frappe/frappe/www/login.py,Invalid Login Token,Virheellinen Kirjaudu Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,hylätä apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 tunti sitten DocType: Website Settings,Home Page,Etusivu DocType: Error Snapshot,Parent Error Snapshot,Päävirhe Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Karttasarakkeet {0} kentistä {1} DocType: Access Log,Filters,Suodattimet DocType: Workflow State,share-alt,Jaa-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Jonon pitäisi olla yksi {0} @@ -3365,6 +3448,7 @@ DocType: Calendar View,Start Date Field,Aloituspäiväkentä DocType: Role,Role Name,Rooli Name apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Vaihda työpöydälle apps/frappe/frappe/config/core.py,Script or Query reports,Skriptatut- ja kyselyraportit +DocType: Contact Phone,Is Primary Mobile,On ensisijainen matkapuhelin DocType: Workflow Document State,Workflow Document State,Työketju-dokumentin tila apps/frappe/frappe/public/js/frappe/request.js,File too big,Tiedosto liian suuri apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Sähköpostitili lisätään useita kertoja @@ -3410,6 +3494,7 @@ DocType: DocField,Float,Kellunta DocType: Print Settings,Page Settings,Sivuasetukset apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Tallentaa... apps/frappe/frappe/www/update-password.html,Invalid Password,väärä salasana +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} -tietue tuotiin onnistuneesti {1}. DocType: Contact,Purchase Master Manager,Perustietojen ylläpitäjä (osto) apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Napsauta lukituskuvaketta vaihtaaksesi julkista / yksityistä DocType: Module Def,Module Name,moduulin nimi @@ -3443,6 +3528,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Anna kelvollinen matkapuhelinnumero apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Jotkin ominaisuudet eivät välttämättä toimi selaimessasi. Päivitä selaimesi uusimpaan versioon. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","En tiedä, kysy "help"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},peruutti tämän asiakirjan {0} DocType: DocType,Comments and Communications will be associated with this linked document,Kommentit ja viestinnät liitetään linkitettyyn dokumenttiin apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Suodata ... DocType: Workflow State,bold,rohkea @@ -3461,6 +3547,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Lisää / hal DocType: Comment,Published,Julkaistu apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Kiitos viestistäsi DocType: DocField,Small Text,Pieni teksti +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Numeroa {0} ei voida asettaa ensisijaiseksi puhelimelle eikä matkapuhelinnumerolle. DocType: Workflow,Allow approval for creator of the document,Anna asiakirjan luojalle hyväksyntä apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Tallenna raportti DocType: Webhook,on_cancel,on_cancel @@ -3518,6 +3605,7 @@ DocType: Print Settings,PDF Settings,PDF asetukset DocType: Kanban Board Column,Column Name,sarakken nimi DocType: Language,Based On,perustuu DocType: Email Account,"For more information, click here.","Saat lisätietoja napsauttamalla tätä ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Sarakkeiden lukumäärä ei vastaa tietoja apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Laita oletusarvoksi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Suoritusaika: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Virheellinen sisällyttämispolku @@ -3607,7 +3695,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Lataa {0} tiedostoa DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Ilmoita alkamisaika -apps/frappe/frappe/config/settings.py,Export Data,Vie tiedot +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Vie tiedot 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. @@ -3625,7 +3713,6 @@ DocType: Report,Disable Prepared Report,Poista valmis raportti käytöstä apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Käyttäjä {0} on pyytänyt tietojen poistamista apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Laiton Access Token. Yritä uudelleen apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Sovellus on päivitetty uuteen versioon, lataa tämä sivu uudelleen." -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.,Oletuksena olevaa osoitemallia ei löytynyt. Luo uusi kansiosta Asetukset> Tulostaminen ja tuotemerkit> Osoitemalli. DocType: Notification,Optional: The alert will be sent if this expression is true,"Valinnainen: hälytys lähetetään, jos tämä ilmaus on tosi" DocType: Data Migration Plan,Plan Name,Plan Name DocType: Print Settings,Print with letterhead,Tulosta kirjelomakkeille @@ -3666,6 +3753,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Ei voi korjata ilman perumista apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,kokosivu DocType: DocType,Is Child Table,On alitaulukko +DocType: Data Import Beta,Template Options,Mallin asetukset apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} on oltava yksi {1}:sta apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} tarkastelevat tätä dokumenttia apps/frappe/frappe/config/core.py,Background Email Queue,Sähköpostin taustajono @@ -3673,7 +3761,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Salasanan palauttami DocType: Communication,Opened,Avattu DocType: Workflow State,chevron-left,välimerkki-vasen DocType: Communication,Sending,Lähetetään -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Ei sallita tämän IP Address DocType: Website Slideshow,This goes above the slideshow.,Tämä menee diaesityksen yläpuolelle DocType: Contact,Last Name,Sukunimi DocType: Event,Private,Yksityinen @@ -3687,7 +3774,6 @@ DocType: Workflow Action,Workflow Action,Työnketjun toiminto apps/frappe/frappe/utils/bot.py,I found these: ,Löysin nämä: DocType: Event,Send an email reminder in the morning,Lähetä sähköposti muistutus aamulla DocType: Blog Post,Published On,Julkaistu -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 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} @@ -3708,7 +3794,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,Varoitusmerkki DocType: Prepared Report,Prepared Report,Valmistelukertomus apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Lisää sisällönkuvauskentät verkkosivuillesi -DocType: Contact,Phone Nos,Puhelinnumerot 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 @@ -3725,6 +3810,7 @@ DocType: Data Migration Connector,Data Migration,Tiedonsiirto DocType: User,API Key cannot be regenerated,API-avainta ei voida uudistaa apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Jokin meni pieleen DocType: System Settings,Number Format,muodon numero +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Tietueen {0} tuonti onnistui. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Yhteenveto DocType: Event,Event Participants,Tapahtuman osallistujat DocType: Auto Repeat,Frequency,Taajuus @@ -3732,7 +3818,7 @@ DocType: Custom Field,Insert After,aseta alapuolelle DocType: Event,Sync with Google Calendar,Synkronoi Google-kalenterin kanssa DocType: Access Log,Report Name,raportin nimi DocType: Desktop Icon,Reverse Icon Color,Käänteinen Kuvake Väri -DocType: Notification,Save,Tallenna +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Tallenna apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Seuraava ajoitettu päivämäärä apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Anna sille, jolla on vähiten tehtäviä" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Osion otsikko @@ -3755,11 +3841,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Asennus> Mukauta lomaketta 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 DocType: Desktop Icon,Category,Luokka +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Arvo {0} puuttuu {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Lisää yhteystieto apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Maisema apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Asiakkaan puolella Javascript-laajennukset @@ -3782,6 +3868,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiapisteen päivitys apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Valitse toinen maksutapa. PayPal ei tue valuuttaa '{0}' DocType: Chat Message,Room Type,Huone tyyppi +DocType: Data Import Beta,Import Log Preview,Tuo lokin esikatselu apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Hakukenttä {0} ei kelpaa apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,ladattu tiedosto DocType: Workflow State,ok-circle,ok-ympyrä @@ -3848,6 +3935,7 @@ DocType: DocType,Allow Auto Repeat,Salli automaattinen toisto apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ei arvoja näytettäväksi DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Sähköpostimalli +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Päivitetty {0} tietue onnistuneesti. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Käyttäjällä {0} ei ole doctype-käyttöoikeutta dokumentin {1} rooliluvan kautta apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,käyttäjätunnus ja salasana vaaditaan apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Lataa uudelleen saadaksesi viimeisin dokumentti diff --git a/frappe/translations/fr.csv b/frappe/translations/fr.csv index 36dbcfcea9..f4fd888b26 100644 --- a/frappe/translations/fr.csv +++ b/frappe/translations/fr.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,De nouvelles {} versions pour les applications suivantes sont disponibles apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Veuillez sélectionner un Champ Montant. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Chargement du fichier d'importation ... DocType: Assignment Rule,Last User,Dernier utilisateur apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Une nouvelle tâche, {0}, vous a été attribuée par {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Session par défaut enregistrée +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Recharger le fichier DocType: Email Queue,Email Queue records.,Registres de file d'attente Email. DocType: Post,Post,Poster DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mensuel DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Activer Entrant apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Danger -apps/frappe/frappe/www/login.py,Email Address,Adresse Email +DocType: Address,Email Address,Adresse Email DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Notification Non Lue Envoyée apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Pas autorisé à exporter. Vous devez avoir le rôle {0} pour exporter. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Les options de contact, comme ""Demande de Ventes, Demande d'Aide"" etc., doivent être chacune sur une nouvelle ligne ou séparées par des virgules." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Ajouter une balise ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrait -DocType: Data Migration Run,Insert,Insérer +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insérer apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Autoriser l'accès à Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Sélectionner {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Veuillez entrer l'URL de base @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Il y a 1 m 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 DocType: Company History,Company History,Historique de la Société -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Réinitialiser +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Réinitialiser DocType: Workflow State,volume-up,augmenter-volume apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks appelant des requêtes d'API dans des applications Web +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Afficher le traçage DocType: DocType,Default Print Format,Format d'Impression par Défaut DocType: Workflow State,Tags,Balises apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Aucun: Fin de Flux de Travail apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non-uniques" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Types de Documents +DocType: Global Search Settings,Document Types,Types de Documents DocType: Address,Jammu and Kashmir,Jammu and Kashmir DocType: Workflow,Workflow State Field,Champ de l'État du Flux de Travail -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuration> Utilisateur DocType: Language,Guest,Invité DocType: DocType,Title Field,Champ Titre DocType: Error Log,Error Log,Journal des Erreurs @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Les répétitions comme ""ABCABCABC"" sont seulement un peu plus difficiles à deviner que ""abc""" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Si vous pensez que cela n'est pas autorisé, veuillez changer le mot de passe Administrateur." +DocType: Data Import Beta,Data Import Beta,Bêta d'importation de données apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} est obligatoire DocType: Assignment Rule,Assignment Rules,Règles d'attribution DocType: Workflow State,eject,éjecter @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Nom de l'Action du Flux de apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ne peut pas être fusionné DocType: Web Form Field,Fieldtype,Type de Champ apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Pas un fichier zip +DocType: Global Search DocType,Global Search DocType,Recherche globale DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                  New {{ doc.doctype }} #{{ doc.name }}
                                  ","Pour ajouter un sujet dynamique, utilisez des tags jinja comme
                                   New {{ doc.doctype }} #{{ doc.name }} 
                                  " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Événement Doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Vous DocType: Braintree Settings,Braintree Settings,Paramètres Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Création de {0} enregistrements avec succès. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Enregistrer le filtre DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Impossible de supprimer {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Entrez le paramètre url p apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Répétition automatique créée pour ce document apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Afficher le rapport dans votre navigateur apps/frappe/frappe/config/desk.py,Event and other calendars.,Événement et autres calendriers. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 ligne obligatoire) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Tous les champs sont nécessaires pour soumettre le commentaire DocType: Custom Script,Adds a client custom script to a DocType,Ajoute un script client personnalisé à un DocType DocType: Print Settings,Printer Name,Nom de l'imprimante @@ -252,7 +259,6 @@ DocType: Bulk Update,Bulk Update,Mise à jour en Masse DocType: Workflow State,chevron-up,chevron-haut DocType: DocType,Allow Guest to View,Autoriser les Invités à Voir apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ne doit pas être identique à {1} -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 entre 5 et 10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Supprimer {0} éléments de façon permanente? apps/frappe/frappe/utils/oauth.py,Not Allowed,Non Autorisé @@ -268,6 +274,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Afficher DocType: Email Group,Total Subscribers,Total d'Abonnés apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Numéro de ligne apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Si un Rôle n'a pas accès au niveau 0, les niveaux plus élevés n'ont pas de sens." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Enregistrer Sous DocType: Comment,Seen,Vu @@ -307,6 +314,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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 : 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. DocType: Workflow State,Filter,Filtre @@ -329,6 +337,7 @@ DocType: Activity Log,Closed,Fermé DocType: Blog Settings,Blog Title,Titre du Blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Les rôles standard ne peuvent pas être désactivées apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Type de chat +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Colonnes de la carte DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Impossible d'utiliser la sous-requête dans l'ordre demandé @@ -364,6 +373,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Ajouter une colonne apps/frappe/frappe/www/contact.html,Your email address,Votre adresse email DocType: Desktop Icon,Module,Module +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} enregistrements mis à jour avec succès sur {1}. DocType: Notification,Send Alert On,Envoyer une Alerte Sur DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Personnaliser l'Étiquette, Cacher à l'Impression, Défaut etc." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Décompression des fichiers ... @@ -395,6 +405,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Utilisateur {0} ne peut pas être supprimé DocType: System Settings,Currency Precision,Précision de la Devise apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Une autre transaction bloque celle-ci. Essayez de nouveau dans quelques secondes. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Effacer les filtres DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Les pièces jointes n'ont pas pu être correctement liées au nouveau document DocType: Chat Message Attachment,Attachment,Pièce jointe @@ -420,6 +431,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Impossible d apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Agenda - Impossible de mettre à jour l'événement {0} dans Google Agenda, code d'erreur {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Rechercher ou taper une commande DocType: Activity Log,Timeline Name,Nom de la Chronologie +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Un seul {0} peut être défini comme primaire. DocType: Email Account,e.g. smtp.gmail.com,e.g. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Ajouter une Nouvelle Règle DocType: Contact,Sales Master Manager,Directeur des Ventes @@ -436,7 +448,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Champ de prénom LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importer {0} de {1} DocType: GCalendar Account,Allow GCalendar Access,Autoriser l'accès à GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} est un champ obligatoire +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} est un champ obligatoire apps/frappe/frappe/templates/includes/login/login.js,Login token required,Identifiants de Connexion Requis apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Classement mensuel: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Sélectionner plusieurs éléments de liste @@ -466,6 +478,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Impossible de se connect apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Un mot unique est facile à deviner. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},L'affectation automatique a échoué: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Rechercher... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Veuillez sélectionner une Société apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille à Nœud-Feuille apps/frappe/frappe/utils/file_manager.py,Added {0},Ajouté {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Aucun enregistrement correspondant. Recherchez autre chose. @@ -478,7 +491,6 @@ DocType: Google Settings,OAuth Client ID,ID client OAuth DocType: Auto Repeat,Subject,Sujet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Retour au bureau DocType: Web Form,Amount Based On Field,Montant Basé sur le Champ -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 à partir de Configuration> E-mail> Compte de messagerie apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,L'utilisateur est obligatoire pour Partager DocType: DocField,Hidden,Masqué DocType: Web Form,Allow Incomplete Forms,Autoriser les Formulaires Incomplets @@ -515,6 +527,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} et {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Commencer une conversation. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Toujours ajouter ""Brouillon"" pour l'impression des documents brouillons" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Erreur dans la notification: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} année (s) DocType: Data Migration Run,Current Mapping Start,Démarrage Mapping Actuel apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,L'Email a été marqué comme étant un spam DocType: Comment,Website Manager,Responsable du Site Web @@ -552,6 +565,7 @@ DocType: Workflow State,barcode,Code Barre apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,L'utilisation de la sous-requête ou de la fonction est restreinte apps/frappe/frappe/config/customization.py,Add your own translations,Ajoutez vos propres traductions DocType: Country,Country Name,Nom Pays +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Modèle vierge DocType: About Us Team Member,About Us Team Member,À propos du Membre de l'équipe apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Les Autorisations sont définies sur les Rôles et les Types de Documents (appelés DocTypes) en définissant des droits , tels que Lire, Écrire, Créer, Supprimer, Soumettre, Annuler, Modifier, Rapporter, Importer, Exporter, Imprimer, Envoyer un Email et Définir les Autorisations de l'Utilisateur ." DocType: Event,Wednesday,Mercredi @@ -563,6 +577,7 @@ DocType: Website Settings,Website Theme Image Link,Lien de l'Image du Thème du DocType: Web Form,Sidebar Items,Articles de la Barre Latérale DocType: Web Form,Show as Grid,Montrer comme grille apps/frappe/frappe/installer.py,App {0} already installed,App {0} déjà installée +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Les utilisateurs affectés au document de référence obtiendront des points. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Pas de Prévisualisation DocType: Workflow State,exclamation-sign,point-d'exclamation apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Fichiers décompressés {0} @@ -598,6 +613,7 @@ DocType: Notification,Days Before,Jours Précedents apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Les événements quotidiens devraient se terminer le même jour. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Modifier... DocType: Workflow State,volume-down,diminuer-volume +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accès non autorisé à partir de cette adresse IP apps/frappe/frappe/desk/reportview.py,No Tags,Aucune balise DocType: Email Account,Send Notification to,Envoyer une Notification à DocType: DocField,Collapsible,Réductible @@ -653,6 +669,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Développeur apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Créé Par apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} à la ligne {1} ne peut pas avoir à la fois une URL et des sous-articles +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Il devrait y avoir au moins une ligne pour les tables suivantes: {0} DocType: Print Format,Default Print Language,Langue d'impression par défaut apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancêtres de apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Racine {0} ne peut pas être supprimée @@ -695,6 +712,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Hôte +DocType: Data Import Beta,Import File,Importer le fichier apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Colonne {0} existe déjà. DocType: ToDo,High,Haut apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nouvel évènement @@ -723,8 +741,6 @@ DocType: User,Send Notifications for Email threads,Envoyer des notifications pou apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Pas en Mode Développeur apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,La sauvegarde de fichier est prête -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)","Maximum de points permis après avoir multiplié les points avec la valeur du multiplicateur (Remarque: pour les valeurs sans limite, définissez la valeur sur 0)" DocType: DocField,In Global Search,Dans la Recherche Globale DocType: System Settings,Brute Force Security,"Sécurité contre les attaques de type ""force brute""" DocType: Workflow State,indent-left,décaler-gauche @@ -766,6 +782,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Utilisateur '{0}' a déjà le rôle '{1}' DocType: System Settings,Two Factor Authentication method,Méthode d'Authentification à Double Facteur apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Commencez par définir le nom et enregistrez l’enregistrement. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 enregistrements apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Partagé avec {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Se Désinscrire DocType: View Log,Reference Name,Nom de la Référence @@ -814,6 +831,8 @@ DocType: Data Migration Connector,Data Migration Connector,Connecteur de Migrati 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 DocType: Note,Notify Users On Every Login,Notifier les Utilisateurs à Chaque Connexion +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Impossible de faire correspondre la colonne {0} avec un champ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} enregistrements mis à jour avec succès. DocType: PayPal Settings,API Password,Mot de passe API apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Entrez le module python ou sélectionnez le type de connecteur apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Nom du Champ n'a pas été défini pour un Champ Personnalisé @@ -842,9 +861,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Nom {0} {1} en double -DocType: Email Queue,Retry,Recommencez +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Recommencez +DocType: Contact Phone,Number,Nombre DocType: Web Form Field,Web Form Field,Champ de Formulaire Web apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Vous avez un nouveau message de: +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 entre 5 et 10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Modifier le code HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Veuillez entrer l'URL de redirection apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -869,7 +890,7 @@ DocType: Notification,View Properties (via Customize Form),Voir Les Propriétés apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Cliquez sur un fichier pour le sélectionner. DocType: Note Seen By,Note Seen By,Note Vue Par apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Essayez d'utiliser un motif de clavier avec plus de tours -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Classement +,LeaderBoard,Classement DocType: DocType,Default Sort Order,Ordre de tri par défaut DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Aide aux réponses par email @@ -904,6 +925,7 @@ apps/frappe/frappe/utils/data.py,Cent,Centime apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Écrire un Email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","États pour flux de travail (par exemple, Brouillons , Approuvé, Annulé)." DocType: Print Settings,Allow Print for Draft,Autoriser l'Impression si Brouillon +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 ...

                                  L'application QZ Tray doit être installée et en cours d'exécution pour que vous puissiez 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/link_selector.js,Set Quantity,Définir Quantité apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Soumettre ce document pour confirmer DocType: Contact,Unsubscribed,Désinscrit @@ -935,6 +957,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Unité d'organisation p ,Transaction Log Report,Rapport du journal des transactions DocType: Custom DocPerm,Custom DocPerm,Permission de Document Personnalisé DocType: Newsletter,Send Unsubscribe Link,Envoyer le Lien de Désabonnement +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Certains enregistrements liés doivent être créés avant que nous puissions importer votre fichier. Voulez-vous créer automatiquement les enregistrements manquants suivants? DocType: Access Log,Method,Méthode DocType: Report,Script Report,Rapport de Script DocType: OAuth Authorization Code,Scopes,Scopes @@ -975,6 +998,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Envoyé avec succès apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Vous êtes connecté à Internet. DocType: Social Login Key,Enable Social Login,Activer la connexion sociale +DocType: Data Import Beta,Warnings,Avertissements DocType: Communication,Event,Événement apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Sur {0}, {1} a écrit :" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Suppression de champ standard impossible. Vous pouvez le cacher si vous voulez @@ -1030,6 +1054,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Insérer DocType: Kanban Board Column,Blue,Bleu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Toutes les personnalisations seront supprimées. Veuillez confirmer. DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Exporter les lignes erronées apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Le nom du groupe ne peut pas être vide. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,D'autres nœuds peuvent être créés uniquement sous les nœuds de type 'Groupe' DocType: SMS Parameter,Header,En-Tête @@ -1068,13 +1093,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,La Requête a Expirée apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Activer / Désactiver les domaines DocType: Role Permission for Page and Report,Allow Roles,Autoriser les Rôles +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} enregistrements importés avec succès sur {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Expression Python simple, Exemple: Statut dans ("non valide")" DocType: User,Last Active,Dernière Activité DocType: Email Account,SMTP Settings for outgoing emails,Paramètres SMTP pour les emails sortants apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,choisir un DocType: Data Export,Filter List,Liste de filtres DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Votre mot de passe a été mis à jour. Voici votre nouveau mot de passe 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 @@ -1083,7 +1108,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID de l'Utilisateur DocType: Communication,Sent,Envoyé DocType: Address,Kerala,Kerala -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administration DocType: User,Simultaneous Sessions,Sessions Simultanées DocType: Social Login Key,Client Credentials,Identifiants du Client @@ -1115,7 +1139,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Mis à apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Maître DocType: DocType,User Cannot Create,L'utilisateur ne peut pas Créer apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fait avec succès -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Dossier {0} n'existe pas apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Accès Dropbox approuvé! DocType: Customize Form,Enter Form Type,Entrez le Type de Formulaire DocType: Google Drive,Authorize Google Drive Access,Autoriser l'accès à Google Drive @@ -1123,7 +1146,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Aucun enregistrement étiqueté. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Supprimer le Champ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Vous n'êtes pas connecté à Internet. Réessayez après un certain temps. -DocType: User,Send Password Update Notification,Envoyer la Notification de Changement de Mot de Passe apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Autorisation de DocType, DocType. Soyez prudent !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formats Personnalisés pour l'Impression, l'Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Somme de {0} @@ -1209,6 +1231,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Code de Vérificatio apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,L'intégration de Google Contacts est désactivée. DocType: Assignment Rule,Description,Description DocType: Print Settings,Repeat Header and Footer in PDF,Répéter En-Tête et Pied de Page en PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Échec DocType: Address Template,Is Default,Est Défaut DocType: Data Migration Connector,Connector Type,Type de connecteur apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Nom de la Colonne ne peut pas être vide @@ -1221,6 +1244,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Aller à la page {0} DocType: LDAP Settings,Password for Base DN,Mot de Passe pour la Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Champ de Table 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/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 @@ -1274,6 +1298,7 @@ DocType: Print Settings,Enable Raw Printing,Activer l'impression brute DocType: Website Route Redirect,Source,Source apps/frappe/frappe/templates/includes/list/filters.html,clear,effacer apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Fini +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuration> Utilisateur DocType: Prepared Report,Filter Values,Valeurs du filtre DocType: Communication,User Tags,Balise Utilisateur DocType: Data Migration Run,Fail,Échec @@ -1329,6 +1354,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Suiv ,Activity,Activité DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Aide: Pour lier à un autre enregistrement dans le système, utiliser ""# Form / Note / [Nom de la Note]», comme l'URL du lien. (Ne pas utiliser ""http://"")" DocType: User Permission,Allow,Autoriser +DocType: Data Import Beta,Update Existing Records,Mettre à jour les enregistrements existants apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Évitons les mots et les caractères répétés DocType: Energy Point Rule,Energy Point Rule,Règle de point d'énergie DocType: Communication,Delayed,Différé @@ -1341,9 +1367,7 @@ DocType: Milestone,Track Field,Piste de course DocType: Notification,Set Property After Alert,Définir la Propriété Après l'Alerte apps/frappe/frappe/config/customization.py,Add fields to forms.,Ajouter des champs aux formulaires. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Il semble qu'il y ait une erreur avec la configuration Paypal de ce site. -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 ...

                                  L'application QZ Tray doit être installée et en cours d'exécution pour que vous puissiez 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/sidebar/review.js,Add Review,Ajouter un commentaire -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Taille de la police (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Seuls les DocTypes standard peuvent être personnalisés à partir de Personnaliser le formulaire. DocType: Email Account,Sendgrid,SendGrid @@ -1380,6 +1404,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Désolé ! Vous ne pouvez pas supprimer les commentaires générés automatiquement DocType: Google Settings,Used For Google Maps Integration.,Utilisé pour l'intégration de Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DocType de la Référence +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Aucun enregistrement ne sera exporté DocType: User,System User,Utilisateur Système DocType: Report,Is Standard,Est Standard DocType: Desktop Icon,_report,_rapport @@ -1394,6 +1419,7 @@ DocType: Workflow State,minus-sign,signe moins apps/frappe/frappe/public/js/frappe/request.js,Not Found,Non Trouvé apps/frappe/frappe/www/printview.py,No {0} permission,Pas d’autorisation {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exporter les Autorisations Personnalisées +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Aucun article trouvé. DocType: Data Export,Fields Multicheck,Champs à choix multiples DocType: Activity Log,Login,Connexion DocType: Web Form,Payments,Paiements @@ -1453,8 +1479,9 @@ DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Entrant par Défaut DocType: Workflow State,repeat,répéter DocType: Website Settings,Banner,Bannière +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},La valeur doit être l'une des {0} DocType: Role,"If disabled, this role will be removed from all users.","Si désactivé, ce rôle sera retiré de tous les utilisateurs." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Aller à la liste {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Aller à la liste {0} 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é @@ -1468,6 +1495,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Nom du champ local DocType: DocType,Track Changes,Suivre les Modifications DocType: Workflow State,Check,Vérifier DocType: Chat Profile,Offline,Hors Ligne +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importé avec succès {0} DocType: User,API Key,Clé API DocType: Email Account,Send unsubscribe message in email,Envoyer un message de désabonnement dans l'email apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Modifier le Titre @@ -1494,11 +1522,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} a déjà attribué la valeur par défaut à {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                  No results found for '

                                  ,

                                  Aucun résultat trouvé pour '

                                  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 @@ -1519,8 +1547,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Non autorisé pour {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 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuration> Autorisations utilisateur DocType: LDAP Group Mapping,LDAP Group Mapping,Mappage de groupe LDAP DocType: Dashboard Chart,Chart Options,Options de graphique +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Colonne sans titre apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} de {1} à {2} dans la ligne #{3} DocType: Communication,Expired,Expiré apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Le jeton que vous utilisez est invalide! @@ -1530,6 +1560,7 @@ DocType: DocType,System,Système DocType: Web Form,Max Attachment Size (in MB),Taille Max de la Pièce Jointe (en Mo) apps/frappe/frappe/www/login.html,Have an account? Login,Vous avez déjà un compte? Connexion DocType: Workflow State,arrow-down,flèche-bas +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ligne {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Utilisateur non autorisé à supprimer {0} : {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} sur {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Dernière Mise à Jour @@ -1546,6 +1577,7 @@ DocType: Custom Role,Custom Role,Rôle Personnalisé apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Accueil / Dossier Test 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Entrez votre mot de passe DocType: Dropbox Settings,Dropbox Access Secret,Secret d’Accès Dropbox +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatoire) 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. @@ -1620,6 +1652,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Afficher l apps/frappe/frappe/desk/form/assign_to.py,New Message,Nouveau Message DocType: File,Preview HTML,Aperçu HTML DocType: Desktop Icon,query-report,rapport-requête +DocType: Data Import Beta,Template Warnings,Avertissements de modèles apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtres sauvegardés DocType: DocField,Percent,Pourcent apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Veuillez définir des filtres @@ -1641,6 +1674,7 @@ DocType: Custom Field,Custom,Personnaliser DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Si cette option est activée, les utilisateurs qui se connectent à partir d'une adresse IP restreinte ne seront pas invités à utiliser l'authentification à deux facteurs." DocType: Auto Repeat,Get Contacts,Obtenir les contacts apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Messages déposés en vertu de {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Saut de colonne sans titre DocType: Notification,Send alert if date matches this field's value,Envoyer alerte si la date correspond à la valeur de ce champ DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} à {2} @@ -1664,6 +1698,7 @@ DocType: Workflow State,step-backward,vers-larrière apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Veuillez définir les clés d'accès Dropbox dans la configuration de votre site apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Supprimer cet enregistrement pour permettre l'envoi à cette adresse Email +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Si port non standard (par exemple, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Personnaliser les raccourcis apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Seuls les champs obligatoires sont nécessaires pour les nouveaux enregistrements. Vous pouvez supprimer des colonnes non obligatoires si vous le souhaitez. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Afficher plus d'activité @@ -1771,7 +1806,9 @@ DocType: Note,Seen By Table,Table Vu Par apps/frappe/frappe/www/third_party_apps.html,Logged in,Connecté apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Boîte d’Envois et de Réception par Défaut DocType: System Settings,OTP App,Application OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Enregistrement {0} mis à jour avec succès sur {1}. DocType: Google Drive,Send Email for Successful Backup,Envoyer un courrier électronique pour une sauvegarde réussie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Le planificateur est inactif. Impossible d'importer des données. DocType: Print Settings,Letter,Lettre DocType: DocType,"Naming Options:
                                  1. field:[fieldname] - By Field
                                  2. naming_series: - By Naming Series (field called naming_series must be present
                                  3. Prompt - Prompt user for a name
                                  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                  5. @@ -1785,6 +1822,7 @@ DocType: GCalendar Account,Next Sync Token,Jeton de synchronisation suivant DocType: Energy Point Settings,Energy Point Settings,Paramètres de points d'énergie DocType: Async Task,Succeeded,Réussi apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Champs Obligatoires Requis : {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                    No results found for '

                                    ,

                                    Aucun résultat trouvé pour '

                                    apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Réinitialiser des Autorisations pour {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Utilisateurs et Autorisations DocType: S3 Backup Settings,S3 Backup Settings,Paramètres de sauvegarde S3 @@ -1856,6 +1894,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Dans DocType: Notification,Value Change,Modification de Valeur DocType: Google Contacts,Authorize Google Contacts Access,Autoriser l'accès à Google Contacts apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Afficher uniquement les champs numériques du rapport +DocType: Data Import Beta,Import Type,Type d'importation DocType: Access Log,HTML Page,Page HTML DocType: Address,Subsidiary,Filiale apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Tentative de connexion au bac QZ ... @@ -1866,7 +1905,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Serveur d' DocType: Custom DocPerm,Write,Écrire apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Seul l'Administrateur est autorisé à créer des Rapports de Requêtes / Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Réactualisation -DocType: File,Preview,Aperçu +DocType: Data Import Beta,Preview,Aperçu apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Le champ ""Valeur"" est obligatoire. S'il vous plaît spécifiez la valeur devant être mise à jour" DocType: Customize Form,Use this fieldname to generate title,Utilisez ce nom de champ pour générer le titre apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importer Email Depuis @@ -1949,6 +1988,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Navigateur non DocType: Social Login Key,Client URLs,URLs Client apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Certaines informations sont manquantes apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} créé avec succès +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Saut de {0} sur {1}, {2}" DocType: Custom DocPerm,Cancel,Annuler apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Suppression en masse apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Fichier {0} n'existe pas @@ -1976,7 +2016,6 @@ DocType: GCalendar Account,Session Token,Jeton de session DocType: Currency,Symbol,Symbole apps/frappe/frappe/model/base_document.py,Row #{0}:,Ligne # {0} : apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Confirmer la suppression des données -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nouveau mot de passe envoyé par courriel apps/frappe/frappe/auth.py,Login not allowed at this time,Connexion non autorisée pour le moment DocType: Data Migration Run,Current Mapping Action,Action de cartographie actuelle DocType: Dashboard Chart Source,Source Name,Nom de la Source @@ -1989,6 +2028,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Épi apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Suivi par DocType: LDAP Settings,LDAP Email Field,Champ Email LDAP apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,Liste {0} +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exporter des enregistrements {0} apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Déjà dans la Liste des Tâches de l'utilisateur DocType: User Email,Enable Outgoing,Activer Sortant DocType: Address,Fax,Fax @@ -2046,8 +2086,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Imprimer des documents apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Aller au champ DocType: Contact Us Settings,Forward To Email Address,Transférer à l'Adresse Email +DocType: Contact Phone,Is Primary Phone,Est le téléphone primaire apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envoyez un courrier électronique à {0} pour le lier ici. DocType: Auto Email Report,Weekdays,Jours de la semaine +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} enregistrements seront exportés apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Champ Titre doit être un nom de champ valide DocType: Post Comment,Post Comment,Poster un commentaire apps/frappe/frappe/config/core.py,Documents,Documents @@ -2065,7 +2107,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Ce champ apparaît uniquement si le nom de champ défini ici a une valeur OU les règles sont vérifiées. DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Aujourd'hui +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 trouvé. Veuillez en créer un nouveau depuis Configuration> Impression et création de marque> Modèle d'adresse. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Une fois que vous avez défini ceci, les utilisateurs ne pourront accèder qu'aux documents (e.g. Article de Blog) où le lien existe (e.g. Blogger) ." +DocType: Data Import Beta,Submit After Import,Soumettre après importation DocType: Error Log,Log of Scheduler Errors,Journal des Erreurs du Planificateur DocType: User,Bio,Biographie DocType: OAuth Client,App Client Secret,Secret Client de l'App @@ -2084,10 +2128,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Désactiver le Lien d'Inscription dans la Page de Connexion apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Assigné À /Responsable DocType: Workflow State,arrow-left,flèche-gauche +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Exporter 1 enregistrement DocType: Workflow State,fullscreen,Plein Écran DocType: Chat Token,Chat Token,Jeton de Chat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Créer un graphique apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne pas importer DocType: Web Page,Center,Centre DocType: Notification,Value To Be Set,Valeur à Définir apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Modifier {0} @@ -2107,6 +2153,7 @@ DocType: Print Format,Show Section Headings,Voir la Section Titres DocType: Bulk Update,Limit,Limite apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Nous avons reçu une demande de suppression de {0} données associées à: {1}. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Ajouter une nouvelle section +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Enregistrements filtrés apps/frappe/frappe/www/printview.py,No template found at path: {0},Aucun modèle trouvé au chemin: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Aucun Compte Email DocType: Comment,Cancelled,Annulé @@ -2193,10 +2240,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Recherche globale Types de documents Réinitialiser. ,Lead Conversion Time,Temps de conversion des prospects apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Créer un Rapport DocType: Note,Notify users with a popup when they log in,Informer les utilisateurs avec un popup quand ils se connectent +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Les modules de base {0} ne peuvent pas être recherchés dans la recherche globale. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Chat ouvert apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} n'existe pas, veuillez sélectionner une nouvelle cible à fusionner" DocType: Data Migration Connector,Python Module,Module Python @@ -2213,8 +2263,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Fermer 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuration> Autorisations utilisateur -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Mettre à Jour +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Mettre à Jour DocType: Transaction Log,Transaction Hash,Hash de transaction DocType: Error Snapshot,Snapshot View,Vue Snapshot apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Veuillez sauvegarder la Newsletter avant de l'envoyer @@ -2230,6 +2279,7 @@ DocType: Data Import,In Progress,En cours apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Mis en File d'Attente pour la sauvegarde. Cela peut prendre de quelques minutes jusqu'à une heure. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,L'autorisation de l'utilisateur existe déjà +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mappage de la colonne {0} sur le champ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Voir {0} DocType: User,Hourly,Horaire apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Inscrire App Client OAuth @@ -2242,7 +2292,6 @@ DocType: SMS Settings,SMS Gateway URL,URL de la Passerelle SMS apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ne peut pas être ""{2}"". Il devrait être l'un de ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},gagné par {0} via la règle automatique {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ou {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Mise à Jour du Mot de Passe DocType: Workflow State,trash,corbeille DocType: System Settings,Older backups will be automatically deleted,Les anciennes sauvegardes seront automatiquement supprimées apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID de clé d'accès ou clé d'accès secrète invalide. @@ -2270,6 +2319,7 @@ DocType: Address,Preferred Shipping Address,Adresse de Livraison Principale apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Avec en-tête de Lettre apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} a créé {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Non autorisé pour {0}: {1} dans la ligne {2}. Champ restreint: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de messagerie non configuré. Veuillez créer un nouveau compte de messagerie depuis Configuration> E-mail> Compte de messagerie DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Si cette case est cochée, les lignes contenant des données valides seront importées et les lignes non valides seront enregistrées dans un nouveau fichier que vous pourrez importer ultérieurement." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document est modifiable uniquement par les utilisateurs du rôle @@ -2296,6 +2346,7 @@ DocType: Custom Field,Is Mandatory Field,Est Champ obligatoire DocType: User,Website User,Utilisateur du Site Web apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Certaines colonnes peuvent être coupées lors de l'impression au format PDF. Essayez de garder le nombre de colonnes sous 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Non égaux +DocType: Data Import Beta,Don't Send Emails,Ne pas envoyer d'emails DocType: Integration Request,Integration Request Service,Service de Demande d'Intégration DocType: Access Log,Access Log,Journal d'accès DocType: Website Script,Script to attach to all web pages.,Script à joindre à toutes les pages web. @@ -2335,6 +2386,7 @@ DocType: Contact,Passive,Passif DocType: Auto Repeat,Accounts Manager,Responsable des Comptes apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Affectation pour {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Votre paiement est annulé. +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 à partir de Configuration> E-mail> Compte de messagerie apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Sélectionner le Type de Fichier apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Tout voir DocType: Help Article,Knowledge Base Editor,Éditeur de la Base de Connaissance @@ -2367,6 +2419,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Données apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Statut du Document apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Approbation exigée +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Les enregistrements suivants doivent être créés avant que nous puissions importer votre fichier. DocType: OAuth Authorization Code,OAuth Authorization Code,Code d'Autorisation OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Non autorisé à Importer DocType: Deleted Document,Deleted DocType,Suppimer le DocType @@ -2420,8 +2473,8 @@ DocType: System Settings,System Settings,Paramètres Système DocType: GCalendar Settings,Google API Credentials,Informations d'identification de l'API Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Le Démarrage de la Session a Échoué apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Cet email a été envoyé à {0} et une copie à {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},a soumis ce document {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} année (s) DocType: Social Login Key,Provider Name,Nom du fournisseur apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Créer un(e) nouveau(elle) {0} DocType: Contact,Google Contacts,Google Contacts @@ -2429,6 +2482,7 @@ DocType: GCalendar Account,GCalendar Account,Compte GCalendar DocType: Email Rule,Is Spam,Est Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapport {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Ouvrir {0} +DocType: Data Import Beta,Import Warnings,Avertissements d'importation DocType: OAuth Client,Default Redirect URI,URI de Redirection par Défaut DocType: Auto Repeat,Recipients,Destinataires DocType: System Settings,Choose authentication method to be used by all users,Choisissez la méthode d'authentification qui sera utilisée par tous les utilisateurs @@ -2546,6 +2600,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Rapport mis apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Erreur de Webhook Slack DocType: Email Flag Queue,Unread,Non Lus DocType: Bulk Update,Desk,Bureau +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Colonne ignorée {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Le Filtre doit être un tuple ou une liste (dans une liste) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Écrire une requête SELECT. Remarque : le résultat n'est pas paginé (toutes les données sont transmises en une seule fois). DocType: Email Account,Attachment Limit (MB),Taille Maximale de la Pièce jointe (MB) @@ -2560,6 +2615,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Créer Nouveau(elle) DocType: Workflow State,chevron-down,chevron vers le bas apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email pas envoyé à {0} (désabonné / désactivé) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Sélectionner les champs à exporter DocType: Async Task,Traceback,Retraçage DocType: Currency,Smallest Currency Fraction Value,Plus Petite Valeur Fractionée de la Devise apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Rapport de préparation @@ -2568,6 +2624,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Activer Commentaires apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Remarques DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Restreindre la connexion à partir de cette adresse IP uniquement. Plusieurs adresses IP peuvent être ajoutées en les séparant par des virgules. Les adresses IP partielles comme (111.111.111) sont acceptées +DocType: Data Import Beta,Import Preview,Aperçu d'importation DocType: Communication,From,À partir de apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Sélectionner d'abord un noeud de groupe apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Trouver {0} dans {1} @@ -2666,6 +2723,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Entre DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,File d'Attente +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuration> Personnaliser le formulaire DocType: Braintree Settings,Use Sandbox,Utiliser Sandbox apps/frappe/frappe/utils/goal.py,This month,Ce mois-ci apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nouveau Format d'Impression Personnalisé @@ -2681,6 +2739,7 @@ DocType: Session Default,Session Default,Session par défaut DocType: Chat Room,Last Message,Dernier message DocType: OAuth Bearer Token,Access Token,Jeton d'Accès DocType: About Us Settings,Org History,Histoire Org +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Il reste environ {0} minutes DocType: Auto Repeat,Next Schedule Date,Prochaine Date Programmée DocType: Workflow,Workflow Name,Nom du Flux de Travail DocType: DocShare,Notify by Email,Notifier par Email @@ -2710,6 +2769,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Auteur apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Reprendre l’Envoi apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Ré-ouvrir +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Afficher les avertissements apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Utilisateur Acheteur DocType: Data Migration Run,Push Failed,Échec de la Transmission @@ -2746,6 +2806,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Recher apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Vous n'êtes pas autorisé à consulter la newsletter. DocType: User,Interests,Intérêts apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Les Instructions de réinitialisation du mot de passe ont été envoyés à votre adresse Email +DocType: Energy Point Rule,Allot Points To Assigned Users,Allouer des points à des utilisateurs assignés apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Le niveau 0 est pour les autorisations au niveau du document, \ les niveaux supérieurs pour les autorisations au niveau des champs." DocType: Contact Email,Is Primary,Est primaire @@ -2768,6 +2829,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Type d'Exportation DocType: Workflow State,circle-arrow-left,flèche-cercle-gauche DocType: System Settings,Force User to Reset Password,Forcer l'utilisateur à réinitialiser le mot de passe apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Pour obtenir le rapport mis à jour, cliquez sur {0}." @@ -2780,13 +2842,16 @@ DocType: Contact,Middle Name,Deuxième Nom DocType: Custom Field,Field Description,Description du Champ apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nom non défini via l’Invite apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Boîte de Réception +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Mise à jour de {0} sur {1}, {2}" DocType: Auto Email Report,Filters Display,Affichage des Filtres apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Le champ "modified_from" doit être présent pour effectuer un amendement. +DocType: Contact,Numbers,Nombres apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} a apprécié votre travail sur {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Enregistrer les filtres DocType: Address,Plant,Usine apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Répondre à Tous DocType: DocType,Setup,Configuration +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Tous les enregistrements DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adresse e-mail dont les contacts Google doivent être synchronisés. DocType: Email Account,Initial Sync Count,Nombre de Synchronisation Initiale DocType: Workflow State,glass,verre @@ -2811,7 +2876,7 @@ DocType: Workflow State,font,Police de Caractères DocType: DocType,Show Preview Popup,Afficher l'aperçu Popup apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,C’est un mot de passe commun dans le top-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Veuillez autoriser les pop-ups -DocType: User,Mobile No,N° Mobile +DocType: Contact,Mobile No,N° Mobile DocType: Communication,Text Content,Contenu du Texte DocType: Customize Form Field,Is Custom Field,Est un Champ Personnalisé DocType: Workflow,"If checked, all other workflows become inactive.","Si coché, tous les autres flux de production deviennent inactifs." @@ -2857,6 +2922,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Ajout apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nom du nouveau Format d'Impression apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Afficher/Cacher la barre latérale DocType: Data Migration Run,Pull Insert,Extraction et Insertion +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Maximum de points permis après avoir multiplié les points avec la valeur du multiplicateur (Remarque: pour aucune limite, laissez ce champ vide ou définissez 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Modèle non valide apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Requête SQL illégale apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obligatoire : DocType: Chat Message,Mentions,Mentions @@ -2871,6 +2939,7 @@ DocType: User Permission,User Permission,Autorisation de l'Utilisateur apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Non Installé apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Télécharger avec les données +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valeurs modifiées pour {0} {1} DocType: Workflow State,hand-right,main-droite DocType: Website Settings,Subdomain,Sous-domaine DocType: S3 Backup Settings,Region,Région @@ -2897,10 +2966,12 @@ DocType: Braintree Settings,Public Key,Clé publique DocType: GSuite Settings,GSuite Settings,Paramètres GSuite DocType: Address,Links,Liens DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Utilise le nom d’adresse e-mail mentionné dans ce compte comme nom de l’expéditeur pour tous les courriels envoyés à l’aide de ce compte. +DocType: Energy Point Rule,Field To Check,Champ à vérifier apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Contacts - Impossible de mettre à jour le contact dans Google Contacts {0}, code d'erreur {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Veuillez sélectionner le type de document. apps/frappe/frappe/model/base_document.py,Value missing for,Valeur manquante pour apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Ajouter une Sous-Catégorie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Progression de l'importation DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Si la condition est satisfaite, l'utilisateur sera récompensé par les points. par exemple. doc.status == 'Fermé'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Enregistrement Soumis ne peut pas être supprimé. @@ -2937,6 +3008,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autoriser l'accès apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,La page que vous recherchez est manquante. Cela pourrait être dû au fait qu’elle a été déplacée ou il y a une faute de frappe dans le lien. apps/frappe/frappe/www/404.html,Error Code: {0},Code d'erreur : {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Texte de description pour l'affichage en liste, quelques lignes seulement. (Max 140 caractères)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sont des champs obligatoires DocType: Workflow,Allow Self Approval,Autoriser l'auto-approbation DocType: Event,Event Category,Catégorie d'événement apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2985,8 +3057,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Déménager à DocType: Address,Preferred Billing Address,Adresse de Facturation Principale apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Trop d’écritures en une seule requête. Veuillez envoyer des requêtes plus petites apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive a été configuré. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Le type de document {0} a été répété. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valeurs Modifiées DocType: Workflow State,arrow-up,flèche-haut +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Il devrait y avoir au moins une ligne pour la table {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Pour configurer la répétition automatique, activez "Autoriser la répétition automatique" à partir de {0}." DocType: OAuth Bearer Token,Expires In,Expire Dans DocType: DocField,Allow on Submit,Autoriser à la Soumission @@ -3073,6 +3147,7 @@ DocType: Custom Field,Options Help,Aide Options 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é 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 @@ -3090,6 +3165,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Code de Vérification DocType: Webhook,Webhook Request,Requête Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Échec: {0} à {1}: {2} DocType: Data Migration Mapping,Mapping Type,Type de Mapping +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Sélectionner Obligatoirement apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Parcourir apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Pas besoin de symboles, de chiffres ou de lettres majuscules." DocType: DocField,Currency,Devise @@ -3120,11 +3196,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Tête de lettre basée sur apps/frappe/frappe/utils/oauth.py,Token is missing,Le Jeton est manquant apps/frappe/frappe/www/update-password.html,Set Password,Définir mot de passe +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} enregistrements importés avec succès. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Remarque : Changer le Nom de la Page va détruire le précédent lien URL vers cette page. apps/frappe/frappe/utils/file_manager.py,Removed {0},{0} Suprimé DocType: SMS Settings,SMS Settings,Paramètres des SMS DocType: Company History,Highlight,Surligner DocType: Dashboard Chart,Sum,Somme +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,via importation de données DocType: OAuth Provider Settings,Force,Forcer apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Dernière synchronisation {0} DocType: DocField,Fold,Pli @@ -3161,6 +3239,7 @@ DocType: Workflow State,Home,Accueil DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,L'utilisateur peut se connecter en utilisant son Email ou son Nom d'Utilisateur DocType: Workflow State,question-sign,point-interrogation +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} est désactivé apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Le champ "route" est obligatoire pour les vues Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Insérer une colonne avant {0} DocType: Energy Point Rule,The user from this field will be rewarded points,L'utilisateur de ce champ recevra des points @@ -3194,6 +3273,7 @@ DocType: Website Settings,Top Bar Items,Articles de la Barre Supérieure DocType: Notification,Print Settings,Paramètres d'Impression DocType: Page,Yes,Oui DocType: DocType,Max Attachments,Nombre Max de Pièces Jointes +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Il reste environ {0} secondes DocType: Calendar View,End Date Field,Champ pour la Date de Fin apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Raccourcis globaux DocType: Desktop Icon,Page,Page @@ -3304,6 +3384,7 @@ DocType: GSuite Settings,Allow GSuite access,Autoriser l'accès à GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Nom apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Sélectionner Tout +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Colonne {0} apps/frappe/frappe/config/customization.py,Custom Translations,Traductions Personnalisées apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Progression apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,par Rôle @@ -3345,11 +3426,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Env DocType: Stripe Settings,Stripe Settings,Paramètres Stripe DocType: Data Migration Mapping,Data Migration Mapping,Mapping de Migration de Données DocType: Auto Email Report,Period,Période +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Il reste environ {0} minute apps/frappe/frappe/www/login.py,Invalid Login Token,Jeton de Connexion invalide apps/frappe/frappe/public/js/frappe/chat.js,Discard,Ignorer apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,Il y a 1 heure DocType: Website Settings,Home Page,Page d’Accueil DocType: Error Snapshot,Parent Error Snapshot,Instantané d'Erreur Parent +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Mappez les colonnes de {0} aux champs de {1} DocType: Access Log,Filters,Filtres DocType: Workflow State,share-alt,part-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},La Queue doit être parmi {0} @@ -3380,6 +3463,7 @@ DocType: Calendar View,Start Date Field,Date de début DocType: Role,Role Name,Nom du Rôle apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Passer Au Bureau apps/frappe/frappe/config/core.py,Script or Query reports,Rapports Script ou Query +DocType: Contact Phone,Is Primary Mobile,Est le mobile primaire DocType: Workflow Document State,Workflow Document State,État du Document du Flux de Travail apps/frappe/frappe/public/js/frappe/request.js,File too big,Fichier trop grand apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Compte Email ajouté plusieurs fois @@ -3425,6 +3509,7 @@ DocType: DocField,Float,Nombre Réel DocType: Print Settings,Page Settings,Paramètres de la Page apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Sauvegarde en cours... apps/frappe/frappe/www/update-password.html,Invalid Password,Mot de Passe Invalide +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Enregistrement {0} importé avec succès sur {1}. DocType: Contact,Purchase Master Manager,Responsable des Données d’Achats apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Cliquez sur l'icône de cadenas pour basculer entre public et privé. DocType: Module Def,Module Name,Nom du Module @@ -3458,6 +3543,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Veuillez entrer des N° de mobiles valides apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Certaines des fonctionnalités peuvent ne pas fonctionner dans votre navigateur. Veuillez mettre à jour votre navigateur vers la dernière version. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Vous ne savez pas, demandez de l’ ‘aide’" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},a annulé ce document {0} DocType: DocType,Comments and Communications will be associated with this linked document,Commentaires et Communications seront associés à ce document lié apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtre ... DocType: Workflow State,bold,gras @@ -3476,6 +3562,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Ajouter / Gé DocType: Comment,Published,Publié apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Merci pour votre Email DocType: DocField,Small Text,Petit Texte +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Le numéro {0} ne peut pas être défini comme principal pour le téléphone, ainsi que pour le numéro de mobile." DocType: Workflow,Allow approval for creator of the document,Autoriser l'approbation par le créateur du document apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Enregistrer le rapport DocType: Webhook,on_cancel,on_cancel @@ -3533,6 +3620,7 @@ DocType: Print Settings,PDF Settings,Paramètres PDF DocType: Kanban Board Column,Column Name,Nom de la Colonne DocType: Language,Based On,Basé Sur DocType: Email Account,"For more information, click here.","Pour plus d'informations, cliquez ici ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Le nombre de colonnes ne correspond pas aux données apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Rendre Défaut apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Temps d'exécution: {0} s apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Chemin d'inclusion non valide @@ -3622,7 +3710,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Télécharger des fichiers {0} DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Heure de début du rapport -apps/frappe/frappe/config/settings.py,Export Data,Exporter des données +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exporter des données 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." @@ -3640,7 +3728,6 @@ DocType: Report,Disable Prepared Report,Désactiver le rapport préparé apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,L'utilisateur {0} a demandé la suppression des données. apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Jeton d'Accès Invalide. Veuillez réessayer apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","L'application a été mise à jour vers une nouvelle version, veuillez rafraîchir cette page" -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 trouvé. Veuillez en créer un nouveau depuis Configuration> Impression et création de marque> Modèle d'adresse. DocType: Notification,Optional: The alert will be sent if this expression is true,Optionel : L'alerte sera envoyée si cette expression est vraie DocType: Data Migration Plan,Plan Name,Nom du Plan DocType: Print Settings,Print with letterhead,Imprimer avec en-tête @@ -3681,6 +3768,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : Impossible de choisir Modifier sans Annuler apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Pleine Page DocType: DocType,Is Child Table,Est Table Enfant +DocType: Data Import Beta,Template Options,Options de modèle apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} doit être l'un des {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} est en train de regarder ce document apps/frappe/frappe/config/core.py,Background Email Queue,File d’Attente d’Email en Arrière-Plan @@ -3688,7 +3776,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Réinitialisation du DocType: Communication,Opened,Ouvert DocType: Workflow State,chevron-left,chevron vers la gauche DocType: Communication,Sending,Envoi -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Non autorisé à partir de cette Adresse IP DocType: Website Slideshow,This goes above the slideshow.,Ceci va au-dessus du diaporama. DocType: Contact,Last Name,Nom de Famille DocType: Event,Private,Privé @@ -3702,7 +3789,6 @@ DocType: Workflow Action,Workflow Action,Action du Flux de Travail apps/frappe/frappe/utils/bot.py,I found these: ,J'ai trouvé ceci : DocType: Event,Send an email reminder in the morning,Envoyer un email de rappel dans la matinée DocType: Blog Post,Published On,Publié le -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de messagerie non configuré. Veuillez créer un nouveau compte de messagerie depuis Configuration> E-mail> Compte de messagerie 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} @@ -3723,7 +3809,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,signe-avertissement DocType: Prepared Report,Prepared Report,Rapport préparé apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Ajouter des balises méta à vos pages Web -DocType: Contact,Phone Nos,Numéro de téléphone 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 @@ -3740,6 +3825,7 @@ DocType: Data Migration Connector,Data Migration,Migration de Données DocType: User,API Key cannot be regenerated,La clé d'API ne peut pas être regénérée apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Quelque chose s'est mal passé DocType: System Settings,Number Format,Format Numérique +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} enregistrement importé avec succès. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Résumé DocType: Event,Event Participants,Participants à l'événement DocType: Auto Repeat,Frequency,Fréquence @@ -3747,7 +3833,7 @@ DocType: Custom Field,Insert After,Insérer Après DocType: Event,Sync with Google Calendar,Synchroniser avec Google Agenda DocType: Access Log,Report Name,Nom du Rapport DocType: Desktop Icon,Reverse Icon Color,Inverser la Couleur de l'Icône -DocType: Notification,Save,Enregistrer +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Enregistrer apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Prochaine date prévue apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Attribuer à celui qui a le moins d'affectations apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Titre de la Section @@ -3770,11 +3856,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuration> Personnaliser le formulaire 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é DocType: Desktop Icon,Category,Catégorie +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Valeur {0} manquante pour {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Ajouter des contacts apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paysage apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensions de script côté client en Javascript @@ -3797,6 +3883,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Point d'énergie apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Veuillez choisir un autre mode de paiement. PayPal ne supporte pas les transactions en monnaie ‘{0}’ DocType: Chat Message,Room Type,Type de chambre +DocType: Data Import Beta,Import Log Preview,Importer l'aperçu du journal apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Champ de recherche {0} n'est pas valide apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,fichier téléchargé DocType: Workflow State,ok-circle,ok-cercle @@ -3863,6 +3950,7 @@ DocType: DocType,Allow Auto Repeat,Autoriser la répétition automatique apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Aucune valeur à afficher DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Modèle d'email +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} enregistrement mis à jour avec succès. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},L'utilisateur {0} n'a pas d'accès au type de document via l'autorisation de rôle pour le document {1}. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Un login et un mot de passe sont requis apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Veuillez actualiser pour obtenir la dernière version du document. diff --git a/frappe/translations/gu.csv b/frappe/translations/gu.csv index af03508125..31484cc374 100644 --- a/frappe/translations/gu.csv +++ b/frappe/translations/gu.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,નીચેની એપ્લિકેશનો માટે નવી {} રીલિઝેસ ઉપલબ્ધ છે apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,રકમ ક્ષેત્ર પસંદ કરો. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,આયાત ફાઇલ લોડ કરી રહ્યું છે ... DocType: Assignment Rule,Last User,છેલ્લો વપરાશકર્તા apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","એક નવી કાર્ય, {0}, {1} દ્વારા અસાઇન કરવામાં આવ્યો છે. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,સત્ર ડિફોલ્ટ સાચવ્યું +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ફાઇલ ફરીથી લોડ કરો DocType: Email Queue,Email Queue records.,ઇમેઇલ કતાર રેકોર્ડ. DocType: Post,Post,પોસ્ટ DocType: Address,Punjab,પંજાબ @@ -44,6 +46,7 @@ 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,પરિમાણ @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,માસિક DocType: Address,Uttarakhand,ઉત્તરાખંડ DocType: Email Account,Enable Incoming,ઇનકમિંગ સક્ષમ apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ડેન્જર -apps/frappe/frappe/www/login.py,Email Address,ઈ - મેઈલ સરનામું +DocType: Address,Email Address,ઈ - મેઈલ સરનામું DocType: Workflow State,th-large,મી મોટા DocType: Communication,Unread Notification Sent,મોકલ્યું ન વાંચેલ સૂચન apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,નિકાસ મંજૂરી નથી. તમે નિકાસ કરવા {0} ભૂમિકા જરૂર છે. @@ -97,7 +100,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,સંચ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","વગેરે "સેલ્સ ક્વેરી, આધાર ક્વેરી" જેવા સંપર્ક વિકલ્પો, નવી લીટી પર દરેક અથવા અલ્પવિરામ દ્વારા અલગ થયેલ છે." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,ટૅગ ઉમેરો ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,પોટ્રેટ -DocType: Data Migration Run,Insert,સામેલ કરો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,સામેલ કરો apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,ગૂગલ ડ્રાઇવ .ક્સેસને મંજૂરી આપો apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},પસંદ કરો {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,કૃપા કરીને બેઝ URL દાખલ કરો @@ -116,17 +119,17 @@ 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,થીમ રૂપરેખાંકિત કરો DocType: Company History,Company History,કંપની ઇતિહાસ -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,રીસેટ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,રીસેટ DocType: Workflow State,volume-up,વોલ્યુંમ-અપ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks ને વેબ એપ્લિકેશન્સમાં API વિનંતીઓ કરે છે +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ટ્રેસબેક બતાવો DocType: DocType,Default Print Format,મૂળભૂત પ્રિન્ટ ફોર્મેટ DocType: Workflow State,Tags,ટૅગ્સ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,નહીં: વર્કફ્લો ઓવરને અંતે apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","બિન-અનન્ય હાલની કિંમતો કારણ કે ત્યાં {0} ક્ષેત્ર, {1} તરીકે અનન્ય સેટ કરી શકાય છે" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,દસ્તાવેજ પ્રકાર +DocType: Global Search Settings,Document Types,દસ્તાવેજ પ્રકાર DocType: Address,Jammu and Kashmir,જમ્મુ અને કાશ્મીર DocType: Workflow,Workflow State Field,વર્કફ્લો રાજ્ય ક્ષેત્ર -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,સેટઅપ> વપરાશકર્તા DocType: Language,Guest,ગેસ્ટ DocType: DocType,Title Field,શીર્ષક ક્ષેત્ર DocType: Error Log,Error Log,ભૂલ લોગ @@ -135,6 +138,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",""Abcabcabc" માત્ર સહેજ કઠણ "abc" કરતાં ધારી હોય છે, જેમ પુનરાવર્તન" DocType: Notification,Channel,ચેનલ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","તમે આ અનધિકૃત લાગે છે, તો સંચાલક પાસવર્ડ બદલવા વિનંતી." +DocType: Data Import Beta,Data Import Beta,ડેટા આયાત બીટા apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} ફરજિયાત છે DocType: Assignment Rule,Assignment Rules,સોંપણી નિયમો DocType: Workflow State,eject,બહાર કાઢો @@ -160,6 +164,7 @@ DocType: Workflow Action Master,Workflow Action Name,વર્કફ્લો apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,Doctype મર્જ કરી શકાતા નથી DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,નથી એક ઝિપ ફાઇલ +DocType: Global Search DocType,Global Search DocType,વૈશ્વિક શોધ ડ Docકટાઇપ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                    New {{ doc.doctype }} #{{ doc.name }}
                                    ","ગતિશીલ વિષય ઉમેરવા માટે, જિનજા ટૅગ્સનો ઉપયોગ કરો
                                     New {{ doc.doctype }} #{{ doc.name }} 
                                    " @@ -181,6 +186,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,ડૉક ઇવેન્ટ apps/frappe/frappe/public/js/frappe/utils/user.js,You,તમે DocType: Braintree Settings,Braintree Settings,બ્રેન્ટ્રી સેટિંગ્સ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,સફળતાપૂર્વક {0} રેકોર્ડ્સ બનાવ્યાં. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ફિલ્ટર સાચવો DocType: Print Format,Helvetica,હેલ્વેટિકા apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} ને કાઢી શકતા નથી @@ -207,6 +213,7 @@ DocType: SMS Settings,Enter url parameter for message,સંદેશ માટ apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,આ દસ્તાવેજ માટે સ્વત Rep પુનરાવર્તિત બનાવ્યું apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,તમારા બ્રાઉઝરમાં રિપોર્ટ જુઓ apps/frappe/frappe/config/desk.py,Event and other calendars.,ઇવેન્ટ અને અન્ય કૅલેન્ડર્સ. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 પંક્તિ ફરજિયાત) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,બધી ફીલ્ડ્સ ટિપ્પણી સબમિટ કરવા માટે જરૂરી છે. DocType: Custom Script,Adds a client custom script to a DocType,ડોકટાઇપ પર ક્લાયંટ કસ્ટમ સ્ક્રિપ્ટ ઉમેરો DocType: Print Settings,Printer Name,પ્રિન્ટરનું નામ @@ -248,7 +255,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},જ DocType: Bulk Update,Bulk Update,બલ્ક અપડેટ DocType: Workflow State,chevron-up,શેવરોન અપ DocType: DocType,Allow Guest to View,જુઓ કરવા માટે એક અતિથિ મંજૂરી આપો -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,કાયમ {0} આઇટમ્સ કાઢી નાખીએ? apps/frappe/frappe/utils/oauth.py,Not Allowed,મંજૂરી નથી @@ -264,6 +270,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,ડિસ્પ્લે DocType: Email Group,Total Subscribers,કુલ ઉમેદવારો apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},ટોચની {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,પંક્તિ નંબર apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","એક રોલ સ્તર 0 ઍક્સેસ નથી, તો પછી ઊંચા સ્તરો અર્થહીન છે." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,તરીકે જમા કરવુ DocType: Comment,Seen,દેખાય @@ -303,6 +310,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,ઉદાહરણ: DocType: Workflow,Defines workflow states and rules for a document.,એક દસ્તાવેજ માટે વર્કફ્લો સ્ટેટ્સ અને નિયમો વ્યાખ્યાયિત કરે છે. DocType: Workflow State,Filter,ફિલ્ટર @@ -325,6 +333,7 @@ DocType: Activity Log,Closed,બંધ DocType: Blog Settings,Blog Title,બ્લોગ શીર્ષક apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,સ્ટાન્ડર્ડ ભૂમિકા નિષ્ક્રિય કરી શકાય નહિં apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,ગપસપ પ્રકાર +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,નકશો સ્તંભો DocType: Address,Mizoram,મિઝોરમ DocType: Newsletter,Newsletter,ન્યૂઝલેટર apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,દ્વારા ક્રમમાં પેટા ક્વેરી ઉપયોગ કરી શકતાં નથી @@ -358,6 +367,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,New Value,નવું apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,એક કૉલમ ઉમેરો apps/frappe/frappe/www/contact.html,Your email address,તમારું ઈ મેઈલ સરનામું DocType: Desktop Icon,Module,મોડ્યુલ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{1} માંથી {0} રેકોર્ડ સફળતાપૂર્વક અપડેટ થયા. DocType: Notification,Send Alert On,ચેતવણી પર મોકલો DocType: Customize Form,"Customize Label, Print Hide, Default etc.","લેબલ, પ્રિન્ટ છુપાવો કસ્ટમાઇઝ, મૂળભૂત વગેરે" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ફાઇલોને અનઝિપ કરી રહ્યું છે ... @@ -388,6 +398,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} વપરાશકર્તા કાઢી શકાતી નથી DocType: System Settings,Currency Precision,કરન્સી શુદ્ધતા apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,અન્ય વ્યવહાર આ એક અવરોધિત છે. થોડા સેકન્ડોમાં કરીને ફરીથી પ્રયત્ન કરો. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,ગાળકો સાફ કરો DocType: Test Runner,App,એપ્લિકેશન apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,જોડાણોને નવા દસ્તાવેજમાં યોગ્ય રીતે લિંક કરી શકાતા નથી DocType: Chat Message Attachment,Attachment,જોડાણ @@ -412,6 +423,7 @@ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ડેશબોર apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,આ સમયે ઇમેઇલ્સ મોકલવા માટે અસમર્થ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,શોધ અથવા આદેશ લખો DocType: Activity Log,Timeline Name,સમયરેખા નામ +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,ફક્ત એક {0} પ્રાથમિક તરીકે સેટ કરી શકાય છે. DocType: Email Account,e.g. smtp.gmail.com,દા.ત. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,આ નવો નિયમ ઉમેરો DocType: Contact,Sales Master Manager,સેલ્સ માસ્ટર વ્યવસ્થાપક @@ -428,7 +440,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,એલડીએપી મધ્યનું નામ ક્ષેત્ર apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} ના {0} આયાત કરી રહ્યું છે DocType: GCalendar Account,Allow GCalendar Access,GCalendar ઍક્સેસને મંજૂરી આપો -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} ફરજિયાત ક્ષેત્ર છે +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ફરજિયાત ક્ષેત્ર છે apps/frappe/frappe/templates/includes/login/login.js,Login token required,લૉગિન ટોકન જરૂરી apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,માસિક ક્રમ: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,બહુવિધ સૂચિ આઇટમ્સ પસંદ કરો @@ -458,6 +470,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},કનેક્ટ ક apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,પોતે દ્વારા એક શબ્દ ધારી કરવા માટે સરળ છે. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},સ્વત Auto સોંપણી નિષ્ફળ: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,શોધો ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,કંપની પસંદ કરો apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,મર્જ વચ્ચે જ શક્ય છે ગ્રુપ જૂથ અથવા પાંદડાના નોડ-થી-પાંદડાના નોડ apps/frappe/frappe/utils/file_manager.py,Added {0},ઉમેરાયેલ {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,કોઈ મેળ ખાતા રેકોર્ડ. શોધ કંઈક નવું @@ -470,7 +483,6 @@ DocType: Google Settings,OAuth Client ID,OAuth ક્લાયંટ ID DocType: Auto Repeat,Subject,વિષય apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ડેસ્ક પર પાછા DocType: Web Form,Amount Based On Field,રકમ ક્ષેત્ર પર આધારિત -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટમાંથી ડિફ defaultલ્ટ ઇમેઇલ એકાઉન્ટ સેટ કરો apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,વપરાશકર્તા શેર માટે ફરજિયાત છે DocType: DocField,Hidden,હિડન DocType: Web Form,Allow Incomplete Forms,અપૂર્ણ સ્વરૂપો માટે પરવાનગી આપે છે @@ -507,6 +519,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} અને {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,વાતચીત શરૂ કરો DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",હંમેશા પ્રિન્ટીંગ ડ્રાફ્ટ દસ્તાવેજો માટે મથાળું "ડ્રાફ્ટ" ઉમેરો apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},સૂચનામાં ભૂલ: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલાં DocType: Data Migration Run,Current Mapping Start,વર્તમાન મેપિંગ પ્રારંભ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ઇમેઇલ સ્પામ તરીકે માર્ક કરવામાં આવી છે DocType: Comment,Website Manager,વેબસાઇટ મેનેજર @@ -544,6 +557,7 @@ DocType: Workflow State,barcode,બારકોડ apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,સબ-ક્વેરી અથવા ફંક્શનનો ઉપયોગ પ્રતિબંધિત છે apps/frappe/frappe/config/customization.py,Add your own translations,તમારા પોતાના અનુવાદો ઉમેરી DocType: Country,Country Name,દેશ નામ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,ખાલી Templateાંચો DocType: About Us Team Member,About Us Team Member,અમારો ટીમ સભ્ય વિશે apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","પરવાનગીઓ, રિપોર્ટ, આયાત, નિકાસ, પ્રિન્ટ, ઇમેઇલ અને સેટ, વપરાશકર્તા પરવાનગીઓ લખો બનાવો, કાઢી નાખો, સબમિટ રદ સુધારો, ભૂમિકાઓ અને વાંચન જેવી અધિકારો સુયોજિત કરીને દસ્તાવેજ પ્રકાર (જેને DocTypes) પર સુયોજિત થાય છે." DocType: Event,Wednesday,બુધવારે @@ -555,6 +569,7 @@ DocType: Website Settings,Website Theme Image Link,વેબસાઇટ થી DocType: Web Form,Sidebar Items,સાઇડબાર વસ્તુઓ DocType: Web Form,Show as Grid,ગ્રીડ તરીકે બતાવો apps/frappe/frappe/installer.py,App {0} already installed,એપ્લિકેશન {0} પહેલાથી જ ઇન્સ્ટોલ કરેલું +DocType: Energy Point Rule,Users assigned to the reference document will get points.,સંદર્ભ દસ્તાવેજને સોંપાયેલ વપરાશકર્તાઓને પોઇન્ટ મળશે. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,કોઈ પૂર્વાવલોકન નથી DocType: Workflow State,exclamation-sign,ઉદ્ગારવાચક સાઇન apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,અનઝીપ્ડ {0} ફાઇલો @@ -590,6 +605,7 @@ DocType: Notification,Days Before,દિવસ પહેલા apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,દૈનિક ઘટનાઓ એ જ દિવસે સમાપ્ત થવી જોઈએ. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,સંપાદિત કરો ... DocType: Workflow State,volume-down,વોલ્યુંમ-નીચે +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,આ આઇપી સરનામાંથી પ્રવેશને મંજૂરી નથી apps/frappe/frappe/desk/reportview.py,No Tags,કોઈ ટૅગ્સ DocType: Email Account,Send Notification to,સંદેશ મોકલો DocType: DocField,Collapsible,સંકેલી શકાય એવું @@ -645,6 +661,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,વિકાસકર્તા apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,બનાવનાર 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,ડિફaultલ્ટ છાપવાની ભાષા apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,પૂર્વજો apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} રુટ કાઢી શકાતી નથી @@ -686,6 +703,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",લક્ષ્ય = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,યજમાન +DocType: Data Import Beta,Import File,ફાઇલ આયાત કરો apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,કૉલમ {0} પહેલાથી જ અસ્તિત્વમાં છે. DocType: ToDo,High,હાઇ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,નવી ઇવેન્ટ @@ -714,8 +732,6 @@ DocType: User,Send Notifications for Email threads,ઇમેઇલ થ્રે apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,નથી વિકાસકર્તા મોડમાં apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ફાઇલ બેકઅપ તૈયાર છે -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",ગુણાકાર મૂલ્ય સાથેના ગુણાકાર પછી મહત્તમ પોઇન્ટ્સની મંજૂરી છે (નોંધ: કોઈ મર્યાદા સેટ મૂલ્ય 0 તરીકે નહીં) DocType: DocField,In Global Search,વૈશ્વિક શોધ DocType: System Settings,Brute Force Security,બ્રુટ ફોર્સ સિક્યુરિટી DocType: Workflow State,indent-left,ઇન્ડેન્ટ ડાબી @@ -757,6 +773,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',વપરાશકર્તા '{0}' પહેલાથી જ ભૂમિકા છે '{1}' DocType: System Settings,Two Factor Authentication method,બે પરિબળ પ્રમાણીકરણ પદ્ધતિ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,પ્રથમ નામ સેટ કરો અને રેકોર્ડ સાચવો. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 રેકોર્ડ્સ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},સાથે વહેંચાયેલ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,અનસબ્સ્ક્રાઇબ DocType: View Log,Reference Name,સંદર્ભ નામ @@ -805,6 +822,7 @@ 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,ઇમેઇલ સ્થિતિ ટ્રૅક કરો DocType: Note,Notify Users On Every Login,દર લૉગિન પર સૂચિત વપરાશકર્તાઓ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,સફળતાપૂર્વક {0} રેકોર્ડ્સને અપડેટ કર્યું. DocType: PayPal Settings,API Password,API પાસવર્ડ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Python મોડ્યુલ દાખલ કરો અથવા કનેક્ટર પ્રકાર પસંદ કરો apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,FIELDNAME કસ્ટમ ફીલ્ડ માટે સેટ નથી @@ -833,9 +851,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,કિંમત બદલાઈ apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},ડુપ્લિકેટ નામ {0} {1} -DocType: Email Queue,Retry,ફરી પ્રયાસ કરો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,ફરી પ્રયાસ કરો +DocType: Contact Phone,Number,સંખ્યા DocType: Web Form Field,Web Form Field,વેબ ફોર્મ ક્ષેત્ર apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,તમારી પાસેથી એક નવો સંદેશ છે: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML સંપાદિત કરો apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,કૃપા કરીને પુનઃદિશામાન URL દાખલ કરો apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Restore Original Permissions,મૂળ પરવાનગીઓ પુનઃસ્થાપિત @@ -858,7 +878,7 @@ DocType: Notification,View Properties (via Customize Form),(કસ્ટમા apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,તેને પસંદ કરવા માટે ફાઇલ પર ક્લિક કરો. DocType: Note Seen By,Note Seen By,દ્વારા જોઈ નોંધ apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,વધુ વળે સાથે લાંબા કીબોર્ડ પેટર્ન ઉપયોગ કરવાનો પ્રયાસ કરો -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,લીડરબોર્ડ +,LeaderBoard,લીડરબોર્ડ DocType: DocType,Default Sort Order,ડિફોલ્ટ સortર્ટ Orderર્ડર DocType: Address,Rajasthan,રાજસ્થાન DocType: Email Template,Email Reply Help,ઇમેઇલ જવાબ સહાય @@ -893,6 +913,7 @@ apps/frappe/frappe/utils/data.py,Cent,ટકા apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ઇમેઇલ કંપોઝ apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","વર્કફ્લો માટે સ્ટેટસ (દા.ત. ડ્રાફ્ટ મંજૂર, રદ)." DocType: Print Settings,Allow Print for Draft,ડ્રાફ્ટ માટે િ ટ કરો પરવાનગી આપે છે +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/link_selector.js,Set Quantity,સેટ જથ્થો apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,તેની ખાતરી કરવા માટે આ દસ્તાવેજ સબમિટ DocType: Contact,Unsubscribed,અનસબ્સ્ક્રાઇબ્ડ @@ -923,6 +944,7 @@ DocType: LDAP Settings,Organizational Unit for Users,વપરાશકર્ત ,Transaction Log Report,ટ્રાન્ઝેક્શન લોગ રિપોર્ટ DocType: Custom DocPerm,Custom DocPerm,કસ્ટમ DocPerm DocType: Newsletter,Send Unsubscribe Link,મોકલો અનસબ્સ્ક્રાઇબ લિંક +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,કેટલાક કડી થયેલ રેકોર્ડ્સ છે જે અમે તમારી ફાઇલ આયાત કરતા પહેલા બનાવવાની જરૂર છે. શું તમે નીચે આપેલા ગુમ થયેલ રેકોર્ડ્સ આપમેળે બનાવવા માંગો છો? DocType: Access Log,Method,પદ્ધતિ DocType: Report,Script Report,સ્ક્રિપ્ટ રિપોર્ટ DocType: OAuth Authorization Code,Scopes,સ્કોપ્સ @@ -963,6 +985,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,સફળતાપૂર્વક અપલોડ કર્યું apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,તમે ઇન્ટરનેટ સાથે જોડાયેલા છો DocType: Social Login Key,Enable Social Login,સામાજિક લૉગિન સક્ષમ કરો +DocType: Data Import Beta,Warnings,ચેતવણી DocType: Communication,Event,ઇવેન્ટ apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} પર, {1} લખ્યું:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,ધોરણ ક્ષેત્ર કાઢી શકાતું નથી. તમે ઇચ્છો તો તમે તેને છુપાવી શકો છો @@ -1018,6 +1041,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,નીચ DocType: Kanban Board Column,Blue,બ્લુ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,બધા કસ્ટમાઇઝેશન દૂર કરવામાં આવશે. ખાતરી કરો. DocType: Page,Page HTML,પેજમાં HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,ભૂલવાળી પંક્તિઓ નિકાસ કરો apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,જૂથ નામ ખાલી હોઈ શકતું નથી. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,વધુ ગાંઠો માત્ર 'ગ્રુપ' પ્રકાર ગાંઠો હેઠળ બનાવી શકાય છે DocType: SMS Parameter,Header,મથાળું @@ -1056,13 +1080,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,ટાઇમ્ડ આઉટ વિનંતી apps/frappe/frappe/config/settings.py,Enable / Disable Domains,સક્ષમ કરો / અક્ષમ કરો ડોમેન્સ DocType: Role Permission for Page and Report,Allow Roles,ભૂમિકાઓ મંજૂરી આપો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,સફળતાપૂર્વક {1} માંથી {0} રેકોર્ડ્સ આયાત કર્યા. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","સરળ પાયથોન અભિવ્યક્તિ, ઉદાહરણ: સ્થિતિ ("અમાન્ય")" DocType: User,Last Active,સક્રિય છેલ્લું DocType: Email Account,SMTP Settings for outgoing emails,આઉટગોઇંગ ઇમેઇલ્સ માટે SMTP સેટિંગ્સ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,એક પસંદ કરો DocType: Data Export,Filter List,ફિલ્ટર સૂચિ DocType: Data Export,Excel,એક્સેલ -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,તમારો પાસવર્ડ સુધારી દેવામાં આવ્યુ છે. અહીં તમારા નવા પાસવર્ડ છે DocType: Email Account,Auto Reply Message,ઓટો જવાબ સંદેશ DocType: Data Migration Mapping,Condition,કન્ડિશન apps/frappe/frappe/utils/data.py,{0} hours ago,{0} કલાક પહેલા @@ -1071,7 +1095,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,વપરાશકર્તા ID DocType: Communication,Sent,મોકલ્યું DocType: Address,Kerala,કેરળ -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,વહીવટ DocType: User,Simultaneous Sessions,એક સાથે સત્રો DocType: Social Login Key,Client Credentials,ક્લાઈન્ટ ઓળખપત્રો @@ -1103,7 +1126,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},સુ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,માસ્ટર DocType: DocType,User Cannot Create,વપરાશકર્તા બનાવી શકતા નથી apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,સફળતાપૂર્વક થઈ ગયું -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,ફોલ્ડર {0} અસ્તિત્વમાં નથી apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ડ્રૉપબૉક્સ વપરાશ મંજૂર છે! DocType: Customize Form,Enter Form Type,ફોર્મ પ્રકાર દાખલ કરો DocType: Google Drive,Authorize Google Drive Access,ગૂગલ ડ્રાઇવ Authorક્સેસને અધિકૃત કરો @@ -1111,7 +1133,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,કોઈ રેકોર્ડ ટૅગ કર્યા છે. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ક્ષેત્ર દૂર apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,તમે ઇન્ટરનેટથી કનેક્ટેડ નથી થોડા સમય પછી ફરી પ્રયાસ કરો -DocType: User,Send Password Update Notification,પાસવર્ડ અપડેટ સૂચન મોકલો apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Doctype, Doctype પરવાનગી આપે છે. સાવચેત રહો!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","પ્રિન્ટિંગ, ઇમેઇલ માટે વૈવિધ્યપૂર્ણ ફોર્મેટ્સ" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} નો સરવાળો @@ -1194,6 +1215,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,ખોટો ચક apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google સંપર્કો એકીકરણ અક્ષમ કર્યું છે. DocType: Assignment Rule,Description,વર્ણન DocType: Print Settings,Repeat Header and Footer in PDF,પીડીએફમાં હેડર અને ફૂટર પુનરાવર્તન +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,નિષ્ફળતા DocType: Address Template,Is Default,મૂળભૂત છે DocType: Data Migration Connector,Connector Type,કનેક્ટર પ્રકાર apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,કૉલમ નામ ખાલી ન હોઈ શકે @@ -1206,6 +1228,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} પૃષ્ઠ 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,સ્તંભોને પર આધારિત +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/model/document.py,Action Failed,ક્રિયા નિષ્ફળ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,વપરાશકર્તા માટે @@ -1256,6 +1279,7 @@ DocType: Print Settings,Enable Raw Printing,કાચો મુદ્રણ સ DocType: Website Route Redirect,Source,સોર્સ apps/frappe/frappe/templates/includes/list/filters.html,clear,સ્પષ્ટ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,સમાપ્ત +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,સેટઅપ> વપરાશકર્તા DocType: Prepared Report,Filter Values,ફિલ્ટર મૂલ્યો DocType: Communication,User Tags,વપરાશકર્તા ટૅગ્સ DocType: Data Migration Run,Fail,નિષ્ફળ @@ -1311,6 +1335,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,અ ,Activity,પ્રવૃત્તિ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","મદદ:, સિસ્ટમ અન્ય રેકોર્ડ લિંક લિંક URL તરીકે "# ફોર્મ / નોંધ / [નોંધ]" વાપરો. (ઉપયોગ નથી "http: //")" DocType: User Permission,Allow,મંજૂરી આપો +DocType: Data Import Beta,Update Existing Records,હાલના રેકોર્ડ્સને અપડેટ કરો apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,ચાલો વારંવાર શબ્દો અને અક્ષરો ટાળવા DocType: Energy Point Rule,Energy Point Rule,એનર્જી પોઇન્ટ નિયમ DocType: Communication,Delayed,વિલંબિત @@ -1323,9 +1348,7 @@ DocType: Milestone,Track Field,ટ્રેક ક્ષેત્ર DocType: Notification,Set Property After Alert,ચેતવણી પછી ગુણધર્મ સેટ apps/frappe/frappe/config/customization.py,Add fields to forms.,સ્વરૂપો ક્ષેત્રો ઉમેરો. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,કંઈક લાગે છે કે આ સાઇટના પેપલ રૂપરેખાંકન સાથે ખોટું છે. -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/sidebar/review.js,Add Review,સમીક્ષા ઉમેરો -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ફontન્ટ સાઇઝ (પીએક્સ) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,ફક્ત સ્ટાન્ડર્ડ ડ fromકટાઇપ્સને કસ્ટમાઇઝ ફોર્મથી કસ્ટમાઇઝ કરવાની મંજૂરી છે. DocType: Email Account,Sendgrid,Sendgrid @@ -1361,6 +1384,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ફ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,માફ કરશો! તમે ઓટો પેદા ટિપ્પણીઓ કાઢી શકતા નથી DocType: Google Settings,Used For Google Maps Integration.,ગૂગલ મેપ્સ એકીકરણ માટે વપરાય છે. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,સંદર્ભ Doctype +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,કોઈ રેકોર્ડની નિકાસ કરવામાં આવશે નહીં DocType: User,System User,સિસ્ટમ વપરાશકર્તા DocType: Report,Is Standard,ધોરણ છે DocType: Desktop Icon,_report,_report @@ -1374,6 +1398,7 @@ DocType: Workflow State,minus-sign,ઓછા સાઇન apps/frappe/frappe/public/js/frappe/request.js,Not Found,મળ્યું નથી apps/frappe/frappe/www/printview.py,No {0} permission,કોઈ {0} પરવાનગી apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,નિકાસ વૈવિધ્યપૂર્ણ પરવાનગીઓ +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,કોઈ આઇટમ્સ મળી નથી DocType: Data Export,Fields Multicheck,ફીલ્ડ્સ મલ્ટિચેક DocType: Activity Log,Login,પ્રવેશ DocType: Web Form,Payments,ચુકવણીઓ @@ -1433,7 +1458,7 @@ DocType: Email Account,Default Incoming,મૂળભૂત ઇનકમિંગ DocType: Workflow State,repeat,વારંવાર DocType: Website Settings,Banner,બૅનર DocType: Role,"If disabled, this role will be removed from all users.","જો અક્ષમ છે, આ ભૂમિકા બધા વપરાશકર્તાઓ દૂર કરવામાં આવશે." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} સૂચિ પર જાઓ +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,શોધ પર મદદ DocType: Milestone,Milestone Tracker,માઇલ સ્ટોન ટ્રેકર apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,રજિસ્ટર્ડ પરંતુ વિકલાંગ @@ -1447,6 +1472,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,સ્થાનિક ક DocType: DocType,Track Changes,ફેરફારો ટ્રેક DocType: Workflow State,Check,ચેક DocType: Chat Profile,Offline,ઑફલાઇન +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},સફળતાપૂર્વક આયાત કરેલ {0} DocType: User,API Key,API કી DocType: Email Account,Send unsubscribe message in email,ઇમેઇલમાં અનસબ્સ્ક્રાઇબ સંદેશ મોકલો apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,શીર્ષક સંપાદિત કરો @@ -1473,10 +1499,10 @@ 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/form/footer/timeline.js,changed value of {0} {1},{0} {1} નું મૂલ્ય બદલાયું 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,કુલ પૃષ્ઠો -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                    No results found for '

                                    ,

                                    'માટે કોઈ પરિણામ મળ્યાં નથી

                                    DocType: DocField,Attach Image,છબી સાથે જોડે છે DocType: Workflow State,list-alt,યાદી-Alt apps/frappe/frappe/www/update-password.html,Password Updated,પાસવર્ડ અપડેટ @@ -1497,8 +1523,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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,ચેટ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,સેટઅપ> વપરાશકર્તા પરવાનગી DocType: LDAP Group Mapping,LDAP Group Mapping,એલડીએપી ગ્રુપ મેપિંગ DocType: Dashboard Chart,Chart Options,ચાર્ટ વિકલ્પો +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,શીર્ષક વિનાની કumnલમ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} થી {1} માટે {2} પંક્તિ # {3} DocType: Communication,Expired,સમાપ્ત apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,તમે ઉપયોગ કરી રહ્યાં છો તે ટોકન અમાન્ય છે એવું લાગે છે! @@ -1508,6 +1536,7 @@ DocType: DocType,System,સિસ્ટમ DocType: Web Form,Max Attachment Size (in MB),મેક્સ જોડાણ માપ (MB માં) apps/frappe/frappe/www/login.html,Have an account? Login,એક એકાઉન્ટ છે? પ્રવેશ DocType: Workflow State,arrow-down,ડાઉન તીરને +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},પંક્તિ {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},વપરાશકર્તાને કાઢવા માટે મંજૂરી નથી {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} ના {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,છેલ્લા અપડેટ @@ -1523,6 +1552,7 @@ DocType: Custom Role,Custom Role,કસ્ટમ ભૂમિકા apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,ઘર / ટેસ્ટ ફોલ્ડરમાં 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,તમારો પાસવર્ડ દાખલ કરો DocType: Dropbox Settings,Dropbox Access Secret,ડ્રૉપબૉક્સ ઍક્સેસ સિક્રેટ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ફરજિયાત) 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.,ફાઈલમાં કોઈ માહિતી મળી નથી. કૃપા કરીને નવી ફાઇલને ડેટા સાથે ફરીથી જોડો. @@ -1593,6 +1623,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ડેશ apps/frappe/frappe/desk/form/assign_to.py,New Message,નવો સંદેશ DocType: File,Preview HTML,પૂર્વાવલોકન HTML DocType: Desktop Icon,query-report,ક્વેરી અહેવાલ +DocType: Data Import Beta,Template Warnings,Templateાંચો ચેતવણીઓ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ગાળકો સાચવી DocType: DocField,Percent,ટકા apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,ફિલ્ટર્સ સેટ કરો @@ -1614,6 +1645,7 @@ DocType: Custom Field,Custom,કસ્ટમ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","જો સક્ષમ કરેલ હોય, તો વપરાશકર્તાઓ કે જેઓ પ્રતિબંધિત IP એડ્રેસથી પ્રવેશ કરે છે, તેઓને બે ફેક્ટર ઑથ માટે પૂછવામાં આવશે નહીં" DocType: Auto Repeat,Get Contacts,સંપર્કો મેળવો apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},હેઠળ દાખલ પોસ્ટ્સ {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,શીર્ષક વિનાની ક Colલમ છોડવી DocType: Notification,Send alert if date matches this field's value,"તારીખ આ ક્ષેત્ર કિંમત સાથે બંધબેસે, તો ચેતવણી મોકલી" DocType: Workflow,Transitions,અનુવાદ apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} માટે {2} @@ -1637,6 +1669,7 @@ DocType: Workflow State,step-backward,પગલું પછાત apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,તમારી સાઇટ રૂપરેખા ડ્રૉપબૉક્સ વપરાશ કીઓ સુયોજિત કરો apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,આ ઈમેઈલ સરનામાને મોકલવા માટે પરવાનગી આપે છે આ રેકોર્ડ કાઢી નાખો +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","જો બિન-માનક બંદર (દા.ત. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,શોર્ટકટ્સને કસ્ટમાઇઝ કરો apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,માત્ર ફરજિયાત ક્ષેત્રો નવા વિક્રમો માટે જરૂરી છે. જો તમે ઈચ્છો તો તમે બિન-ફરજિયાત કૉલમ કાઢી શકો છો. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,વધુ પ્રવૃત્તિ બતાવો @@ -1741,7 +1774,9 @@ 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,પત્ર DocType: DocType,"Naming Options:
                                    1. field:[fieldname] - By Field
                                    2. naming_series: - By Naming Series (field called naming_series must be present
                                    3. Prompt - Prompt user for a name
                                    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                    5. @@ -1755,6 +1790,7 @@ DocType: GCalendar Account,Next Sync Token,આગળ સમન્વયન ટ DocType: Energy Point Settings,Energy Point Settings,એનર્જી પોઇન્ટ સેટિંગ્સ DocType: Async Task,Succeeded,સફળ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},જરૂરી ફરજિયાત ક્ષેત્રો {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                      No results found for '

                                      ,

                                      'માટે કોઈ પરિણામ મળ્યાં નથી

                                      apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,માટે ફરીથી સેટ પરવાનગીઓ {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,વપરાશકર્તાઓ અને પરવાનગીઓ DocType: S3 Backup Settings,S3 Backup Settings,S3 બેકઅપ સેટિંગ્સ @@ -1825,6 +1861,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,માં DocType: Notification,Value Change,કિંમત બદલો DocType: Google Contacts,Authorize Google Contacts Access,ગૂગલ સંપર્કો Authorક્સેસને અધિકૃત કરો apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,રિપોર્ટમાંથી માત્ર સંખ્યાત્મક ફીલ્ડ્સ બતાવી રહ્યું છે +DocType: Data Import Beta,Import Type,આયાતનો પ્રકાર DocType: Access Log,HTML Page,એચટીએમએલ પૃષ્ઠ DocType: Address,Subsidiary,સબસિડીયરી apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,ક્યૂઝેડ ટ્રે સાથે જોડાણનો પ્રયાસ કરી રહ્યું છે ... @@ -1835,7 +1872,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,અમા DocType: Custom DocPerm,Write,લખો apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,માત્ર સંચાલક ક્વેરી / સ્ક્રિપ્ટ અહેવાલ બનાવવા માટે મંજૂરી apps/frappe/frappe/public/js/frappe/form/save.js,Updating,સુધારી રહ્યા છીએ -DocType: File,Preview,પૂર્વદર્શન +DocType: Data Import Beta,Preview,પૂર્વદર્શન apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ક્ષેત્ર "કિંમત" ફરજિયાત છે. અપડેટ કરવાની કિંમત ઉલ્લેખ કરો DocType: Customize Form,Use this fieldname to generate title,શીર્ષક પેદા કરવા માટે આ વાપરો FIELDNAME apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,આયાત ઇમેઇલ @@ -1917,6 +1954,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,બ્રા DocType: Social Login Key,Client URLs,ક્લાયન્ટ URL apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,કેટલીક માહિતી ગુમ થયેલ હોય apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} સફળતાપૂર્વક બનાવ્યું +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","{1}, {2} ના {0} અવગણો" DocType: Custom DocPerm,Cancel,રદ કરો apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,બલ્ક કા Deleteી નાખો apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,{0} અસ્તિત્વમાં નથી ફાઇલ @@ -1944,7 +1982,6 @@ DocType: GCalendar Account,Session Token,સત્ર ટોકન DocType: Currency,Symbol,નિશાનીનો apps/frappe/frappe/model/base_document.py,Row #{0}:,ROW # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,ડેટા કાleી નાખવાની પુષ્ટિ કરો -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,નવો પાસવર્ડ ઇમેઇલ apps/frappe/frappe/auth.py,Login not allowed at this time,આ સમય પર માન્ય નથી લૉગિન DocType: Data Migration Run,Current Mapping Action,વર્તમાન મેપિંગ ઍક્શન DocType: Dashboard Chart Source,Source Name,સોર્સ નામ @@ -1957,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,પ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ત્યારબાદ DocType: LDAP Settings,LDAP Email Field,LDAP ઇમેઇલ ક્ષેત્ર apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} યાદી +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} રેકોર્ડ નિકાસ કરો apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,પહેલેથી જ વપરાશકર્તા માં યાદી કરવા માટે DocType: User Email,Enable Outgoing,આઉટગોઇંગ સક્ષમ DocType: Address,Fax,ફેક્સ @@ -2014,7 +2052,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,દસ્તાવેજો છાપો apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ક્ષેત્ર પર જાઓ DocType: Contact Us Settings,Forward To Email Address,ફોરવર્ડ ઇમેઇલ સરનામું +DocType: Contact Phone,Is Primary Phone,પ્રાઇમરી ફોન છે DocType: Auto Email Report,Weekdays,અઠવાડિયાના દિવસો +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} રેકોર્ડની નિકાસ કરવામાં આવશે apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,શીર્ષક ક્ષેત્ર માન્ય FIELDNAME હોવા જ જોઈએ DocType: Post Comment,Post Comment,ટિપ્પણી પોસ્ટ કરો apps/frappe/frappe/config/core.py,Documents,દસ્તાવેજો @@ -2032,7 +2072,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",આ ક્ષેત્ર દેખાશે તો જ FIELDNAME અહીં વ્યાખ્યાયિત મૂલ્ય ધરાવે છે અથવા નિયમો સાચા (ઉદાહરણો) છે: myfield eval: doc.myfield == 'મારું કિંમત' eval: doc.age> 18 DocType: Social Login Key,Office 365,ઓફિસ 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,આજે +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","તમે આ સમૂહ છે એકવાર, વપરાશકર્તાઓ સક્ષમ વપરાશ દસ્તાવેજો હશે. (દા.ત. પોસ્ટ બ્લોગ) લિંક (દા.ત.. બ્લોગર) અસ્તિત્વમાં છે." +DocType: Data Import Beta,Submit After Import,આયાત પછી સબમિટ કરો DocType: Error Log,Log of Scheduler Errors,નિયોજક ભૂલો લોગ DocType: User,Bio,બાયો DocType: OAuth Client,App Client Secret,એપ્લિકેશન ક્લાઈન્ટ સિક્રેટ @@ -2051,10 +2093,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,લૉગિન પાનું અક્ષમ કરો ગ્રાહક સાઇનઅપ લિંક apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ માલિક સોંપેલ DocType: Workflow State,arrow-left,તીર છોડી +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1 રેકોર્ડ નિકાસ કરો DocType: Workflow State,fullscreen,"પૂર્ણ - પટ, આખો પડદો" DocType: Chat Token,Chat Token,ચેટ ટોકન apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ચાર્ટ બનાવો apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,આયાત કરશો નહીં DocType: Web Page,Center,કેન્દ્ર DocType: Notification,Value To Be Set,કિંમત સેટ થવા દો apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} સંપાદિત કરો @@ -2074,6 +2118,7 @@ DocType: Print Format,Show Section Headings,બતાવો વિભાગ મ DocType: Bulk Update,Limit,મર્યાદા apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},અમને સાથે સંકળાયેલ {0} ડેટા કાtionી નાખવાની વિનંતી પ્રાપ્ત થઈ છે: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,નવું વિભાગ ઉમેરો +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,ફિલ્ટર કરેલ રેકોર્ડ્સ apps/frappe/frappe/www/printview.py,No template found at path: {0},પાથ પર મળી કોઈ ઢાંચો: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,કોઈ ઇમેઇલ એકાઉન્ટ DocType: Comment,Cancelled,રદ @@ -2158,7 +2203,9 @@ 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} 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,તમારા લૉગિન આઈડી હશે +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,વૈશ્વિક શોધ દસ્તાવેજ પ્રકાર ફરીથી સેટ કરો. ,Lead Conversion Time,લીડ કન્વર્ઝન સમય apps/frappe/frappe/desk/page/activity/activity.js,Build Report,રિપોર્ટ બનાવો DocType: Note,Notify users with a popup when they log in,જ્યારે તેઓ પ્રવેશ વપરાશકર્તાઓ પોપઅપ સાથે સૂચિત @@ -2178,8 +2225,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,બંધ કરો 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,સેટઅપ> વપરાશકર્તા પરવાનગી -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,સુધારો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,સુધારો DocType: Transaction Log,Transaction Hash,ટ્રાન્ઝેક્શન હેશ DocType: Error Snapshot,Snapshot View,સ્નેપશોટ જુઓ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,મોકલતા પહેલા ન્યૂઝલેટર સેવ કરો @@ -2195,6 +2241,7 @@ DocType: Data Import,In Progress,પ્રગતિમાં apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,બેકઅપ માટે કતારબદ્ધ. તે એક કલાક માટે થોડી મિનિટો લાગી શકે છે. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,વપરાશકર્તા પરવાનગી પહેલાથી અસ્તિત્વમાં છે +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},ક્ષેત્ર {1} માટે ક columnલમ {0} ને મેપિંગ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} જુઓ DocType: User,Hourly,અવરલી apps/frappe/frappe/config/integrations.py,Register OAuth Client App,નોંધણી ઑથ ક્લાઈન્ટ એપ્લિકેશન @@ -2206,7 +2253,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,પોઇન્ટ DocType: SMS Settings,SMS Gateway URL,એસએમએસ ગેટવે URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ન હોઈ શકે "{2}". તે એક પ્રયત્ન કરીશું "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} અથવા {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,પાસવર્ડ અપડેટ DocType: Workflow State,trash,કચરો DocType: System Settings,Older backups will be automatically deleted,જૂની બેકઅપ આપોઆપ કાઢી નાખવામાં આવશે apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,અમાન્ય ઍક્સેસ કી ID અથવા ગુપ્ત ઍક્સેસ કી @@ -2233,6 +2279,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,ક DocType: Address,Preferred Shipping Address,મનપસંદ શિપિંગ સરનામું apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,પત્ર વડા સાથે apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} બનાવવામાં આ {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ સેટ નથી. કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી નવું ઇમેઇલ એકાઉન્ટ બનાવો DocType: S3 Backup Settings,eu-west-1,ઇયુ-વેસ્ટ -1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","જો આ ચકાસાયેલું હોય, તો માન્ય ડેટા સાથેની પંક્તિઓ આયાત કરવામાં આવશે અને અયોગ્ય પંક્તિઓ એક નવી ફાઇલમાં ડમ્પ કરવામાં આવશે, જે તમારા માટે પછીથી આયાત કરે છે." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,દસ્તાવેજ ભૂમિકા વપરાશકર્તાઓ દ્વારા માત્ર સંપાદનયોગ્ય છે @@ -2259,6 +2306,7 @@ DocType: Custom Field,Is Mandatory Field,ફરજિયાત ફીલ્ડ DocType: User,Website User,વેબસાઈટ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,કેટલાક કumnsલમ પીડીએફ પર છાપતી વખતે કાપી નાખવામાં આવી શકે છે. 10 ની નીચે ક colલમની સંખ્યા રાખવાનો પ્રયાસ કરો. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,નથી બરાબર +DocType: Data Import Beta,Don't Send Emails,ઇમેઇલ્સ મોકલો નહીં DocType: Integration Request,Integration Request Service,એકત્રિકરણ વિનંતી સેવા DocType: Access Log,Access Log,પ્રવેશ લોગ DocType: Website Script,Script to attach to all web pages.,સ્ક્રિપ્ટ બધા વેબ પાનાંઓ સાથે જોડે છે. @@ -2297,6 +2345,7 @@ DocType: Contact,Passive,નિષ્ક્રીય DocType: Auto Repeat,Accounts Manager,એકાઉન્ટ્સ વ્યવસ્થાપક apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} માટે સોંપણી apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,તમારી ચુકવણી રદ કરી છે. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટમાંથી ડિફ defaultલ્ટ ઇમેઇલ એકાઉન્ટ સેટ કરો apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,પસંદ કરો ફાઇલ પ્રકાર apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,બધુજ જુઓ DocType: Help Article,Knowledge Base Editor,નોલેજ બેઝ સંપાદક @@ -2328,6 +2377,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,ડેટા apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,દસ્તાવેજ સ્થિતિ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,મંજૂરી આવશ્યક છે +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,અમે તમારી ફાઇલ આયાત કરી શકીએ તે પહેલાં નીચેના રેકોર્ડ્સ બનાવવાની જરૂર છે. DocType: OAuth Authorization Code,OAuth Authorization Code,ઑથ અધિકૃતતા કોડ apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,આયાત કરવા માટે મંજૂરી નથી DocType: Deleted Document,Deleted DocType,ડિલીટ Doctype @@ -2380,7 +2430,6 @@ DocType: GCalendar Settings,Google API Credentials,Google API ઓળખપત્ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,સત્ર શરૂ કરવામાં નિષ્ફળ apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},આ ઇમેઇલ {0} મોકલવામાં આવે છે અને નકલ કરવામાં આવી હતી {1} DocType: Workflow State,th,મી -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલાં DocType: Social Login Key,Provider Name,પ્રદાતાનું નામ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},બનાવેલા નવા {0} DocType: Contact,Google Contacts,ગૂગલ સંપર્કો @@ -2388,6 +2437,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar એકાઉન્ટ DocType: Email Rule,Is Spam,સ્પામ છે apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},રિપોર્ટ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ઓપન {0} +DocType: Data Import Beta,Import Warnings,ચેતવણીઓ આયાત કરો DocType: OAuth Client,Default Redirect URI,મૂળભૂત રીડાયરેક્ટ યુઆરઆઇ DocType: Auto Repeat,Recipients,મેળવનારા DocType: System Settings,Choose authentication method to be used by all users,બધા વપરાશકર્તાઓ દ્વારા ઉપયોગમાં લેવા માટે પ્રમાણીકરણ પદ્ધતિ પસંદ કરો @@ -2502,6 +2552,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,અહેવ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,સ્લૅક વેહૂક ભૂલ DocType: Email Flag Queue,Unread,ન વાંચેલ DocType: Bulk Update,Desk,ડેસ્ક +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},અવગણતી ક columnલમ {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),ફિલ્ટર tuple અથવા સૂચિ (યાદી) માં જ હોવી જોઈએ apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,એક પસંદ કરો ક્વેરી લખો. નોંધ પરિણામ (બધી માહિતી એક જ વારમાં મોકલવામાં આવે છે) paged નથી. DocType: Email Account,Attachment Limit (MB),જોડાણ મર્યાદા (MB) @@ -2516,6 +2567,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,ન્યૂ બનાવો DocType: Workflow State,chevron-down,શેવરોન ડાઉન apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),માટે મોકલવામાં આવ્યો ન ઇમેઇલ {0} (અક્ષમ કરેલું / ઉમેદવારી દૂર) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,નિકાસ કરવા માટે ક્ષેત્રો પસંદ કરો DocType: Async Task,Traceback,ટ્રેસબેક DocType: Currency,Smallest Currency Fraction Value,નાના કરન્સી અપૂર્ણાંક ભાવ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,રિપોર્ટ તૈયાર કરી રહ્યા છે @@ -2524,6 +2576,7 @@ DocType: Workflow State,th-list,મી યાદી DocType: Web Page,Enable Comments,ટિપ્પણીઓ સક્ષમ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,નોંધો DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),માત્ર આ IP સરનામું માંથી વપરાશકર્તા નિયંત્રિત. ઘણાં IP સરનામાંઓ અલ્પવિરામથી અલગ કરીને ઉમેરી શકાય છે. પણ ગમે આંશિક IP સરનામાઓ સ્વીકારે (111.111.111) +DocType: Data Import Beta,Import Preview,પૂર્વાવલોકન આયાત કરો DocType: Communication,From,પ્રતિ apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,પ્રથમ જૂથ નોડ પસંદ કરો. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},શોધો {0} માં {1} @@ -2620,6 +2673,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,વચ્ચે DocType: Social Login Key,fairlogin,ફિરલિગિન DocType: Async Task,Queued,કતારબદ્ધ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,સેટઅપ> ફોર્મ કસ્ટમાઇઝ કરો DocType: Braintree Settings,Use Sandbox,ઉપયોગ સેન્ડબોક્સ apps/frappe/frappe/utils/goal.py,This month,આ મહિને apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,નવા કસ્ટમ પ્રિન્ટ ફોર્મેટ @@ -2634,6 +2688,7 @@ DocType: Session Default,Session Default,સત્ર ડિફોલ્ટ DocType: Chat Room,Last Message,છેલ્લું સંદેશ DocType: OAuth Bearer Token,Access Token,ઍક્સેસ ટોકન DocType: About Us Settings,Org History,સંસ્થા ઇતિહાસ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,લગભગ {0} મિનિટ બાકી છે DocType: Auto Repeat,Next Schedule Date,આગામી સૂચિ તારીખ DocType: Workflow,Workflow Name,વર્કફ્લો નામ DocType: DocShare,Notify by Email,ઇમેઇલ દ્વારા સૂચિત @@ -2663,6 +2718,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,લેખક apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,રેઝ્યૂમે મોકલવાનું apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,ફરીથી ખોલો +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,ચેતવણીઓ બતાવો apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,ખરીદી વપરાશકર્તા DocType: Data Migration Run,Push Failed,પુશ નિષ્ફળ @@ -2698,6 +2754,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,અદ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,તમને ન્યૂઝલેટર જોવાની પરવાનગી નથી. DocType: User,Interests,રૂચિ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,પાસવર્ડ રીસેટ સૂચનાઓ તમારા ઇમેઇલ પર મોકલવામાં આવ્યા છે +DocType: Energy Point Rule,Allot Points To Assigned Users,સોંપાયેલ વપરાશકર્તાઓને પોઇન્ટ ફાળવો apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",સ્તર 0 દસ્તાવેજ સ્તર પરવાનગીઓ \ ક્ષેત્ર સ્તર પરવાનગીઓ માટે ઉચ્ચ સ્તર છે. DocType: Contact Email,Is Primary,પ્રાથમિક છે @@ -2720,6 +2777,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,આયાત પ્રારંભ કરો +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,નિકાસ પ્રકાર DocType: Workflow State,circle-arrow-left,વર્તુળ તીર છોડી DocType: System Settings,Force User to Reset Password,પાસવર્ડને ફરીથી સેટ કરવા માટે વપરાશકર્તાને દબાણ કરો apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis કેશ સર્વર ચાલી રહ્યું નથી. સંચાલક / ટેક સપોર્ટ સંપર્ક કરો @@ -2731,12 +2789,15 @@ DocType: Contact,Middle Name,પિતાનું નામ DocType: Custom Field,Field Description,ક્ષેત્ર વર્ણન apps/frappe/frappe/model/naming.py,Name not set via Prompt,પ્રોમ્પ્ટ મારફતે સુયોજિત નથી Name apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ઇમેઇલ ઇનબૉક્સ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1}, {2} ના {0} ને અપડેટ કરી રહ્યું છે" DocType: Auto Email Report,Filters Display,ગાળકો ડિસ્પ્લે apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",સુધારણા કરવા માટે "સુધારેલા_થી" ક્ષેત્ર હાજર હોવું આવશ્યક છે. +DocType: Contact,Numbers,નંબર apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ગાળકો સાચવો DocType: Address,Plant,પ્લાન્ટ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,બધાને જવાબ આપો DocType: DocType,Setup,સ્થાપના +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,બધા રેકોર્ડ્સ DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ઇમેઇલ સરનામું જેના ગુગલ સંપર્કો સમન્વયિત થવાના છે. DocType: Email Account,Initial Sync Count,આરંભિક સમન્વયન કાઉન્ટ DocType: Workflow State,glass,કાચ @@ -2761,7 +2822,7 @@ DocType: Workflow State,font,ફોન્ટ DocType: DocType,Show Preview Popup,પૂર્વાવલોકન પોપઅપ બતાવો apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,આ એક ટોચના 100 સામાન્ય પાસવર્ડ છે. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,પૉપ-અપ્સ સક્ષમ કૃપા કરીને -DocType: User,Mobile No,મોબાઈલ નં +DocType: Contact,Mobile No,મોબાઈલ નં DocType: Communication,Text Content,લખાણ સામગ્રી DocType: Customize Form Field,Is Custom Field,કસ્ટમ ક્ષેત્ર છે DocType: Workflow,"If checked, all other workflows become inactive.","ચકાસાયેલ હોય, તો બધા અન્ય વર્કફ્લો નિષ્ક્રિય બની જાય છે." @@ -2807,6 +2868,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,સ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,નવી પ્રિંટ ફોર્મેટ નામ apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,સાઇડબાર ટૉગલ કરો DocType: Data Migration Run,Pull Insert,સામેલ કરો પુલ કરો +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",ગુણાકાર મૂલ્ય સાથેના ગુણાકાર પછી મહત્તમ પોઇન્ટ્સને મંજૂરી આપવામાં આવે છે (નોંધ: કોઈ મર્યાદા માટે આ ક્ષેત્રને ખાલી છોડી દો નહીં અથવા 0 સેટ કરો) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,અમાન્ય ટેમ્પલેટ apps/frappe/frappe/model/db_query.py,Illegal SQL Query,ગેરકાયદેસર એસક્યુએલ ક્વેરી apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,ફરજિયાત: DocType: Chat Message,Mentions,ઉલ્લેખો @@ -2820,6 +2884,7 @@ DocType: User Permission,User Permission,વપરાશકર્તા પર apps/frappe/frappe/templates/includes/blog/blog.html,Blog,બ્લોગ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ઇન્સ્ટોલ કરેલું નથી apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,માહિતી સાથે ડાઉનલોડ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} માટેના મૂલ્યો બદલાયા DocType: Workflow State,hand-right,હાથ અધિકાર DocType: Website Settings,Subdomain,સબડોમેઇન DocType: S3 Backup Settings,Region,પ્રદેશ @@ -2846,9 +2911,11 @@ DocType: Braintree Settings,Public Key,સાર્વજનિક કી DocType: GSuite Settings,GSuite Settings,GSuite સેટિંગ્સ DocType: Address,Links,કડીઓ DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,આ એકાઉન્ટનો ઉપયોગ કરીને મોકલેલા બધા ઇમેઇલ્સ માટે મોકલનારના નામ તરીકે આ એકાઉન્ટમાં ઉલ્લેખિત ઇમેઇલ સરનામું નામનો ઉપયોગ કરે છે. +DocType: Energy Point Rule,Field To Check,તપાસવા માટેનું ક્ષેત્ર apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,કૃપા કરી દસ્તાવેજ પ્રકાર પસંદ કરો. apps/frappe/frappe/model/base_document.py,Value missing for,કિંમત માટે ગુમ apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,બાળ ઉમેરો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,આયાત પ્રગતિ DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",જો સ્થિતિ સંતોષશે તો વપરાશકર્તાને પોઇન્ટ સાથે વળતર મળશે. દા.ત. doc.status == 'બંધ' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: અહેવાલ શાળાના કુલ રેકોર્ડ કાઢી શકાતી નથી. @@ -2934,6 +3001,7 @@ apps/frappe/frappe/database/database.py,Too many writes in one request. Please s apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,ગૂગલ ડ્રાઇવ ગોઠવેલ છે. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,મૂલ્યો બદલી DocType: Workflow State,arrow-up,તીર અપ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} કોષ્ટક માટે ઓછામાં ઓછી એક પંક્તિ હોવી જોઈએ DocType: OAuth Bearer Token,Expires In,સમાપ્ત થાય છે DocType: DocField,Allow on Submit,સબમિટ પર પરવાનગી આપે છે DocType: DocField,HTML,એચટીએમએલ @@ -3018,6 +3086,7 @@ DocType: Custom Field,Options Help,વિકલ્પો મદદ 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 રેકોર્ડની નિકાસ કરવામાં આવશે 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 પર પ્રતિબંધિત @@ -3034,6 +3103,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,ચકાસણી કોડ DocType: Webhook,Webhook Request,વેહૂક વિનંતી apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** નિષ્ફળ: {0} માટે {1}: {2} DocType: Data Migration Mapping,Mapping Type,મેપિંગ પ્રકાર +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,મેન્ડેટરી પસંદ કરો apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,બ્રાઉઝ apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","સંજ્ઞાઓ વાપરીને, એ, અથવા મોટા અક્ષરો માટે કોઈ જરૂર." DocType: DocField,Currency,કરન્સી @@ -3064,11 +3134,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,લેટર હેડ બેઝ્ડ apps/frappe/frappe/utils/oauth.py,Token is missing,ટોકન ગુમ થયેલ હોય apps/frappe/frappe/www/update-password.html,Set Password,પાસવર્ડ સેટ કરો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,સફળતાપૂર્વક {0} રેકોર્ડ્સ આયાત કર્યા. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,નોંધ: બદલવાનું પૃષ્ઠ નામ આ પૃષ્ઠ પર પહેલાનું URL ભંગ કરશે. apps/frappe/frappe/utils/file_manager.py,Removed {0},દૂર {0} DocType: SMS Settings,SMS Settings,એસએમએસ સેટિંગ્સ DocType: Company History,Highlight,હાઇલાઇટ DocType: Dashboard Chart,Sum,સરવાળો +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,ડેટા આયાત દ્વારા DocType: OAuth Provider Settings,Force,ફોર્સ apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},છેલ્લે સમન્વયિત {0} DocType: DocField,Fold,ગડી @@ -3137,6 +3209,7 @@ DocType: Website Settings,Top Bar Items,ટોચના બાર વસ્ત DocType: Notification,Print Settings,પ્રિંટ સેટિંગ્સને DocType: Page,Yes,હા DocType: DocType,Max Attachments,મેક્સ જોડાણો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,લગભગ {0} સેકંડ બાકી DocType: Calendar View,End Date Field,સમાપ્તિ તારીખ ક્ષેત્ર apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,વૈશ્વિક શોર્ટકટ્સ DocType: Desktop Icon,Page,પેજમાં @@ -3244,6 +3317,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite ઍક્સેસની મ DocType: DocType,DESC,DESC DocType: DocType,Naming,નામકરણ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,બધા પસંદ કરો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},કumnલમ {0} apps/frappe/frappe/config/customization.py,Custom Translations,કસ્ટમ ભાષાંતરો apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,પ્રગતિ apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,ભૂમિકા દ્વારા @@ -3284,6 +3358,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,વ DocType: Stripe Settings,Stripe Settings,ગેરુનો સેટિંગ્સ DocType: Data Migration Mapping,Data Migration Mapping,ડેટા માઇગ્રેશન મેપિંગ DocType: Auto Email Report,Period,પીરિયડ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,લગભગ {0} મિનિટ બાકી apps/frappe/frappe/www/login.py,Invalid Login Token,અમાન્ય લૉગિન ટોકન apps/frappe/frappe/public/js/frappe/chat.js,Discard,કાઢી નાખો apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 કલાક પહેલા @@ -3308,6 +3383,7 @@ DocType: Calendar View,Start Date Field,તારીખ ક્ષેત્ર DocType: Role,Role Name,રોલ નામ apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,ડેસ્ક પર સ્વિચ apps/frappe/frappe/config/core.py,Script or Query reports,સ્ક્રિપ્ટ અથવા ક્વેરી અહેવાલ +DocType: Contact Phone,Is Primary Mobile,પ્રાઇમરી મોબાઈલ છે DocType: Workflow Document State,Workflow Document State,વર્કફ્લો દસ્તાવેજ રાજ્ય apps/frappe/frappe/public/js/frappe/request.js,File too big,ફાઇલ બહુ મોટી apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ઇમેઇલ એકાઉન્ટ અનેક વખત ઉમેરી @@ -3352,6 +3428,7 @@ DocType: DocField,Float,ફ્લોટ DocType: Print Settings,Page Settings,પૃષ્ઠ સેટિંગ્સ apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,સાચવી રહ્યું છે ... apps/frappe/frappe/www/update-password.html,Invalid Password,અમાન્ય પાસવર્ડ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,સફળતાપૂર્વક {1} માંથી {0} રેકોર્ડ આયાત કર્યો. DocType: Contact,Purchase Master Manager,ખરીદી માસ્ટર વ્યવસ્થાપક apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,સાર્વજનિક / ખાનગી ટgગલ કરવા માટે લ lockક આયકન પર ક્લિક કરો DocType: Module Def,Module Name,મોડ્યુલ નામ @@ -3385,6 +3462,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,માન્ય મોબાઇલ અમે દાખલ કરો apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,કેટલીક લાક્ષણિકતાઓ તમારા બ્રાઉઝરમાં કામ ન કરી શકે છે. નવીનતમ સંસ્કરણ પર તમારા બ્રાઉઝર અપડેટ કરો. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","ખબર નથી, પૂછો 'સહાય'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},આ દસ્તાવેજ રદ કર્યો {0} DocType: DocType,Comments and Communications will be associated with this linked document,ટિપ્પણીઓ અને કોમ્યુનિકેશન્સ આ કડી દસ્તાવેજ સાથે સંકળાયેલ હશે apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,ફિલ્ટર ... DocType: Workflow State,bold,બોલ્ડ @@ -3459,6 +3537,7 @@ DocType: Print Settings,PDF Settings,પીડીએફ સેટિંગ્સ DocType: Kanban Board Column,Column Name,સ્તંભ નામ DocType: Language,Based On,પર આધારિત DocType: Email Account,"For more information, click here.","વધુ માહિતી માટે, અહીં ક્લિક કરો ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,કumnsલમની સંખ્યા ડેટા સાથે મેળ ખાતી નથી apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,ડિફૉલ્ટ બનાવો apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,એક્ઝેક્યુશનનો સમય: {0} સે apps/frappe/frappe/model/utils/__init__.py,Invalid include path,અમાન્ય સમાવેશ પાથ @@ -3545,7 +3624,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You, apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have atleast one recipient,ન્યૂઝલેટરમાં ઓછામાં ઓછું એક પ્રાપ્તકર્તા હોવું જોઈએ DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,રિપોર્ટ પ્રારંભ સમય -apps/frappe/frappe/config/settings.py,Export Data,ડેટા નિકાસ કરો +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ડેટા નિકાસ કરો 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.,આ એક બેકગ્રાઉન્ડ રિપોર્ટ છે. કૃપા કરીને યોગ્ય ફિલ્ટર્સ સેટ કરો અને પછી એક નવી બનાવો. @@ -3562,7 +3641,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},{0} બના DocType: Report,Disable Prepared Report,તૈયાર કરેલો અહેવાલ અક્ષમ કરો apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,ગેરકાયદે ઍક્સેસ ટોકન. મહેરબાની કરીને ફરીથી પ્રયતન કરો apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","આ એપ્લિકેશન એક નવા સંસ્કરણ પર અપડેટ કરવામાં આવ્યું છે, આ પાનું તાજું કરો" -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.,ડિફોલ્ટ સરનામું ટેમ્પલેટ મળ્યું નથી. કૃપા કરીને સેટઅપ> પ્રિન્ટિંગ અને બ્રાંડિંગ> સરનામાં ટેમ્પલેટમાંથી એક નવું બનાવો. DocType: Notification,Optional: The alert will be sent if this expression is true,વૈકલ્પિક: આ સમીકરણ સાચું છે જો ચેતવણી મોકલવામાં આવશે DocType: Data Migration Plan,Plan Name,યોજનાનું નામ DocType: Print Settings,Print with letterhead,letterhead સાથે છાપો @@ -3601,6 +3679,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: વિના રદ સુધારો સેટ કરી શકાતો નથી apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,સંપૂર્ણ પેજમાં DocType: DocType,Is Child Table,બાળ ટેબલ છે +DocType: Data Import Beta,Template Options,Templateાંચો વિકલ્પો apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} એક હોવો જ જોઈએ {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} હાલમાં આ દસ્તાવેજ જોઈ રહ્યા છે apps/frappe/frappe/config/core.py,Background Email Queue,પૃષ્ઠભૂમિ ઇમેઇલ કતારમાં @@ -3608,7 +3687,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,પાસવર્ DocType: Communication,Opened,ખૂલેલા DocType: Workflow State,chevron-left,શેવરોન-ડાબે DocType: Communication,Sending,મોકલી રહ્યું છે -apps/frappe/frappe/auth.py,Not allowed from this IP Address,આ IP સરનામું માંથી મંજૂરી નથી DocType: Website Slideshow,This goes above the slideshow.,આ સ્લાઇડશો ઉપર જાય છે. DocType: Contact,Last Name,છેલ્લું નામ DocType: Event,Private,ખાનગી @@ -3622,7 +3700,6 @@ DocType: Workflow Action,Workflow Action,વર્કફ્લો ક્રિ apps/frappe/frappe/utils/bot.py,I found these: ,હું આ જોવા મળે છે: DocType: Event,Send an email reminder in the morning,સવારે એક ઇમેઇલ રીમાઇન્ડર મોકલો DocType: Blog Post,Published On,પર પ્રકાશિત -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ સેટ નથી. કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી નવું ઇમેઇલ એકાઉન્ટ બનાવો DocType: Contact,Gender,જાતિ apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,મેન્ડેટરી માહિતી ગુમ: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,વિનંતી વિનંતી URL @@ -3642,7 +3719,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,ચેતવણી સાઇન DocType: Prepared Report,Prepared Report,તૈયાર રિપોર્ટ apps/frappe/frappe/config/website.py,Add meta tags to your web pages,તમારા વેબ પૃષ્ઠો પર મેટા ટsગ્સ ઉમેરો -DocType: Contact,Phone Nos,ફોન નંબર DocType: Workflow State,User,વપરાશકર્તા DocType: Website Settings,"Show title in browser window as ""Prefix - title""",તરીકે બ્રાઉઝર વિન્ડો બતાવો શીર્ષક "ઉપસર્ગ - શીર્ષક" DocType: Payment Gateway,Gateway Settings,ગેટવે સેટિંગ્સ @@ -3666,7 +3742,7 @@ DocType: Custom Field,Insert After,પછી દાખલ કરો DocType: Event,Sync with Google Calendar,ગૂગલ કેલેન્ડર સાથે સમન્વયિત કરો DocType: Access Log,Report Name,રિપોર્ટ નામ DocType: Desktop Icon,Reverse Icon Color,રિવર્સ ચિહ્ન રંગ -DocType: Notification,Save,સેવ કરો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,સેવ કરો apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,અનુસૂચિત તારીખ આગળ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,જેની પાસે ઓછામાં ઓછી સોંપણીઓ છે તેને સોંપો apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,વિભાગ મથાળું @@ -3689,7 +3765,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,સેટઅપ> ફોર્મ કસ્ટમાઇઝ કરો DocType: Google Contacts,Last Sync On,છેલ્લું સમન્વયન ચાલુ કરો DocType: Deleted Document,Deleted Document,ડિલીટ દસ્તાવેજ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,અરે! કંઈક ખોટું થયું @@ -3716,6 +3791,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energyર્જા બિંદુ સુધારો apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',કૃપા કરીને બીજી ચુકવણી પદ્ધતિ પસંદ કરો. પેપાલ ચલણ વ્યવહારો ટેકો આપતાં નથી '{0}' DocType: Chat Message,Room Type,ઓરડા નો પ્રકાર +DocType: Data Import Beta,Import Log Preview,લ Importગ પૂર્વાવલોકન આયાત કરો apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,શોધ ક્ષેત્ર {0} માન્ય નથી apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,અપલોડ કરેલી ફાઇલ DocType: Workflow State,ok-circle,બરાબર વર્તુળ @@ -3780,6 +3856,7 @@ DocType: DocType,Allow Auto Repeat,Autoટો પુનરાવર્તનન apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,બતાવવા માટે કોઈ મૂલ્યો નથી DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ઇમેઇલ ઢાંચો +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,સફળતાપૂર્વક {0} રેકોર્ડ અપડેટ કરાયો. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,જરૂરી બંને પ્રવેશ અને પાસવર્ડ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,તાજેતરની દસ્તાવેજ વિચાર તાજું કરો. DocType: User,Security Settings,સુરક્ષા સેટિંગ્સ diff --git a/frappe/translations/he.csv b/frappe/translations/he.csv index a9fd444513..1eb2460ad9 100644 --- a/frappe/translations/he.csv +++ b/frappe/translations/he.csv @@ -109,7 +109,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,סיכו DocType: User,"Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set ""match"" permission rules. To see list of fields, go to ""Customize Form"".","הזן שדות ערך ברירת מחדל (מקשים) וערכים. אם תוסיף ערכים מרובים עבור שדה, הראשון יהיה נטל. ברירת מחדל אלה משמשים גם לקביעת כללי רשות "התאמה". כדי לראות רשימה של שדות, ללכת "טופס התאמה אישית"." apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,תם זמן הבקשה apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,הגיעה למגבלה מרבי של קובץ מצורף לאלבום הזה. -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,"דוא""ל סיסמא חדשה" DocType: Communication,Sent or Received,נשלח או התקבל DocType: ToDo,Low,נמוך apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,רישום מלא @@ -532,7 +531,6 @@ apps/frappe/frappe/templates/includes/contact.js,"Please enter both your email a apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","אם הוראות אלה שבם לא מועילים, בבקשה להוסיף בהצעות שלך על נושאי GitHub." DocType: Workflow State,pencil,עיפרון 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),אתה יכול רק להעלות upto 5000 רשומות במכה אחת. (יכול להיות פחות במקרים מסוימים) -DocType: File,rgt,rgt DocType: Workflow State,th-large,ה-גדול apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Column,טור DocType: User,Redirect URL,כתובת אתר להפניה מחדש @@ -668,7 +666,6 @@ DocType: Print Format,Monospace,Monospace apps/frappe/frappe/public/js/frappe/form/workflow.js,Next actions,הפעולות הבאה apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid Home Page,דף בית לא חוקי apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Project,פרויקט -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,תיקיה {0} לא קיים DocType: Email Unsubscribe,Email Unsubscribe,דוא"ל ביטול מנוי apps/frappe/frappe/model/document.py,Action Failed,הפעולה נכשלה DocType: Workflow State,plus-sign,תוספת-סימן @@ -725,7 +722,6 @@ DocType: Activity Log,Operation,מבצע apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Read,יכול לקרוא DocType: Desktop Icon,Page,דף DocType: Property Setter,Set Value,ערך שנקבע -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,הסיסמה שלך עודכנה. הנה הסיסמה החדשה שלך apps/frappe/frappe/core/doctype/data_import/data_import.js,Help,עזרה apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,הזן את שם תיקייה apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,המשתמש הוא חובה עבור שתף @@ -736,7 +732,7 @@ apps/frappe/frappe/config/desk.py,Email Group List,רשימת קבוצת דוא& apps/frappe/frappe/www/list.py,"Filtered by ""{0}""",מסונן על ידי "{0}" DocType: Web Form,Amount,הסכום apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mr,מר -DocType: User,Mobile No,נייד לא +DocType: Contact,Mobile No,נייד לא DocType: SMS Settings,SMS Gateway URL,URL SMS Gateway DocType: Country,Geo,Geo apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: No basic permissions set,{0}: לא להגדיר הרשאות בסיסיות @@ -756,9 +752,9 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first. DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","כללים לכיצד מדינות הן מעברים, כמו המדינה, ואשר התפקיד הבאים מותר לשנות את המדינה וכו '" DocType: Customize Form,Sort Order,סדר מיון apps/frappe/frappe/share.py,No permission to {0} {1} {2},אין הרשאות {0} {1} {2} -DocType: Data Migration Run,Insert,הכנס +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,הכנס apps/frappe/frappe/public/js/frappe/request.js,Not Permitted,לא מורשה -DocType: File,Preview,תצוגה מקדימה +DocType: Data Import Beta,Preview,תצוגה מקדימה DocType: User,Karma,קארמה apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},אתה לא יכול לבטל את הגדרה של 'קריאה בלבד' לשדה {0} apps/frappe/frappe/utils/password_strength.py,Recent years are easy to guess.,בשנים האחרונות קלות לנחש. @@ -904,6 +900,7 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},עדכ apps/frappe/frappe/core/doctype/communication/communication.py,Cannot create a {0} against a child document: {1},לא ניתן ליצור {0} נגד מסמך הילד: {1} DocType: Comment,Info,מידע DocType: Blogger,User ID of a Blogger,זיהוי משתמש של Blogger +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,אנא בחר חברה DocType: Print Settings,Letter,מכתב apps/frappe/frappe/email/receive.py,Invalid Mail Server. Please rectify and try again.,שרת דואר לא חוקי. אנא לתקן ונסה שוב. DocType: Access Log,Core,Core @@ -1018,7 +1015,6 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Ms,גב ' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Can Write,יכול לכתוב DocType: User,Allow user to login only before this hour (0-24),אפשר למשתמש להתחבר רק לפני שעה זו (0-24) DocType: Notification,Days After,ימים לאחר -apps/frappe/frappe/auth.py,Not allowed from this IP Address,אסור מכתובת IP זו apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 1,אפשרות 1 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit to add content,ערוך להוסיף תוכן DocType: Blogger,Short Name,שם קצר @@ -1117,7 +1113,6 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Please specify,אנא ציי DocType: DocField,Display,תצוגה DocType: Role Permission for Page and Report,Roles HTML,תפקידי HTML apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,מנהל קבצים -apps/frappe/frappe/core/doctype/user/user.py,Password Update,עדכון סיסמא apps/frappe/frappe/desk/form/assign_to.py,"The task {0}, that you assigned to {1}, has been closed by {2}.","המשימה {0}, שהקצית לאיש {1}, שנסגר על-ידי {2}." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permission Levels,רמות הרשאה DocType: DocType,Naming,שמות @@ -1235,7 +1230,7 @@ DocType: Workflow,Is Active,האם Active DocType: Page,No,לא apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,"אין באפשרותך להדפיס את המסמך הזה," DocType: Communication,Communication Type,סוג התקשורת -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,עדכון +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,עדכון apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',"ברירת מחדל עבור סוג השדה ""בדוק"" חייבת להיות או '0' '1'" apps/frappe/frappe/workflow/doctype/workflow/workflow.py,Submitted Document cannot be converted back to draft. Transition row {0},מסמך שהוגש לא ניתן להמיר חזרה לטיוטה. שורת מעבר {0} DocType: Property Setter,Field Name,שם שדה @@ -1476,7 +1471,7 @@ DocType: Email Account,Notifications and bulk mails will be sent from this outgo DocType: Website Settings,Disable Customer Signup link in Login page,קישור הרשמה לקוחות השבת בדף כניסה DocType: Help Article,Likes,אוהב DocType: DocField,Float,Float -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,סוגי מסמכים +DocType: Global Search Settings,Document Types,סוגי מסמכים apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Custom HTML,המותאם אישית HTML DocType: Workflow,Document States,מסמך הברית apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},שדות חובה הנדרשים {0} @@ -1553,7 +1548,7 @@ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,1 comment,1 תגובה apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,בואו להימנע מילות חוזרות ותווים DocType: Notification,Reference Date,תאריך התייחסות DocType: Version,Version,גרסה -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,אִתחוּל +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,אִתחוּל DocType: User,Mute Sounds,צלילים אילמים DocType: Data Export,Select DocType,DOCTYPE בחר apps/frappe/frappe/model/rename_doc.py,{0} not allowed to be renamed,{0} אינו רשאי לשנות את השם @@ -1734,7 +1729,7 @@ DocType: Event,Sunday,יום ראשון apps/frappe/frappe/utils/jinja.py,Syntax error in template,שגיאת תחביר התבנית apps/frappe/frappe/config/desk.py,Chat messages and other notifications.,הודעות צ'אט והודעות אחרות. DocType: Contact,Last Name,שם משפחה -DocType: Notification,Save,שמור +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,שמור DocType: Bulk Update,Bulk Update,עדכון גורף apps/frappe/frappe/contacts/doctype/address/address.py,Addresses,כתובות DocType: Unhandled Email,Reason,סיבה @@ -1752,7 +1747,6 @@ DocType: Print Settings,Fonts,גופנים apps/frappe/frappe/desk/doctype/event/event.py,Events In Today's Calendar,אירועים בלוח השנה של היום DocType: User,Set New Password,להגדיר סיסמא חדשה DocType: Workflow State,flag,דגל -DocType: File,Lft,LFT DocType: Activity Log,Timeline Name,שם ציר זמן DocType: About Us Settings,Settings for the About Us Page,הגדרות עבורנו העמוד אודות apps/frappe/frappe/utils/oauth.py,Not Allowed,לא מחמד @@ -1813,7 +1807,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py,Assignment closed by {0},משימה DocType: Print Settings,Compact Item Print,הדפס פריט קומפקט DocType: Workflow State,volume-off,נפח-off DocType: DocField,Color,צבע -apps/frappe/frappe/www/login.py,Email Address,"כתובת דוא""ל" +DocType: Address,Email Address,"כתובת דוא""ל" DocType: Currency,"Sub-currency. For e.g. ""Cent""","תת מטבע. ל"" סנט ""למשל" apps/frappe/frappe/public/js/frappe/views/pageview.js,Sorry! I could not find what you were looking for.,סליחה! לא הצלחתי למצוא את מה שחיפשת. DocType: Web Form,Success Message,ההצלחה Message @@ -1859,7 +1853,6 @@ apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Let's prepare the system for first use.,בואו להכין את המערכת לשימוש ראשון. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,דוא"ל יבוא מ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Share {0} with,שתף {0} עם -DocType: User,Send Password Update Notification,שלח הודעת עדכון סיסמא DocType: Property Setter,Property Setter,נכס סתר apps/frappe/frappe/email/doctype/email_queue/email_queue.py,Only Administrator can delete Email Queue,מנהל רק יכול למחוק דוא"ל תור DocType: Workflow State,pause,הפסקה diff --git a/frappe/translations/hi.csv b/frappe/translations/hi.csv index 6bf69c7c6f..6ed942d63d 100644 --- a/frappe/translations/hi.csv +++ b/frappe/translations/hi.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,निम्नलिखित ऐप्स के लिए नई {} रिलीज उपलब्ध हैं apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,एक राशि फ़ील्ड का चयन करें। +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,आयात फ़ाइल लोड हो रही है ... DocType: Assignment Rule,Last User,अंतिम उपयोगकर्ता apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","एक नया कार्य, {0} {1} द्वारा आप के लिए सौंपा गया है। {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,सत्र चूक से बचाव किया +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,फ़ाइल पुनः लोड करें DocType: Email Queue,Email Queue records.,ईमेल कतार रिकॉर्ड। DocType: Post,Post,पद DocType: Address,Punjab,पंजाब @@ -44,6 +46,7 @@ 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,प्राचल @@ -68,7 +71,7 @@ DocType: Auto Repeat,Monthly,मासिक DocType: Address,Uttarakhand,उत्तराखंड DocType: Email Account,Enable Incoming,आवक सक्षम करें apps/frappe/frappe/core/doctype/version/version_view.html,Danger,खतरा -apps/frappe/frappe/www/login.py,Email Address,ईमेल पता +DocType: Address,Email Address,ईमेल पता DocType: Workflow State,th-large,वें बड़े DocType: Communication,Unread Notification Sent,भेजे गए अपठित अधिसूचना apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,निर्यात की अनुमति नहीं . आप निर्यात करने के लिए {0} भूमिका की जरूरत है. @@ -97,7 +100,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,प्र DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","संपर्क विकल्प, आदि एक नई लाइन पर प्रत्येक "बिक्री प्रश्न, प्रश्न समर्थन" कोमा से विभाजित." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,एक टैग जोड़ना ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,चित्र -DocType: Data Migration Run,Insert,सम्मिलित करें +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,सम्मिलित करें apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,गूगल ड्राइव पहुँच की अनुमति apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},चयन करें {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,कृपया बेस यूआरएल दर्ज करें @@ -117,17 +120,17 @@ 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,थीम को कॉन्फ़िगर करें DocType: Company History,Company History,कंपनी इतिहास -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,रीसेट +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,रीसेट DocType: Workflow State,volume-up,मात्रा apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks वेब अनुप्रयोगों में एपीआई अनुरोधों को बुला रहा है +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ट्रेसेबैक दिखाएं DocType: DocType,Default Print Format,डिफ़ॉल्ट प्रिंट प्रारूप DocType: Workflow State,Tags,टैग apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,कोई नहीं: कार्यप्रवाह समाप्ति apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","गैर-अद्वितीय मौजूदा मानों के रूप में वहाँ {0} फ़ील्ड, {1} में के रूप में अद्वितीय सेट नहीं किया जा सकता" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,दस्तावेज़ प्रकार +DocType: Global Search Settings,Document Types,दस्तावेज़ प्रकार DocType: Address,Jammu and Kashmir,जम्मू और कश्मीर DocType: Workflow,Workflow State Field,वर्कफ़्लो राज्य फील्ड -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> उपयोगकर्ता DocType: Language,Guest,अतिथि DocType: DocType,Title Field,शीर्षक फ़ील्ड DocType: Error Log,Error Log,त्रुटि संग्रह @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" केवल थोड़ा कठिन "एबीसी" की तुलना में अनुमान करने के लिए कर रहे हैं जैसे दोहराता DocType: Notification,Channel,चैनल apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","आप इस अनधिकृत है लगता है, व्यवस्थापक पासवर्ड परिवर्तित करें।" +DocType: Data Import Beta,Data Import Beta,डेटा आयात बीटा apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} अनिवार्य है DocType: Assignment Rule,Assignment Rules,असाइनमेंट नियम DocType: Workflow State,eject,बेदखल करना @@ -161,6 +165,7 @@ DocType: Workflow Action Master,Workflow Action Name,वर्कफ़्लो apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,टैग विलय हो नहीं सकता DocType: Web Form Field,Fieldtype,क्षेत्र प्रकार apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,नहीं एक ज़िप फ़ाइल +DocType: Global Search DocType,Global Search DocType,ग्लोबल सर्च डॉकाइप DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                      New {{ doc.doctype }} #{{ doc.name }}
                                      ","गतिशील विषय जोड़ने के लिए, जैसे जीनजा टैग का उपयोग करें
                                       New {{ doc.doctype }} #{{ doc.name }} 
                                      " @@ -182,6 +187,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,डॉक्टर घटना apps/frappe/frappe/public/js/frappe/utils/user.js,You,तुमने DocType: Braintree Settings,Braintree Settings,ब्रेनट्री सेटिंग्स +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,सफलतापूर्वक {0} रिकॉर्ड बनाया गया। apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,फ़िल्टर सहेजें DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} हटा नहीं सकते @@ -208,6 +214,7 @@ DocType: SMS Settings,Enter url parameter for message,संदेश के ल apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,इस दस्तावेज़ के लिए ऑटो रिपीट बनाया गया apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,अपने ब्राउज़र में रिपोर्ट देखें apps/frappe/frappe/config/desk.py,Event and other calendars.,घटना और अन्य कैलेंडरों। +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 पंक्ति अनिवार्य) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,टिप्पणी सबमिट करने के लिए सभी फ़ील्ड आवश्यक हैं DocType: Custom Script,Adds a client custom script to a DocType,एक कस्टम कस्टम स्क्रिप्ट को DocType में जोड़ता है DocType: Print Settings,Printer Name,प्रिंटर नाम @@ -250,7 +257,6 @@ DocType: Bulk Update,Bulk Update,बल्क अपडेट DocType: Workflow State,chevron-up,शहतीर अप DocType: DocType,Allow Guest to View,देखने के लिए अतिथि की अनुमति दें apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} {1} के समान नहीं होना चाहिए -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: Webhook,on_change,परिवर्तन पर apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,स्थायी रूप से {0} आइटम हटाएं? apps/frappe/frappe/utils/oauth.py,Not Allowed,अनुमति नहीं @@ -266,6 +272,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,प्रदर्शन DocType: Email Group,Total Subscribers,कुल ग्राहकों apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},शीर्ष {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,पंक्ति संख्या apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","एक रोल 0 स्तर पर पहुँच नहीं है , तो उच्च स्तर व्यर्थ कर रहे हैं ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,के रूप में सहेजें DocType: Comment,Seen,देखा @@ -305,6 +312,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,उदाहरण: DocType: Workflow,Defines workflow states and rules for a document.,एक दस्तावेज के लिए कार्यप्रवाह राज्यों और नियमों को परिभाषित करता है। DocType: Workflow State,Filter,फिल्टर @@ -327,6 +335,7 @@ DocType: Activity Log,Closed,बंद DocType: Blog Settings,Blog Title,ब्लॉग शीर्षक apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,स्टैंडर्ड भूमिकाओं निष्क्रिय नहीं किया जा सकता है apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,चैट प्रकार +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,मानचित्र कॉलम DocType: Address,Mizoram,मिजोरम DocType: Newsletter,Newsletter,न्यूज़लैटर apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,द्वारा क्रम में उप क्वेरी का उपयोग नहीं किया जा सकता @@ -362,6 +371,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,एक स्तंभ जोड़ें apps/frappe/frappe/www/contact.html,Your email address,आपका ईमेल पता DocType: Desktop Icon,Module,मॉड्यूल +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,सफलतापूर्वक {1} के {0} रिकॉर्ड अपडेट किए गए हैं। DocType: Notification,Send Alert On,अलर्ट पर भेजें DocType: Customize Form,"Customize Label, Print Hide, Default etc.","लेबल, प्रिंट छिपाएँ, Default आदि अनुकूलित" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,फ़ाइलें खोलना ... @@ -393,6 +403,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,प्रयोक्ता {0} मिटाया नहीं जा सकता DocType: System Settings,Currency Precision,मुद्रा प्रेसिजन apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,एक और लेन-देन के लिए यह एक बाधा डाल रही है। कुछ ही सेकंड में पुन: प्रयास करें। +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,फ़िल्टर साफ़ करें DocType: Test Runner,App,ऐप apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,अनुलग्नक को नए दस्तावेज़ से सही ढंग से लिंक नहीं किया जा सका DocType: Chat Message Attachment,Attachment,आसक्ति @@ -418,6 +429,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,इस स apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google कैलेंडर - Google कैलेंडर में घटना {0} को अपडेट नहीं कर सका, त्रुटि कोड {1}।" apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,आज्ञा खोजें या लिखें DocType: Activity Log,Timeline Name,इस समय नाम +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,केवल एक {0} को प्राथमिक के रूप में सेट किया जा सकता है। DocType: Email Account,e.g. smtp.gmail.com,जैसे smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,एक नया नियम जोड़ें DocType: Contact,Sales Master Manager,बिक्री मास्टर प्रबंधक @@ -434,7 +446,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP मध्य नाम फ़ील्ड apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} का {0} आयात करना DocType: GCalendar Account,Allow GCalendar Access,GCalendar पहुंच की अनुमति दें -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} एक अनिवार्य क्षेत्र है +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} एक अनिवार्य क्षेत्र है apps/frappe/frappe/templates/includes/login/login.js,Login token required,लॉगिन टोकन आवश्यक है apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,मासिक रैंक: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,कई सूची आइटम का चयन करें @@ -464,6 +476,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},कनेक्ट न apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,अपने आप में एक शब्द लगता करने के लिए आसान है। apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},ऑटो असाइनमेंट विफल: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,खोज... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,कंपनी का चयन करें apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,विलय समूह के लिए समूह या पत्ता नोड से पत्ता नोड के बीच ही संभव है apps/frappe/frappe/utils/file_manager.py,Added {0},जोड़ा गया {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,कोई मिलती-जुलती रिकॉर्ड। खोजें कुछ नया @@ -476,7 +489,6 @@ DocType: Google Settings,OAuth Client ID,OAuth क्लाइंट आईड DocType: Auto Repeat,Subject,विषय apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,डेस्क पर वापस DocType: Web Form,Amount Based On Field,राशि क्षेत्र के आधार पर -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते से डिफ़ॉल्ट ईमेल खाता सेटअप करें apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,उपयोगकर्ता शेयर के लिए अनिवार्य है DocType: DocField,Hidden,छुपा DocType: Web Form,Allow Incomplete Forms,दो या दो रूपों की अनुमति दें @@ -513,6 +525,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} और {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,एक बातचीत शुरू। DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",हमेशा मुद्रण मसौदा दस्तावेज के लिए शीर्षक "ड्राफ्ट" जोड़ने apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},अधिसूचना में त्रुटि: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} साल पहले DocType: Data Migration Run,Current Mapping Start,वर्तमान मानचित्रण प्रारंभ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ईमेल को स्पैम के रूप में चिह्नित किया गया है DocType: Comment,Website Manager,वेबसाइट प्रबंधक @@ -550,6 +563,7 @@ DocType: Workflow State,barcode,बारकोड apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,उप-क्वेरी या फ़ंक्शन का उपयोग प्रतिबंधित है apps/frappe/frappe/config/customization.py,Add your own translations,अपने खुद के अनुवाद जोड़े DocType: Country,Country Name,देश का नाम +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,खाली खाका DocType: About Us Team Member,About Us Team Member,हमारे दल के सदस्य के बारे में apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","अनुमतियाँ रिपोर्ट , आयात, निर्यात , प्रिंट, ईमेल और सेट उपयोगकर्ता अनुमतियाँ , संशोधन , रद्द , सबमिट करें , हटाएँ , बनाएँ , लिखने , पढ़ने के लिए पसंद अधिकार निर्धारित करके भूमिकाओं और दस्तावेज़ प्रकार ( doctypes कहा जाता है) पर टिकी हैं ." DocType: Event,Wednesday,बुधवार @@ -561,6 +575,7 @@ DocType: Website Settings,Website Theme Image Link,वेबसाइट थी DocType: Web Form,Sidebar Items,साइडबार आइटम DocType: Web Form,Show as Grid,ग्रिड के रूप में दिखाएं apps/frappe/frappe/installer.py,App {0} already installed,ऐप {0} पहले से स्थापित है +DocType: Energy Point Rule,Users assigned to the reference document will get points.,संदर्भ दस्तावेज़ को सौंपे गए उपयोगकर्ताओं को अंक मिलेंगे। apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,कोई पूर्वावलोकन DocType: Workflow State,exclamation-sign,विस्मयादिबोधक हस्ताक्षर apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,अनज़ैप्ड {0} फाइलें @@ -596,6 +611,7 @@ DocType: Notification,Days Before,एक दिन पहले apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,डेली इवेंट्स को उसी दिन खत्म करना चाहिए। apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,संपादित करें ... DocType: Workflow State,volume-down,मात्रा नीचे +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,इस IP पते से प्रवेश की अनुमति नहीं है apps/frappe/frappe/desk/reportview.py,No Tags,कोई टैग नहीं DocType: Email Account,Send Notification to,को अधिसूचना भेजें DocType: DocField,Collapsible,खुलने और बंधनेवाला @@ -651,6 +667,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,डेवलपर apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,बनाया गया apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} पंक्ति में {1} यूआरएल और बच्चे आइटम दोनों नहीं हो सकता +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,डिफ़ॉल्ट प्रिंट भाषा apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,के पूर्वजों apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,जड़ {0} मिटाया नहीं जा सकता @@ -693,6 +710,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",लक्ष्य = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,मेज़बान +DocType: Data Import Beta,Import File,फ़ाइल आयात करें apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,कॉलम {0} पहले से ही मौजूद हैं। DocType: ToDo,High,उच्च apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,नयी घटना @@ -721,8 +739,6 @@ DocType: User,Send Notifications for Email threads,ईमेल थ्रेड apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,प्रोफेसर apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,नहीं डेवलपर मोड में apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,फ़ाइल बैकअप तैयार है -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",गुणक मान के साथ गुणा करने के बाद अनुमत अधिकतम अंक (नोट: 0 के रूप में कोई सीमा निर्धारित मूल्य के लिए) DocType: DocField,In Global Search,वैश्विक खोज में DocType: System Settings,Brute Force Security,ब्रूट फोर्स सुरक्षा DocType: Workflow State,indent-left,इंडेंट - बाएँ @@ -764,6 +780,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',उपयोगकर्ता '{0}' पहले से ही भूमिका है '{1}' DocType: System Settings,Two Factor Authentication method,दो फैक्टर प्रमाणीकरण विधि apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,पहले नाम सेट करें और रिकॉर्ड को सहेजें। +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 रिकॉर्ड apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},साथ साझा किया गया {0} apps/frappe/frappe/email/queue.py,Unsubscribe,सदस्यता रद्द DocType: View Log,Reference Name,संदर्भ नाम @@ -812,6 +829,8 @@ 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,ईमेल स्थिति ट्रैक करें DocType: Note,Notify Users On Every Login,हर लॉगिन पर उपयोगकर्ता को सूचित करें +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,किसी भी क्षेत्र के साथ कॉलम {0} से मेल नहीं खा सकता +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,सफलतापूर्वक {0} रिकॉर्ड अपडेट किए गए हैं। DocType: PayPal Settings,API Password,एपीआई पासवर्ड apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,अजगर मॉड्यूल दर्ज करें या कनेक्टर प्रकार चुनें apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,FIELDNAME कस्टम फ़ील्ड के लिए सेट नहीं @@ -840,9 +859,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,मान बदल गया apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},डुप्लिकेट नाम {0} {1} -DocType: Email Queue,Retry,पुन: प्रयास करें +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,पुन: प्रयास करें +DocType: Contact Phone,Number,संख्या DocType: Web Form Field,Web Form Field,वेब प्रपत्र फ़ील्ड apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,आपके पास एक नया संदेश है: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML संपादित करें apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,कृपया रीडायरेक्ट यूआरएल दर्ज करें apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -867,7 +888,7 @@ DocType: Notification,View Properties (via Customize Form),(अनुकूल apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,इसे चुनने के लिए किसी फ़ाइल पर क्लिक करें। DocType: Note Seen By,Note Seen By,द्वारा देखा नोट apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,अधिक जाता है के साथ एक लंबे समय तक कीबोर्ड पैटर्न का उपयोग करने के लिए प्रयास करें -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,लीडरबोर्ड +,LeaderBoard,लीडरबोर्ड DocType: DocType,Default Sort Order,डिफ़ॉल्ट क्रम क्रम DocType: Address,Rajasthan,राजस्थान DocType: Email Template,Email Reply Help,ईमेल उत्तर सहायता @@ -902,6 +923,7 @@ apps/frappe/frappe/utils/data.py,Cent,प्रतिशत apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ईमेल लिखें apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","कार्यप्रवाह के लिए अमेरिका ( जैसे ड्राफ्ट , स्वीकृत , रद्द) ." DocType: Print Settings,Allow Print for Draft,ड्राफ्ट के लिए प्रिंट की अनुमति दें +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/link_selector.js,Set Quantity,सेट मात्रा apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,इस बात की पुष्टि करने के लिए इस दस्तावेज जमा करें DocType: Contact,Unsubscribed,आपकी सदस्यता समाप्त कर दी @@ -933,6 +955,7 @@ DocType: LDAP Settings,Organizational Unit for Users,उपयोगकर्त ,Transaction Log Report,लेनदेन लॉग रिपोर्ट DocType: Custom DocPerm,Custom DocPerm,कस्टम DocPerm DocType: Newsletter,Send Unsubscribe Link,भेजें सदस्यता रद्द करें लिंक +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,कुछ लिंक किए गए रिकॉर्ड हैं जिन्हें हमें आपकी फ़ाइल आयात करने से पहले बनाना होगा। क्या आप निम्नलिखित लापता रिकॉर्ड अपने आप बनाना चाहते हैं? DocType: Access Log,Method,विधि DocType: Report,Script Report,स्क्रिप्ट की रिपोर्ट DocType: OAuth Authorization Code,Scopes,scopes @@ -973,6 +996,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,सफलतापूर्वक अपलोड किया गया apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,आप इंटरनेट से जुड़े हुए हैं DocType: Social Login Key,Enable Social Login,सामाजिक लॉगिन सक्षम करें +DocType: Data Import Beta,Warnings,चेतावनी DocType: Communication,Event,घटना apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} पर, {1} ने लिखा है:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,मानक क्षेत्र को नष्ट नहीं किया जा सकता। अगर आप चाहते हैं आप इसे छिपा कर सकते हैं @@ -1028,6 +1052,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,नीच DocType: Kanban Board Column,Blue,नीला apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,सभी अनुकूलन हटा दिया जाएगा. कृपया पुष्टि करें. DocType: Page,Page HTML,पृष्ठ HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,निर्यात की गई पंक्तियाँ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,समूह का नाम रिक्त नहीं हो सकता। apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,इसके अलावा नोड्स केवल ' समूह ' प्रकार नोड्स के तहत बनाया जा सकता है DocType: SMS Parameter,Header,हैडर @@ -1066,13 +1091,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,अनुरोध का समय समाप्त apps/frappe/frappe/config/settings.py,Enable / Disable Domains,सक्षम / अक्षम करें डोमेन DocType: Role Permission for Page and Report,Allow Roles,भूमिकाओं की अनुमति दें +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{1} से सफलतापूर्वक {0} रिकॉर्ड आयात किया गया। DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","सरल पायथन अभिव्यक्ति, उदाहरण: स्थिति ("अमान्य")" DocType: User,Last Active,सक्रिय अंतिम DocType: Email Account,SMTP Settings for outgoing emails,निवर्तमान ईमेल के लिए SMTP सेटिंग apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,a चुनें DocType: Data Export,Filter List,फ़िल्टर सूची DocType: Data Export,Excel,एक्सेल -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,आपका पासवर्ड बदला जा चुका है। यहाँ अपना नया पासवर्ड है DocType: Email Account,Auto Reply Message,ऑटो उत्तर संदेश DocType: Data Migration Mapping,Condition,शर्त apps/frappe/frappe/utils/data.py,{0} hours ago,{0} घंटे पहले @@ -1081,7 +1106,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,प्रयोक्ता आईडी DocType: Communication,Sent,भेजे गए DocType: Address,Kerala,केरल -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,शासन प्रबंध DocType: User,Simultaneous Sessions,एक साथ सत्र DocType: Social Login Key,Client Credentials,हमारे ग्राहकों का साख @@ -1113,7 +1137,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Updated apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,मास्टर DocType: DocType,User Cannot Create,प्रयोक्ता नहीं बना सकते हैं apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,सफलतापूर्वक किया गया -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,फ़ोल्डर {0} मौजूद नहीं है apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ड्रॉपबॉक्स का उपयोग मंजूरी दे दी है! DocType: Customize Form,Enter Form Type,प्रपत्र प्रकार दर्ज करें DocType: Google Drive,Authorize Google Drive Access,Google डिस्क एक्सेस अधिकृत करें @@ -1121,7 +1144,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,कोई रिकॉर्ड टैग. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,फील्ड हटाये apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,आप इंटरनेट से कनेक्ट नहीं हैं कुछ समय बाद पुनः प्रयास करें -DocType: User,Send Password Update Notification,पासवर्ड अद्यतन सूचना भेजें apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","अनुमति दे टैग , टैग . सावधान!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","प्रिंटिंग, ईमेल के लिए अनुकूलित प्रारूप" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} का योग @@ -1206,6 +1228,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,गलत सत् apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google संपर्क एकीकरण अक्षम है। DocType: Assignment Rule,Description,विवरण DocType: Print Settings,Repeat Header and Footer in PDF,पीडीएफ में लेख और पाद दोहराएँ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,असफलता DocType: Address Template,Is Default,डिफ़ॉल्ट है DocType: Data Migration Connector,Connector Type,कनेक्टर प्रकार apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,स्तंभ नाम रिक्त नहीं हो सकता @@ -1218,6 +1241,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} पृष्ठ 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,स्तंभों पर आधारित +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/model/document.py,Action Failed,क्रिया: विफल रही है apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,उपयोगकर्ता के लिए @@ -1271,6 +1295,7 @@ DocType: Print Settings,Enable Raw Printing,कच्चे मुद्रण DocType: Website Route Redirect,Source,स्रोत apps/frappe/frappe/templates/includes/list/filters.html,clear,स्पष्ट apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,ख़त्म होना +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> उपयोगकर्ता DocType: Prepared Report,Filter Values,फ़िल्टर मान DocType: Communication,User Tags,उपयोगकर्ता के टैग DocType: Data Migration Run,Fail,असफल @@ -1326,6 +1351,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,क ,Activity,सक्रियता DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","मदद:. प्रणाली में एक और रिकॉर्ड करने के लिए लिंक करने के लिए, "# प्रपत्र / नोट / [नोट नाम]" लिंक यूआरएल के रूप में उपयोग ("Http://" का उपयोग नहीं करते हैं)" DocType: User Permission,Allow,अनुमति दें +DocType: Data Import Beta,Update Existing Records,मौजूदा रिकॉर्ड अपडेट करें apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,चलो दोहराया शब्दों और वर्ण से बचने DocType: Energy Point Rule,Energy Point Rule,एनर्जी पॉइंट नियम DocType: Communication,Delayed,विलंबित @@ -1338,9 +1364,7 @@ DocType: Milestone,Track Field,ट्रैक क्षेत्र DocType: Notification,Set Property After Alert,अलर्ट के बाद संपत्ति सेट करें apps/frappe/frappe/config/customization.py,Add fields to forms.,रूपों में फ़ील्ड्स जोड़ें . apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ऐसा लगता है कि इस साइट के पेपल कॉन्फ़िगरेशन में कुछ गलत है -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/sidebar/review.js,Add Review,समीक्षा जोड़ें -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),फ़ॉन्ट आकार (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,केवल कस्टम डॉकटाइप्स को कस्टमाइज़ फॉर्म से अनुकूलित करने की अनुमति है। DocType: Email Account,Sendgrid,Sendgrid @@ -1377,6 +1401,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,फ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,माफ़ कीजिये! आप स्वत: उत्पन्न टिप्पणियों को नष्ट नहीं कर सकते DocType: Google Settings,Used For Google Maps Integration.,Google मानचित्र एकीकरण के लिए उपयोग किया जाता है। apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,संदर्भ टैग +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,कोई रिकॉर्ड निर्यात नहीं किया जाएगा DocType: User,System User,सिस्टम उपयोगकर्ता को DocType: Report,Is Standard,मानक है DocType: Desktop Icon,_report,_प्रतिवेदन @@ -1391,6 +1416,7 @@ DocType: Workflow State,minus-sign,ऋण पर हस्ताक्षर apps/frappe/frappe/public/js/frappe/request.js,Not Found,नहीं मिला apps/frappe/frappe/www/printview.py,No {0} permission,कोई {0} अनुमति apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,निर्यात कस्टम अनुमतियां +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,कुछ नहीं मिला। DocType: Data Export,Fields Multicheck,फ़ील्ड मल्टीचेक DocType: Activity Log,Login,लॉगिन DocType: Web Form,Payments,भुगतान @@ -1450,8 +1476,9 @@ DocType: Address,Postal,डाक का DocType: Email Account,Default Incoming,डिफ़ॉल्ट आवक DocType: Workflow State,repeat,दोहराना DocType: Website Settings,Banner,बैनर +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},मान {0} में से एक होना चाहिए DocType: Role,"If disabled, this role will be removed from all users.","यदि अक्षम है, इस भूमिका को सभी उपयोगकर्ताओं से निकाल दिया जाएगा।" -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} सूची में जाएं +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,खोज पर मदद DocType: Milestone,Milestone Tracker,माइलस्टोन ट्रैकर apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,पंजीकृत लेकिन विकलांग @@ -1465,6 +1492,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,स्थानीय फ DocType: DocType,Track Changes,ट्रैक परिवर्तन DocType: Workflow State,Check,चेक DocType: Chat Profile,Offline,ऑफलाइन +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},सफलतापूर्वक आयात किया गया {0} DocType: User,API Key,एपीआई कुंजी DocType: Email Account,Send unsubscribe message in email,ईमेल में सदस्यता समाप्त संदेश भेजें apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,संपादित करें शीर्षक @@ -1491,11 +1519,11 @@ 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/form/footer/timeline.js,changed value of {0} {1},{0} {1} का परिवर्तित मूल्य 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,कुल पृष्ठ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} ने पहले ही {1} के लिए डिफ़ॉल्ट मान निर्दिष्ट कर दिया है। -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                      No results found for '

                                      ,

                                      इसके लिए कोई परिणाम नहीं मिले '

                                      DocType: DocField,Attach Image,छवि संलग्न करें DocType: Workflow State,list-alt,सूची Alt apps/frappe/frappe/www/update-password.html,Password Updated,पासवर्ड अपडेट @@ -1516,8 +1544,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> उपयोगकर्ता अनुमतियाँ DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP ग्रुप मैपिंग DocType: Dashboard Chart,Chart Options,चार्ट विकल्प +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,शीर्षक रहित कॉलम apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} से {1} {2} में पंक्ति # {3} DocType: Communication,Expired,समय सीमा समाप्त apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,लगता है कि आप उपयोग कर रहे टोकन अमान्य है! @@ -1527,6 +1557,7 @@ DocType: DocType,System,प्रणाली DocType: Web Form,Max Attachment Size (in MB),अधिकतम अनुलग्नक आकार (MB में) apps/frappe/frappe/www/login.html,Have an account? Login,एक खाता है? लॉग इन करें DocType: Workflow State,arrow-down,नीचे तीर +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},रो {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},उपयोगकर्ता को नष्ट करने की अनुमति नहीं {0} {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} का {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,अंतिम बार अद्यतन किया गया @@ -1543,6 +1574,7 @@ DocType: Custom Role,Custom Role,कस्टम भूमिका apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,घर / परीक्षण फ़ोल्डर 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,अपना पासवर्ड डालें DocType: Dropbox Settings,Dropbox Access Secret,ड्रॉपबॉक्स पहुँच गुप्त +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(अनिवार्य) 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.,फ़ाइल में कोई डेटा नहीं मिला कृपया डेटा के साथ नई फ़ाइल को पुनः जोड़ें। @@ -1617,6 +1649,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,डैश apps/frappe/frappe/desk/form/assign_to.py,New Message,नया संदेश DocType: File,Preview HTML,पूर्वावलोकन एचटीएमएल DocType: Desktop Icon,query-report,प्रश्न-रिपोर्ट +DocType: Data Import Beta,Template Warnings,टेम्पलेट चेतावनी apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,फिल्टर बचाया DocType: DocField,Percent,प्रतिशत apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,फिल्टर सेट करें @@ -1638,6 +1671,7 @@ DocType: Custom Field,Custom,रिवाज DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","सक्षम होने पर, प्रतिबंधित आईपी पते से लॉगिन करने वाले उपयोगकर्ता को दो फैक्टर एथ के लिए संकेत नहीं दिया जाएगा" DocType: Auto Repeat,Get Contacts,संपर्क प्राप्त करें apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},के तहत दायर की पोस्ट {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,लावारिस अनुपयोगी कॉलम DocType: Notification,Send alert if date matches this field's value,"तारीख इस क्षेत्र के मूल्य से मेल खाता है, तो सतर्क भेजें" DocType: Workflow,Transitions,बदलाव apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} {2} @@ -1661,6 +1695,7 @@ DocType: Workflow State,step-backward,कदम से पिछड़े apps/frappe/frappe/utils/boilerplate.py,{app_title},{ app_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,आपकी साइट config में ड्रॉपबॉक्स का उपयोग चाबियां सेट करें apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,इस ईमेल पते पर भेजने की अनुमति देने के लिए इस अभिलेख को नष्ट +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","यदि गैर-मानक पोर्ट (जैसे POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,शॉर्टकट अनुकूलित करें apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,केवल अनिवार्य क्षेत्रों में नए रिकॉर्ड के लिए जरूरी हैं। यदि आप चाहें तो आप गैर-अनिवार्य कॉलम हटा सकते हैं। apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,अधिक गतिविधि दिखाएं @@ -1768,7 +1803,9 @@ 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,ओटीपी एप +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,सफलतापूर्वक {0} रिकॉर्ड को {1} से अपडेट किया गया। 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,patr DocType: DocType,"Naming Options:
                                      1. field:[fieldname] - By Field
                                      2. naming_series: - By Naming Series (field called naming_series must be present
                                      3. Prompt - Prompt user for a name
                                      4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                      5. @@ -1782,6 +1819,7 @@ DocType: GCalendar Account,Next Sync Token,अगला सिंक टोक DocType: Energy Point Settings,Energy Point Settings,ऊर्जा बिंदु सेटिंग्स DocType: Async Task,Succeeded,सफल रहा apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},में आवश्यक अनिवार्य क्षेत्रों {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                        No results found for '

                                        ,

                                        इसके लिए कोई परिणाम नहीं मिले '

                                        apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} के लिए अनुमतियाँ रीसेट ? apps/frappe/frappe/config/desktop.py,Users and Permissions,उपयोगकर्ता और अनुमतियाँ DocType: S3 Backup Settings,S3 Backup Settings,एस 3 बैकअप सेटिंग्स @@ -1852,6 +1890,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,में DocType: Notification,Value Change,मान बदलने DocType: Google Contacts,Authorize Google Contacts Access,Google संपर्क एक्सेस को अधिकृत करें apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,रिपोर्ट से केवल संख्यात्मक फ़ील्ड दिखा रहा है +DocType: Data Import Beta,Import Type,आयात प्रकार DocType: Access Log,HTML Page,HTML पेज DocType: Address,Subsidiary,सहायक apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ ट्रे से कनेक्शन का प्रयास ... @@ -1862,7 +1901,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,अवै DocType: Custom DocPerm,Write,लिखना apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,केवल प्रशासक प्रश्न / स्क्रिप्ट रिपोर्टें बनाने की अनुमति apps/frappe/frappe/public/js/frappe/form/save.js,Updating,अद्यतन कर रहा है -DocType: File,Preview,पूर्वावलोकन +DocType: Data Import Beta,Preview,पूर्वावलोकन apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",फील्ड "मूल्य" अनिवार्य है। अद्यतन करने की मूल्य निर्दिष्ट करें DocType: Customize Form,Use this fieldname to generate title,शीर्षक उत्पन्न करने के लिए इस FieldName प्रयोग करें apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,से आयात ईमेल @@ -1945,6 +1984,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,ब्रा DocType: Social Login Key,Client URLs,क्लाइंट यूआरएल apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,कुछ जानकारी गायब है apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} सफलतापूर्वक बनाया गया +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","{1} के {0} को छोड़ कर, {2}" DocType: Custom DocPerm,Cancel,रद्द करें apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,बल्क डिलीट करें apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,{0} मौजूद नहीं है फ़ाइल @@ -1972,7 +2012,6 @@ DocType: GCalendar Account,Session Token,सत्र टोकन DocType: Currency,Symbol,प्रतीक apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,डेटा की पुष्टि करें -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,नई पासवर्ड ईमेल apps/frappe/frappe/auth.py,Login not allowed at this time,लॉगइन इस समय की अनुमति नहीं DocType: Data Migration Run,Current Mapping Action,वर्तमान मैपिंग एक्शन DocType: Dashboard Chart Source,Source Name,स्रोत का नाम @@ -1985,6 +2024,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,प apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,के बाद DocType: LDAP Settings,LDAP Email Field,LDAP ईमेल क्षेत्र apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} सूची +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,निर्यात {0} रिकॉर्ड apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,पहले से ही उपयोगकर्ता करने के लिए सूची में DocType: User Email,Enable Outgoing,निवर्तमान सक्षम करें DocType: Address,Fax,फैक्स @@ -2042,8 +2082,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,दस्तावेज़ मुद्रित करें apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,मैदान में कूदें DocType: Contact Us Settings,Forward To Email Address,फॉरवर्ड ईमेल पते पर +DocType: Contact Phone,Is Primary Phone,प्राथमिक फोन है apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,इसे लिंक करने के लिए {0} पर एक ईमेल भेजें। DocType: Auto Email Report,Weekdays,काम करने के दिन +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} रिकॉर्ड निर्यात किया जाएगा apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,शीर्षक फ़ील्ड एक वैध fieldname होना चाहिए DocType: Post Comment,Post Comment,टिप्पणी पोस्ट करें apps/frappe/frappe/config/core.py,Documents,दस्तावेज़ @@ -2061,7 +2103,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",यह क्षेत्र केवल तभी दिखाई देगा FIELDNAME यहाँ परिभाषित महत्व है या नियमों के सच्चे (उदाहरण) कर रहे हैं: myfield eval: doc.myfield == 'मेरा मान' eval: doc.age> 18 DocType: Social Login Key,Office 365,ऑफिस 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,आज +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","आप इस सेट करने के बाद , उपयोगकर्ताओं को केवल सक्षम पहुँच दस्तावेजों लिंक मौजूद है, जहां (जैसे ब्लॉग पोस्ट) (जैसे ब्लॉगर ) हो जाएगा ." +DocType: Data Import Beta,Submit After Import,आयात के बाद सबमिट करें DocType: Error Log,Log of Scheduler Errors,समयबद्धक त्रुटियाँ का प्रवेश DocType: User,Bio,जैव DocType: OAuth Client,App Client Secret,अनुप्रयोग ग्राहकों का सीक्रेट @@ -2080,10 +2124,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,लॉगइन पेज में ग्राहक पंजीकरण कड़ी अक्षम apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ स्वामी को सौंपा DocType: Workflow State,arrow-left,तीर बाएँ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,निर्यात 1 रिकॉर्ड DocType: Workflow State,fullscreen,fullscreen DocType: Chat Token,Chat Token,चैट टोकन apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,चार्ट बनाएं apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,आयात मत करो DocType: Web Page,Center,केंद्र DocType: Notification,Value To Be Set,मूल्य निर्धारित करने के लिए apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} संपादित करें @@ -2103,6 +2149,7 @@ DocType: Print Format,Show Section Headings,शो धारा शीर्ष DocType: Bulk Update,Limit,हद apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},हमें {0} से जुड़े डेटा को हटाने के लिए अनुरोध मिला है: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,एक नया खंड जोड़ें +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,फ़िल्टर किए गए रिकॉर्ड apps/frappe/frappe/www/printview.py,No template found at path: {0},पथ पर पाया कोई खाका: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,कोई ईमेल खाता DocType: Comment,Cancelled,रद्द @@ -2189,10 +2236,13 @@ 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} नहीं कर सकता 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,आपका लॉगिन आईडी होगा +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,वैश्विक खोज दस्तावेज़ प्रकार रीसेट करें। ,Lead Conversion Time,लीड रूपांतरण समय apps/frappe/frappe/desk/page/activity/activity.js,Build Report,रिपोर्ट बनाएँ DocType: Note,Notify users with a popup when they log in,जब वे लोग इन उपयोगकर्ताओं को एक पॉपअप के साथ सूचित करें +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,कोर मॉड्यूल {0} को ग्लोबल सर्च में नहीं खोजा जा सकता है। apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,चैट खोलें apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} मौजूद नहीं है , मर्ज करने के लिए एक नया लक्ष्य का चयन करे" DocType: Data Migration Connector,Python Module,पायथन मॉड्यूल @@ -2209,8 +2259,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,बंद करें 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> उपयोगकर्ता अनुमतियाँ -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,अद्यतन +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,अद्यतन DocType: Transaction Log,Transaction Hash,लेनदेन हैश DocType: Error Snapshot,Snapshot View,स्नैपशॉट देखें apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,कृपया इस समाचार पत्र भेजने से पहले सहेजें @@ -2226,6 +2275,7 @@ DocType: Data Import,In Progress,चालू apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,बैकअप के लिए कतारबद्ध। यह एक घंटे के लिए कुछ मिनट लग सकते हैं। DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,उपयोगकर्ता अनुमति पहले से मौजूद है +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},मानचित्रण कॉलम {0} को {1} फ़ील्ड में apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} देखें DocType: User,Hourly,प्रति घंटा apps/frappe/frappe/config/integrations.py,Register OAuth Client App,रजिस्टर OAuth क्लाइंट अनुप्रयोग @@ -2238,7 +2288,6 @@ DocType: SMS Settings,SMS Gateway URL,एसएमएस गेटवे URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} नहीं हो सकता ""{2}"". यह ""{3}"" में से एक होना चाहिए" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} स्वचालित नियम {1} के माध्यम से प्राप्त apps/frappe/frappe/utils/data.py,{0} or {1},{0} या {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,पासवर्ड अद्यतन DocType: Workflow State,trash,कचरा DocType: System Settings,Older backups will be automatically deleted,पुराने बैकअप स्वचालित रूप से हटा दिया जाएगा apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,अमान्य प्रवेश कुंजी आईडी या गुप्त पहुंच कुंजी @@ -2266,6 +2315,7 @@ DocType: Address,Preferred Shipping Address,पसंदीदा शिपि apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,लेटर हेड के साथ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} बनाई गई इस {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},{0}: {1} के लिए पंक्ति {2} की अनुमति नहीं है। प्रतिबंधित क्षेत्र: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं। कृपया सेटअप> ईमेल> ईमेल खाते से एक नया ईमेल खाता बनाएँ DocType: S3 Backup Settings,eu-west-1,यूरोपीय संघ के पश्चिम-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","यदि यह चेक किया गया है, तो मान्य डेटा के साथ पंक्तियां आयात की जाएंगी और बाद में आयात करने के लिए अमान्य पंक्तियों को एक नई फ़ाइल में डाला जाएगा।" apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,दस्तावेज़ भूमिका के उपयोगकर्ताओं द्वारा केवल संपादन है @@ -2292,6 +2342,7 @@ DocType: Custom Field,Is Mandatory Field,अनिवार्य क्षे DocType: User,Website User,वेबसाइट प्रयोक्ता apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,पीडीएफ को प्रिंट करते समय कुछ कॉलम कट सकते हैं। स्तंभों की संख्या 10 से कम रखने की कोशिश करें। apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,नहीं के बराबर होती है +DocType: Data Import Beta,Don't Send Emails,ईमेल न भेजें DocType: Integration Request,Integration Request Service,एकता अनुरोध सेवा DocType: Access Log,Access Log,प्रवेश लॉग DocType: Website Script,Script to attach to all web pages.,स्क्रिप्ट सभी वेब पृष्ठों को देते हैं। @@ -2331,6 +2382,7 @@ DocType: Contact,Passive,निष्क्रिय DocType: Auto Repeat,Accounts Manager,अकाउंट मैनेजर apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} के लिए असाइनमेंट apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,आपका भुगतान रद्द कर दिया गया है +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते से डिफ़ॉल्ट ईमेल खाता सेटअप करें apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,चुनें फ़ाइल प्रकार apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,सभी को देखें DocType: Help Article,Knowledge Base Editor,ज्ञानकोष संपादक @@ -2363,6 +2415,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,डेटा apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,दस्तावेज स्थिति apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,अनुमोदन की आवश्यकता है +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,आपकी फ़ाइल आयात करने से पहले निम्न रिकॉर्ड बनाने की आवश्यकता है। DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth प्राधिकरण कोड apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,आयात की अनुमति नहीं DocType: Deleted Document,Deleted DocType,हटाए गए doctype @@ -2416,8 +2469,8 @@ DocType: System Settings,System Settings,सिस्टम सेटिंग DocType: GCalendar Settings,Google API Credentials,Google एपीआई क्रेडेंशियल्स apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,सत्र प्रारंभ विफल apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},इस ईमेल {0} के लिए भेजा और करने के लिए नकल की थी {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},इस दस्तावेज़ को {0} सबमिट किया DocType: Workflow State,th,वें -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} साल पहले DocType: Social Login Key,Provider Name,प्रदाता का नाम apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},एक नया {0} बनाएँ DocType: Contact,Google Contacts,Google संपर्क @@ -2425,6 +2478,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar खाता DocType: Email Rule,Is Spam,स्पैम है apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},रिपोर्ट {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ओपन {0} +DocType: Data Import Beta,Import Warnings,आयात चेतावनी DocType: OAuth Client,Default Redirect URI,डिफ़ॉल्ट पुनर्निर्देशन यूआरआइ DocType: Auto Repeat,Recipients,प्राप्तकर्ता DocType: System Settings,Choose authentication method to be used by all users,सभी उपयोगकर्ताओं द्वारा उपयोग करने के लिए प्रमाणीकरण विधि चुनें @@ -2542,6 +2596,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,रिपो apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook त्रुटि DocType: Email Flag Queue,Unread,अपठित ग DocType: Bulk Update,Desk,डेस्क +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},स्किपिंग कॉलम {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),फ़िल्टर एक टपल या सूची होना चाहिए (सूची में) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,एक का चयन करें क्वेरी लिखें. नोट परिणाम (सभी डेटा एक ही बार में भेज दिया जाता है) संपर्क नहीं है. DocType: Email Account,Attachment Limit (MB),अनुलग्नक सीमा (एमबी) @@ -2556,6 +2611,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,नई बनाएँ DocType: Workflow State,chevron-down,शेवरॉन नीचे apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),करने के लिए नहीं भेजा ईमेल {0} (विकलांग / सदस्यता वापस) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,निर्यात के लिए खेतों का चयन करें DocType: Async Task,Traceback,वापस ट्रेस करें DocType: Currency,Smallest Currency Fraction Value,सबसे छोटा मुद्रा अंश मूल्य apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,रिपोर्ट तैयार करना @@ -2564,6 +2620,7 @@ DocType: Workflow State,th-list,वें सूची DocType: Web Page,Enable Comments,टिप्पणियां सक्षम apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,नोट्स DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),इस आईपी पते से ही उपयोगकर्ता प्रतिबंधित. एकाधिक आईपी पतों को अल्पविरामों से अलग से जोड़ा जा सकता है. इसके अलावा तरह आंशिक आईपी पते (111.111.111) स्वीकार +DocType: Data Import Beta,Import Preview,आयात पूर्वावलोकन DocType: Communication,From,से apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,पहले एक समूह नोड का चयन करें। apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},में {0} का पता {1} @@ -2662,6 +2719,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,के बीच DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,पंक्तिबद्ध +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म को अनुकूलित करें DocType: Braintree Settings,Use Sandbox,उपयोग सैंडबॉक्स apps/frappe/frappe/utils/goal.py,This month,इस महीने apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,नई कस्टम प्रिंट प्रारूप @@ -2677,6 +2735,7 @@ DocType: Session Default,Session Default,सत्र डिफ़ॉल्ट DocType: Chat Room,Last Message,अंतिम संदेश DocType: OAuth Bearer Token,Access Token,एक्सेस टोकन DocType: About Us Settings,Org History,संगठन इतिहास +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,लगभग {0} मिनट शेष हैं DocType: Auto Repeat,Next Schedule Date,अगली अनुसूची तिथि DocType: Workflow,Workflow Name,वर्कफ़्लो नाम DocType: DocShare,Notify by Email,ईमेल द्वारा सूचित करें @@ -2706,6 +2765,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,लेखक apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,फिर से शुरू भेज apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,फिर से खोलना +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,चेतावनी दिखाएं apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},पुन: {0} DocType: Address,Purchase User,क्रय उपयोगकर्ता DocType: Data Migration Run,Push Failed,पुश विफल @@ -2742,6 +2802,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,उन apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,आपको न्यूज़लेटर देखने की अनुमति नहीं है DocType: User,Interests,रूचियाँ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,पासवर्ड रीसेट निर्देश अपने ईमेल पर भेज दिया गया है +DocType: Energy Point Rule,Allot Points To Assigned Users,आवंटित उपयोगकर्ताओं को अंक आवंटित करें apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","स्तर 0 दस्तावेज़ स्तर की अनुमतियों के लिए है, \\ फ़ील्ड स्तर अनुमतियों के लिए उच्च स्तर।" DocType: Contact Email,Is Primary,प्राथमिक है @@ -2764,6 +2825,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,आयात प्रारंभ करें +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,निर्यात प्रकार DocType: Workflow State,circle-arrow-left,वृत्त - तीर बाएँ DocType: System Settings,Force User to Reset Password,उपयोगकर्ता को पासवर्ड रीसेट करने के लिए बाध्य करें apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","अद्यतन रिपोर्ट प्राप्त करने के लिए, {0} पर क्लिक करें।" @@ -2776,13 +2838,16 @@ DocType: Contact,Middle Name,मध्य नाम DocType: Custom Field,Field Description,फील्ड विवरण apps/frappe/frappe/model/naming.py,Name not set via Prompt,प्रॉम्प्ट के माध्यम से निर्धारित नहीं नाम apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ईमेल इनबॉक्स +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1} के {0} को अपडेट करना, {2}" DocType: Auto Email Report,Filters Display,फिल्टर प्रदर्शन apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",संशोधन करने के लिए "संशोधित_फ्रॉम" फ़ील्ड मौजूद होना चाहिए। +DocType: Contact,Numbers,नंबर apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} {1} {2} पर आपके काम की सराहना की apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,फ़िल्टर सहेजें DocType: Address,Plant,पौधा apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,सभी को उत्तर दें DocType: DocType,Setup,व्यवस्था +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,सभी रिकॉर्ड DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ईमेल पता जिसके Google संपर्क सिंक किए जाने हैं। DocType: Email Account,Initial Sync Count,प्रारंभिक सिंक गणना DocType: Workflow State,glass,कांच @@ -2807,7 +2872,7 @@ DocType: Workflow State,font,फॉन्ट DocType: DocType,Show Preview Popup,पूर्वावलोकन पॉपअप दिखाएं apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,यह एक शीर्ष -100 आम पासवर्ड है। apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,पॉप अप सक्षम करें -DocType: User,Mobile No,नहीं मोबाइल +DocType: Contact,Mobile No,नहीं मोबाइल DocType: Communication,Text Content,पाठ्य सामग्री DocType: Customize Form Field,Is Custom Field,कस्टम क्षेत्र है DocType: Workflow,"If checked, all other workflows become inactive.","अगर जाँच की है, सभी अन्य वर्कफ़्लोज़ निष्क्रिय हो जाते हैं." @@ -2853,6 +2918,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,र apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,नया प्रिंट प्रारूप का नाम apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,साइडबार टॉगल करें DocType: Data Migration Run,Pull Insert,खींचें डालें +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",गुणक मान के साथ गुणा करने के बाद अनुमत अधिकतम अंक (नोट: कोई सीमा नहीं के लिए इस क्षेत्र को खाली छोड़ दें या 0 सेट करें) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,अमान्य टेम्प्लेट apps/frappe/frappe/model/db_query.py,Illegal SQL Query,अवैध SQL क्वेरी apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,अनिवार्य: DocType: Chat Message,Mentions,का उल्लेख है @@ -2867,6 +2935,7 @@ DocType: User Permission,User Permission,उपयोगकर्ता की apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ब्लॉग apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,एलडीएपी स्थापित नहीं है apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,डेटा के साथ डाउनलोड +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} के लिए बदले हुए मान DocType: Workflow State,hand-right,हाथ - सही DocType: Website Settings,Subdomain,उपडोमेन DocType: S3 Backup Settings,Region,प्रदेश @@ -2893,10 +2962,12 @@ DocType: Braintree Settings,Public Key,सार्वजनिक कुंज DocType: GSuite Settings,GSuite Settings,जीएसयूइट सेटिंग्स DocType: Address,Links,लिंक DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,"इस खाते में भेजे गए ईमेल पते का उपयोग करता है, इस खाते का उपयोग करके भेजे गए सभी ईमेल के प्रेषक के नाम के रूप में।" +DocType: Energy Point Rule,Field To Check,जाँच करने के लिए फ़ील्ड apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google संपर्क - Google संपर्क {0}, त्रुटि कोड {1} में संपर्क अपडेट नहीं कर सका।" apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,कृपया दस्तावेज़ प्रकार चुनें। apps/frappe/frappe/model/base_document.py,Value missing for,मूल्य के लिए लापता apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,बाल जोड़ें +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,आयात प्रगति DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",यदि हालत संतुष्ट है तो उपयोगकर्ता को अंकों के साथ पुरस्कृत किया जाएगा। जैसे। doc.status == 'बंद' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: प्रेषित रिकार्ड नष्ट नहीं किया जा सकता है. @@ -2933,6 +3004,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google कैलें apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,पृष्ठ आप के लिए देख रहे हैं याद आ रही है। इसका कारण यह है कि यह ले जाया जाता है या वहाँ कड़ी में एक टाइपो है हो सकता है। apps/frappe/frappe/www/404.html,Error Code: {0},त्रुटि कोड: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","एक या दो पंग्तियोमे, केवल शब्दोमे, प्रविष्टि पृष्ठ का विवरण लिखे। (अधिकतम १४० अक्षर)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} अनिवार्य क्षेत्र हैं DocType: Workflow,Allow Self Approval,आत्म स्वीकृति की अनुमति दें DocType: Event,Event Category,घटना श्रेणी apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,जॉन डो @@ -2981,8 +3053,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,करने के DocType: Address,Preferred Billing Address,पसंदीदा बिलिंग पता apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,एक भी कई अनुरोध में लिखते हैं . छोटे से अनुरोध भेजने के लिए धन्यवाद apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google ड्राइव कॉन्फ़िगर किया गया है। +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,दस्तावेज़ प्रकार {0} दोहराया गया है। apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,मूल्यों को बदल DocType: Workflow State,arrow-up,तीर अप +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} तालिका के लिए कम से कम एक पंक्ति होनी चाहिए apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","ऑटो रिपीट को कॉन्फ़िगर करने के लिए, {0} से "ऑटो रिपीट अनुमति दें" सक्षम करें।" DocType: OAuth Bearer Token,Expires In,में समाप्त होने वाला है DocType: DocField,Allow on Submit,भेजें पर अनुमति दें @@ -3069,6 +3143,7 @@ DocType: Custom Field,Options Help,विकल्पों की मदद स 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 रिकॉर्ड निर्यात किया जाएगा 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,डोमेन तक सीमित करें @@ -3086,6 +3161,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,सत्यापन कोड DocType: Webhook,Webhook Request,वेबहोक अनुरोध apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** विफल: {0} को {1}: {2} DocType: Data Migration Mapping,Mapping Type,मानचित्रण प्रकार +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,अनिवार्य चयन करें apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,ब्राउज़ करें apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","प्रतीकों, अंक, या अपरकेस पत्र के लिए कोई ज़रूरत नहीं है।" DocType: DocField,Currency,मुद्रा @@ -3116,11 +3192,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,पत्र प्रमुख के आधार पर apps/frappe/frappe/utils/oauth.py,Token is missing,टोकन याद आ रही है apps/frappe/frappe/www/update-password.html,Set Password,पासवर्ड सेट +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,सफलतापूर्वक {0} रिकॉर्ड आयात किया गया। apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,नोट: पृष्ठ नाम बदलना इस पृष्ठ पर पिछले यूआरएल को तोड़ देगा। apps/frappe/frappe/utils/file_manager.py,Removed {0},निकाला गया {0} DocType: SMS Settings,SMS Settings,एसएमएस सेटिंग्स DocType: Company History,Highlight,हाइलाइट DocType: Dashboard Chart,Sum,योग +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,डेटा आयात के माध्यम से DocType: OAuth Provider Settings,Force,बल apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},अंतिम बार {0} सिंक किया गया DocType: DocField,Fold,गुना @@ -3157,6 +3235,7 @@ DocType: Workflow State,Home,होम DocType: OAuth Provider Settings,Auto,ऑटो DocType: System Settings,User can login using Email id or User Name,उपयोगकर्ता ईमेल आईडी या यूज़र नेम से लॉगिन कर सकता है DocType: Workflow State,question-sign,सवाल संकेत +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} अक्षम है apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",वेब "दृश्य" के लिए क्षेत्र "मार्ग" अनिवार्य है apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} से पहले स्तंभ सम्मिलित करें DocType: Energy Point Rule,The user from this field will be rewarded points,इस क्षेत्र के उपयोगकर्ता को पुरस्कृत अंक दिए जाएंगे @@ -3190,6 +3269,7 @@ DocType: Website Settings,Top Bar Items,शीर्ष बार आइटम DocType: Notification,Print Settings,प्रिंट सेटिंग DocType: Page,Yes,हां DocType: DocType,Max Attachments,अधिकतम किए गए अनुलग्नकों के +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,लगभग {0} सेकंड शेष हैं DocType: Calendar View,End Date Field,समाप्ति तिथि फ़ील्ड apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,वैश्विक शॉर्टकट DocType: Desktop Icon,Page,पेज @@ -3282,6 +3362,7 @@ apps/frappe/frappe/templates/includes/comments/comments.py,New Comment on {0}: { apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},बहाल {0} {1} के रूप में apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","आप अद्यतन कर रहे हैं, ""अधिलेखन"" का चयन करें और कुछ मौजूदा पंक्तियों को हटाया नहीं जाएगा।" DocType: DocField,Translatable,अनुवाद का लायक़ +apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Syncing {0} of {1},{1} के {0} को सिंक करना DocType: Letter Head,Letter Head in HTML,एचटीएमएल में लेटर हेड apps/frappe/frappe/desk/page/user_profile/user_profile.js,User Profile,उपयोगकर्ता प्रोफ़ाइल DocType: Web Form,Web Form,वेब फार्म @@ -3299,6 +3380,7 @@ DocType: GSuite Settings,Allow GSuite access,जीएसयूइट पहु DocType: DocType,DESC,DESC DocType: DocType,Naming,नामकरण apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,सभी का चयन +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},कॉलम {0} apps/frappe/frappe/config/customization.py,Custom Translations,कस्टम में अनुवाद apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,प्रगति apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,भूमिका से @@ -3340,11 +3422,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,प DocType: Stripe Settings,Stripe Settings,धारी सेटिंग्स DocType: Data Migration Mapping,Data Migration Mapping,डेटा माइग्रेशन मानचित्रण DocType: Auto Email Report,Period,अवधि +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,लगभग {0} मिनट शेष है apps/frappe/frappe/www/login.py,Invalid Login Token,अवैध प्रवेश टोकन 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} में से एक होना चाहिए @@ -3375,6 +3459,7 @@ DocType: Calendar View,Start Date Field,प्रारंभ दिनांक DocType: Role,Role Name,भूमिका का नाम apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,डेस्क के लिए स्विच apps/frappe/frappe/config/core.py,Script or Query reports,स्क्रिप्ट या क्वेरी की रिपोर्ट +DocType: Contact Phone,Is Primary Mobile,प्राथमिक मोबाइल है DocType: Workflow Document State,Workflow Document State,वर्कफ़्लो दस्तावेज़ राज्य apps/frappe/frappe/public/js/frappe/request.js,File too big,फ़ाइल बहुत बड़ी apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ईमेल खाता कई बार जोड़ा @@ -3420,6 +3505,7 @@ DocType: DocField,Float,नाव DocType: Print Settings,Page Settings,पृष्ठ सेटिंग्स apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,सहेजा जा रहा है ... apps/frappe/frappe/www/update-password.html,Invalid Password,अवैध पासवर्ड +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,सफलतापूर्वक {1} का {0} रिकॉर्ड आयात किया गया। DocType: Contact,Purchase Master Manager,क्रय मास्टर प्रबंधक apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,सार्वजनिक / निजी को चालू करने के लिए लॉक आइकन पर क्लिक करें DocType: Module Def,Module Name,मॉड्यूल नाम @@ -3453,6 +3539,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,वैध मोबाइल नंबर दर्ज करें apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,हो सकता है कि कुछ विशेषताएं आपके ब्राउज़र में काम न करें। कृपया अपने ब्राउज़र को नवीनतम संस्करण में अपडेट करें। apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","पता नहीं है, पूछना 'मदद'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},इस दस्तावेज़ को रद्द कर दिया {0} DocType: DocType,Comments and Communications will be associated with this linked document,टिप्पणियाँ और संचार से जुड़े इस दस्तावेज़ के साथ संबद्ध किया जाएगा apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,फ़िल्टर ... DocType: Workflow State,bold,बोल्ड @@ -3471,6 +3558,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,ईमेल DocType: Comment,Published,प्रकाशित apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,आपके ईमेल के लिए धन्यवाद DocType: DocField,Small Text,छोटे अक्षर +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,नंबर {0} फोन के लिए प्राथमिक के साथ-साथ मोबाइल नंबर पर सेट नहीं किया जा सकता है। DocType: Workflow,Allow approval for creator of the document,दस्तावेज़ के निर्माता के लिए अनुमोदन की अनुमति दें apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,रिपोर्ट सुरक्षित रखना DocType: Webhook,on_cancel,on_cancel @@ -3528,6 +3616,7 @@ DocType: Print Settings,PDF Settings,पीडीएफ सेटिंग्स DocType: Kanban Board Column,Column Name,आम नाम DocType: Language,Based On,के आधार पर DocType: Email Account,"For more information, click here.","अधिक जानकारी के लिए, यहां क्लिक करें ।" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,स्तंभों की संख्या डेटा से मेल नहीं खाती apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,डिफ़ॉल्ट बनाना apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,निष्पादन समय: {0} सेकंड apps/frappe/frappe/model/utils/__init__.py,Invalid include path,अमान्य शामिल पथ @@ -3617,7 +3706,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,प्रारंभ समय की रिपोर्ट करें -apps/frappe/frappe/config/settings.py,Export Data,निर्यात जानकारी +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,निर्यात जानकारी 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.,यह एक पृष्ठभूमि की रिपोर्ट है। कृपया उपयुक्त फ़िल्टर सेट करें और फिर एक नया जनरेट करें। @@ -3635,7 +3724,6 @@ DocType: Report,Disable Prepared Report,तैयार रिपोर्ट apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,उपयोगकर्ता {0} ने डेटा हटाने का अनुरोध किया है apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,अवैध पहुँच टोकन। कृपया पुन: प्रयास करें apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","आवेदन एक नए संस्करण के लिए अद्यतन किया गया है, इस पृष्ठ ताज़ा कृपया" -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.,कोई डिफ़ॉल्ट पता टेम्पलेट नहीं मिला। कृपया सेटअप> प्रिंटिंग और ब्रांडिंग> एड्रेस टेम्प्लेट से एक नया बनाएं। DocType: Notification,Optional: The alert will be sent if this expression is true,"वैकल्पिक: यह अभिव्यक्ति सत्य है, तो सतर्क भेजा जाएगा" DocType: Data Migration Plan,Plan Name,योजना का नाम DocType: Print Settings,Print with letterhead,लेटरहेड के साथ प्रिंट @@ -3676,6 +3764,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : सेट नहीं कर सकता रद्द बिना संशोधन apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,पूरा पृष्ठ DocType: DocType,Is Child Table,चाइल्ड तालिका +DocType: Data Import Beta,Template Options,टेम्पलेट विकल्प apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} {1} में से एक होना चाहिए apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} वर्तमान में इस दस्तावेज़ देख रहा है apps/frappe/frappe/config/core.py,Background Email Queue,पृष्ठभूमि ईमेल कतार @@ -3683,7 +3772,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,पासवर् DocType: Communication,Opened,खोला DocType: Workflow State,chevron-left,शेवरॉन छोड़ दिया DocType: Communication,Sending,भेजना -apps/frappe/frappe/auth.py,Not allowed from this IP Address,यह आईपी पते से अनुमति नहीं DocType: Website Slideshow,This goes above the slideshow.,इस स्लाइड शो से ऊपर चला जाता है. DocType: Contact,Last Name,सरनेम DocType: Event,Private,निजी @@ -3697,7 +3785,6 @@ DocType: Workflow Action,Workflow Action,वर्कफ़्लो लड़ apps/frappe/frappe/utils/bot.py,I found these: ,मैं इन पाया: DocType: Event,Send an email reminder in the morning,सुबह में एक ईमेल अनुस्मारक भेजें DocType: Blog Post,Published On,पर प्रकाशित -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं। कृपया सेटअप> ईमेल> ईमेल खाते से एक नया ईमेल खाता बनाएँ 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} पर वापस कर दिया @@ -3718,7 +3805,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,चेतावनी संकेत DocType: Prepared Report,Prepared Report,तैयार रिपोर्ट apps/frappe/frappe/config/website.py,Add meta tags to your web pages,अपने वेब पृष्ठों पर मेटा टैग जोड़ें -DocType: Contact,Phone Nos,फोन न DocType: Workflow State,User,उपयोगकर्ता DocType: Website Settings,"Show title in browser window as ""Prefix - title""",के रूप में ब्राउज़र विंडो में दिखाएं शीर्षक "उपसर्ग - शीर्षक" DocType: Payment Gateway,Gateway Settings,गेटवे सेटिंग @@ -3735,6 +3821,7 @@ DocType: Data Migration Connector,Data Migration,आंकड़ों का DocType: User,API Key cannot be regenerated,एपीआई कुंजी पुन: उत्पन्न नहीं किया जा सकता है apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,कुछ गलत हो गया DocType: System Settings,Number Format,संख्या स्वरूप +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,सफलतापूर्वक {0} रिकॉर्ड आयात किया गया। apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,सारांश DocType: Event,Event Participants,घटना प्रतिभागियों DocType: Auto Repeat,Frequency,आवृत्ति @@ -3742,7 +3829,7 @@ DocType: Custom Field,Insert After,बाद सम्मिलित करे DocType: Event,Sync with Google Calendar,Google कैलेंडर के साथ सिंक करें DocType: Access Log,Report Name,रिपोर्ट नाम DocType: Desktop Icon,Reverse Icon Color,रिवर्स चिह्न का रंग -DocType: Notification,Save,सहेजें +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,सहेजें apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,अगली अनुसूचित तारीख apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,कम से कम असाइनमेंट वाले को असाइन करें apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,खंड के शीर्ष @@ -3765,11 +3852,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म को अनुकूलित करें DocType: Google Contacts,Last Sync On,अंतिम सिंक ऑन DocType: Deleted Document,Deleted Document,हटाए गए दस्तावेज apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ओह! कुछ गलत हो गया है DocType: Desktop Icon,Category,श्रेणी +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},मान {0} {1} के लिए अनुपलब्ध apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,संपर्क जोड़ें apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,परिदृश्य apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,जावास्क्रिप्ट में क्लाइंट साइड स्क्रिप्ट एक्सटेंशन @@ -3792,6 +3879,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,एनर्जी पॉइंट अपडेट apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',कृपया किसी अन्य भुगतान विधि चुनें। पेपैल मुद्रा में लेन-देन का समर्थन नहीं करता '{0}' DocType: Chat Message,Room Type,कमरे जैसा +DocType: Data Import Beta,Import Log Preview,आयात लॉग पूर्वावलोकन apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,खोज के क्षेत्र {0} मान्य नहीं है apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,अपलोड की गई फ़ाइल DocType: Workflow State,ok-circle,ठीक चक्र @@ -3858,6 +3946,7 @@ DocType: DocType,Allow Auto Repeat,ऑटो रिपीट की अनुम apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,दिखाने के लिए कोई मूल्य नहीं DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ईमेल टेम्पलेट +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,सफलतापूर्वक {0} रिकॉर्ड अपडेट किया गया। apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},उपयोगकर्ता {0} के पास दस्तावेज़ के लिए भूमिका अनुमति के माध्यम से सिद्धांत का उपयोग नहीं है {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,आवश्यक लॉगिन और पासवर्ड दोनों apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,नवीनतम दस्तावेज प्राप्त करने के लिए ताज़ा करें. diff --git a/frappe/translations/hr.csv b/frappe/translations/hr.csv index f37dc77ef5..95a7d6b741 100644 --- a/frappe/translations/hr.csv +++ b/frappe/translations/hr.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Dostupna su nova {} izdanja za sljedeće aplikacije apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Odaberite polje Količina. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Učitavanje datoteke za uvoz ... DocType: Assignment Rule,Last User,Posljednji korisnik apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Novi zadatak, {0}, dodijeljen Vama od {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Zadržane sesije su spremljene +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Učitaj datoteku DocType: Email Queue,Email Queue records.,E-Queue zapisa. DocType: Post,Post,poslije DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mjesečno DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Omogućiti dolazne apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Opasnost -apps/frappe/frappe/www/login.py,Email Address,Email adresa +DocType: Address,Email Address,Email adresa DocType: Workflow State,th-large,og veliki DocType: Communication,Unread Notification Sent,Nepročitana Obavijest Poslano apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Izvoz nisu dopušteni . Trebate {0} ulogu za izvoz . @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt opcije, poput "Sales Query, Podrška upit" itd jedni na novoj liniji ili odvojene zarezima." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Dodavanje oznake ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret -DocType: Data Migration Run,Insert,Insert +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insert apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Dopusti pristup Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Odaberite {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Unesite osnovni URL @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Prije 1 mi 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 DocType: Company History,Company History,Povijest tvrtke -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Reset +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Reset DocType: Workflow State,volume-up,glasnoće prema gore apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhookovi zovu API zahtjeve u web aplikacije +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Prikaži Traceback DocType: DocType,Default Print Format,Zadani oblik ispisa DocType: Workflow State,Tags,oznake apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ništa: Kraj Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polje ne može se postaviti kao jedinstvena po {1}, kao što su non-jedinstveni postojeće vrijednosti" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Vrste dokumenata +DocType: Global Search Settings,Document Types,Vrste dokumenata DocType: Address,Jammu and Kashmir,Jammu i Kašmir DocType: Workflow,Workflow State Field,Workflow Državna polja -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Postavljanje> Korisnik DocType: Language,Guest,Gost DocType: DocType,Title Field,Naslov Field DocType: Error Log,Error Log,Greška Prijava @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Ponavlja poput "abcabcabc" su samo malo teže pogoditi nego "ABC" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ako mislite da je to neovlašteno, molimo promijenite lozinku administratora." +DocType: Data Import Beta,Data Import Beta,Beta uvoza podataka apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} je obavezno DocType: Assignment Rule,Assignment Rules,Pravila dodjele DocType: Workflow State,eject,izbaciti @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Workflow Akcija Ime apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE se ne može spajati DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nije zip datoteka +DocType: Global Search DocType,Global Search DocType,Global Search DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                        New {{ doc.doctype }} #{{ doc.name }}
                                        ","Da biste dodali dinamički predmet, upotrijebite oznake jinja poput
                                         New {{ doc.doctype }} #{{ doc.name }} 
                                        " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Događaj događaja apps/frappe/frappe/public/js/frappe/utils/user.js,You,Vi DocType: Braintree Settings,Braintree Settings,Braintree postavke +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Izrađeno je {0} zapisa. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Spremi filtar DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Nije moguće izbrisati {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Unesite URL parametar za p apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Automatsko ponavljanje stvoreno za ovaj dokument apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Pregledajte izvješće u pregledniku apps/frappe/frappe/config/desk.py,Event and other calendars.,Događaj i druge kalendare. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 red obavezan) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Sva polja su potrebna za slanje komentara. DocType: Custom Script,Adds a client custom script to a DocType,Dodaje prilagođenu skriptu klijenta u DocType DocType: Print Settings,Printer Name,Naziv pisača @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Skupno ažuriranje DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Dopustite Ocjene se Pogledaj apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ne smije biti isti kao {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Obriši {0} stavke trajno? apps/frappe/frappe/utils/oauth.py,Not Allowed,Nije dopušteno @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Prikaz DocType: Email Group,Total Subscribers,Ukupno Pretplatnici apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Redak broj apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","AkoUloga nema pristup na razini 0 , onda je viša razina su besmislene ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Spremi kao DocType: Comment,Seen,Vidio @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Određuje tijek rada države i pravila za dokument. DocType: Workflow State,Filter,filter @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Zatvoreno DocType: Blog Settings,Blog Title,Naslov bloga apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standardni uloge ne može se isključiti apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Vrsta razgovora +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Stupci na karti DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Bilten apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Ne može se koristiti pod-upita kako od strane @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Dodajte kolumnu apps/frappe/frappe/www/contact.html,Your email address,Vaša e-mail adresa DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Uspješno ažurirani {0} zapisi od {1}. DocType: Notification,Send Alert On,Pošalji upozorenje na DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Prilagodi oznaku, sakrij ispis, zadani itd." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Raspakiranje datoteka ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Korisnik {0} se ne može izbrisati DocType: System Settings,Currency Precision,Preciznost valute apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Još jedna transakcija blokira ovaj jedan. Pokušajte ponovno za nekoliko sekundi. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Očistite filtre DocType: Test Runner,App,aplikacija apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Privici nisu mogli biti ispravno povezani s novim dokumentom DocType: Chat Message Attachment,Attachment,Vezanost @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nije moguće apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google kalendar - Nije moguće ažurirati događaj {0} u Google kalendaru, kôd pogreške {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Traži ili upiši naredbu DocType: Activity Log,Timeline Name,Kronologija Ime +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Samo jedan {0} može se postaviti kao primarni. DocType: Email Account,e.g. smtp.gmail.com,npr smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Dodaj novo pravilo DocType: Contact,Sales Master Manager,Prodaja Master Manager @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Polje LDAP-ovog imena apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Uvoz {0} od {1} DocType: GCalendar Account,Allow GCalendar Access,Dopusti GCalendar pristup -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} je obavezno polje +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je obavezno polje apps/frappe/frappe/templates/includes/login/login.js,Login token required,Potreban je tok za prijavu apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mjesečni poredak: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Odaberite više stavki popisa @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Ne mogu se spojiti: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Riječ s očitim značenjem. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automatski zadatak nije uspio: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Traži... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Odaberite tvrtke apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Spajanje je moguće samo između Group - na - Grupe ili Leaf od čvora do čvor nultog stupnja apps/frappe/frappe/utils/file_manager.py,Added {0},Dodano {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Nije pronađen niti jedan zapis. nešto novo pretrage @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,OAuth ID klijenta DocType: Auto Repeat,Subject,Predmet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Natrag na stol DocType: Web Form,Amount Based On Field,Iznos koji se temelji na terenskom -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Korisnik je obvezan za Podijeli DocType: DocField,Hidden,skriven DocType: Web Form,Allow Incomplete Forms,Dopusti nepotpune Obrasci @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Započnite razgovor. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Uvijek dodaj "skica" Na putu za ispis nacrta dokumenata apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Pogreška u obavijesti: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} prije (i) godine DocType: Data Migration Run,Current Mapping Start,Trenutni početak mapiranja apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-adresa je označena kao neželjena pošta DocType: Comment,Website Manager,Web Manager @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,Barkod apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Korištenje pod-upita ili funkcije ograničeno je apps/frappe/frappe/config/customization.py,Add your own translations,Dodajte svoje prijevode DocType: Country,Country Name,Država Ime +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Prazan predložak DocType: About Us Team Member,About Us Team Member,"""O nama"" član tima" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Dozvole su postavljene na uloge i vrsta dokumenata (zove DocTypes ) postavljanjem prava kao što su čitanje , pisanje, stvaranje, brisanje, Slanje , Odustani , Izmijeniti , izvješće , uvoz , izvoz , ispis , e-mail i postaviti dozvole korisnicima ." DocType: Event,Wednesday,Srijeda @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Web Tema poveznica slike DocType: Web Form,Sidebar Items,Bočna Stavke DocType: Web Form,Show as Grid,Prikaži kao rešetku apps/frappe/frappe/installer.py,App {0} already installed,App {0} već instaliran +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Korisnici dodijeljeni referentnom dokumentu dobit će bodove. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Nema pregleda DocType: Workflow State,exclamation-sign,usklik-znak apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Raspakirane datoteke {0} @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Dani prije apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dnevni događaji trebali bi završiti istog dana. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Uredi... DocType: Workflow State,volume-down,glasnoće prema dolje +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Nije dopušten pristup s ove IP adrese apps/frappe/frappe/desk/reportview.py,No Tags,nema oznaka DocType: Email Account,Send Notification to,Pošalji Obavijest DocType: DocField,Collapsible,Sklopiva @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Programer apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Napravljeno apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} je u redu {1} Ne možete imati i URL i dijete stavke +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Za sljedeće tablice treba biti najmanje jedan redak: {0} DocType: Print Format,Default Print Language,Zadani jezik ispisa apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Predaka apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Korijen {0} se ne može izbrisati @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Domaćin +DocType: Data Import Beta,Import File,Uvezi datoteku apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolona {0} već postoji. DocType: ToDo,High,Visok apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Novi događaj @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Pošalji obavijesti za teme e apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof. apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne u načinu rada razvojnog programera apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Sigurnosna kopija datoteke spremna je -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maksimalan broj bodova dopušten nakon množenja bodova s vrijednošću množitelja (Napomena: Za ograničenje postavljene vrijednosti kao 0) DocType: DocField,In Global Search,U Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,alineje-lijevo @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Korisnik '{0}' već ima ulogu '{1}' DocType: System Settings,Two Factor Authentication method,Dva metoda autentifikacije faktora apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najprije postavite ime i spremite zapis. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 zapisa apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Zajednička s {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Otkažite pretplatu DocType: View Log,Reference Name,Referenca Ime @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Priključak za migrac 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 DocType: Note,Notify Users On Every Login,Obavijesti korisnike na svakoj prijavi +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Stupac {0} se ne može podudarati s bilo kojim poljem +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Uspješno ažurirani {0} zapisi. DocType: PayPal Settings,API Password,API Lozinka apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Unesite python modul ili odaberite vrstu konektora apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,"Podataka, Naziv Polja nije postavljen za Custom Field" @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Dupli naziv {0} {1} -DocType: Email Queue,Retry,Pokušaj ponovno +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Pokušaj ponovno +DocType: Contact Phone,Number,Broj DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Imate novu poruku od: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Uredi HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Unesite URL za preusmjeravanje apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Pogledaj Nekretnine ( apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kliknite na datoteku da biste je odabrali. DocType: Note Seen By,Note Seen By,Napomena vide apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Pokušajte koristiti dulje uzorak tipkovnice s više zavoja -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,leaderboard +,LeaderBoard,leaderboard DocType: DocType,Default Sort Order,Zadani redoslijed sortiranja DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Pomoć za odgovor e-pošte @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Nova poruka apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Države za tijek rada ( npr. skicu, odobreno Otkazan ) ." DocType: Print Settings,Allow Print for Draft,Dopusti Ispis za Draft +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/link_selector.js,Set Quantity,Postavite Količina apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Pošaljite ovaj dokument za potvrdu DocType: Contact,Unsubscribed,Pretplatu @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organizacijska jedinica za ,Transaction Log Report,Izvješće dnevnika transakcija DocType: Custom DocPerm,Custom DocPerm,Prilagođena DocPerm DocType: Newsletter,Send Unsubscribe Link,Pošalji vezu za odjavu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Postoje neki povezani zapisi koje je potrebno stvoriti prije nego što možemo uvesti vašu datoteku. Želite li automatski stvoriti sljedeće nedostajuće zapise? DocType: Access Log,Method,Metoda DocType: Report,Script Report,Skripta Prijavi DocType: OAuth Authorization Code,Scopes,Rasponi @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Uspješno je učitano apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Povezani ste s internetom. DocType: Social Login Key,Enable Social Login,Omogući društvenu prijavu +DocType: Data Import Beta,Warnings,Upozorenja DocType: Communication,Event,Događaj apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Na {0}, {1} je napisano:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Ne možete izbrisati standardne polje. Možete ga sakriti ako želite @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Umetnite DocType: Kanban Board Column,Blue,Plava apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,"Sve prilagodbe će biti uklonjene. Molimo, potvrdite." DocType: Page,Page HTML,HTML stranica +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Izvoz pogrešnih redaka apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Naziv grupe ne može biti prazan. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,"Daljnje čvorovi mogu se samo stvorio pod ""Grupa"" tipa čvorova" DocType: SMS Parameter,Header,Zaglavlje @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Zatražite Isteklo apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Omogući / onemogući domene DocType: Role Permission for Page and Report,Allow Roles,Dopusti uloga +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} zapisa od {1} uspješno uvezen. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Jednostavni Python Expression, Primjer: Status u ("Nevažeći")" DocType: User,Last Active,Zadnja Aktivnost DocType: Email Account,SMTP Settings for outgoing emails,SMTP postavke za odlaznu e-poštu apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izabrati DocType: Data Export,Filter List,Popis filtara DocType: Data Export,Excel,nadmašiti -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Vaša lozinka je ažurirana. Ovdje je vaša nova lozinka 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 @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Korisnički ID DocType: Communication,Sent,Poslano DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,uprava DocType: User,Simultaneous Sessions,Simultano sesije DocType: Social Login Key,Client Credentials,Mandatno Client @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Ažurir apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Korisnik ne može stvoriti apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Uspješno završeno -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Mapa {0} ne postoji apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Pristup Dropbox je odobren! DocType: Customize Form,Enter Form Type,Unesite tip obrasca DocType: Google Drive,Authorize Google Drive Access,Autorizirajte pristup Google disku @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Nema zapisa tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Ukloni polje apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Niste povezani s internetom. Ponovite nakon nekog vremena. -DocType: User,Send Password Update Notification,Pošalji Lozinka Update Notification apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Dopuštanje DOCTYPE , vrstu dokumenata . Budite oprezni !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Prilagođeno formati za ispis, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Zbroj {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Netočan kôd za pro apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integracija Google kontakata je onemogućena. DocType: Assignment Rule,Description,Opis DocType: Print Settings,Repeat Header and Footer in PDF,Ponovite zaglavlja i podnožja u PDF-u +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Neuspjeh DocType: Address Template,Is Default,Je zadani DocType: Data Migration Connector,Connector Type,Vrsta priključka apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Stupac Ime ne može biti prazno @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Idite na stranicu {0 DocType: LDAP Settings,Password for Base DN,Lozinka za Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tablica polje 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/model/document.py,Action Failed,Akcija nije uspjela apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,za Korisnika @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Omogući sirovi ispis DocType: Website Route Redirect,Source,Izvor apps/frappe/frappe/templates/includes/list/filters.html,clear,jasno apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Gotovi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Postavljanje> Korisnik DocType: Prepared Report,Filter Values,Vrijednosti filtriranja DocType: Communication,User Tags,Upute Tags DocType: Data Migration Run,Fail,iznevjeriti @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,slij ,Activity,Aktivnost DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Pomoć: Za povezivanje na drugi zapis u sustavu, koristite "# Forma / Napomena / [Napomena ime]" kao URL veze. (Ne koristite "http://")" DocType: User Permission,Allow,dopustiti +DocType: Data Import Beta,Update Existing Records,Ažuriranje postojećih zapisa apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Idemo se izbjeglo ponavljaju riječi i znakove DocType: Energy Point Rule,Energy Point Rule,Pravilo energetske točke DocType: Communication,Delayed,Odgođeno @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Trag polje DocType: Notification,Set Property After Alert,Postavljanje entiteta nakon upozorenja apps/frappe/frappe/config/customization.py,Add fields to forms.,Dodaj polja obrascima. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Izgleda da nešto nije u redu s ovom web stranicom Paypal konfiguracijom. -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/sidebar/review.js,Add Review,Dodajte recenziju -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Veličina fonta (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Samo se standardni DocTypes mogu prilagoditi iz obrasca Customize. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Žao mi je! Ne možete izbrisati automatski generirane komentare DocType: Google Settings,Used For Google Maps Integration.,Koristi se za integraciju Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referentna DOCTYPEhtml +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Neće se izvesti nikakvi zapisi DocType: User,System User,Korisnik sustava DocType: Report,Is Standard,Je standardni DocType: Desktop Icon,_report,_izvješće @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,minus znak apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nije pronađeno apps/frappe/frappe/www/printview.py,No {0} permission,Nema {0} ovlasti apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izvoz prilagođene dozvole +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nijedna stavka nije pronađena. DocType: Data Export,Fields Multicheck,Polja Multicheck DocType: Activity Log,Login,Prijava DocType: Web Form,Payments,Plaćanja @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Poštanski DocType: Email Account,Default Incoming,Zadana Incoming DocType: Workflow State,repeat,ponovi DocType: Website Settings,Banner,Baner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vrijednost mora biti jedna od {0} DocType: Role,"If disabled, this role will be removed from all users.","Ako je onemogućen, ova uloga će biti uklonjen iz svih korisnika." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Idite na {0} Popis +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Idite na {0} Popis 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 @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Lokalno ime polja DocType: DocType,Track Changes,Prati promjene DocType: Workflow State,Check,Provjeriti DocType: Chat Profile,Offline,offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Uspješno uvezeno {0} DocType: User,API Key,API ključ DocType: Email Account,Send unsubscribe message in email,Pošalji odjaviti poruku e-pošte apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Uredi naslov @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} je već dodijelio zadanu vrijednost za {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                        No results found for '

                                        ,

                                        Nema rezultata za '

                                        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 @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nije dopušteno za {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 nije valjan format izvješća. Format izvješća trebaju \ jedno od sljedećeg %s DocType: Chat Message,Chat,Razgovor +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Postavljanje> Korisnička dopuštenja DocType: LDAP Group Mapping,LDAP Group Mapping,Kartiranje LDAP grupe DocType: Dashboard Chart,Chart Options,Opcije grafikona +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Kolona bez naslova apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} od {1} {2} u nizu # {3} DocType: Communication,Expired,Istekla apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Izgleda da znak koji upotrebljavate nije važeći! @@ -1528,6 +1558,7 @@ DocType: DocType,System,Sustav DocType: Web Form,Max Attachment Size (in MB),Max veličina privitaka (u MB) apps/frappe/frappe/www/login.html,Have an account? Login,Imate račun? Prijaviti se DocType: Workflow State,arrow-down,strelica prema dolje +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Redak {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Korisniku nije dopušteno brisati {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} od {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Ažurirano @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Prilagođena uloga apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Početna / Ispitni mapa 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Unesite zaporku DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obavezno) 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. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Prikaži n apps/frappe/frappe/desk/form/assign_to.py,New Message,Nova poruka DocType: File,Preview HTML,Pregled HTML DocType: Desktop Icon,query-report,query-izvješće +DocType: Data Import Beta,Template Warnings,Upozorenja predloška apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filteri spasio DocType: DocField,Percent,Postotak apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Molimo postavite filtere @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Prilagođeno DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ako je omogućeno, korisnici koji se prijavljuju s Ograničene IP adrese neće biti zatraženi za Dva faktorska autora" DocType: Auto Repeat,Get Contacts,Preuzmite kontakte apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Postove dokumentirane pod {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Preskakanje stupca bez naslova DocType: Notification,Send alert if date matches this field's value,Pošalji upozorenje ako datum odgovara vrijednost ovom području je DocType: Workflow,Transitions,Prijelazi apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} do {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,korak unatrag apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Molimo postaviti Dropbox pristupnih tipki u vašem web config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Izbriši ovaj rekord dopustiti slanje na ovu e-mail adresu +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ako je nestandardni port (npr. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Prilagodite prečace apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Samo obavezna polja su potrebna za nove zapise. Ako želite, možete izbrisati neobvezne stupce." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Prikaži više aktivnosti @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Vidljivo u tablici apps/frappe/frappe/www/third_party_apps.html,Logged in,Prijavljen apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Default Slanje i Inbox DocType: System Settings,OTP App,OTP aplikacija +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} zapis je uspješno ažuriran od {1}. DocType: Google Drive,Send Email for Successful Backup,Pošaljite e-poštu za uspješnu izradu sigurnosnih kopija +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Planer je neaktivan. Nije moguće uvesti podatke. DocType: Print Settings,Letter,Pismo DocType: DocType,"Naming Options:
                                        1. field:[fieldname] - By Field
                                        2. naming_series: - By Naming Series (field called naming_series must be present
                                        3. Prompt - Prompt user for a name
                                        4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                        5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Sljedeći tokeni za sinkronizaciju DocType: Energy Point Settings,Energy Point Settings,Postavke energetske točke DocType: Async Task,Succeeded,Nasljednik apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obavezna polja potrebna u {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                          No results found for '

                                          ,

                                          Nema rezultata za '

                                          apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset dopuštenja za {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Korisnici i dozvole DocType: S3 Backup Settings,S3 Backup Settings,S3 sigurnosne postavke @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,u DocType: Notification,Value Change,Vrijednost Promjena DocType: Google Contacts,Authorize Google Contacts Access,Autorizirajte pristup Google kontaktima apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Prikazuje se samo numerička polja iz Izvješća +DocType: Data Import Beta,Import Type,Vrsta uvoza DocType: Access Log,HTML Page,HTML stranicu DocType: Address,Subsidiary,Podružnica apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Pokušaj povezivanja s QZ ladicom ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Nevažeći DocType: Custom DocPerm,Write,Pisati apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Samo je administrator ovlašten stvarati upite / izvješća skripte apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ažuriranje -DocType: File,Preview,Pregled +DocType: Data Import Beta,Preview,Pregled apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Polje "vrijednost" je obavezno. Navedite vrijednost se ažurira DocType: Customize Form,Use this fieldname to generate title,Koristite ovaj fieldname generirati naslov apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Uvoz e od @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Preglednik nij DocType: Social Login Key,Client URLs,URL-ovi klijenata apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Neki podaci nedostaju apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} uspješno je izrađen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Preskakanje {0} od {1}, {2}" DocType: Custom DocPerm,Cancel,Otkaži apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Skupno brisanje apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Datoteka {0} ne postoji @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,Tok sesije DocType: Currency,Symbol,Simbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Potvrdite brisanje podataka -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nova zaporka poslana mailom apps/frappe/frappe/auth.py,Login not allowed at this time,Prijava nije dopuštena u ovom trenutku DocType: Data Migration Run,Current Mapping Action,Aktualna mapiranje DocType: Dashboard Chart Source,Source Name,source Name @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Zaka apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Slijedi DocType: LDAP Settings,LDAP Email Field,LDAP E-mail polje apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} lista +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Izvezi {0} zapisa apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Već u user -a Da li popis DocType: User Email,Enable Outgoing,Omogući odlazni DocType: Address,Fax,Fax @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Ispis dokumenata apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skok u polje DocType: Contact Us Settings,Forward To Email Address,Napadač na e-mail adresu +DocType: Contact Phone,Is Primary Phone,Je primarni telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošaljite poruku e-pošte na adresu {0} da biste je povezali ovdje. DocType: Auto Email Report,Weekdays,Radnim danom +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Izvodi se {0} zapisi apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" DocType: Post Comment,Post Comment,Objavi komentar apps/frappe/frappe/config/core.py,Documents,Dokumenti @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Ovo polje će se pojaviti samo ako je FIELDNAME ovdje definirana je vrijednost ili pravila su pravi (primjeri): myfield eval: doc.myfield == "Moj Vrijednost" eval: doc.age> 18 DocType: Social Login Key,Office 365,Ured 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Danas +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Nakon što ste ovo postavili, korisnici će moći samo pristupiti dokumentima (npr. blog post) gdje veza postoji (npr. Blogger)." +DocType: Data Import Beta,Submit After Import,Pošaljite nakon uvoza DocType: Error Log,Log of Scheduler Errors,Zapis grešaka pri planskim radnjama DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,Aplikacija tajna klijenta @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Ugasiti korisnički prijavni link na stranici za prijavu apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Dodijeljeno / VLASNIK DocType: Workflow State,arrow-left,strelica lijevo +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Izvezi 1 zapis DocType: Workflow State,fullscreen,fullscreen DocType: Chat Token,Chat Token,Chat token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Stvorite grafikon apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne uvozi DocType: Web Page,Center,Centar DocType: Notification,Value To Be Set,Vrijednost koju treba postaviti apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Uredi {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,Prikaži Naslovi odjeljaka DocType: Bulk Update,Limit,Ograničiti apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Primili smo zahtjev za brisanje {0} podataka povezanih s: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Dodajte novi odjeljak +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrirani zapisi apps/frappe/frappe/www/printview.py,No template found at path: {0},Nije pronađen predložak na putanji: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ne računa e-pošte DocType: Comment,Cancelled,Otkazano @@ -2190,10 +2237,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Vrste dokumenata za globalno pretraživanje. ,Lead Conversion Time,Vrijeme pretvorbe olova apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Izgradite Prijavite DocType: Note,Notify users with a popup when they log in,Obavijesti korisnicima popup kad se prijavite +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Jezgreni moduli {0} ne mogu se pretraživati u Globalnoj pretraživanju. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Otvorite chat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ne postoji , odaberite novo odredište za spajanje" DocType: Data Migration Connector,Python Module,Python modul @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zatvoriti 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Postavljanje> Korisnička dopuštenja -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Ažuriraj +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Ažuriraj DocType: Transaction Log,Transaction Hash,Transakcijska greška DocType: Error Snapshot,Snapshot View,Snimak Pogledaj apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,U nastajanju apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,U redu za backup. To može potrajati nekoliko minuta do sat vremena. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Dozvola za korisnike već postoji +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Preslikavanje stupca {0} u polje {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Pogledajte {0} DocType: User,Hourly,na sat apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registracija OAuth klijentska aplikacija @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Ne može biti ""{2}"". To bi trebao biti jedan od ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},dobiveno od {0} automatskim pravilom {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ili {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Ažuriranje zaporke DocType: Workflow State,trash,smeće DocType: System Settings,Older backups will be automatically deleted,Stariji sigurnosne kopije automatski će se izbrisati apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Nevažeći ID pristupnog ključa ili ključ za tajni pristup. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,Željena Dostava Adresa apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Uz pismo glavu apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} stvorio ovo {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Nije dopušteno za {0}: {1} u retku {2}. Polje s ograničenjem: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-zapad-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ako je ovo označeno, uvest će se redci s važećim podacima, a nevažeći će se retci baciti u novu datoteku koju ćete kasnije uvesti." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument može uređivati samo korisnik @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,Je Obvezno polje DocType: User,Website User,Korisnik web stranice apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Neki se stupci mogu odrezati tijekom ispisa u PDF. Pokušajte zadržati broj stupaca ispod 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,nisu jednaki +DocType: Data Import Beta,Don't Send Emails,Ne šaljite e-poštu DocType: Integration Request,Integration Request Service,Integracija zahtjev za uslugu DocType: Access Log,Access Log,Dnevnik pristupa DocType: Website Script,Script to attach to all web pages.,Skripta se priključiti na svim web stranicama. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,Pasiva DocType: Auto Repeat,Accounts Manager,Računi Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Dodjela za {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Plaćanje je otkazano. +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/views/reports/report_view.js,Select File Type,Odaberite vrstu datoteke apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Pogledaj sve DocType: Help Article,Knowledge Base Editor,Baza znanja Urednik @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Podaci apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Status dokumenta apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Potrebno je odobrenje +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Sljedeći zapisi moraju biti stvoreni prije nego što možemo uvoziti vašu datoteku. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth za autorizaciju kod apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Nije dopušteno uvoziti DocType: Deleted Document,Deleted DocType,Izbrisano DOCTYPE @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,Postavke sustava DocType: GCalendar Settings,Google API Credentials,Google Credentials API apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesija započela nije uspjela apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ova e-mail je poslan na {0} i kopiju prima {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},poslao ovaj dokument {0} DocType: Workflow State,th,og -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} prije (i) godine DocType: Social Login Key,Provider Name,Naziv poslužitelja apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Stvaranje nove {0} DocType: Contact,Google Contacts,Google kontakti @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar račun DocType: Email Rule,Is Spam,Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Prijavi {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otvori {0} +DocType: Data Import Beta,Import Warnings,Uvozna upozorenja DocType: OAuth Client,Default Redirect URI,Zadana Preusmjeravanje URI DocType: Auto Repeat,Recipients,Primatelji DocType: System Settings,Choose authentication method to be used by all users,Odaberite način provjere autentičnosti koji će koristiti svi korisnici @@ -2543,6 +2597,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Izvješće j apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Pogrešna pogreška u Webhooku DocType: Email Flag Queue,Unread,nepročitan DocType: Bulk Update,Desk,Stol +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Preskakanje stupca {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtar mora biti tup ili popis (na popisu) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Napišite SELECT upita. Napomena rezultat nije zvao (svi podaci se šalju u jednom potezu). DocType: Email Account,Attachment Limit (MB),Limit Prilog (MB) @@ -2557,6 +2612,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Kreiraj novi dokument DocType: Workflow State,chevron-down,Chevron-dolje apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-mail nije poslan {0} (neprijavljen ili ugašen račun) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Odaberite polja za izvoz DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Najmanji valuta Frakcija Vrijednost apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Priprema izvješća @@ -2565,6 +2621,7 @@ DocType: Workflow State,th-list,og-popis DocType: Web Page,Enable Comments,Omogući komentare apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Zabilješke DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Zabraniti korisnika iz ove IP adrese samo. Višestruki IP adrese može biti dodan odvajajući zarezima. Također prihvaća djelomične IP adrese kao što su (111.111.111) +DocType: Data Import Beta,Import Preview,Uvezi pregled DocType: Communication,From,Od apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Odaberite grupu čvor na prvom mjestu. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Nađi {0} u {1} @@ -2663,6 +2720,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Između DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Čekanju +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavljanje> Prilagodba obrasca DocType: Braintree Settings,Use Sandbox,Sandbox apps/frappe/frappe/utils/goal.py,This month,Ovaj mjesec apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Novi Prilagođeni ispis formata @@ -2707,6 +2765,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Nastavi Slanje apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Ponovno otvori +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Prikaži upozorenja apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Korisnik nabave DocType: Data Migration Run,Push Failed,Push nije uspjelo @@ -2743,6 +2802,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Napred apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nemate dopuštenje za pregled newslettera. DocType: User,Interests,interesi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Upute poništenja zaporke su poslane na e-mail +DocType: Energy Point Rule,Allot Points To Assigned Users,Dodijelite bodove dodijeljenim korisnicima apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Razina 0 odnosi se na dozvole na razini dokumenta, \ viših razina za dopuštenja na razini polja." DocType: Contact Email,Is Primary,Primarno je @@ -2765,6 +2825,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Vrsta izvoza DocType: Workflow State,circle-arrow-left,krug sa strelicom nalijevo DocType: System Settings,Force User to Reset Password,Prisilite korisnika da resetira lozinku apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Da biste dobili ažurirano izvješće, kliknite na {0}." @@ -2777,13 +2838,16 @@ DocType: Contact,Middle Name,Srednje ime DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py,Name not set via Prompt,Ne postavljajte ime preko Prompt-a apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-pošta +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Ažuriranje {0} od {1}, {2}" DocType: Auto Email Report,Filters Display,filteri za prikaz apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Za dopunu mora biti prisutno polje "izmijenjeno_ i od". +DocType: Contact,Numbers,brojevi apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} cijenio je vaš rad na {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Spremite filtre DocType: Address,Plant,Biljka apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odgovori svima DocType: DocType,Setup,Postavke +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Svi zapisi DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adresa e-pošte čiji se Google kontakti trebaju sinkronizirati. DocType: Email Account,Initial Sync Count,Početno Sinkronizacija Točka DocType: Workflow State,glass,staklo @@ -2808,7 +2872,7 @@ DocType: Workflow State,font,krstionica DocType: DocType,Show Preview Popup,Prikaži skočni prikaz Preview apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ovo je top-100 uobičajene lozinke. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Molimo omogućite pop-up prozora -DocType: User,Mobile No,Mobitel br +DocType: Contact,Mobile No,Mobitel br DocType: Communication,Text Content,tekstualni sadržaj DocType: Customize Form Field,Is Custom Field,Je Custom Field DocType: Workflow,"If checked, all other workflows become inactive.","Ako je označeno, svi ostali tijekovi postaju neaktivne." @@ -2854,6 +2918,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Dodaj apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Ime novog ispisnog oblika apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Prebacivanje bočne trake DocType: Data Migration Run,Pull Insert,Povucite umetak +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Maksimalan broj bodova dopušten nakon množenja bodova s vrijednošću množitelja (Napomena: Ako nema ograničenja, ovo polje ne ostavljajte prazno ili postavite 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Nevažeći predložak apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Nezakoniti SQL upit apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obavezno: DocType: Chat Message,Mentions,spominje @@ -2868,6 +2935,7 @@ DocType: User Permission,User Permission,Korisnička ovlast apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nije instaliran apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Preuzmite podatke +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},promijenjene vrijednosti za {0} {1} DocType: Workflow State,hand-right,ruka-desna DocType: Website Settings,Subdomain,Poddomena DocType: S3 Backup Settings,Region,Regija @@ -2894,10 +2962,12 @@ DocType: Braintree Settings,Public Key,Javni ključ DocType: GSuite Settings,GSuite Settings,GSuite postavke DocType: Address,Links,Linkovi DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Koristi ime e-adrese navedene na ovom računu kao ime pošiljatelja za sve poruke e-pošte poslane ovim računom. +DocType: Energy Point Rule,Field To Check,Polje za provjeru apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google kontakti - nije moguće ažurirati kontakt u Google kontaktima {0}, kôd pogreške {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Odaberite vrstu dokumenta. apps/frappe/frappe/model/base_document.py,Value missing for,Vrijednost nestao apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Dodaj dijete +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Uvozi napredak DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Ako je uvjet zadovoljan, korisnik će biti nagrađen bodovima. npr. doc.status == 'Zatvoreno'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Snimljeni zapis ne može biti brisan. @@ -2934,6 +3004,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizirajte pristup apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Stranica koju tražite je nestalo. To može biti zato što je premještena ili postoji pogreška pri upisu u vezu. apps/frappe/frappe/www/404.html,Error Code: {0},Kod greške: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis za unos stranice, kao običan tekst, samo par redaka. (najviše 140 znakova)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} su obavezna polja DocType: Workflow,Allow Self Approval,Dopusti samoprovjera DocType: Event,Event Category,Kategorija događaja apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2982,8 +3053,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Premjesti u DocType: Address,Preferred Billing Address,Željena adresa za naplatu apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Previše piše u jednom zahtjevu . Molimo poslali manje zahtjeve apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google pogon konfiguriran je. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Vrsta dokumenta {0} je ponovljena. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Vrijednosti promjene DocType: Workflow State,arrow-up,strelica prema gore +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Za {0} tablicu treba biti najmanje jedan redak apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Da biste konfigurirali automatsko ponavljanje, omogućite "Dopusti automatsko ponavljanje" od {0}." DocType: OAuth Bearer Token,Expires In,istječe DocType: DocField,Allow on Submit,Dopusti pri potvrdi @@ -3070,6 +3143,7 @@ DocType: Custom Field,Options Help,Opcije - pomoć 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 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 @@ -3087,6 +3161,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Šifra za provjeru DocType: Webhook,Webhook Request,Zahtjev za webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Nije uspjelo: {0} do {1}: {2} DocType: Data Migration Mapping,Mapping Type,Vrsta kartiranja +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Odaberite Obavezno apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Pretraži apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Nema potrebe za simbolima, brojki ili velikih slova." DocType: DocField,Currency,Valuta @@ -3117,11 +3192,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Pismo na temelju apps/frappe/frappe/utils/oauth.py,Token is missing,Token nedostaje apps/frappe/frappe/www/update-password.html,Set Password,Postavi lozinku +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Uspješno uvezeni {0} zapisa. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Napomena: Promjena naziva stranice će prekinuti prethodni URL ovoj stranici. apps/frappe/frappe/utils/file_manager.py,Removed {0},Uklonjeno {0} DocType: SMS Settings,SMS Settings,SMS postavke DocType: Company History,Highlight,Istaknuto DocType: Dashboard Chart,Sum,Iznos +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,putem Uvoza podataka DocType: OAuth Provider Settings,Force,Sila apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Zadnja sinkronizacija {0} DocType: DocField,Fold,Saviti @@ -3158,6 +3235,7 @@ DocType: Workflow State,Home,dom DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Korisnik se može prijaviti pomoću ID e-pošte ili korisničkog imena DocType: Workflow State,question-sign,pitanje-prijava +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je onemogućen apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Polje "ruta" obvezno je za web-prikazi apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Umetni stupac prije {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Korisnik iz ovog polja dobit će bodove @@ -3191,6 +3269,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Proizvodi DocType: Notification,Print Settings,Postavke ispisa DocType: Page,Yes,Da DocType: DocType,Max Attachments,Maksimalno 5 privitaka +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Preostalo oko {0} sekundi DocType: Calendar View,End Date Field,Polje datuma završetka apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalne prečice DocType: Desktop Icon,Page,Stranica @@ -3301,6 +3380,7 @@ DocType: GSuite Settings,Allow GSuite access,Dopusti GSuite pristup DocType: DocType,DESC,DESC DocType: DocType,Naming,Imenovanje apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Odaberite sve +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Stupac {0} apps/frappe/frappe/config/customization.py,Custom Translations,Prilagođeni Prijevodi apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Napredak apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,prema ulozi @@ -3347,6 +3427,7 @@ apps/frappe/frappe/public/js/frappe/chat.js,Discard,Odbaciti apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,Prije 1 sat DocType: Website Settings,Home Page,Početna stranica DocType: Error Snapshot,Parent Error Snapshot,Roditelj Greška Snimak +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Preslikajte stupce od {0} do polja na {1} DocType: Access Log,Filters,Filteri DocType: Workflow State,share-alt,Udio-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Red čekanja treba biti jedan od {0} @@ -3377,6 +3458,7 @@ DocType: Calendar View,Start Date Field,Polje datuma početka DocType: Role,Role Name,Naziv uloge apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Prebaci se na pultu apps/frappe/frappe/config/core.py,Script or Query reports,Skripta ili upita izvješća +DocType: Contact Phone,Is Primary Mobile,Primarno je mobilni DocType: Workflow Document State,Workflow Document State,Workflow dokument Država apps/frappe/frappe/public/js/frappe/request.js,File too big,Datoteka je prevelika apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Računa e-pošte dodaju više puta @@ -3422,6 +3504,7 @@ DocType: DocField,Float,Plutati DocType: Print Settings,Page Settings,Postavke stranice apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Spremanje ... apps/frappe/frappe/www/update-password.html,Invalid Password,Netočna zaporka +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} zapis uvezen od {1}. DocType: Contact,Purchase Master Manager,Upravitelj predloška nabave apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Kliknite ikonu zaključavanja kako biste prebacili javnu / privatnu DocType: Module Def,Module Name,Naziv modula @@ -3455,6 +3538,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Unesite valjane mobilne br apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Neke značajke možda neće funkcionirati u vašem pregledniku. Ažurirajte preglednik na najnoviju verziju. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Ne znam, pitaj 'pomoć'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},otkazao ovaj dokument {0} DocType: DocType,Comments and Communications will be associated with this linked document,Komentari i komunikacije će biti povezani s ovom vezni dokument apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,odvažan @@ -3473,6 +3557,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Dodaj / uredi DocType: Comment,Published,Objavljen apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Hvala vam na e-mail DocType: DocField,Small Text,Mali Tekst +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Broj {0} ne može se postaviti kao primarni za Telefon, kao ni mobilni br." DocType: Workflow,Allow approval for creator of the document,Dopustite odobrenje autoru dokumenta apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Spremi izvješće DocType: Webhook,on_cancel,on_cancel @@ -3530,6 +3615,7 @@ DocType: Print Settings,PDF Settings,PDF postavke DocType: Kanban Board Column,Column Name,Naziv Stupac DocType: Language,Based On,Na temelju DocType: Email Account,"For more information, click here.","Za više informacija, kliknite ovdje ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Broj stupaca ne odgovara podacima apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Napravi zadani apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Vrijeme izvršenja: {0} sec apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Nevažeća staza uključuje @@ -3619,7 +3705,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Prenesite {0} datoteke DocType: Deleted Document,GCalendar Sync ID,ID sinkronizacije GCalendar DocType: Prepared Report,Report Start Time,Prijavi poÄŤetno vrijeme -apps/frappe/frappe/config/settings.py,Export Data,Izvoz podataka +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Izvoz podataka 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. @@ -3637,7 +3723,6 @@ DocType: Report,Disable Prepared Report,Onemogući pripremljeno izvješće apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Korisnik {0} zatražio je brisanje podataka apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Ilegalna Access Token. Molim te pokušaj ponovno apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Zahtjev je ažuriran na novu verziju, molimo osvježite ovu stranicu" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,Opcionalno: upozorenje će biti poslana ako ovaj izraz je istina DocType: Data Migration Plan,Plan Name,Naziv plana DocType: Print Settings,Print with letterhead,Ispis s zaglavljem @@ -3678,6 +3763,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Puni Stranica DocType: DocType,Is Child Table,Je Dijete Tablica +DocType: Data Import Beta,Template Options,Opcije predloška apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} mora biti jedan od {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} trenutno pregledava ovaj dokument apps/frappe/frappe/config/core.py,Background Email Queue,Pozadina e red @@ -3685,7 +3771,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Poništi zaporku DocType: Communication,Opened,Otvoren DocType: Workflow State,chevron-left,Chevron-lijevo DocType: Communication,Sending,Slanje -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Nije dopušteno s ove IP adrese DocType: Website Slideshow,This goes above the slideshow.,Ovo ide iznad slideshow-a. DocType: Contact,Last Name,Prezime DocType: Event,Private,Privatan @@ -3699,7 +3784,6 @@ DocType: Workflow Action,Workflow Action,Akcija hodograma apps/frappe/frappe/utils/bot.py,I found these: ,Našao sam ove: DocType: Event,Send an email reminder in the morning,Pošaljite email podsjetnik ujutro DocType: Blog Post,Published On,Objavljeno Dana -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 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} @@ -3720,7 +3804,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,upozorenje-znak DocType: Prepared Report,Prepared Report,Pripremljeno izvješće apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Dodajte meta oznake na svoje web stranice -DocType: Contact,Phone Nos,Broj telefona 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 @@ -3737,6 +3820,7 @@ DocType: Data Migration Connector,Data Migration,Migracija podataka DocType: User,API Key cannot be regenerated,API ključ nije moguće regenerirati apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Nešto je pošlo po zlu DocType: System Settings,Number Format,Broj formata +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} zapis uspješno uvezen. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sažetak DocType: Event,Event Participants,Sudionici događaja DocType: Auto Repeat,Frequency,Frekvencija @@ -3744,7 +3828,7 @@ DocType: Custom Field,Insert After,Umetni Nakon DocType: Event,Sync with Google Calendar,Sinkronizirajte s Google kalendarom DocType: Access Log,Report Name,Naziv izvješća DocType: Desktop Icon,Reverse Icon Color,Obrnuti boju ikone -DocType: Notification,Save,Spremi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Spremi apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Sljedeći raspored datuma apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Dodijelite onome koji ima najmanje zadataka apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Odjeljak naslov @@ -3767,11 +3851,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Postavljanje> Prilagodba obrasca 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 DocType: Desktop Icon,Category,Kategorija +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Vrijednost {0} nedostaje za {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Dodajte kontakte apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,pejzaž apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Strani klijenta skripti proširenja u Javascript @@ -3794,6 +3878,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ažuriranje energetske točke apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Odaberite drugi način plaćanja. PayPal ne podržava transakcije valuti „{0}” DocType: Chat Message,Room Type,Vrsta sobe +DocType: Data Import Beta,Import Log Preview,Uvezi pregled pregleda apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Traži polje {0} nije ispravan apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,prenesena datoteka DocType: Workflow State,ok-circle,ok-krug @@ -3860,6 +3945,7 @@ DocType: DocType,Allow Auto Repeat,Dopusti automatsko ponavljanje apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nema vrijednosti za prikazivanje DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Predložak e-pošte +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} zapis je uspješno ažuriran. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Korisnik {0} nema pristup dokumentu putem dozvole uloge za dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Potrebni su i korisničko ime i lozinka apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Osvježi stranicu kako bi dobio najnoviji dokument. diff --git a/frappe/translations/hu.csv b/frappe/translations/hu.csv index 9c03b72f20..cf866e0e50 100644 --- a/frappe/translations/hu.csv +++ b/frappe/translations/hu.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Az alábbi alkalmazásokhoz új {} kiadások állnak rendelkezésre apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Kérjük, válasszon ki egy Összeg mezőt." +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Import fájl betöltése ... DocType: Assignment Rule,Last User,Utolsó felhasználó apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Egy új feladat, {0}, már hozzádrendelt általa {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,A munkamenet alapértelmezett értékei mentve +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Fájl újratöltése DocType: Email Queue,Email Queue records.,E-mail bejegyzések várólista. DocType: Post,Post,Hozzászólás DocType: Address,Punjab,Pandzsáb @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Havi DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Engedélyezze mint beérkező apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Veszély -apps/frappe/frappe/www/login.py,Email Address,Email cím +DocType: Address,Email Address,Email cím DocType: Workflow State,th-large,TH-nagy DocType: Communication,Unread Notification Sent,Olvasatlan küldött értesítés apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export nem engedélyezett. A {0} beosztás szükséges az exporthoz. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Rendszergaz DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kapcsolat lehetőségek, mint a ""Vásárlói érdeklődések, Támogatási igények"" stb mindegyiket új sorba vagy vesszővel elválasztva." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Címke hozzáadás ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,portré -DocType: Data Migration Run,Insert,Beszúr +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Beszúr apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google Drive hozzáférés engedélyezése apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Válassza ki a {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,"Kérjük, adja meg az alap URL-t" @@ -118,17 +121,17 @@ 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 DocType: Company History,Company History,Vállalkozás történet -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Visszaállítás +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Visszaállítás DocType: Workflow State,volume-up,hangerő növelés apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,"Webes hívatkozások, amelyek API-kéréseket hívnak web alkalmazásokba" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,A Traceback megjelenítése DocType: DocType,Default Print Format,Alapértelmezett nyomtatási formátum DocType: Workflow State,Tags,Címkék apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nincs: Munkafolyamat vége apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} mező nem beállítható egyedülállónak ebben {1}, mert már van néhány nem egyedi érték" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentum típusok +DocType: Global Search Settings,Document Types,Dokumentum típusok DocType: Address,Jammu and Kashmir,Dzsammu és Kasmír DocType: Workflow,Workflow State Field,Munkafolyamat állapotmező -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Beállítás> Felhasználó DocType: Language,Guest,Vendég DocType: DocType,Title Field,Cím mező DocType: Error Log,Error Log,Hiba napló @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Megismétli, mint a "abcabcabc" csak kicsit nehezebb kitalálni, mint az "abc"" DocType: Notification,Channel,Csatorna apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ha úgy gondolja, ez nem engedélyezett, kérjük, változtassa meg a rendszergazdai jelszót." +DocType: Data Import Beta,Data Import Beta,Adatimportálás bétaverziója apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} kötelező DocType: Assignment Rule,Assignment Rules,Feladat-szabályok DocType: Workflow State,eject,kidob @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Munkafolyamat művelet neve apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,"DocType nem lehet összevonni," DocType: Web Form Field,Fieldtype,MezőTípus apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nem egy zip fájl +DocType: Global Search DocType,Global Search DocType,Globális keresés DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                          New {{ doc.doctype }} #{{ doc.name }}
                                          ",Dinamikus téma hozzáadásához használja a jinja-címkéket
                                           New {{ doc.doctype }} #{{ doc.name }} 
                                          @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Esemény apps/frappe/frappe/public/js/frappe/utils/user.js,You,Ön DocType: Braintree Settings,Braintree Settings,Braintree beállításai +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} rekord létrehozása sikeres. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Szűrés mentése DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Nem törölheti: {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Adjon url paramétert üze apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Az automatikus ismétlés a dokumentumhoz készült apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Jelentés megtekintése böngészőben apps/frappe/frappe/config/desk.py,Event and other calendars.,Esemény és egyéb naptárak. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 sor kötelező) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Minden mező kitöltése szükséges benyújtani a megjegyzést. DocType: Custom Script,Adds a client custom script to a DocType,Hozzáad egy kliens egyéni szkriptet a DocType-hez DocType: Print Settings,Printer Name,A nyomtató neve @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Tömeges frissítés DocType: Workflow State,chevron-up,Chevron-fel DocType: DocType,Allow Guest to View,Vendég nézet engedélyezése apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},"A (z) {0} nem lehet ugyanaz, mint a (z) {1}" -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,{0} tétel végelges törlése? apps/frappe/frappe/utils/oauth.py,Not Allowed,Nem engedélyezett @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Képernyő DocType: Email Group,Total Subscribers,Összes előfizető apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},{0} tetejére +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Sor száma apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ha a beosztásnak nincs hozzáférése a 0. szinten, akkor a magasabb szintű értelmetlen." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Mentés másként DocType: Comment,Seen,Látott @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Meghatározza a munkafolyamat állapotokat és szabályokat a dokumentumhoz. DocType: Workflow State,Filter,Szűrő @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Lezárva DocType: Blog Settings,Blog Title,Blog Cím apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Alapértelmezett Beosztások nem kiiktathatók apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Csevegés típusa +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Térkép oszlopok DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Hírlevél apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Nem lehet használni al-lekérdezést a sorrendezésben @@ -394,6 +403,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,A {0} felhasználó nem törölhető DocType: System Settings,Currency Precision,Árfolyam pontosság apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,"Egy másik tranzakciós blokkolja ezt. Kérjük, próbálja újra pár másodperc." +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Törölje a szűrőket DocType: Test Runner,App,Alk. apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Mellékleteket nem lehet megfelelően kapcsolni az új dokumentumhoz DocType: Chat Message Attachment,Attachment,Csatolmány @@ -419,6 +429,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nem lehet e- apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Naptár - A (z) {0} esemény nem frissíthető a Google Naptárban, hibakód: {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Keressen vagy írja be a parancsot DocType: Activity Log,Timeline Name,Idővonal neve +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Csak egy {0} állítható be elsődlegesként. DocType: Email Account,e.g. smtp.gmail.com,pl. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Új szabály hozzáadása DocType: Contact,Sales Master Manager,Értékesítési törzsadat kezelő @@ -435,7 +446,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP középső név mező apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} {0} importálása DocType: GCalendar Account,Allow GCalendar Access,GCalendar hozzáférés engedélyezése -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,A(z) {0} egy kötelező mező +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,A(z) {0} egy kötelező mező apps/frappe/frappe/templates/includes/login/login.js,Login token required,Bejelentkezési token szükséges apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Havi rang: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Válasszon több listaelemet @@ -465,6 +476,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Nem lehet csatlakozni: { apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Egy szót önmagában könnyű kitalálni. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Az automatikus hozzárendelés sikertelen: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Keresés... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Kérjük, válasszon Vállalkozást először" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Összevonást csak Csoport-tól-csoport között vagy Levélcsomópont-tól-Levélcsomópont között lehetséges apps/frappe/frappe/utils/file_manager.py,Added {0},Hozzáadva: {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Nincs megfelelő rekord. Keressen valami újat @@ -477,7 +489,6 @@ DocType: Google Settings,OAuth Client ID,OAuth kliens azonosító DocType: Auto Repeat,Subject,Tárgy apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Vissza az asztalhoz DocType: Web Form,Amount Based On Field,Összeg a mező alapján -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Felhasználói kötelező a Megosztáshoz DocType: DocField,Hidden,Rejtett DocType: Web Form,Allow Incomplete Forms,Befejezetlen nyomtatvány engedélyezése @@ -514,6 +525,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} és {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Beszélgetés indítása. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Mindig ""Tervezet"" fejszöveggel lássa el a vázlat nyomtatást" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Hiba az értesítésben: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} évvel ezelőtt DocType: Data Migration Run,Current Mapping Start,Aktuális leképezés kezdete apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Az E-mail spamként jelölt DocType: Comment,Website Manager,Weboldal kezelő @@ -551,6 +563,7 @@ DocType: Workflow State,barcode,Vonalkód apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Az al-lekérdezés vagy funkció használata korlátozott apps/frappe/frappe/config/customization.py,Add your own translations,Addja hozzá a saját fordításait DocType: Country,Country Name,Ország neve +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Üres sablon DocType: About Us Team Member,About Us Team Member,Rólunk Csapat tagja apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Jogosultságok vannak beállítva a beosztáshoz és a dokumentum típusokhoz (úgynevezett DOCTYPES) A jogok, mint olvasás, írás, létrehozás, törlés, Benyújtás, Mégse, módosíthatja, Jelentés, Import, Export, Nyomtatás, E-mail és felhasználói engedélyek beállítása." DocType: Event,Wednesday,Szerda @@ -562,6 +575,7 @@ DocType: Website Settings,Website Theme Image Link,Weboldal téma kép elérési DocType: Web Form,Sidebar Items,Oldalsáv tételei DocType: Web Form,Show as Grid,Rácsként jelenik meg apps/frappe/frappe/installer.py,App {0} already installed,Alk.: {0} már telepítve +DocType: Energy Point Rule,Users assigned to the reference document will get points.,A referenciadokumentumhoz rendelt felhasználók pontokat kapnak. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Nincs előnézet DocType: Workflow State,exclamation-sign,felkiáltó-jel apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Kicsomagolt {0} fájl @@ -597,6 +611,7 @@ DocType: Notification,Days Before,Nappal ez előtt apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,A napi eseményeknek ugyanazon a napon kell befejeződni. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Szerkesztése ... DocType: Workflow State,volume-down,hangerő csökkentés +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 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ó @@ -652,6 +667,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Fejlesztő apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Létrehozta apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} a {1} sorban nem lehet egyszerre URL és gyermek elemek +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},A következő tábláknak legalább egy sornak kell lennie: {0} DocType: Print Format,Default Print Language,Alapértelmezett nyomtatási nyelv apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ősök apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} nem lehet törölni @@ -694,6 +710,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Házigazda +DocType: Data Import Beta,Import File,Fájl importálása apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Oszlop {0} már létezik. DocType: ToDo,High,Nagy apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Új esemény @@ -722,8 +739,6 @@ DocType: User,Send Notifications for Email threads,Értesítések küldése e-ma apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nem a Fejlesztői módban apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,A fájl biztonsági mentésre kész -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",A megengedett pontok maximális száma a szorzó értékével való megszorzás után (Megjegyzés: Nincs határérték 0-ra állítva) DocType: DocField,In Global Search,Globális keresésben DocType: System Settings,Brute Force Security,Brute Force biztonság DocType: Workflow State,indent-left,behúzás-balra @@ -765,6 +780,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Felhasználó '{0}' már megkapta ezt a Beosztást: '{1}' DocType: System Settings,Two Factor Authentication method,Két tényezős azonosítási módszer apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Először állítsa be a nevet és mentse a rekordot. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 felvétel apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Megosztva vele {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Leiratkozás DocType: View Log,Reference Name,Hivatkozott tétel @@ -813,6 +829,8 @@ 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 DocType: Note,Notify Users On Every Login,A felhasználók értesítése minden Bejelentkezéshez +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,A (z) {0} oszlop egyetlen mezővel sem felel meg +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,A (z) {0} rekord sikeresen frissítve. DocType: PayPal Settings,API Password,API jelszó apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Írja be a python modult vagy válassza ki a csatoló típusát apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Mezőnév nincs beállítva az egyéni mezőnek @@ -841,9 +859,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Ismétlődő név {0} {1} -DocType: Email Queue,Retry,Újra próbál +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Újra próbál +DocType: Contact Phone,Number,Szám DocType: Web Form Field,Web Form Field,Web Űrlap mező apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Új üzenete érkezett innen: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML szerkesztése apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Adja meg az átirányítási URL-t apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +888,7 @@ DocType: Notification,View Properties (via Customize Form),Tulajdonságok megtek apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kattintson egy fájlra a kiválasztásához. DocType: Note Seen By,Note Seen By,Megjegyzést láttta apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,"Próbáld ki, hogy egy hosszabb billentyűzet mintát használ több menetben" -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Ranglista +,LeaderBoard,Ranglista DocType: DocType,Default Sort Order,Alapértelmezett rendezési sorrend DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-mail válasz súgó @@ -903,6 +923,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,E-mail írás apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Munkafolyamat állapota (pl. vázlat, jóváhagyva, törölve)" DocType: Print Settings,Allow Print for Draft,Tervezet nyomtatásának engedélyezése +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 rendelkeznie kell a QZ Tray alkalmazás telepítésével és futtatásával.

                                          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/link_selector.js,Set Quantity,Mennyiség megadása apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Küldje el ezt a dokumentumot megerősítésre DocType: Contact,Unsubscribed,Leiratkozott @@ -934,6 +955,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Szervezeti egység a felhas ,Transaction Log Report,Tranzakciós napló jelentés DocType: Custom DocPerm,Custom DocPerm,Egyedi DocPerm DocType: Newsletter,Send Unsubscribe Link,Küldj leiratkozási linket +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Van néhány kapcsolódó rekord, amelyet létre kell hozni, mielőtt a fájlt importálhatnánk. Szeretné automatikusan létrehozni a következő hiányzó rekordokat?" DocType: Access Log,Method,Módszer DocType: Report,Script Report,Script-jelentés DocType: OAuth Authorization Code,Scopes,Hatáskör @@ -974,6 +996,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Feltöltés sikeres apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Csatlakozott az internethez. DocType: Social Login Key,Enable Social Login,Engedélyezze a közösségi bejelentkezést +DocType: Data Import Beta,Warnings,figyelmeztetések DocType: Communication,Event,Esemény apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0}, {1} írta:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Nem lehet törölni az alapértelmezett mezőt. Elrejtheti, ha akarja" @@ -1029,6 +1052,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Beszúrá DocType: Kanban Board Column,Blue,Kék apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,"Összes testreszabás eltávolításra kerül. Kérjük, erősítse meg." DocType: Page,Page HTML,HTML oldal +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Hibás sorok exportálása apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,A csoport neve nem lehet üres. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,További csomópontok csak 'Csoport' típusú csomópontok alatt hozhatók létre DocType: SMS Parameter,Header,Fejléc @@ -1067,13 +1091,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Árajánlatkérés lejárt apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Domainek engedélyezése / tiltása DocType: Role Permission for Page and Report,Allow Roles,Szerepek engedélyezése +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,A (z) {1} rekord sikeresen importált a (z) {1} közül. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Egyszerű Python kifejezés, példa: Állapot ("érvénytelen")" DocType: User,Last Active,Utolsó Aktívitás DocType: Email Account,SMTP Settings for outgoing emails,SMTP beállítások a kimenő e-mailekhez apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,válasszon egy DocType: Data Export,Filter List,Szűrő lista DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Jelszava frissült. Ez az új jelszó 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 @@ -1082,7 +1106,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Felhasználó ID DocType: Communication,Sent,Elküldött DocType: Address,Kerala,Kerala -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Adminisztráció DocType: User,Simultaneous Sessions,Egyidejű munkamenet DocType: Social Login Key,Client Credentials,Ügyfél bizonyítványok @@ -1114,7 +1137,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Frissí apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Fő adat DocType: DocType,User Cannot Create,Felhasználó nem hozhatja létre apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Sikeresen kész -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Mappa {0} nem létezik apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox belépés engedélyezve! DocType: Customize Form,Enter Form Type,Adja meg az űrlap típusát DocType: Google Drive,Authorize Google Drive Access,A Google Drive Access engedélyezése @@ -1122,7 +1144,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Nincs címkézett rekord. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Mező eltávolítása apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Nem csatlakozik az internethez. Próbálja újra kis idő múlva. -DocType: User,Send Password Update Notification,Jelszó frissítés figyelmeztetés küldése apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Lehetővé teszi DocType, DocType. Legyen óvatos!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Testreszabott formátumok nyomtatás, E-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} összeg @@ -1207,6 +1228,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Helytelen ellenőrz apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,A Google Névjegyek integrálása le van tiltva. DocType: Assignment Rule,Description,Leírás DocType: Print Settings,Repeat Header and Footer in PDF,Ismételjük Fejléc és lábléc PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Kudarc DocType: Address Template,Is Default,Ez alapértelmezett DocType: Data Migration Connector,Connector Type,Csatoló típusa apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Oszlop neve nem lehet üres @@ -1219,6 +1241,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Ugrás a (z) {0} old DocType: LDAP Settings,Password for Base DN,Jelszó a Base DN -hez apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Táblázat mező 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/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 @@ -1272,6 +1295,7 @@ DocType: Print Settings,Enable Raw Printing,Nyers nyomtatás engedélyezése DocType: Website Route Redirect,Source,Forrás apps/frappe/frappe/templates/includes/list/filters.html,clear,világos apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Befejezett +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Beállítás> Felhasználó DocType: Prepared Report,Filter Values,Szűró értékei DocType: Communication,User Tags,Felhasználó címkéi DocType: Data Migration Run,Fail,Nem sikerül @@ -1327,6 +1351,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Köv ,Activity,Tevékenység DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Súgó: egy másik tételhez való hivatkozáshoz használja a ""#Form/Note/[Megjegyzés neve]"" formát a Link hozzáadása parancsnál. (Ne használja a ""http: //"" formát!)" DocType: User Permission,Allow,Engedélyezi +DocType: Data Import Beta,Update Existing Records,Frissítse a meglévő rekordokat apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Kerüljük az ismétlődő szavak és karakterek elkerülését DocType: Energy Point Rule,Energy Point Rule,Energiapont szabály DocType: Communication,Delayed,Késedelem @@ -1339,9 +1364,7 @@ DocType: Milestone,Track Field,Pálya mező DocType: Notification,Set Property After Alert,Tulajdonság beállítása figyelmeztetés után apps/frappe/frappe/config/customization.py,Add fields to forms.,Új mezők hozzáadása űrlapokhoz. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Úgy néz ki, hogy valami baj van ezen az oldalon a Paypal konfigurációval." -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 rendelkeznie kell a QZ Tray alkalmazás telepítésével és futtatásával.

                                          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/sidebar/review.js,Add Review,Vélemény hozzáadása -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Betűméret (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Kizárólag a szabványos DocType-k testreszabhatók a Testreszabás űrlapból. DocType: Email Account,Sendgrid,Küldési háló @@ -1378,6 +1401,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Sz apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Bocsánat! Nem törölheti az automatikusan generált megjegyzéseket DocType: Google Settings,Used For Google Maps Integration.,A Google Maps Integrációhoz használható. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referencia DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Nincs rekord exportálva DocType: User,System User,Rendszer felhasználó DocType: Report,Is Standard,Ez alapfelszereltség DocType: Desktop Icon,_report,_jelentés @@ -1392,6 +1416,7 @@ DocType: Workflow State,minus-sign,mínusz-jel apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nem található apps/frappe/frappe/www/printview.py,No {0} permission,{0} sz. engedély apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Egyéni jogosultságok exportja +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nem található tétel. DocType: Data Export,Fields Multicheck,Többszörös ellenőrzésű mezők DocType: Activity Log,Login,Bejelentkezés DocType: Web Form,Payments,Kifizetések @@ -1451,8 +1476,9 @@ DocType: Address,Postal,Postai DocType: Email Account,Default Incoming,Alapértelmezett bejövő DocType: Workflow State,repeat,ismétlés DocType: Website Settings,Banner,Zászló +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Az értéknek a következőnek kell lennie: {0} DocType: Role,"If disabled, this role will be removed from all users.","Ha le van tiltva, ez a beosztás el lessz távolítva az összes felhasználótól." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Lépjen a (z) {0} listára +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Lépjen a (z) {0} listára 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" @@ -1466,6 +1492,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Helyi Mezőnév DocType: DocType,Track Changes,Útvonal változások DocType: Workflow State,Check,Ellenőrzés DocType: Chat Profile,Offline,Offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} sikeresen importált DocType: User,API Key,API kulcs DocType: Email Account,Send unsubscribe message in email,Küldjön leiratkozás üzenetet az e-mail-ben apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Cím szerkesztése @@ -1492,11 +1519,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,A (z) {0} már hozzárendelt alapértelmezett értéket ehhez: {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                          No results found for '

                                          ,

                                          Nincs eredmény a következőre: '

                                          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 @@ -1517,8 +1544,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nem engedélyezett a 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Beállítás> Felhasználói engedélyek DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP csoport leképezés DocType: Dashboard Chart,Chart Options,Diagram opciók +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Név nélküli oszlop apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} az {1} és {2} közt ebben a sorban # {3} DocType: Communication,Expired,Lejárt apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Úgy tűnik, hogy a token, amelyet használ, érvénytelen!" @@ -1528,6 +1557,7 @@ DocType: DocType,System,Rendszer DocType: Web Form,Max Attachment Size (in MB),Max Csatolmány Méret (MB) apps/frappe/frappe/www/login.html,Have an account? Login,Rrendelkezik fiókkal? Bejelentkezés DocType: Workflow State,arrow-down,nyíl-le +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0} sor apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Felhasználó törlése nem engedélyezett {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} ebből: {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Frissítve @@ -1544,6 +1574,7 @@ DocType: Custom Role,Custom Role,Egyedi szerep apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Kezdőlap / Teszt mappa 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Adja meg a jelszavát DocType: Dropbox Settings,Dropbox Access Secret,Dropbox belépési titkosítás +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Kötelező) 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." @@ -1618,6 +1649,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mutassa az apps/frappe/frappe/desk/form/assign_to.py,New Message,Új üzenet DocType: File,Preview HTML,Előnézet HTML DocType: Desktop Icon,query-report,érdeklődés-jelentés +DocType: Data Import Beta,Template Warnings,Sablon figyelmeztetések apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Szűrők mentve DocType: DocField,Percent,Százalék apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,"Kérjük, állítsa be a szűrőket" @@ -1639,6 +1671,7 @@ DocType: Custom Field,Custom,Egyedi DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ha engedélyezve van, akkor a felhasználók, akik bejelentkeznek a korlátozott IP-címről, nem fogják megkérdezni a Két tényezős azonosítás szolgáltatást" DocType: Auto Repeat,Get Contacts,Kapcsolattartók apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Hozzászólésok kiállítva ez alá: {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Ugró a cím nélküli oszlop DocType: Notification,Send alert if date matches this field's value,"Riasztást küld, ha a dátum megegyezik ennek a mezőnek az értékével" DocType: Workflow,Transitions,Átvezetések apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} - {2} @@ -1662,6 +1695,7 @@ DocType: Workflow State,step-backward,visszalépés apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Kérjük, állítsa be a Dropbox hozzáférési kulcsokat az oldal beállításopkban" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,"Ezt a Rekordot törli, hogy elküldhesse erre az e-mail címre" +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ha nem szabványos port (pl. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Testreszabhatja a hivatkozásokat apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Csak a kötelező mezők szükségesek új rekordokhoz. Törölheti a nem kötelező oszlopokat, ha akarja." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,További tevékenység megjelenítése @@ -1770,6 +1804,7 @@ apps/frappe/frappe/www/third_party_apps.html,Logged in,Bejelentkezve apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Alapértelmezett Küldés és Beérkezett DocType: System Settings,OTP App,OTP App DocType: Google Drive,Send Email for Successful Backup,Küldjön e-mailt a sikeres mentéshez +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Az ütemező inaktív. Nem lehet adatokat importálni. DocType: Print Settings,Letter,Levél DocType: DocType,"Naming Options:
                                          1. field:[fieldname] - By Field
                                          2. naming_series: - By Naming Series (field called naming_series must be present
                                          3. Prompt - Prompt user for a name
                                          4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                          5. @@ -1783,6 +1818,7 @@ DocType: GCalendar Account,Next Sync Token,Következő Sync Token DocType: Energy Point Settings,Energy Point Settings,Energiapont beállítások DocType: Async Task,Succeeded,Sikerült apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Kötelező mezők szükséges {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                            No results found for '

                                            ,

                                            Nincs eredmény a következőre: '

                                            apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset engedélyei {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Felhasználók és engedélyek DocType: S3 Backup Settings,S3 Backup Settings,S3 biztonsági mentési beállításai @@ -1853,6 +1889,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Tartalmazza DocType: Notification,Value Change,Érték Változás DocType: Google Contacts,Authorize Google Contacts Access,A Google Névjegyekhez való hozzáférés engedélyezése apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Csak számmezők megjelenítése a Jelentésből +DocType: Data Import Beta,Import Type,Importálás típusa DocType: Access Log,HTML Page,HTML oldal DocType: Address,Subsidiary,Leányvállalat apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Csatlakozás kísérlete a QZ tálcával ... @@ -1863,7 +1900,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Érvényte DocType: Custom DocPerm,Write,Ír apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Csak Rendszergazda hozhat létre Érdeklődést / Script Jelentéseket apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Frissítés -DocType: File,Preview,Előnézet +DocType: Data Import Beta,Preview,Előnézet apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","""érték"" mező kötelező. Kérjük, adja meg az értéket a frissítéshez" DocType: Customize Form,Use this fieldname to generate title,Használja ezt a mezőnevet cím generálásához apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import Email-ból @@ -1946,6 +1983,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Böngésző ne DocType: Social Login Key,Client URLs,Ügyfél URL-címek apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Néhány információ hiányzik apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} sikeresen létrehozva +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","A (z) {1}, {2} {0} átugrása" DocType: Custom DocPerm,Cancel,Mégsem apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Tömeges törlés apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Fájl {0} nem létezik @@ -1973,7 +2011,6 @@ DocType: GCalendar Account,Session Token,Szakasz Token DocType: Currency,Symbol,Szimbólum apps/frappe/frappe/model/base_document.py,Row #{0}:,Sor # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Erősítse meg az adatok törlését -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Új jelszó e-mailben apps/frappe/frappe/auth.py,Login not allowed at this time,A bejelentkezés tilos ebben az időben DocType: Data Migration Run,Current Mapping Action,Aktuális leképzési művelet DocType: Dashboard Chart Source,Source Name,Forrá név @@ -1986,6 +2023,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,PIN- apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Követte DocType: LDAP Settings,LDAP Email Field,LDAP-mail mező apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} lista +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} rekord exportálása apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Már a felhasználó Tennivalók listáján van DocType: User Email,Enable Outgoing,Engedélyezze a kimenőt DocType: Address,Fax,Fax @@ -2043,8 +2081,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Dokumentumok nyomtatása apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Ugrás a mezőre DocType: Contact Us Settings,Forward To Email Address,Továbbítás emailcímekre +DocType: Contact Phone,Is Primary Phone,Elsődleges telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Küldjön egy e-mailt a (z) {0} -re, hogy ide kapcsolja." DocType: Auto Email Report,Weekdays,Hétköznapok +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,A (z) {0} rekordok exportálásra kerülnek apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Cím mezőnek érvényes mezőnévvel kell rendelkeznie DocType: Post Comment,Post Comment,Üzenet elküldése apps/frappe/frappe/config/core.py,Documents,Dokumentumok @@ -2062,7 +2102,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","Ez a mező csak akkor jelenik meg, ha a mezőnévnek itt megadott értéke van VAGY a szabályok igazak (példák): myfield eval:doc.myfield=='My Value'eval:doc.age>18" DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Ma +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Ha beállította ezt, a felhasználók csak akkor férhetnek hozzá a dokumentumokhoz (pl. Blogbejegyzés), ahol a link jelen van (pl. Blogger)." +DocType: Data Import Beta,Submit After Import,Küldés importálás után DocType: Error Log,Log of Scheduler Errors,Ütemező hiba naplója DocType: User,Bio,Életrajz DocType: OAuth Client,App Client Secret,Alk kliens titkositas @@ -2081,10 +2123,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Vevő feliratkozási linkjének tiltása a Bejelentkező oldalon apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Felelős érte / Tulajdonos DocType: Workflow State,arrow-left,nyíl-balra +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Export 1 rekord DocType: Workflow State,fullscreen,teljes-képernyő DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Diagram létrehozása apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne importáljon DocType: Web Page,Center,Központ DocType: Notification,Value To Be Set,Beállítandó érték apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Szerkesztés {0} @@ -2104,6 +2148,7 @@ DocType: Print Format,Show Section Headings,Mutatása szakaszok fejléceit DocType: Bulk Update,Limit,Korlátozás apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Kérést kaptunk a (z) {1} adatokkal kapcsolatos {0} adatok törlésére. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Új szakasz hozzáadása +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Szűrt rekordok apps/frappe/frappe/www/printview.py,No template found at path: {0},Nem található sablon ezen az elétrési úton: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nincs e-mail fiók DocType: Comment,Cancelled,Törölve @@ -2190,10 +2235,13 @@ DocType: Communication Link,Communication Link,Kommunikációs kapcsolat apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Érvénytelen kimeneti formátum apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Nem lehet {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Alkalmazza ezt a szabályt, ha a felhasználó a tulajdonosa" +DocType: Global Search Settings,Global Search Settings,Globális keresési beállítások apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,A belépési ID azonosítója lesz +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globális keresési dokumentumtípusok visszaállítása. ,Lead Conversion Time,Érdeklődésre átváltás ideje apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Jelentés készítés DocType: Note,Notify users with a popup when they log in,Értesíti a felhasználókat egy felugró ablakkal a bejelentkezásükkor +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,A (z) {0} alapmodulok nem kereshetők a globális keresésben. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Nyissa meg a Csevegőt apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nem létezik, válasszon egy új célt egyesítéshez" DocType: Data Migration Connector,Python Module,Python modulja @@ -2210,8 +2258,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Bezárás 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Beállítás> Felhasználói engedélyek -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Frissítés +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Frissítés DocType: Transaction Log,Transaction Hash,Transaction Hash DocType: Error Snapshot,Snapshot View,Pillanatkép megtekintése apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Kérjük, mentse a hírlevelet a küldés előtt" @@ -2227,6 +2274,7 @@ DocType: Data Import,In Progress,Folyamatban apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Várakozó a mentésre. Ez eltarthat néhány perctől egy óráig. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Felhasználói engedély már létezik +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},A (z) {0} oszlop leképezése a (z) {1} mezőbe apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Megtekintés {0} DocType: User,Hourly,Óránkénti apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Regisztráció OAuth Client App @@ -2239,7 +2287,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS átjáró URL-je apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nem lehet ""{2}"". Ebből az egyiknek kell lennie: ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},a (z) {0} által a (z) {1} automatikus szabály révén nyert apps/frappe/frappe/utils/data.py,{0} or {1},{0} vagy {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Jelszó frissítése DocType: Workflow State,trash,kuka DocType: System Settings,Older backups will be automatically deleted,Régebbi mentések automatikusan törlődnek apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Érvénytelen hozzáférési kulcs ID azonosító vagy titkos hozzáférési kulcs. @@ -2267,6 +2314,7 @@ DocType: Address,Preferred Shipping Address,Előnyben részesített szállítás apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Fejléccel apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} hozta létre ezt {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Nem engedélyezett a (z) {0} számára: {1} a (z) {2} sorban. Korlátozott mező: {3} +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 menüben" DocType: S3 Backup Settings,eu-west-1,eu-nyugat-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ha ez be van jelölve, érvényes adatokkal rendelkező sorokat importálnak, és az érvénytelen sorokat egy későbbi importálásra új fájlba bocsátják." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,A dokumentumot csak beosztás szerinti felhasználók módosíthatják @@ -2293,6 +2341,7 @@ DocType: Custom Field,Is Mandatory Field,Ez kötelező mező DocType: User,Website User,Weboldal Felhasználó apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,"Előfordulhat, hogy néhány oszlop levágásra kerül, amikor PDF-re nyomtat. Próbáljon az oszlopok számát 10 alatt tartani." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Nem egyenlő +DocType: Data Import Beta,Don't Send Emails,Ne küldjön e-maileket DocType: Integration Request,Integration Request Service,Integrációt igénylő szolgáltatás DocType: Access Log,Access Log,Belépési napló DocType: Website Script,Script to attach to all web pages.,Script amit hozzákapcsol az összes weboldalhoz. @@ -2331,6 +2380,7 @@ DocType: Contact,Passive,Passzív DocType: Auto Repeat,Accounts Manager,Fiókkezelõ apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Hozzárendelés {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Fizetése törlődik. +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/views/reports/report_view.js,Select File Type,Válasszon fájl típust apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Összes megtekintése DocType: Help Article,Knowledge Base Editor,Tudásbázis szerkesztő @@ -2363,6 +2413,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Adat apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumentum állapota apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Jóváhagyás szükséges +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"A következő rekordokat létre kell hozni, mielőtt a fájlt importálhatnánk." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Engedélyezési kód apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Nem engedélyezett importáláshoz DocType: Deleted Document,Deleted DocType,Törölt DocType @@ -2416,8 +2467,8 @@ DocType: System Settings,System Settings,Rendszer beállításai DocType: GCalendar Settings,Google API Credentials,Google API hitelesítő adatok apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Munkamenet indítása sikertelen apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ezt az e-mailt elküldte ide: {0} és másolatot ide: {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},benyújtotta ezt a dokumentumot {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} évvel ezelőtt DocType: Social Login Key,Provider Name,Ellátó neve apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Hozzon létre egy új {0} DocType: Contact,Google Contacts,Google Névjegyek @@ -2425,6 +2476,7 @@ DocType: GCalendar Account,GCalendar Account,GNaptár-fiók DocType: Email Rule,Is Spam,Ez Levélszemét apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},{0} megnyitva +DocType: Data Import Beta,Import Warnings,Import figyelmeztetések DocType: OAuth Client,Default Redirect URI,Alapértelmezett átirányítási URI DocType: Auto Repeat,Recipients,Címzettek DocType: System Settings,Choose authentication method to be used by all users,Válassza ki az összes felhasználó által használt hitelesítési módot @@ -2542,6 +2594,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,A jelentés apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Laza Webhook hiba DocType: Email Flag Queue,Unread,Olvasatlan DocType: Bulk Update,Desk,Íróasztal +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},{0} átugró oszlop apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Szűrésnek rekordnal vagy listának kell lennie (egy listánban) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Írj egy SELECT érdeklődést. Megjegyzés eredmény nem lapozható (minden adatot egy menetben küld) . DocType: Email Account,Attachment Limit (MB),Csatolási limit (MB) @@ -2556,6 +2609,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Új létrehozása DocType: Workflow State,chevron-down,Chevron-le apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Emailt nem küldte ide: {0} (leiratkozott / letiltott) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Válassza ki az exportálni kívánt mezőket DocType: Async Task,Traceback,Visszakövet DocType: Currency,Smallest Currency Fraction Value,Legkisebb pénznem törtrész érték apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Jelentés készítése @@ -2564,6 +2618,7 @@ DocType: Workflow State,th-list,TH-lista DocType: Web Page,Enable Comments,Megjegyzések engedélyezése apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Jegyzetek DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Korlátozza a felhasználó erről az IP címről csak. Több IP címet is hozzá elválasztva vesszővel. Azt is elfogadja, részleges IP-címeket, mint a (111.111.111)" +DocType: Data Import Beta,Import Preview,Előnézet importálása DocType: Communication,From,-tól apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Válasszon először egy csoportcsomópontot. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},"Megtalálta ezt: {0} , ebben: {1}" @@ -2662,6 +2717,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Között DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Sorba állított +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Beállítás> Az űrlap testreszabása DocType: Braintree Settings,Use Sandbox,Sandbox felhasználása apps/frappe/frappe/utils/goal.py,This month,Ebben a hónapban apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Új egyedi nyomtatási forma @@ -2677,6 +2733,7 @@ DocType: Session Default,Session Default,Munkamenet alapértelmezett DocType: Chat Room,Last Message,Utolsó üzenet DocType: OAuth Bearer Token,Access Token,Hozzáférési token DocType: About Us Settings,Org History,Vállalkozás története +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Körülbelül {0} perc van hátra DocType: Auto Repeat,Next Schedule Date,Következő ütemterv dátuma DocType: Workflow,Workflow Name,Munkafolyamat neve DocType: DocShare,Notify by Email,Értesítés E-mailben @@ -2706,6 +2763,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Szerző apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Küldés folytatása apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Újranyitása +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Mutasson figyelmeztetéseket apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Beszerzési megrendelés Felhasználó DocType: Data Migration Run,Push Failed,Benyomás sikertelen @@ -2742,6 +2800,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Részl apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nem tekintheti meg a hírlevelet. DocType: User,Interests,Érdekek apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,A jelszó visszaállításához szükséges utasítok el lettek küldve emailen +DocType: Energy Point Rule,Allot Points To Assigned Users,Pontot rendel a hozzárendelt felhasználók számára apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","0 szint van a dokumentumok szintű engedélyekkel, \ magasabb szinteket mező szintű engedélyekkel." DocType: Contact Email,Is Primary,Elsődleges @@ -2764,6 +2823,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Export típusa DocType: Workflow State,circle-arrow-left,kör-nyíl-bal DocType: System Settings,Force User to Reset Password,Kényszerítse a felhasználót a jelszó visszaállítására apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",A frissített jelentéshez kattintson erre: {0}. @@ -2776,13 +2836,16 @@ DocType: Contact,Middle Name,Középső név DocType: Custom Field,Field Description,Mező leírása apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nevet nem állította be a felszólítással apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail beérkezett üzenetek +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","A (z) {1}, {2} {0} frissítése" DocType: Auto Email Report,Filters Display,Szűrők megjelenítése apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",A "módosított_from" mezőnek jelen kell lennie a módosítás végrehajtásához. +DocType: Contact,Numbers,számok apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} értékelte a (z) {1} {2} -on végzett munkáját apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Szűrők mentése DocType: Address,Plant,Géppark apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Válasz mindenkinek DocType: DocType,Setup,Telepítés +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Minden lemez DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-mail cím, amelynek Google névjegyeit szinkronizálni kell." DocType: Email Account,Initial Sync Count,Kezdeti szinkronizálási számláló DocType: Workflow State,glass,üveg @@ -2807,7 +2870,7 @@ DocType: Workflow State,font,betűtípus DocType: DocType,Show Preview Popup,Az előugró ablak megjelenítése apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ez egy top-100 ismétlődő jelszót. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Kérjük, engedélyezze a felugrókat" -DocType: User,Mobile No,Mobil: +DocType: Contact,Mobile No,Mobil: DocType: Communication,Text Content,Szöveges tartalom DocType: Customize Form Field,Is Custom Field,Ez egyéni mező DocType: Workflow,"If checked, all other workflows become inactive.","Ha be van jelölve, minden más munkafolyamat inaktívvá válik." @@ -2853,6 +2916,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Egyé apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Új nyomtatási formátum neve apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Oldalsáv kapcsolása DocType: Data Migration Run,Pull Insert,Kihúzza a beszúrást +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","A megengedett pontok maximális száma a szorzó értékével való szorzás után (Megjegyzés: Ezt a mezőt korlátozás nélkül hagyja üresen, vagy állítsa be a 0 értéket)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Érvénytelen sablon apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Illegális SQL lekérdezés apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Kötelező: DocType: Chat Message,Mentions,Megemlít @@ -2867,6 +2933,7 @@ DocType: User Permission,User Permission,Használati Engedély apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nincs telepítve apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Letöltés adatokkal +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},megváltozott értékek a (z) {0} {1} számára DocType: Workflow State,hand-right,kéz-jobb DocType: Website Settings,Subdomain,Aldoméin DocType: S3 Backup Settings,Region,Régió @@ -2893,10 +2960,12 @@ DocType: Braintree Settings,Public Key,Nyilvános kulcs DocType: GSuite Settings,GSuite Settings,GSuite Beállítások DocType: Address,Links,Összekapcsolások DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,A fiókban említett e-mail címet küldõként használja a fiókban említett összes e-mail címre. +DocType: Energy Point Rule,Field To Check,Ellenőrizendő mező apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Névjegyek - Nem sikerült frissíteni a kapcsolatot a Google Névjegyekben {0}, hibakód: {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,"Kérjük, válassza ki a dokumentum típusát." apps/frappe/frappe/model/base_document.py,Value missing for,Érték hiányzik erre apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Al csoport hozzáadása +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Importálás haladás DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Ha a feltétel teljesül, a felhasználó megkapja a pontokat. például. doc.status == 'Bezárt'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Beküldött Belyegyzést nem lehet törölni. @@ -2933,6 +3002,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,A Google Calendar Acce apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Az oldal, amit keres hiányzik. Ez azért lehet, mert átmozgatásra került, vagy van egy elírás a linkben." apps/frappe/frappe/www/404.html,Error Code: {0},Hibakód: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Leírás a listázási oldalra, sima szöveges, csak egy pár sor. (max 140 karakter)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,A (z) {0} mezők kitöltése kötelező DocType: Workflow,Allow Self Approval,Saját jóváhagyás engedélyezése DocType: Event,Event Category,Esemény kategória apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,Gipsz Jakab @@ -2980,8 +3050,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Költözik DocType: Address,Preferred Billing Address,Előnyben részesített számlázási cím apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Túl sok írás egy kérésnél. Kérjük, küldje kisebb kérésekkel" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,A Google Drive konfigurálva van. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,A (z) {0} dokumentumtípus ismételt. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Értékek megváltoztak DocType: Workflow State,arrow-up,nyíl-fel +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,A (z) {0} asztalhoz legalább egy sornak kell lennie apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",Az automatikus ismétlés konfigurálásához engedélyezze az „Automatikus ismétlés engedélyezése” lehetőséget a (z) {0} helyről. DocType: OAuth Bearer Token,Expires In,Lejár ekkor DocType: DocField,Allow on Submit,Benyújtáson engedélyezés @@ -3068,6 +3140,7 @@ DocType: Custom Field,Options Help,Súgó beállítások 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 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 @@ -3084,6 +3157,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Hitelesítési kód DocType: Webhook,Webhook Request,Webes hívatkozás kérés apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Sikertelen: {0} - {1}: {2} DocType: Data Migration Mapping,Mapping Type,Térképezés típusa +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Kötelezők kiválasztása apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Böngésszen apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Nincs szükség jelekre, számokre, vagy nagybetűkre." DocType: DocField,Currency,Pénznem @@ -3114,11 +3188,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Levél fej alapján apps/frappe/frappe/utils/oauth.py,Token is missing,Token hiányzik apps/frappe/frappe/www/update-password.html,Set Password,Set Password +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} rekord sikeresen importált. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Megjegyzés: Az oldal név megváltoztatása megtöri az oldalhoz tartozó előző URL címet. apps/frappe/frappe/utils/file_manager.py,Removed {0},{0} eltávolítása DocType: SMS Settings,SMS Settings,SMS beállítások DocType: Company History,Highlight,Fontos események DocType: Dashboard Chart,Sum,Összeg +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,adatimporton keresztül DocType: OAuth Provider Settings,Force,Eröltesse apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Utoljára szinkronizálva: {0} DocType: DocField,Fold,Becsuk @@ -3155,6 +3231,7 @@ DocType: Workflow State,Home,Kezdő oldal DocType: OAuth Provider Settings,Auto,Automatikus DocType: System Settings,User can login using Email id or User Name,A felhasználó bejelentkezhet az E-mail azonosítóval vagy a Felhasználónévvel DocType: Workflow State,question-sign,kérdőjel +apps/frappe/frappe/model/base_document.py,{0} is disabled,A (z) {0} le van tiltva apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views","A webes nézetekhez kötelező mező az ""útvonal""" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Oszlop beillesztése ez elé: {0} DocType: Energy Point Rule,The user from this field will be rewarded points,A mezőből származó felhasználó pontokat kap @@ -3188,6 +3265,7 @@ DocType: Website Settings,Top Bar Items,Felső sáv elemek DocType: Notification,Print Settings,Nyomtatási beállítások DocType: Page,Yes,Igen DocType: DocType,Max Attachments,Max. mellékletek száma +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Körülbelül {0} másodperc van hátra DocType: Calendar View,End Date Field,Befejezés dátuma mező apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globális hivatkozások DocType: Desktop Icon,Page,Oldal @@ -3298,6 +3376,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite hozzáférés engedélyezés DocType: DocType,DESC,ÉCS DocType: DocType,Naming,Elnevezés apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Mindent kijelöl +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},{0} oszlop apps/frappe/frappe/config/customization.py,Custom Translations,Egyéni fordítások apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Előrehaladás apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,szerep szerint @@ -3339,11 +3418,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Olv DocType: Stripe Settings,Stripe Settings,Stripe beállítások DocType: Data Migration Mapping,Data Migration Mapping,Adatátviteli leképezés DocType: Auto Email Report,Period,Időszak +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Körülbelül {0} perc van hátra apps/frappe/frappe/www/login.py,Invalid Login Token,Érvénytelen bejelentkezési Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Elvet apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 órával ezelőtt DocType: Website Settings,Home Page,Kezdőlap DocType: Error Snapshot,Parent Error Snapshot,Fő Hiba Pillanatkép +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Térkép oszlopok a (z) {0} mezőktől a (z) {1} mezőkig DocType: Access Log,Filters,Szűrők DocType: Workflow State,share-alt,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Sorba állításnak ennek az egyikének kell lennie {0} @@ -3363,6 +3444,7 @@ DocType: Calendar View,Start Date Field,Kezdő dátum mezője DocType: Role,Role Name,Beosztás neve apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Asztalra váltás apps/frappe/frappe/config/core.py,Script or Query reports,Script vagy Érdeklődés jelentései +DocType: Contact Phone,Is Primary Mobile,Az elsődleges mobil DocType: Workflow Document State,Workflow Document State,Munkafolyamat dokumentum állapot apps/frappe/frappe/public/js/frappe/request.js,File too big,A fájl túl nagy apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-mail fiókot többször adta meg @@ -3408,6 +3490,7 @@ DocType: DocField,Float,Lebegőpontos DocType: Print Settings,Page Settings,Oldalbeállítások apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Megtakarítás... apps/frappe/frappe/www/update-password.html,Invalid Password,Érvénytelen jelszó +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,A (z) {0} rekord sikeresen importált a (z) {1} közül. DocType: Contact,Purchase Master Manager,Beszerzés törzsadat kezelő apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,A nyilvános / privát váltáshoz kattintson a zár ikonra DocType: Module Def,Module Name,Modul neve @@ -3441,6 +3524,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,"Kérjük, adjon meg érvényes mobil számokat" apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Egyes funkciók esetleg nem működnek a böngészőjében. Kérjük frissítse böngészőjét a legfrissebb verzióra. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Nem tudom, kérdezd "segítséget"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},törölte ezt a dokumentumot {0} DocType: DocType,Comments and Communications will be associated with this linked document,Megjegyzések és Hírközlések lettek hozzáfűzve ehhez a linkelt dokumentumhoz apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Szűrő ... DocType: Workflow State,bold,félkövér @@ -3459,6 +3543,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,E-mail fióko DocType: Comment,Published,Közzétett apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,"Köszönjük, a levelét" DocType: DocField,Small Text,Kis szöveg +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,A (z) {0} szám nem állítható elsődlegesként a telefonszámra és a mobilszámra sem. DocType: Workflow,Allow approval for creator of the document,Dokumentum létrehozója jóváhagyásának engedélyezése apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Jelentés mentése DocType: Webhook,on_cancel,on_cancel @@ -3516,6 +3601,7 @@ DocType: Print Settings,PDF Settings,PDF beállítások DocType: Kanban Board Column,Column Name,Oszlop neve DocType: Language,Based On,Alapuló DocType: Email Account,"For more information, click here.","További információkért kattintson ide ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Az oszlopok száma nem egyezik az adatokkal apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Tegye alapértelmezetté apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Végrehajtási idő: {0} mp apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Érvénytelen a következő útvonal: @@ -3605,7 +3691,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Tölts fel {0} fájlt 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/config/settings.py,Export Data,Adat exportálás +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Adat exportálás 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." @@ -3623,7 +3709,6 @@ DocType: Report,Disable Prepared Report,Az elkészített jelentés letiltása apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,A (z) {0} felhasználó adatok törlését kérte apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Illegális hozzáférési Token. Kérlek próbáld újra apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Az alkalmazás frissült egy új verzióra, kérjük, frissítse az oldalt" -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." DocType: Notification,Optional: The alert will be sent if this expression is true,"Választható: A riasztást kiküldjük, ha ez a kifejezés igaz" DocType: Data Migration Plan,Plan Name,Terv megnevezése DocType: Print Settings,Print with letterhead,Nyomtatás fejléccel @@ -3664,6 +3749,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,"{0}: Nem állítható Helyesbítésre, Visszavonás nálkül" apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Teljes oldal DocType: DocType,Is Child Table,Ez al tábla +DocType: Data Import Beta,Template Options,Sablon opciók apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} ebből kell lennie: {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} jelenleg megtekinti ezt a dokumentumot apps/frappe/frappe/config/core.py,Background Email Queue,E-mail várólista háttere @@ -3671,7 +3757,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Jelszó visszaállí DocType: Communication,Opened,Megnyitotta DocType: Workflow State,chevron-left,Chevron-bal DocType: Communication,Sending,Elküldés -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Nem engedélyezett erről az IP címről DocType: Website Slideshow,This goes above the slideshow.,Ez a mérték meghaladja a diavetítést. DocType: Contact,Last Name,Keresztnév DocType: Event,Private,Magán @@ -3685,7 +3770,6 @@ DocType: Workflow Action,Workflow Action,Munkafolyamat művelet apps/frappe/frappe/utils/bot.py,I found these: ,Ezeket találtam: DocType: Event,Send an email reminder in the morning,Küldjön email emlékeztetőt reggel DocType: Blog Post,Published On,Közzétette ekkor -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 menüben" 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 @@ -3706,7 +3790,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,figyelmeztető jel DocType: Prepared Report,Prepared Report,Létrehozott jelentés apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Adjon hozzá metacímkéket a weblapjaihoz -DocType: Contact,Phone Nos,Telefonszám 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 @@ -3723,6 +3806,7 @@ DocType: Data Migration Connector,Data Migration,Adatátvitel DocType: User,API Key cannot be regenerated,API kulcsot nem lehet újragenerálni apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Valami hiba történt DocType: System Settings,Number Format,Szám formátum +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,A (z) {0} rekord sikeresen importált. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Összefoglalás DocType: Event,Event Participants,Esemény résztvevői DocType: Auto Repeat,Frequency,Gyakoriság @@ -3730,7 +3814,7 @@ DocType: Custom Field,Insert After,Beszúrás utána DocType: Event,Sync with Google Calendar,Szinkronizálás a Google Naptárral DocType: Access Log,Report Name,Jelentés neve DocType: Desktop Icon,Reverse Icon Color,Fordított Icon Color -DocType: Notification,Save,Mentés +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Mentés apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Következő ütemezés dátuma apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Jelölje meg azt, akinek a legkevesebb feladata" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Fejezetcímeként @@ -3753,11 +3837,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Beállítás> Az űrlap testreszabása 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 DocType: Desktop Icon,Category,Kategória +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},A (z) {1} érték hiányzik a (z) {0} értékből apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Személyek hozzáadása apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Tájkép apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Kliens oldali script bővítmények Javascript alapon @@ -3780,6 +3864,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiapont frissítés apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Kérjük, válasszon más fizetési módot. PayPal nem támogatja a tranzakciókat ebben a pénznemben '{0}'" DocType: Chat Message,Room Type,Szoba típus +DocType: Data Import Beta,Import Log Preview,Napló előnézet importálása apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Keresés mező {0} nem érvényes apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,feltöltött fájl DocType: Workflow State,ok-circle,ok-kör @@ -3846,6 +3931,7 @@ DocType: DocType,Allow Auto Repeat,Engedélyezze az automatikus ismétlést apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nincs megjeleníthető érték DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-mail sablon +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,A (z) {0} rekord sikeresen frissítve. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,A bejelentkezési név és a jelszó is szükséges apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Kérjük, frissítse a legfrissebb dokumentum eléréséhez." DocType: User,Security Settings,Biztonsági beállítások diff --git a/frappe/translations/id.csv b/frappe/translations/id.csv index a621dfd4a6..9ec2fd3b77 100644 --- a/frappe/translations/id.csv +++ b/frappe/translations/id.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Rilis {} baru untuk aplikasi berikut tersedia apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Silakan pilih Bidang Jumlah. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Memuat file impor ... DocType: Assignment Rule,Last User,Pengguna Terakhir apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Sebuah tugas baru, {0}, telah diberikan kepada Anda oleh {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Default Sesi Disimpan +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Muat Ulang File DocType: Email Queue,Email Queue records.,Catatan Antrian Surel. DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Bulanan DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktifkan masuk apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Bahaya -apps/frappe/frappe/www/login.py,Email Address,Alamat Email +DocType: Address,Email Address,Alamat Email DocType: Workflow State,th-large,th-besar DocType: Communication,Unread Notification Sent,Pemberitahuan belum dibaca Sent apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Ekspor tidak diperbolehkan. Anda perlu {0} peran untuk ekspor. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opsi kontak, seperti ""Penjualan Query, Dukungan Query"" dll masing-masing pada baris baru atau dipisahkan dengan koma." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Tambahkan tag ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Potret -DocType: Data Migration Run,Insert,Insert +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insert apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Izinkan Akses Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Pilih {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Harap masukkan URL Base @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 menit ya 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 DocType: Company History,Company History,Sejarah Perusahaan -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,ulang +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,ulang DocType: Workflow State,volume-up,volume-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Permintaan API panggilan Webhook memanggil ke aplikasi web +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Perlihatkan Traceback DocType: DocType,Default Print Format,Standar Print Format DocType: Workflow State,Tags,tag apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Tidak ada: Akhir Alur Kerja apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} field tidak dapat ditetapkan sebagai unik di {1}, karena ada nilai-nilai yang non-unik" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Jenis dokumen +DocType: Global Search Settings,Document Types,Jenis dokumen DocType: Address,Jammu and Kashmir,Jammu dan Kashmir DocType: Workflow,Workflow State Field,Kolom Status Alur Kerja -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Pengaturan> Pengguna DocType: Language,Guest,Tamu DocType: DocType,Title Field,Judul Lapangan DocType: Error Log,Error Log,Catatan eror @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Mengulangi seperti "abcabcabc" hanya sedikit lebih sulit untuk menebak dari "abc" DocType: Notification,Channel,Saluran apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Jika Anda pikir ini adalah tidak sah, silakan mengubah password Administrator." +DocType: Data Import Beta,Data Import Beta,Impor Data Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} wajib diisi DocType: Assignment Rule,Assignment Rules,Aturan Penugasan DocType: Workflow State,eject,mengeluarkan @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Nama Tindakan Alur Kerja apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType tidak dapat digabungkan DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Bukan file zip +DocType: Global Search DocType,Global Search DocType,DocType Pencarian Global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                            New {{ doc.doctype }} #{{ doc.name }}
                                            ","Untuk menambahkan subjek dinamis, gunakan tag jinja seperti
                                             New {{ doc.doctype }} #{{ doc.name }} 
                                            " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Acara dok apps/frappe/frappe/public/js/frappe/utils/user.js,You,Anda DocType: Braintree Settings,Braintree Settings,Pengaturan Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Berhasil membuat {0} rekaman. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Simpan Filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Tidak dapat menghapus {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Entrikan parameter url unt apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Ulangi Otomatis dibuat untuk dokumen ini apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Lihat laporan di browser Anda apps/frappe/frappe/config/desk.py,Event and other calendars.,Acara dan kalender lainnya. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 baris wajib) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Semua bidang diperlukan untuk mengirimkan komentar. DocType: Custom Script,Adds a client custom script to a DocType,Menambahkan skrip khusus klien ke DocType DocType: Print Settings,Printer Name,Nama Printer @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Perbarui Massal DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Izinkan tamu untuk Lihat apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} tidak boleh sama dengan {1} -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: Webhook,on_change,dalam perubahan apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Hapus {0} item secara permanen? apps/frappe/frappe/utils/oauth.py,Not Allowed,Tidak Diizinkan @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Tampilan DocType: Email Group,Total Subscribers,Jumlah Pelanggan apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Nomor baris apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jika Peran yang tidak memiliki akses di Level 0, maka tingkat yang lebih tinggi tidak ada artinya." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Disimpan Sebagai DocType: Comment,Seen,Terlihat @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Mendefinisikan status alur kerja dan aturan untuk dokumen. DocType: Workflow State,Filter,filter @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Tertutup DocType: Blog Settings,Blog Title,Judul Blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,peran standar tidak dapat dinonaktifkan apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Jenis Chat +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kolom Peta DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Laporan berkala apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,tidak bisa menggunakan sub-query dalam rangka oleh @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Tambah kolom apps/frappe/frappe/www/contact.html,Your email address,Alamat email Anda DocType: Desktop Icon,Module,modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Catatan {0} berhasil diperbarui dari {1}. DocType: Notification,Send Alert On,Kirim Pemberitahuan Aktif DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Sesuaikan Label, Cetak Hide, Default dll" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Membuka ritsleting file ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Pengguna {0} tidak dapat dihapus DocType: System Settings,Currency Precision,Presisi mata uang apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Transaksi lain yang menghalangi satu ini. Silakan coba lagi dalam beberapa detik. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Hapus filter DocType: Test Runner,App,Aplikasi apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Lampiran tidak dapat dikaitkan dengan benar ke dokumen baru DocType: Chat Message Attachment,Attachment,Lampiran @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Tidak dapat apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalender Google - Tidak dapat memperbarui Acara {0} di Kalender Google, kode kesalahan {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cari atau ketik perintah DocType: Activity Log,Timeline Name,Nama Timeline +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Hanya satu {0} yang dapat ditetapkan sebagai utama. DocType: Email Account,e.g. smtp.gmail.com,misalnya smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Tambah Aturan Baru DocType: Contact,Sales Master Manager,Master Manajer Penjualan @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Bidang Nama Tengah LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Mengimpor {0} dari {1} DocType: GCalendar Account,Allow GCalendar Access,Izinkan Akses GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} adalah kolom wajib +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} adalah kolom wajib apps/frappe/frappe/templates/includes/login/login.js,Login token required,Token Login diperlukan apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Peringkat Bulanan: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Pilih beberapa item daftar @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Tidak dapat terhubung: { apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Sebuah kata dengan sendirinya mudah ditebak. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Tugas otomatis gagal: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Pencarian... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Silakan pilih Perusahaan apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Penggabungan ini hanya mungkin antara kelompok-to-Grup atau Leaf Node-to-Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Ditambahkan {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Tidak ada catatan yang cocok. Cari sesuatu yang baru @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,ID Klien OAuth DocType: Auto Repeat,Subject,Perihal apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Kembali ke Meja DocType: Web Form,Amount Based On Field,Jumlah Berdasarkan Bidang -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Pengguna wajib untuk Berbagi DocType: DocField,Hidden,Tersembunyi DocType: Web Form,Allow Incomplete Forms,Izikan Formulir tidak lengkap @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} dan {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Mulai percakapan. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Selalu menambahkan "Draft" Menuju rancangan pencetakan dokumen apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Kesalahan dalam Pemberitahuan: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu DocType: Data Migration Run,Current Mapping Start,Pemetaan Saat Ini Mulai apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email telah ditandai sebagai spam DocType: Comment,Website Manager,Website Manager @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Penggunaan sub-query atau fungsi dibatasi apps/frappe/frappe/config/customization.py,Add your own translations,Tambahkan terjemahan Anda sendiri DocType: Country,Country Name,Nama Negara +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Templat Kosong DocType: About Us Team Member,About Us Team Member,Tentang Kami Anggota Tim apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Perizinan diatur pada Peran dan Jenis Dokumen (disebut DocTypes) dengan menetapkan hak-hak seperti Baca, Tulis, Buat, Hapus, Kirim, Batal, Mengubah, Laporan, Impor, Ekspor, Cetak, Email dan Atur Ijin Pengguna." DocType: Event,Wednesday,Rabu @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Situs Tema Image Link DocType: Web Form,Sidebar Items,Sidebar Items DocType: Web Form,Show as Grid,Tampilkan sebagai Kotak apps/frappe/frappe/installer.py,App {0} already installed,App {0} sudah terpasang +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Pengguna yang ditugaskan ke dokumen referensi akan mendapatkan poin. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Tidak ada preview DocType: Workflow State,exclamation-sign,seru-sign apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Buka file {0} @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Sebelum hari apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Acara Harian harus selesai pada Hari yang Sama. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edit ... DocType: Workflow State,volume-down,Volume-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Akses tidak diizinkan dari Alamat IP ini apps/frappe/frappe/desk/reportview.py,No Tags,Tidak ada Tags DocType: Email Account,Send Notification to,Kirim Pemberitahuan untuk DocType: DocField,Collapsible,Collapsible @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Pembangun apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Dibuat apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} di baris {1} tidak dapat memiliki URL dan item turunan +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Setidaknya harus ada satu baris untuk tabel berikut: {0} DocType: Print Format,Default Print Language,Bahasa Cetak Default apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Leluhur Dari apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Akar {0} tidak dapat dihapus @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Tuan rumah +DocType: Data Import Beta,Import File,Impor File apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolom {0} sudah ada. DocType: ToDo,High,Tinggi apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Acara baru @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Kirim Pemberitahuan untuk uta apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Tidak dalam Mode Developer apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,File cadangan sudah siap -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)","Poin maksimum diizinkan setelah mengalikan poin dengan nilai pengali (Catatan: Untuk tanpa batas, tetapkan nilai 0)" DocType: DocField,In Global Search,Di Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-kiri @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Pengguna {0} 'sudah memiliki peran' {1} ' DocType: System Settings,Two Factor Authentication method,Metode Two Factor Authentication apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Pertama-tama atur nama dan simpan catatannya. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 catatan apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Bersama dengan {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Berhenti berlangganan DocType: View Log,Reference Name,Referensi Nama @@ -813,6 +830,8 @@ 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 DocType: Note,Notify Users On Every Login,Beritahu Pengguna Pada Setiap Login +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Tidak dapat mencocokkan kolom {0} dengan bidang apa pun +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Catatan {0} berhasil diperbarui. DocType: PayPal Settings,API Password,API Sandi apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Masukkan modul python atau pilih tipe konektor apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname tidak ditetapkan untuk Bidang Kustom @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Gandakan nama {0} {1} -DocType: Email Queue,Retry,Mencoba kembali +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Mencoba kembali +DocType: Contact Phone,Number,Jumlah DocType: Web Form Field,Web Form Field,Formulir web Lapangan apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Anda memiliki pesan baru dari: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Masukkan URL Pengalihan apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Listing (melalui Cust apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik pada sebuah file untuk memilihnya. DocType: Note Seen By,Note Seen By,Catatan Dilihat Oleh apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Cobalah untuk menggunakan pola keyboard yang lebih lama dengan lebih banyak berubah -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LeaderBoard +,LeaderBoard,LeaderBoard DocType: DocType,Default Sort Order,Urutan Sortir Default DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Bantuan Balasan Email @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Sen apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Menulis Surel apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Status untuk alur kerja (misalnya Rancangan, Disetujui, Dibatalkan)." DocType: Print Settings,Allow Print for Draft,Memungkinkan Print untuk Draft +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/link_selector.js,Set Quantity,Set Kuantitas apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Menyerahkan dokumen ini untuk mengkonfirmasi DocType: Contact,Unsubscribed,Berhenti berlangganan @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Unit Organisasi untuk Pengg ,Transaction Log Report,Laporan Log Transaksi DocType: Custom DocPerm,Custom DocPerm,kustom DocPerm DocType: Newsletter,Send Unsubscribe Link,Kirim Unsubscribe Link +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Ada beberapa catatan tertaut yang perlu dibuat sebelum kami dapat mengimpor file Anda. Apakah Anda ingin membuat catatan yang hilang berikut secara otomatis? DocType: Access Log,Method,Metode DocType: Report,Script Report,Script Laporan DocType: OAuth Authorization Code,Scopes,lingkup @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Berhasil diunggah apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Anda terhubung ke internet. DocType: Social Login Key,Enable Social Login,Aktifkan Login Sosial +DocType: Data Import Beta,Warnings,Peringatan DocType: Communication,Event,Acara apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Pada {0}, {1} menulis:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Tidak dapat menghapus bidang standar. Anda dapat menyembunyikannya jika Anda ingin @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Sisipkan DocType: Kanban Board Column,Blue,Biru apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Semua kustomisasi akan terhapus. Silakan konfirmasi. DocType: Page,Page HTML,Halaman HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Ekspor Baris yang Salah apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Nama grup tidak boleh kosong. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Node lebih lanjut dapat hanya dibuat di bawah tipe node 'Grup' DocType: SMS Parameter,Header,Header @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Batas waktu permintaan habis apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Aktifkan / Nonaktifkan Domain DocType: Role Permission for Page and Report,Allow Roles,Izinkan Roles +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Catatan {0} berhasil diimpor dari {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Ekspresi Python Sederhana, Contoh: Status dalam ("Tidak Valid")" DocType: User,Last Active,Terakhir Aktif DocType: Email Account,SMTP Settings for outgoing emails,Pengaturan SMTP untuk email keluar apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,pilih sebuah DocType: Data Export,Filter List,Daftar Filter DocType: Data Export,Excel,Unggul -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Kata sandi Anda telah diperbarui. Berikut adalah kata sandi baru Anda 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 @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID Pengguna DocType: Communication,Sent,Terkirim DocType: Address,Kerala,Kerala -DocType: File,Lft,lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administrasi DocType: User,Simultaneous Sessions,Sesi simultan DocType: Social Login Key,Client Credentials,Kredensial klien @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Diperba apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Nahkoda DocType: DocType,User Cannot Create,Pengguna Tidak dapat Buat apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Berhasil Dilakukan -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} tidak ada apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Akses Dropbox disetujui! DocType: Customize Form,Enter Form Type,Masukkan Form Type DocType: Google Drive,Authorize Google Drive Access,Otorisasi Akses Google Drive @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Ada catatan tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Hapus Lapangan apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Anda tidak terhubung ke Internet. Coba lagi setelah beberapa saat. -DocType: User,Send Password Update Notification,Kirim Pemberitahuan Pembaruan Password apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Membiarkan DocType, DocType. Hati-hati!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Format disesuaikan untuk Pencetakan, Surel" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Jumlah dari {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Kode Verifikasi sala apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrasi Kontak Google dinonaktifkan. DocType: Assignment Rule,Description,Deskripsi DocType: Print Settings,Repeat Header and Footer in PDF,Ulangi Header dan Footer di PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Kegagalan DocType: Address Template,Is Default,Apakah default DocType: Data Migration Connector,Connector Type,Jenis Konektor apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Nama kolom tidak boleh kosong @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Buka Halaman {0} DocType: LDAP Settings,Password for Base DN,Sandi untuk Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,tabel Lapangan 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/model/document.py,Action Failed,aksi Gagal apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,untuk Pengguna @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Aktifkan Pencetakan Mentah DocType: Website Route Redirect,Source,Sumber apps/frappe/frappe/templates/includes/list/filters.html,clear,jelas apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Jadi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Pengaturan> Pengguna DocType: Prepared Report,Filter Values,Filter Nilai DocType: Communication,User Tags,Pengguna Tags DocType: Data Migration Run,Fail,Gagal @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Meng ,Activity,Aktivitas DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Bantuan: Untuk link ke catatan lain dalam sistem, gunakan ""# Form / Note / [Catatan Nama]"" sebagai link URL. (Tidak menggunakan ""http://"")" DocType: User Permission,Allow,Mengizinkan +DocType: Data Import Beta,Update Existing Records,Perbarui Catatan yang Ada apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Mari kita hindari kata-kata berulang dan karakter DocType: Energy Point Rule,Energy Point Rule,Aturan Titik Energi DocType: Communication,Delayed,Terlambat @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Lacak Bidang DocType: Notification,Set Property After Alert,Tetapkan Properti Setelah Pemberitahuan apps/frappe/frappe/config/customization.py,Add fields to forms.,Menambahkan kolom ke form. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Sepertinya ada yang salah dengan konfigurasi Paypal situs ini. -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/sidebar/review.js,Add Review,Tambahkan Ulasan -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Ukuran Fon (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Hanya DocTypes standar yang boleh disesuaikan dari Formulir Kustomisasi. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Maaf! Anda tidak dapat menghapus komentar yang dihasilkan secara otomatis DocType: Google Settings,Used For Google Maps Integration.,Digunakan Untuk Integrasi Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referensi DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Tidak ada catatan yang akan diekspor DocType: User,System User,Sistem Pengguna DocType: Report,Is Standard,Adalah Standard DocType: Desktop Icon,_report,_laporan @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,minus tanda apps/frappe/frappe/public/js/frappe/request.js,Not Found,Tidak ditemukan apps/frappe/frappe/www/printview.py,No {0} permission,Tidak ada {0} izin apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izin khusus ekspor +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Tidak ada item yang ditemukan. DocType: Data Export,Fields Multicheck,Bidang Multicheck DocType: Activity Log,Login,Masuk DocType: Web Form,Payments,2. Payment (Pembayaran) @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Pos DocType: Email Account,Default Incoming,Standar Masuk DocType: Workflow State,repeat,ulangi DocType: Website Settings,Banner,Spanduk +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Nilai harus salah satu dari {0} DocType: Role,"If disabled, this role will be removed from all users.","Jika dinonaktifkan, peran ini akan dihapus dari semua pengguna." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Buka Daftar {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Buka Daftar {0} 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 @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Nama field lokal DocType: DocType,Track Changes,Lacak Perubahan DocType: Workflow State,Check,Check DocType: Chat Profile,Offline,Offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Berhasil diimpor {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Kirim pesan berhenti berlangganan dengan email apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Mengedit Judul @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} telah menetapkan nilai default untuk {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                            No results found for '

                                            ,

                                            Tidak ditemukan hasil untuk '

                                            DocType: DocField,Attach Image,Pasang Gambar DocType: Workflow State,list-alt,daftar-alt apps/frappe/frappe/www/update-password.html,Password Updated,Password Diperbarui @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Tidak diizinkan untuk 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Pengaturan> Izin Pengguna DocType: LDAP Group Mapping,LDAP Group Mapping,Pemetaan Grup LDAP DocType: Dashboard Chart,Chart Options,Opsi Bagan +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Kolom Tanpa Judul apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} dari {1} ke {2} di baris # {3} DocType: Communication,Expired,Expired apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Sepertinya token yang Anda gunakan tidak valid! @@ -1528,6 +1558,7 @@ DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),Max Ukuran Lampiran (dalam MB) apps/frappe/frappe/www/login.html,Have an account? Login,Punya akun? Masuk DocType: Workflow State,arrow-down,panah-bawah +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Baris {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Pengguna tidak diperbolehkan untuk menghapus {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} dari {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Terakhir Diperbarui Pada @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Peran kustom apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Rumah / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Masukkan password Anda DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Rahasia +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Wajib) 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. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Tampilkan apps/frappe/frappe/desk/form/assign_to.py,New Message,Pesan baru DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,laporan-query +DocType: Data Import Beta,Template Warnings,Peringatan Templat apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filter tersimpan DocType: DocField,Percent,Persen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Silakan set filter @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Disesuaikan DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jika diaktifkan, pengguna yang masuk dari Alamat IP Terbatas, tidak akan diminta untuk Autentikasi Dua Faktor" DocType: Auto Repeat,Get Contacts,Dapatkan Kontak apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Posting mengajukan di bawah {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Melewati Kolom Tanpa Judul DocType: Notification,Send alert if date matches this field's value,Kirim pemberitahuan jika tanggal sesuai nilai kolom ini DocType: Workflow,Transitions,Transisi apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} sampai {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,langkah-mundur apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Silakan set tombol akses Dropbox di situs config Anda apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Hapus data ini untuk bisa mengirim ke alamat surel ini +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Jika port non-standar (mis. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Kustomisasi Pintasan apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Hanya bidang wajib diperlukan untuk catatan baru. Anda dapat menghapus kolom non-wajib jika Anda inginkan. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Tampilkan Kegiatan Lainnya @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Dilihat Dengan Table apps/frappe/frappe/www/third_party_apps.html,Logged in,Login apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Default Mengirim dan Inbox DocType: System Settings,OTP App,Apl OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Catatan {0} berhasil diperbarui dari {1}. DocType: Google Drive,Send Email for Successful Backup,Kirim Email untuk Pencadangan yang Sukses +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Penjadwal tidak aktif. Tidak dapat mengimpor data. DocType: Print Settings,Letter,Surat DocType: DocType,"Naming Options:
                                            1. field:[fieldname] - By Field
                                            2. naming_series: - By Naming Series (field called naming_series must be present
                                            3. Prompt - Prompt user for a name
                                            4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                            5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Token Sinkronisasi Berikutnya DocType: Energy Point Settings,Energy Point Settings,Pengaturan Titik Energi DocType: Async Task,Succeeded,Berhasil apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Bidang wajib yang dibutuhkan dalam {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                              No results found for '

                                              ,

                                              Tidak ditemukan hasil untuk '

                                              apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Atur Ulang Perizinan untuk {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Pengguna dan Perizinan DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1854,6 +1892,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,... Dalam DocType: Notification,Value Change,Nilai Perubahan DocType: Google Contacts,Authorize Google Contacts Access,Otorisasi Akses Kontak Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Hanya menampilkan bidang numerik dari Laporan +DocType: Data Import Beta,Import Type,Jenis Impor DocType: Access Log,HTML Page,Halaman HTML DocType: Address,Subsidiary,Anak Perusahaan apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Mencoba Koneksi ke Baki QZ ... @@ -1864,7 +1903,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Outgoing M DocType: Custom DocPerm,Write,Menulis apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Hanya Administrator diizinkan untuk membuat Query / Script Laporan apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Memperbarui -DocType: File,Preview,Pratayang +DocType: Data Import Beta,Preview,Pratayang apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Kolom ""nilai"" adalah wajib. Silakan tentukan nilai untuk diperbarui" DocType: Customize Form,Use this fieldname to generate title,Gunakan fieldname ini untuk menghasilkan judul apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Impor Email Dari @@ -1947,6 +1986,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser tidak DocType: Social Login Key,Client URLs,URL klien apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Beberapa informasi yang hilang apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} berhasil dibuat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Melewati {0} dari {1}, {2}" DocType: Custom DocPerm,Cancel,Batalkan apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Hapus Massal apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Berkas {0} tidak ada @@ -1974,7 +2014,6 @@ DocType: GCalendar Account,Session Token,Token Sesi DocType: Currency,Symbol,Simbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Konfirmasikan Penghapusan Data -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Password baru diemailkan apps/frappe/frappe/auth.py,Login not allowed at this time,Login tidak diizinkan untuk saat ini DocType: Data Migration Run,Current Mapping Action,Tindakan Pemetaan Saat Ini DocType: Dashboard Chart Source,Source Name,sumber Nama @@ -1987,6 +2026,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Sema apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Diikuti oleh DocType: LDAP Settings,LDAP Email Field,Kolom Surel LDAP apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Daftar +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Ekspor {0} catatan apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Sudah di pengguna To Do list DocType: User Email,Enable Outgoing,Aktifkan Keluar DocType: Address,Fax,Fax @@ -2044,8 +2084,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Cetak Dokumen apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Lompat ke bidang DocType: Contact Us Settings,Forward To Email Address,Teruskan Ke Alamat Surel +DocType: Contact Phone,Is Primary Phone,Apakah Telepon Utama apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Kirim email ke {0} untuk menautkannya di sini. DocType: Auto Email Report,Weekdays,Hari kerja +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} catatan akan diekspor apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Judul lapangan harus fieldname valid DocType: Post Comment,Post Comment,Kirim Komentar apps/frappe/frappe/config/core.py,Documents,Docuements @@ -2063,7 +2105,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Bidang ini hanya akan muncul jika fieldname didefinisikan di sini memiliki nilai OR aturan yang benar (contoh): MyField eval: doc.myfield == 'Nilai saya' eval: doc.age> 18 DocType: Social Login Key,Office 365,Kantor 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hari ini +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Setelah Anda telah mengatur ini, pengguna hanya akan bisa mengakses dokumen (misalnya Blog Post) di mana link yang ada (misalnya Blogger)." +DocType: Data Import Beta,Submit After Import,Kirim Setelah Impor DocType: Error Log,Log of Scheduler Errors,Log Kesalahan Scheduler DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,Aplikasi Client Rahasia @@ -2082,10 +2126,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Nonaktifkan Link Daftar Pelanggan di halaman Login apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Ditugaskan Untuk / Owner DocType: Workflow State,arrow-left,panah-kiri +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Ekspor 1 catatan DocType: Workflow State,fullscreen,fullscreen DocType: Chat Token,Chat Token,Token Obrolan apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Buat Bagan apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Jangan Impor DocType: Web Page,Center,Pusat DocType: Notification,Value To Be Set,Nilai yang Akan Ditetapkan apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edit {0} @@ -2105,6 +2151,7 @@ DocType: Print Format,Show Section Headings,Tampilkan Bagian Pos DocType: Bulk Update,Limit,Membatasi apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Kami telah menerima permintaan penghapusan {0} data yang terkait dengan: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Tambahkan bagian baru +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Catatan yang Difilter apps/frappe/frappe/www/printview.py,No template found at path: {0},Tidak ada template yang ditemukan di jalan: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Tidak ada Akun Surel DocType: Comment,Cancelled,Dibatalkan @@ -2191,10 +2238,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Reset Jenis Dokumen Pencarian Global. ,Lead Conversion Time,Lead Conversion Time apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Buat Laporan DocType: Note,Notify users with a popup when they log in,Memberitahu pengguna dengan popup ketika mereka login +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Modul Inti {0} tidak dapat dicari dalam Pencarian Global. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Buka Obrolan apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} belum ada, pilih target baru untuk menggabungkan" DocType: Data Migration Connector,Python Module,Modul Python @@ -2211,8 +2261,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Tutup 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Pengaturan> Izin Pengguna -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Perbaruan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Perbaruan DocType: Transaction Log,Transaction Hash,Transaksi Hash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Harap menyimpan Newsletter sebelum dikirim @@ -2228,6 +2277,7 @@ DocType: Data Import,In Progress,Sedang berlangsung apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Diantrikan untuk dicadangan. Mungkin memakan waktu beberapa menit sampai satu jam. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Izin pengguna sudah ada +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Memetakan kolom {0} ke bidang {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Lihat {0} DocType: User,Hourly,Per jam apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Daftar OAuth Klien App @@ -2240,7 +2290,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} tidak dapat ""{2}"". Seharusnya salah satu dari ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},diperoleh sebesar {0} melalui aturan otomatis {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} atau {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Pembaruan Password DocType: Workflow State,trash,sampah DocType: System Settings,Older backups will be automatically deleted,Cadangan yang lebih tua akan dihapus secara otomatis apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID Kunci Akses Tidak Valid atau Kunci Akses Rahasia. @@ -2268,6 +2317,7 @@ DocType: Address,Preferred Shipping Address,Disukai Alamat Pengiriman apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Dengan kepala Surat apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} telah membuat {1} ini apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Tidak diperbolehkan untuk {0}: {1} di Baris {2}. Bidang terbatas: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-barat-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jika ini dicentang, baris dengan data yang valid akan diimpor dan baris yang tidak valid akan dibuang ke file baru untuk Anda impor nanti." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumen hanya dapat diedit oleh pengguna dari peran @@ -2294,6 +2344,7 @@ DocType: Custom Field,Is Mandatory Field,Apakah Lapangan Wajib DocType: User,Website User,Website User apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Beberapa kolom mungkin terpotong saat mencetak ke PDF. Usahakan agar jumlah kolom di bawah 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Tidak sama dengan +DocType: Data Import Beta,Don't Send Emails,Jangan Kirim Email DocType: Integration Request,Integration Request Service,Integrasi Permintaan Layanan DocType: Access Log,Access Log,Log Akses DocType: Website Script,Script to attach to all web pages.,Script untuk melampirkan semua halaman web. @@ -2333,6 +2384,7 @@ DocType: Contact,Passive,Pasif DocType: Auto Repeat,Accounts Manager,Pengelola Akun apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Tugas untuk {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Pembayaran anda dibatalkan +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/views/reports/report_view.js,Select File Type,Pilih File Type apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Lihat semua DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor @@ -2365,6 +2417,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumen Status apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Diperlukan Persetujuan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Catatan berikut perlu dibuat sebelum kami dapat mengimpor file Anda. DocType: OAuth Authorization Code,OAuth Authorization Code,Kode Otorisasi OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Tidak diizinkan untuk Impor DocType: Deleted Document,Deleted DocType,DocType dihapus @@ -2418,8 +2471,8 @@ DocType: System Settings,System Settings,Pengaturan Sistem DocType: GCalendar Settings,Google API Credentials,Google API Credentials apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesi Mulai Gagal apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Email ini dikirim ke {0} dan disalin ke {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},mengirimkan dokumen ini {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu DocType: Social Login Key,Provider Name,Nama Penyedia apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Buat baru {0} DocType: Contact,Google Contacts,Kontak Google @@ -2427,6 +2480,7 @@ DocType: GCalendar Account,GCalendar Account,Akun GCalendar DocType: Email Rule,Is Spam,Apakah Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Laporan {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Terbuka {0} +DocType: Data Import Beta,Import Warnings,Peringatan Impor DocType: OAuth Client,Default Redirect URI,Bawaan Redirect URI DocType: Auto Repeat,Recipients,Penerima DocType: System Settings,Choose authentication method to be used by all users,Pilih metode otentikasi yang akan digunakan oleh semua pengguna @@ -2544,6 +2598,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Laporan berh apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook Error DocType: Email Flag Queue,Unread,belum dibaca DocType: Bulk Update,Desk,Meja Belajar +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Melewati kolom {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter harus berupa tupel atau daftar (dalam daftar) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Tulis query SELECT. Hasil catatan tidak paged (semua data yang dikirim dalam satu pergi). DocType: Email Account,Attachment Limit (MB),Batas Lampiran (MB) @@ -2558,6 +2613,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Buat New DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Surel tidak dikirim ke {0} (tidak berlangganan / dinonaktifkan) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Pilih bidang yang akan diekspor DocType: Async Task,Traceback,Melacak kembali DocType: Currency,Smallest Currency Fraction Value,Terkecil Mata Fraksi Nilai apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Mempersiapkan Laporan @@ -2566,6 +2622,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Aktifkan Komentar apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Catatan DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Membatasi pengguna dari alamat IP ini saja. Beberapa alamat IP dapat ditambahkan dengan memisahkan dengan koma. Juga menerima alamat IP parsial seperti (111.111.111) +DocType: Data Import Beta,Import Preview,Pratinjau Impor DocType: Communication,From,Dari apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Pilih simpul kelompok terlebih dahulu. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Cari {0} pada {1} @@ -2664,6 +2721,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Antara DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Diantrikan +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Pengaturan> Kustomisasi Formulir DocType: Braintree Settings,Use Sandbox,Gunakan Sandbox apps/frappe/frappe/utils/goal.py,This month,Bulan ini apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format @@ -2679,6 +2737,7 @@ DocType: Session Default,Session Default,Default Sesi DocType: Chat Room,Last Message,Pesan Terakhir DocType: OAuth Bearer Token,Access Token,Akses Token DocType: About Us Settings,Org History,Org Sejarah +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Sekitar {0} menit tersisa DocType: Auto Repeat,Next Schedule Date,Jadwal Jadwal Berikutnya DocType: Workflow,Workflow Name,Nama Alur Kerja DocType: DocShare,Notify by Email,Beritahu melalui Surel @@ -2708,6 +2767,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Penulis apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Lanjutkan Mengirim apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Membuka lagi +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Tampilkan Peringatan apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Pembelian Pengguna DocType: Data Migration Run,Push Failed,Push Gagal @@ -2744,6 +2804,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Pencar apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Anda tidak diizinkan untuk melihat nawala. DocType: User,Interests,minat apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Instruksi atur ulang password telah dikirim ke email Anda +DocType: Energy Point Rule,Allot Points To Assigned Users,Allot Points Untuk Pengguna yang Ditugaskan apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 adalah untuk perizinan tingkat dokumen, \ tingkat yang lebih tinggi untuk izin tingkat lapangan." DocType: Contact Email,Is Primary,Apakah Pratama @@ -2766,6 +2827,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Jenis ekspor DocType: Workflow State,circle-arrow-left,lingkaran-panah-kiri DocType: System Settings,Force User to Reset Password,Paksa Pengguna untuk Mengatur Ulang Kata Sandi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Untuk mendapatkan laporan yang diperbarui, klik pada {0}." @@ -2778,13 +2840,16 @@ DocType: Contact,Middle Name,Nama tengah DocType: Custom Field,Field Description,Bidang Deskripsi apps/frappe/frappe/model/naming.py,Name not set via Prompt,Name tidak diatur melalui Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Kotak Masuk Surel +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Memperbarui {0} dari {1}, {2}" DocType: Auto Email Report,Filters Display,filter Tampilan apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Bidang "amended_from" harus ada untuk melakukan amandemen. +DocType: Contact,Numbers,Angka apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} menghargai karya Anda pada {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Simpan filter DocType: Address,Plant,Tanaman apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Membalas semua DocType: DocType,Setup,Pengaturan +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Semua Rekaman DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Alamat Email yang Kontak Google-nya harus disinkronkan. DocType: Email Account,Initial Sync Count,Awal Hitungan Sync DocType: Workflow State,glass,kaca @@ -2809,7 +2874,7 @@ DocType: Workflow State,font,fon DocType: DocType,Show Preview Popup,Tampilkan Pratinjau Popup apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ini adalah sandi top-100 yang umum. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Aktifkan pop-up -DocType: User,Mobile No,Ponsel Tidak ada +DocType: Contact,Mobile No,Ponsel Tidak ada DocType: Communication,Text Content,Konten teks DocType: Customize Form Field,Is Custom Field,Apakah Custom Field DocType: Workflow,"If checked, all other workflows become inactive.","Jika dicentang, semua alur kerja lain menjadi tidak aktif." @@ -2855,6 +2920,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Tamba apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nama Print Format baru apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar DocType: Data Migration Run,Pull Insert,Tarik Insert +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Poin maksimum diperbolehkan setelah mengalikan poin dengan nilai pengali (Catatan: Tanpa batas biarkan bidang ini kosong atau set 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Templat Tidak Valid apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Query SQL Ilegal apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Wajib: DocType: Chat Message,Mentions,Penyebutan @@ -2869,6 +2937,7 @@ DocType: User Permission,User Permission,Pengguna Izin apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Tidak Terinstal apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Unduh dengan data +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},nilai yang diubah untuk {0} {1} DocType: Workflow State,hand-right,tangan kanan DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Wilayah @@ -2895,10 +2964,12 @@ DocType: Braintree Settings,Public Key,Kunci publik DocType: GSuite Settings,GSuite Settings,Pengaturan GSuite DocType: Address,Links,Links DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Menggunakan Nama Alamat Email yang disebutkan dalam Akun ini sebagai Nama Pengirim untuk semua email yang dikirim menggunakan Akun ini. +DocType: Energy Point Rule,Field To Check,Field Untuk Memeriksa apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Kontak - Tidak dapat memperbarui kontak di Google Kontak {0}, kode kesalahan {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Harap pilih Jenis Dokumen. apps/frappe/frappe/model/base_document.py,Value missing for,Nilai hilang untuk apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Tambah Anak +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Kemajuan Impor DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Jika kondisinya puas, pengguna akan diberi poin. misalnya. doc.status == 'Ditutup'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Data yang sudah di-posting tidak dapat dihapus. @@ -2935,6 +3006,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Otorisasi Akses Kalend apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Halaman yang Anda cari hilang. Ini bisa jadi karena itu dipindahkan atau ada kesalahan ketik pada link. apps/frappe/frappe/www/404.html,Error Code: {0},Kode Kesalahan: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Keterangan untuk halaman listing, dalam teks biasa, hanya beberapa baris. (Max 140 karakter)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} adalah bidang wajib DocType: Workflow,Allow Self Approval,Izinkan Persetujuan Sendiri DocType: Event,Event Category,Kategori Peristiwa apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2983,8 +3055,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Pindah ke DocType: Address,Preferred Billing Address,Disukai Alamat Penagihan apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Terlalu banyak menulis dalam satu permintaan. Silakan kirim permintaan yang lebih kecil apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive telah dikonfigurasi. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Jenis Dokumen {0} telah diulang. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Nilai Berubah DocType: Workflow State,arrow-up,panah-atas +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Harus ada minimal satu baris untuk tabel {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Untuk mengonfigurasi Ulangi Otomatis, aktifkan "Izinkan Ulangi Otomatis" dari {0}." DocType: OAuth Bearer Token,Expires In,Kadaluarsa dalam DocType: DocField,Allow on Submit,Izinkan Submit @@ -3071,6 +3145,7 @@ DocType: Custom Field,Options Help,Pilihan Bantuan 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 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 @@ -3088,6 +3163,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Kode Verifikasi DocType: Webhook,Webhook Request,Permintaan Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Gagal: {0} ke {1}: {2} DocType: Data Migration Mapping,Mapping Type,Tipe pemetaan +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,pilih wajib apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Pilih apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Tidak perlu untuk simbol, angka, atau huruf besar." DocType: DocField,Currency,Mata uang @@ -3118,11 +3194,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Kepala Surat Berdasarkan apps/frappe/frappe/utils/oauth.py,Token is missing,Token hilang apps/frappe/frappe/www/update-password.html,Set Password,Atur Kata Sandi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Catatan {0} berhasil diimpor. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Catatan: Mengubah Nama Halaman akan mematahkan URL sebelumnya ke halaman ini. apps/frappe/frappe/utils/file_manager.py,Removed {0},Dihapus {0} DocType: SMS Settings,SMS Settings,Pengaturan SMS DocType: Company History,Highlight,Menyoroti DocType: Dashboard Chart,Sum,Jumlah +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,melalui Impor Data DocType: OAuth Provider Settings,Force,Memaksa apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Terakhir disinkronkan {0} DocType: DocField,Fold,Melipat @@ -3159,6 +3237,7 @@ DocType: Workflow State,Home,Rumah DocType: OAuth Provider Settings,Auto,Mobil DocType: System Settings,User can login using Email id or User Name,Pengguna bisa login menggunakan ID Email atau User Name DocType: Workflow State,question-sign,tanda tanya +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} dinonaktifkan apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Bidang "rute" adalah wajib untuk Tampilan Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Masukkan Kolom Sebelum {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Pengguna dari bidang ini akan diberi poin penghargaan @@ -3192,6 +3271,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Items DocType: Notification,Print Settings,Pengaturan Cetak DocType: Page,Yes,Ya DocType: DocType,Max Attachments,Max Lampiran +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Tentang {0} detik tersisa DocType: Calendar View,End Date Field,Bidang tanggal akhir apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Pintasan Global DocType: Desktop Icon,Page,Halaman @@ -3302,6 +3382,7 @@ DocType: GSuite Settings,Allow GSuite access,Izinkan akses GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Penamaan apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Pilih semua +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Kolom {0} apps/frappe/frappe/config/customization.py,Custom Translations,Translations kustom apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Kemajuan apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,berdasar Peran @@ -3343,11 +3424,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Kir DocType: Stripe Settings,Stripe Settings,Pengaturan Stripe DocType: Data Migration Mapping,Data Migration Mapping,Pemetaan Migrasi Data DocType: Auto Email Report,Period,periode +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Sekitar {0} menit tersisa apps/frappe/frappe/www/login.py,Invalid Login Token,Valid Login Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Membuang apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 jam yang lalu DocType: Website Settings,Home Page,Home Page DocType: Error Snapshot,Parent Error Snapshot,Induk Kesalahan Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Kolom peta dari {0} ke bidang di {1} DocType: Access Log,Filters,Penyaring DocType: Workflow State,share-alt,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Antrian adalah salah satu dari {0} @@ -3378,6 +3461,7 @@ DocType: Calendar View,Start Date Field,Field Tanggal Mulai DocType: Role,Role Name,Nama Peran apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Switch Untuk Meja apps/frappe/frappe/config/core.py,Script or Query reports,Script atau Query laporan +DocType: Contact Phone,Is Primary Mobile,Apakah Ponsel Primer DocType: Workflow Document State,Workflow Document State,Status Dokumen Alur Kerja apps/frappe/frappe/public/js/frappe/request.js,File too big,File terlalu besar apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Akun surel ditambahkan beberapa kali @@ -3423,6 +3507,7 @@ DocType: DocField,Float,Mengapung DocType: Print Settings,Page Settings,Pengaturan halaman apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Penghematan... apps/frappe/frappe/www/update-password.html,Invalid Password,kata sandi salah +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Rekor {0} berhasil diimpor dari {1}. DocType: Contact,Purchase Master Manager,Master Manajer Pembelian apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Klik pada ikon kunci untuk beralih publik / pribadi DocType: Module Def,Module Name,Nama Modul @@ -3456,6 +3541,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Entrikan nos ponsel yang valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Beberapa fitur mungkin tidak bekerja di browser anda. Perbarui browser anda ke versi terbaru. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Tidak tahu, tanyakan 'bantuan'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},membatalkan dokumen ini {0} DocType: DocType,Comments and Communications will be associated with this linked document,Komentar dan Komunikasi akan terkait dengan dokumen terkait ini apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,tebal @@ -3474,6 +3560,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Tambah / Kelo DocType: Comment,Published,Diterbitkan apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Terima kasih atas email Anda DocType: DocField,Small Text,Teks Kecil +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Nomor {0} tidak dapat ditetapkan sebagai nomor utama untuk Telepon dan juga Nomor Ponsel. DocType: Workflow,Allow approval for creator of the document,Izinkan persetujuan untuk pembuat dokumen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Menyimpan laporan DocType: Webhook,on_cancel,on_cancel @@ -3531,6 +3618,7 @@ DocType: Print Settings,PDF Settings,Pengaturan PDF DocType: Kanban Board Column,Column Name,Kolom Nama DocType: Language,Based On,Berdasarkan DocType: Email Account,"For more information, click here.","Untuk informasi lebih lanjut, klik di sini ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Jumlah kolom tidak cocok dengan data apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Membuat default apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Waktu Eksekusi: {0} dtk apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Jalur sertakan tidak valid @@ -3620,7 +3708,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Unggah {0} file DocType: Deleted Document,GCalendar Sync ID,ID Sinkronisasi GCalendar DocType: Prepared Report,Report Start Time,Waktu Mulai Laporan -apps/frappe/frappe/config/settings.py,Export Data,Ekspor Data +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Ekspor Data 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. @@ -3638,7 +3726,6 @@ DocType: Report,Disable Prepared Report,Nonaktifkan Laporan yang Disiapkan apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Pengguna {0} telah meminta penghapusan data apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Ilegal Access Token. Silakan coba lagi apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikasi ini telah diperbarui ke versi baru, harap perbarui halaman ini" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,Opsional: pemberitahuan akan dikirim jika persamaan ini benar DocType: Data Migration Plan,Plan Name,Nama rencana DocType: Print Settings,Print with letterhead,Mencetak dengan kop surat @@ -3679,6 +3766,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Tidak dapat melakukan Perubahan tanpa Pembatalan terlebih dahulu apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Page DocType: DocType,Is Child Table,Apakah Anak Table +DocType: Data Import Beta,Template Options,Opsi Templat apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} harus merupakan salah satu {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} sedang melihat dokumen ini apps/frappe/frappe/config/core.py,Background Email Queue,Antrian Latar Email @@ -3686,7 +3774,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Password Reset DocType: Communication,Opened,Dibuka DocType: Workflow State,chevron-left,chevron-kiri DocType: Communication,Sending,Mengirim -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Tidak diizinkan dari IP Address ini DocType: Website Slideshow,This goes above the slideshow.,Ini berjalan di atas slideshow. DocType: Contact,Last Name,Nama Belakang DocType: Event,Private,Swasta @@ -3700,7 +3787,6 @@ DocType: Workflow Action,Workflow Action,Tindakan Alur Kerja apps/frappe/frappe/utils/bot.py,I found these: ,Saya menemukan ini: DocType: Event,Send an email reminder in the morning,Kirim email pengingat di pagi hari DocType: Blog Post,Published On,Published On -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 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} @@ -3721,7 +3807,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,sinyal-peringatan DocType: Prepared Report,Prepared Report,Laporan yang disiapkan apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Tambahkan meta tag ke halaman web Anda -DocType: Contact,Phone Nos,Nomor Telepon 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 @@ -3738,6 +3823,7 @@ DocType: Data Migration Connector,Data Migration,Migrasi data DocType: User,API Key cannot be regenerated,Kunci API tidak dapat dibuat ulang apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Ada yang salah DocType: System Settings,Number Format,Nomor Format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Rekor {0} berhasil diimpor. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Ringkasan DocType: Event,Event Participants,Peserta Acara DocType: Auto Repeat,Frequency,Frekuensi @@ -3745,7 +3831,7 @@ DocType: Custom Field,Insert After,Masukkan Setelah DocType: Event,Sync with Google Calendar,Sinkronkan dengan Google Kalender DocType: Access Log,Report Name,Nama Laporan DocType: Desktop Icon,Reverse Icon Color,Membalikkan Icon Warna -DocType: Notification,Save,Simpan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Simpan apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Tanggal Terjadwal Berikutnya apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Tugaskan orang yang memiliki tugas paling sedikit apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,bagian Heading @@ -3768,11 +3854,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Pengaturan> Kustomisasi Formulir 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 DocType: Desktop Icon,Category,Kategori +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Nilai {0} hilang untuk {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Tambahkan Kontak apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Pemandangan apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Ekstensi script sisi klien di Javascript @@ -3795,6 +3881,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Pembaruan poin energi apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Pilih metode pembayaran yang lain. PayPal tidak mendukung transaksi dalam mata uang '{0}' DocType: Chat Message,Room Type,Tipe ruangan +DocType: Data Import Beta,Import Log Preview,Impor Pratinjau Log apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,kolom pencarian {0} tidak valid apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,file yang diunggah DocType: Workflow State,ok-circle,ok-lingkaran @@ -3861,6 +3948,7 @@ DocType: DocType,Allow Auto Repeat,Izinkan Ulangi Otomatis apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Tidak ada nilai untuk ditampilkan DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Template Email +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Catatan {0} berhasil diperbarui. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Pengguna {0} tidak memiliki akses doctype melalui izin peran untuk dokumen {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Baik login maupun password keduanya diperlukan apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Silahkan refresh untuk mendapatkan dokumen terbaru. diff --git a/frappe/translations/is.csv b/frappe/translations/is.csv index 500c8045c7..fb94291e4b 100644 --- a/frappe/translations/is.csv +++ b/frappe/translations/is.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Nýjar {} útgáfur fyrir eftirfarandi forrit eru tiltækar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vinsamlegast veldu Magn reitinn. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Hleður innflutningsskrá ... DocType: Assignment Rule,Last User,Síðasti notandi apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Ný verkefni, {0}, hefur verið úthlutað af {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sjálfgefin vistun vistuð +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Endurhlaða skrána DocType: Email Queue,Email Queue records.,Netfang Biðröð færslur. DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mánaðarleg DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Virkja á Móttaka apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Danger -apps/frappe/frappe/www/login.py,Email Address,Netfang +DocType: Address,Email Address,Netfang DocType: Workflow State,th-large,Th-stór DocType: Communication,Unread Notification Sent,Ólesið tilkynning send apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export ekki leyfð. Þú þarft {0} hlutverki til útflutnings. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Stjórnandi DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Samskiptakostir, eins og "Velta fyrirspurn, Support Fyrirspurn" osfrv hver á nýja línu eða aðskilin með kommum." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Bæta við merki ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Andlitsmynd -DocType: Data Migration Run,Insert,Setja inn +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Setja inn apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Leyfa aðgang að Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Veldu {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Vinsamlegast sláðu inn grunnslóð @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 mínútu 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 DocType: Company History,Company History,Saga fyrirtækisins -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,endurstilla +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,endurstilla DocType: Workflow State,volume-up,hækka apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks kalla API beiðnir í vefforrit +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Sýna Traceback DocType: DocType,Default Print Format,Sjálfgefið Prenta Format DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ekkert: Lok Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} reit er ekki hægt að setja eins og einstök í {1}, þar sem það eru ekki einstök fyrirliggjandi gildi" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,skjal Tegundir +DocType: Global Search Settings,Document Types,skjal Tegundir DocType: Address,Jammu and Kashmir,Jammu og Kashmir DocType: Workflow,Workflow State Field,Workflow State Field -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Skipulag> Notandi DocType: Language,Guest,Guest DocType: DocType,Title Field,Title Field DocType: Error Log,Error Log,Villuannál @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Endurtekur eins og "abcabcabc" eru aðeins örlítið erfiðara að giska en "abc" DocType: Notification,Channel,Rás apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",Ef þú heldur að þetta sé óheimilt skaltu breyta Stjórnandi lykilorð. +DocType: Data Import Beta,Data Import Beta,Beta innflutnings gagna apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} er nauðsynlegur DocType: Assignment Rule,Assignment Rules,Verkefnisreglur DocType: Workflow State,eject,kasta @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Workflow Action Name apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE er ekki hægt að sameinuð DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ekki zip skrá +DocType: Global Search DocType,Global Search DocType,Alheimsleit DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                              New {{ doc.doctype }} #{{ doc.name }}
                                              ",Til að bæta við hreyfimyndum skaltu nota jinja tags eins og
                                               New {{ doc.doctype }} #{{ doc.name }} 
                                              @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,þú DocType: Braintree Settings,Braintree Settings,Braintree Stillingar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} tókst að búa til. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Vista síu DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Ekki er hægt að eyða {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Sláðu url breytu fyrir s apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Sjálfvirk endurtekning búin til fyrir þetta skjal apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Skoða skýrslu í vafranum þínum apps/frappe/frappe/config/desk.py,Event and other calendars.,Event og önnur dagatöl. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 röð skylt) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Öll svið eru nauðsynleg til að senda inn athugasemdina. DocType: Custom Script,Adds a client custom script to a DocType,Bætir sérsniðnu handriti viðskiptavinar við DocType DocType: Print Settings,Printer Name,Printer Name @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Magn Uppfæra DocType: Workflow State,chevron-up,Chevron upp DocType: DocType,Allow Guest to View,Leyfa Guest til að sjá apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ætti ekki að vera eins og {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Eyða {0} atriði frambúðar? apps/frappe/frappe/utils/oauth.py,Not Allowed,Ekki leyft @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,sýna DocType: Email Group,Total Subscribers,Samtals Áskrifendur apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Efst {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Röðunúmer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ef Hlutverk hefur ekki aðgang í Level 0, eru þá hærri stigum tilgangslaust." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Vista sem DocType: Comment,Seen,séð @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Skilgreinir workflow ríki og reglur um skjal. DocType: Workflow State,Filter,Sía @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,lokað DocType: Blog Settings,Blog Title,Blog Title apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standard hlutverk er ekki mögulegt apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Spjallsíða +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kortadálkar DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Fréttabréf apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Ekki er hægt að nota í staðinn fyrir einhvern-fyrirspurn í röð eftir @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Bæta dálk apps/frappe/frappe/www/contact.html,Your email address,Netfangið þitt DocType: Desktop Icon,Module,Module +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} færslur úr {1} tókust uppfærðar. DocType: Notification,Send Alert On,Senda viðvörun á DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Aðlaga miðanum Prenta Fela, Default o.fl." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Losaðu um skrár ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,User {0} getur ekki eytt DocType: System Settings,Currency Precision,Gjaldmiðill nákvæmni apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Annar viðskiptin er sljór þetta einn. Vinsamlegast reyndu aftur eftir nokkrar sekúndur. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Hreinsaðu síur DocType: Test Runner,App,app apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Viðhengin gætu ekki verið rétt tengd við nýju skjalið DocType: Chat Message Attachment,Attachment,viðhengi @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Ekki er hæg apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google dagatal - gat ekki uppfært viðburð {0} í Google dagatali, villukóða {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Leitaðu eða slá inn skipun DocType: Activity Log,Timeline Name,Timeline Name +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Aðeins er hægt að stilla einn {0} sem aðal. DocType: Email Account,e.g. smtp.gmail.com,td smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Bæta við nýrri reglu DocType: Contact,Sales Master Manager,Velta Master Manager @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP miðnafnsreitur apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Flytur inn {0} af {1} DocType: GCalendar Account,Allow GCalendar Access,Leyfa GCalendar aðgangi -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} er lögboðið reit +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} er lögboðið reit apps/frappe/frappe/templates/includes/login/login.js,Login token required,Innskráning lykilorð þarf apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mánaðarleg röðun: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Veldu marga lista hluti @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Get ekki tengst: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Orð af sjálfu sér er auðvelt að giska. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Sjálfvirk úthlutun mistókst: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Leita ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Vinsamlegast veldu Company apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Samruni er aðeins mögulegt á milli Group til samstæðunnar eða Leaf Hnútur-til-blaða hnút apps/frappe/frappe/utils/file_manager.py,Added {0},Bætti {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Engar samsvarandi færslur. Leita eitthvað nýtt @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,Auðkenni viðskiptavinar OAuth DocType: Auto Repeat,Subject,Subject apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Til baka í skrifborð DocType: Web Form,Amount Based On Field,Upphæð Byggt á Field -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Notandi er nauðsynlegur fyrir Share DocType: DocField,Hidden,falinn DocType: Web Form,Allow Incomplete Forms,Leyfa Incomplete Eyðublöð @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} og {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Byrjaðu samtal. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Alltaf að bæta "Draft" Heading fyrir prentun drög skjölum apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Villa í tilkynningu: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ári DocType: Data Migration Run,Current Mapping Start,Núverandi Kortlagning apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Netfangið hefur verið merkt sem ruslpóstur DocType: Comment,Website Manager,Vefsíða Manager @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,Barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Notkun undirfyrirsagnar eða aðgerða er takmörkuð apps/frappe/frappe/config/customization.py,Add your own translations,Bæta við eigin þýðingum DocType: Country,Country Name,Land Name +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Autt sniðmát DocType: About Us Team Member,About Us Team Member,Um okkur lið félagi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Heimildir eru sett á hlutverkum og Skjal tegundir (kallaðar DocTypes) með því að setja rétt eins að lesa, skrifa, búa til, eyða, Senda, Hætta, breytt, Report, innflutningur, útflutningur, prenta, tölvupóst og setja heimildir notanda." DocType: Event,Wednesday,miðvikudagur @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Vefsíða Þema Image Link DocType: Web Form,Sidebar Items,Skenkur Items DocType: Web Form,Show as Grid,Sýna sem rist apps/frappe/frappe/installer.py,App {0} already installed,Forrit {0} er þegar uppsett +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Notendur sem fá úthlutað tilvísunarskjali fá stig. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Engin forsýning DocType: Workflow State,exclamation-sign,upphrópun-merki apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,{0} skrár voru fjarlægðar @@ -597,6 +612,7 @@ DocType: Notification,Days Before,dögum áður apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Daglegum atburðum ætti að ljúka sama degi. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Breyta ... DocType: Workflow State,volume-down,rúmmál niður +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Aðgangur er ekki leyfður frá þessari IP tölu apps/frappe/frappe/desk/reportview.py,No Tags,Engin merki DocType: Email Account,Send Notification to,Senda tilkynningu til DocType: DocField,Collapsible,fellanlegur @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Hönnuður apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,búið apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} í röð {1} getur ekki bæði slóðina og barn atriði +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Það ætti að vera að minnsta kosti ein röð fyrir eftirfarandi töflur: {0} DocType: Print Format,Default Print Language,Sjálfgefið prentmál apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Forfaðir Af apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} getur ekki eytt @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Host +DocType: Data Import Beta,Import File,Flytja inn skrá apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Column {0} þegar til. DocType: ToDo,High,Hár apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,New Event @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Sendu tilkynningar fyrir töl apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prófessor apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ekki í forritarastillingu apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Skrá varabúnaður er tilbúinn -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Hámarks stig leyfð eftir margföldun punkta með margfaldara gildið (Athugið: Fyrir ekkert takmarkað gildi sem 0) DocType: DocField,In Global Search,Í Global Leita DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,inndráttur vinstri @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',User '{0}' þegar hefur það hlutverk '{1}' DocType: System Settings,Two Factor Authentication method,Tvær þættir staðfestingaraðferð apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Settu fyrst nafnið og vistaðu skrána. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 met apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Deilt með {0} apps/frappe/frappe/email/queue.py,Unsubscribe,afskrá DocType: View Log,Reference Name,Tilvísun Name @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Data Migration Connec 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 DocType: Note,Notify Users On Every Login,Tilkynna notendur um hvert innskráningu +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Get ekki samsvarað dálki {0} við hvaða reit sem er +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} skrár tókust. DocType: PayPal Settings,API Password,API Lykilorð apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Sláðu inn python mát eða veldu tengitegund apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,FIELDNAME ekki sett Custom Field @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Afrit nafn {0} {1} -DocType: Email Queue,Retry,Reyndu aftur +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Reyndu aftur +DocType: Contact Phone,Number,Númer DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Þú hefur nýjan skilaboð frá: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Breyta HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Vinsamlegast sláðu inn Tilvísun vefslóð apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Skoða Properties (me apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Smelltu á skrá til að velja hana. DocType: Note Seen By,Note Seen By,Athugasemd séð af apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Reyndu að nota lengri lyklaborð mynstur með fleiri snúninga -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LeaderBoard +,LeaderBoard,LeaderBoard DocType: DocType,Default Sort Order,Sjálfgefin röðunarröð DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Svara Hjálp @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,semja tölvupóst apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Ríki til workflow (td Draft, Samþykkt, HÃ|tt)." DocType: Print Settings,Allow Print for Draft,Leyfa prenta fyrir Draft +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 ...

                                              Þú verður 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/link_selector.js,Set Quantity,Setja Magn apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Senda þessu skjali til að staðfesta DocType: Contact,Unsubscribed,afskráður @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Skipulagseining fyrir noten ,Transaction Log Report,Viðskiptaskrárskýrsla DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Senda Afskrá tengil +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Það eru nokkrar tengdar færslur sem þarf að búa til áður en við getum flutt skrána þína inn. Viltu búa til eftirfarandi færslur sem vantar sjálfkrafa? DocType: Access Log,Method,aðferð DocType: Report,Script Report,Script Report DocType: OAuth Authorization Code,Scopes,mælar @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Hlaðið upp með góðum árangri apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Þú ert tengdur við internetið. DocType: Social Login Key,Enable Social Login,Virkja félagslega innskráningu +DocType: Data Import Beta,Warnings,Viðvaranir DocType: Communication,Event,Event apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Á {0}, {1} skrifaði:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Ekki hægt að eyða stöðluðu sviði. Hægt er að fela það ef þú vilt @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Settu ne DocType: Kanban Board Column,Blue,Blue apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Allar customizations verða fjarlægðar. Vinsamlega staðfestið. DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Flytja út rangar raðir apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Heiti hóps getur ekki verið tómt. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Frekari hnútar geta verið aðeins búin undir 'group' tegund hnúta DocType: SMS Parameter,Header,haus @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Beiðni rann út apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Virkja / óvirku lén DocType: Role Permission for Page and Report,Allow Roles,leyfa Hlutverk +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} færslur fluttust af {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Einföld Python-tjáning, dæmi: Staða í („ógilt“)" DocType: User,Last Active,Síðast virk DocType: Email Account,SMTP Settings for outgoing emails,SMTP stillingar fyrir sendan tölvupóst apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,veldu DocType: Data Export,Filter List,Sía listi DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Lykilorð þitt hefur verið uppfærð. Hér er nýja lykilorðið þitt 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 @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,notandanafn DocType: Communication,Sent,sendir DocType: Address,Kerala,Kerala -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Stjórnsýsla DocType: User,Simultaneous Sessions,samtímis Sessions DocType: Social Login Key,Client Credentials,viðskiptavinur persónuskilríki @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Uppfær apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Notandi getur ekki búið apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Lokið -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} er ekki til apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox aðgangur er samþykkt! DocType: Customize Form,Enter Form Type,Sláðu Form Tegund DocType: Google Drive,Authorize Google Drive Access,Leyfa aðgang að Google Drive @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Engar færslur tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,fjarlægja Field apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Þú ert ekki tengdur við internetið. Reyndu eftir einhvern tíma. -DocType: User,Send Password Update Notification,Senda Lykilorð Uppfæra Tilkynningar apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Leyfa DOCTYPE, DOCTYPE. Farðu varlega!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Sérsniðin Snið fyrir prentun, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summa af {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Rangt staðfestingar apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Sameining Google tengiliða er óvirk. DocType: Assignment Rule,Description,Lýsing DocType: Print Settings,Repeat Header and Footer in PDF,Endurtaka haus og fót í PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Bilun DocType: Address Template,Is Default,er Default DocType: Data Migration Connector,Connector Type,Tengistegund apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Dálki Nafn má ekki vera autt @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Farðu á {0} síðu DocType: LDAP Settings,Password for Base DN,Lykilorð fyrir Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tafla Field 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/model/document.py,Action Failed,aðgerð mistókst apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,fyrir notanda @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Virkja hráa prentun DocType: Website Route Redirect,Source,Source apps/frappe/frappe/templates/includes/list/filters.html,clear,ljóst apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Lokið +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Skipulag> Notandi DocType: Prepared Report,Filter Values,Sía gildi DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,Mistakast @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Fylg ,Activity,virkni DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Hjálp: Til að tengja við aðra færslu í kerfinu, nota "# Form / Note / [Ath Name]" eins og Link URL. (Ekki nota "http: //")" DocType: User Permission,Allow,Leyfa +DocType: Data Import Beta,Update Existing Records,Uppfæra núverandi skrár apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Við skulum forðast endurtekin orð og stafi DocType: Energy Point Rule,Energy Point Rule,Reglu um orkupunkta DocType: Communication,Delayed,seinkað @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Brautarvöllur DocType: Notification,Set Property After Alert,Setja eign eftir viðvörun apps/frappe/frappe/config/customization.py,Add fields to forms.,Bæta reiti til að formum. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Útlit eins og eitthvað er athugavert við Paypal stillingar þessa vefsvæðis. -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 ...

                                              Þú verður 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/sidebar/review.js,Add Review,Bættu við umsögn -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Leturstærð (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Aðeins er heimilt að aðlaga staðlaða DocTypes úr Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Sí apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Afsakið! Þú getur ekki eytt sjálfvirkir athugasemdir DocType: Google Settings,Used For Google Maps Integration.,Notað fyrir samþættingu Google korta. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Tilvísun DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Engar skrár verða fluttar út DocType: User,System User,System User DocType: Report,Is Standard,er Standard DocType: Desktop Icon,_report,_report @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,mínus-merki apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ekki fundið apps/frappe/frappe/www/printview.py,No {0} permission,Engin {0} leyfi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Útflutningur Sérsniðnar aðgangsheimildir +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Engar vörur fundust. DocType: Data Export,Fields Multicheck,Fields Multicheck DocType: Activity Log,Login,Skrá inn DocType: Web Form,Payments,greiðslur @@ -1451,8 +1477,9 @@ DocType: Address,Postal,pósti DocType: Email Account,Default Incoming,Sjálfgefið Komandi DocType: Workflow State,repeat,endurtaka DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Gildi verður að vera eitt af {0} DocType: Role,"If disabled, this role will be removed from all users.","Ef fatlaður, þetta hlutverk verður fjarlægt úr öllum notendum." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Farðu á {0} lista +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Farðu á {0} lista 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 @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Staðbundið svæðisnafn DocType: DocType,Track Changes,Track Changes DocType: Workflow State,Check,athuga DocType: Chat Profile,Offline,offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} tókst að flytja inn DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Senda afskrá skilaboð í tölvupósti apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Breyta titli @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} hefur þegar úthlutað sjálfgefnu gildi fyrir {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                              No results found for '

                                              ,

                                              Engar niðurstöður fundust fyrir '

                                              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 @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ekki leyfilegt fyrir 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Skipulag> Notendaleyfi DocType: LDAP Group Mapping,LDAP Group Mapping,Kortlagning LDAP hóps DocType: Dashboard Chart,Chart Options,Valkostir á myndriti +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Ónefnd titill apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} frá {1} til {2} í röð # {3} DocType: Communication,Expired,útrunnið apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Virðist tákn sem þú notar er ógilt! @@ -1528,6 +1558,7 @@ DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Max Attachment Stærð (í MB) apps/frappe/frappe/www/login.html,Have an account? Login,Með reikning? Skrá inn DocType: Workflow State,arrow-down,arrow niður +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Röð {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Notandi ekki leyft að eyða {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} af {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Síðast uppfært þann @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,Custom hlutverk apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Forsíða / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sláðu inn lykilorðið þitt DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Aðgangur Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Skylda) 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. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Sýna stj apps/frappe/frappe/desk/form/assign_to.py,New Message,Ný skilaboð DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-skýrsla +DocType: Data Import Beta,Template Warnings,Viðvaranir sniðmáts apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,síur vistuð DocType: DocField,Percent,prósent apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Vinsamlegast settu síur @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Custom DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ef slökkt er á, verður ekki beðið um notendur sem skráir sig inn frá Takmarkað IP-tölu fyrir Two Factor Auth" DocType: Auto Repeat,Get Contacts,Fáðu tengiliði apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Færslur í flokkinum {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Sleppi Untitled dálki DocType: Notification,Send alert if date matches this field's value,Senda póst ef dagsetning passar gildi Þessi reitur er DocType: Workflow,Transitions,umbreytingum apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} til {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,skref-afturábak apps/frappe/frappe/utils/boilerplate.py,{app_title},{APP_TITLE} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Vinsamlegast settu Dropbox aðgang takkana í síðuna samsk þinni apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Eyða þessari færslu til að leyfa sendingu á þetta netfang +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ef óstöðluð tengi (td POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Sérsníddu flýtileiðir apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Aðeins nauðsynlega reiti er nauðsynlegt fyrir nýjum færslum. Þú getur eytt valfrjálsar dálka ef þú vilt. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Sýna meiri virkni @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Séð af töflu apps/frappe/frappe/www/third_party_apps.html,Logged in,Skráður inn apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Sjálfgefið Sending og Innhólf DocType: System Settings,OTP App,OTP forrit +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Uppfært {0} met úr {1} tókst. DocType: Google Drive,Send Email for Successful Backup,Sendu tölvupóst til að ná árangri +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Tímaáætlun er óvirk. Ekki hægt að flytja inn gögn. DocType: Print Settings,Letter,Letter DocType: DocType,"Naming Options:
                                              1. field:[fieldname] - By Field
                                              2. naming_series: - By Naming Series (field called naming_series must be present
                                              3. Prompt - Prompt user for a name
                                              4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                              5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Næsta Sync Token DocType: Energy Point Settings,Energy Point Settings,Stillingar orkupunkta DocType: Async Task,Succeeded,Eftirmaður apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Umbeðnar krafist er í {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                No results found for '

                                                ,

                                                Engar niðurstöður fundust fyrir '

                                                apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Endurstilla heimildir fyrir {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Notendur og heimildir DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,í DocType: Notification,Value Change,gildi Breyta DocType: Google Contacts,Authorize Google Contacts Access,Leyfa aðgang Google tengiliða apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Sýnir aðeins Numeric reitir úr Report +DocType: Data Import Beta,Import Type,Tegund innflutnings DocType: Access Log,HTML Page,HTML síðu DocType: Address,Subsidiary,dótturfélag apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Tilraun til að tengjast QZ bakki ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ógild Out DocType: Custom DocPerm,Write,skrifaðu apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Aðeins Administrator leyft að búa Fyrirspurn / Script Skýrslur apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Uppfæri -DocType: File,Preview,Preview +DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "gildi" er nauðsynlegur. Vinsamlegast tilgreindu gildi til að uppfæra DocType: Customize Form,Use this fieldname to generate title,Notaðu þessa FIELDNAME að búa titilinn apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Flytja Email Frá @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Vafrinn styðu DocType: Social Login Key,Client URLs,Vefslóðir viðskiptavinar apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Sumir upplýsingar vantar apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} búið til með góðum árangri +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Sleppum {0} af {1}, {2}" DocType: Custom DocPerm,Cancel,Hætta apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Magn að eyða apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,File {0} er ekki til @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,tákn apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Staðfestu eyðingu gagna -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nýtt lykilorð send apps/frappe/frappe/auth.py,Login not allowed at this time,Innskráning ekki leyfð á þessum tíma DocType: Data Migration Run,Current Mapping Action,Núverandi Kortlagning DocType: Dashboard Chart Source,Source Name,Source Name @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pinn apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Fylgt af DocType: LDAP Settings,LDAP Email Field,LDAP Email Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} List +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Flytja {0} færslur apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Þegar í notanda að gera lista DocType: User Email,Enable Outgoing,Virkja Outgoing DocType: Address,Fax,Fax @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Prenta skjöl apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hoppa að sviði DocType: Contact Us Settings,Forward To Email Address,Forward á netfangið +DocType: Contact Phone,Is Primary Phone,Er aðalsími apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Sendu tölvupóst á {0} til að tengja það hér. DocType: Auto Email Report,Weekdays,Virka daga +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} færslur verða fluttar út apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Title reitur verður að vera gilt FIELDNAME DocType: Post Comment,Post Comment,Post Athugasemd apps/frappe/frappe/config/core.py,Documents,skjöl @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Þessi reitur verður að birtast aðeins ef FIELDNAME skilgreint hér hefur gildi OR reglur eru sannir (dæmi): myfield eval: doc.myfield == 'Gildi minn' eval: doc.age> 18 DocType: Social Login Key,Office 365,Skrifstofa 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Í dag +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Þegar þú hefur sett þetta, sem notendur munu aðeins vera fær aðgang skjöl (td. Bloggfærsluna) þar sem tengill er til (td. Blogger)." +DocType: Data Import Beta,Submit After Import,Sendu inn eftir innflutning DocType: Error Log,Log of Scheduler Errors,Log um Tímaáætlun Villa DocType: User,Bio,bio DocType: OAuth Client,App Client Secret,App Viðskiptavinur Secret @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Slökkva Viðskiptavinur Skilti tengilinn í Innskráning síðunni apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Úthlutað til / Eigandi DocType: Workflow State,arrow-left,arrow vinstri +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Flytja út 1 skrá DocType: Workflow State,fullscreen,Forrit sem notar alla DocType: Chat Token,Chat Token,Spjalltákn apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Búðu til mynd apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ekki flytja inn DocType: Web Page,Center,Center DocType: Notification,Value To Be Set,Gildi til að setja apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Breyta {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,Sýna Kafli Fyrirsagnir DocType: Bulk Update,Limit,Limit apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Okkur hefur borist beiðni um að eyða {0} gögnum sem tengjast: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Bættu við nýrri hluta +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Síaðar skrár apps/frappe/frappe/www/printview.py,No template found at path: {0},Engin sniðmát finna á slóð: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Engin netfangs DocType: Comment,Cancelled,hætt við @@ -2190,10 +2237,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Alheimsgerðir skjalasniðs endurstilltar. ,Lead Conversion Time,Leiða viðskipta tími apps/frappe/frappe/desk/page/activity/activity.js,Build Report,byggja skýrslu DocType: Note,Notify users with a popup when they log in,Tilkynna notendum með almenningur þegar þeir skrá í +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Ekki er hægt að leita að kjarnaeiningum {0} í alþjóðlegri leit. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Opna spjall apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} er ekki til, velja nýja miða að sameinast" DocType: Data Migration Connector,Python Module,Python Module @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Loka 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Skipulag> Notendaleyfi -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Uppfæra +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Uppfæra DocType: Transaction Log,Transaction Hash,Transaction Hash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Vistaðu Fréttabréf áður en þú sendir @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,Í vinnslu apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Biðröð fyrir öryggisafrit. Það getur tekið nokkrar mínútur til klukkutíma. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Notandaskilyrði er þegar til +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kortleggja dálk {0} til reit {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Skoða {0} DocType: User,Hourly,Klukkutíma apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Register OAuth client app @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} er ekki hægt að "{2}". Það ætti að vera einn af "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},unnið með {0} með sjálfvirku reglu {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} eða {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Lykilorð Uppfæra DocType: Workflow State,trash,rugl DocType: System Settings,Older backups will be automatically deleted,Eldri afrit verður sjálfkrafa eytt apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ógilt aðgangs lykil ID eða Leyndarmál aðgangs lykill. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,Valinn Shipping Address apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Með Bréf höfuð apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} búin þetta {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Ekki leyfilegt fyrir {0}: {1} í röð {2}. Takmarkaður reitur: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-vestur-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",Ef þetta er skoðuð verða raðir með gögnum innfluttar og ógildir raðir verði seldar í nýjan skrá til að flytja inn síðar. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Skjalið er aðeins editable af notendum hlutverki @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,Er nauðsynlegur Field DocType: User,Website User,Vefsíða User apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Sumir dálkar geta skemmst þegar prentað er á PDF. Reyndu að halda fjölda dálka undir 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,ekki jafngildir +DocType: Data Import Beta,Don't Send Emails,Ekki senda tölvupóst DocType: Integration Request,Integration Request Service,Sameining Beiðni Service DocType: Access Log,Access Log,Aðgangsskrá DocType: Website Script,Script to attach to all web pages.,Script til að hengja öllum vefsíðum. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,Hlutlaus DocType: Auto Repeat,Accounts Manager,Accounts Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Verkefni fyrir {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Greiðsla þín hefur verið lokað. +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/views/reports/report_view.js,Select File Type,Veldu File Type apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Sjá allt DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,gögn apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,skjal Staða apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Samþykki krafist +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Eftirfarandi færslur þarf að búa til áður en við getum flutt skrána þína inn. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Heimild Code apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Ekki leyft að flytja inn DocType: Deleted Document,Deleted DocType,eytt DOCTYPE @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,System Settings DocType: GCalendar Settings,Google API Credentials,Google Forritaskilríki apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start tókst ekki apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Þessi tölvupóstur var sendur til {0} og afrita til {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},skilaði þessu skjali {0} DocType: Workflow State,th,Þ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ári DocType: Social Login Key,Provider Name,Nafn birgis apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Búa til nýjan {0} DocType: Contact,Google Contacts,Google tengiliðir @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar reikningur DocType: Email Rule,Is Spam,er ruslpóstur apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Skýrsla {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} +DocType: Data Import Beta,Import Warnings,Innflutningsviðvaranir DocType: OAuth Client,Default Redirect URI,Sjálfgefið Beina URI DocType: Auto Repeat,Recipients,viðtakendur DocType: System Settings,Choose authentication method to be used by all users,Veldu auðkenningaraðferð sem allir notendur nota @@ -2543,6 +2597,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Skýrslan va apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slaka Webhook Villa DocType: Email Flag Queue,Unread,ólesið DocType: Bulk Update,Desk,Desk +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Sleppir dálki {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Sía verður að vera túpa eða listi (á lista) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Skrifa SELECT fyrirspurn. Ath niðurstaðan er ekki paged (öll gögn eru send í einu). DocType: Email Account,Attachment Limit (MB),Attachment Limit (MB) @@ -2557,6 +2612,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Búa til nýtt DocType: Workflow State,chevron-down,Chevron niður apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email ekki send til {0} (afskráður / óvirkt) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Veldu reiti til að flytja út DocType: Async Task,Traceback,Rekja aftur DocType: Currency,Smallest Currency Fraction Value,Minnsta Gjaldmiðill Brot Value apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Undirbúningur skýrslu @@ -2565,6 +2621,7 @@ DocType: Workflow State,th-list,Th-lista DocType: Web Page,Enable Comments,Virkja Athugasemdir apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Skýringar DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Takmarka notandi frá þessari IP-tölu eingöngu. Margar IP tölur má bæta með því að aðskilja með kommum. Einnig tekur hluta IP tölu eins og (111.111.111) +DocType: Data Import Beta,Import Preview,Forskoðun innflutnings DocType: Communication,From,frá apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Veldu hóp hnút fyrst. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Finna {0} í {1} @@ -2663,6 +2720,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,milli DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,biðröð +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Skipulag> Sérsníða form DocType: Braintree Settings,Use Sandbox,Nota Sandbox apps/frappe/frappe/utils/goal.py,This month,Í þessum mánuði apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Ný Custom Prenta Format @@ -2678,6 +2736,7 @@ DocType: Session Default,Session Default,Sjálfgefið seta DocType: Chat Room,Last Message,Síðasta skilaboð DocType: OAuth Bearer Token,Access Token,aðgangur Token DocType: About Us Settings,Org History,org Saga +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Um það bil {0} mínútur eftir DocType: Auto Repeat,Next Schedule Date,Næsta Dagsetning Dagsetning DocType: Workflow,Workflow Name,workflow Name DocType: DocShare,Notify by Email,Tilkynna með tölvupósti @@ -2707,6 +2766,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Höfundur apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,halda áfram að senda apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Enduropna +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Sýna viðvaranir apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,kaup User DocType: Data Migration Run,Push Failed,Breyting mistókst @@ -2743,6 +2803,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Ítarl apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Þú hefur ekki leyfi til að skoða fréttabréfið. DocType: User,Interests,Áhugasvið apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Lykilorð Endurstilla leiðbeiningar hafa verið send til þinn email +DocType: Energy Point Rule,Allot Points To Assigned Users,Úthlutaðu stigum til úthlutaðra notenda apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Stig 0 er fyrir heimildir á skjalastigi, \ hærra stig fyrir heimildir á vettvangi." DocType: Contact Email,Is Primary,Er aðal @@ -2765,6 +2826,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Útflutningsgerð DocType: Workflow State,circle-arrow-left,hring-ör-vinstri DocType: System Settings,Force User to Reset Password,Þvinga notanda til að endurstilla lykilorð apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",Smelltu á {0} til að fá uppfærða skýrslu. @@ -2777,13 +2839,16 @@ DocType: Contact,Middle Name,Millinafn DocType: Custom Field,Field Description,Field Lýsing apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nafn ekki sett með Hvetja apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Innhólfið +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Uppfærir {0} af {1}, {2}" DocType: Auto Email Report,Filters Display,síur Sýna apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Reiturinn „breyttur_frá“ verður að vera til staðar til að gera breytingu. +DocType: Contact,Numbers,Tölur apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} kunni að meta verk þitt við {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Vistaðu síur DocType: Address,Plant,Plant apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svara öllum DocType: DocType,Setup,Setja upp +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Allar skrár DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Netfang þar sem samstillt er Google tengiliði DocType: Email Account,Initial Sync Count,Upphaflegt Sync Count DocType: Workflow State,glass,gler @@ -2808,7 +2873,7 @@ DocType: Workflow State,font,letur DocType: DocType,Show Preview Popup,Sýna sprettiglugga apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Þetta er topp-100 algengar lykilorð. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Vinsamlegast virkjaðu pop-ups -DocType: User,Mobile No,Mobile Nei +DocType: Contact,Mobile No,Mobile Nei DocType: Communication,Text Content,Texti Content DocType: Customize Form Field,Is Custom Field,Er Custom Field DocType: Workflow,"If checked, all other workflows become inactive.",Ef hakað verða allar aðrar Verkferlar óvirkt. @@ -2854,6 +2919,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Bæta apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Heiti nýju Prenta Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Skiptu um hliðarstiku DocType: Data Migration Run,Pull Insert,Dragðu inn +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Hámarks leyfileg stig eftir margföldun punkta með margfaldandi gildi (Athugið: Fyrir engin takmörk skal skilja þennan reit tóman eða setja 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Ógilt sniðmát apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Ólögleg SQL fyrirspurn apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,nauðsynlegur: DocType: Chat Message,Mentions,Mentions @@ -2868,6 +2936,7 @@ DocType: User Permission,User Permission,Notendaleyfi apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ekki uppsett apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Sækja með gögn +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},breytt gildi fyrir {0} {1} DocType: Workflow State,hand-right,hönd-rétt DocType: Website Settings,Subdomain,undirlén DocType: S3 Backup Settings,Region,Region @@ -2894,10 +2963,12 @@ DocType: Braintree Settings,Public Key,Opinber lykill DocType: GSuite Settings,GSuite Settings,GSuite Stillingar DocType: Address,Links,Tenglar DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Notar netfangið sem nefnt er á þessum reikningi sem nafn sendanda fyrir alla tölvupósta sem sendir eru með þessum reikningi. +DocType: Energy Point Rule,Field To Check,Reit til að athuga apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google tengiliðir - Gat ekki uppfært tengilið í Google tengiliðum {0}, villukóða {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Vinsamlegast veldu Document Type. apps/frappe/frappe/model/base_document.py,Value missing for,Gildi vantar fyrir apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Bæta Child +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Flytja framfarir DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",Ef skilyrðið er fullnægt verður notandi verðlaunaður með stigunum. td. doc.status == 'Lokað' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Lagt Record ekki hægt að eyða. @@ -2934,6 +3005,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Leyfa aðgang að daga apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Síðan sem þú ert að leita að vantar. Þetta gæti verið vegna þess að það er flutt eða það er prentvilla í tengilinn. apps/frappe/frappe/www/404.html,Error Code: {0},Villa Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Lýsing á skráningu síðu, í látlaus texti, aðeins nokkrar línur. (max 140 stafir)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} eru skyldur reitir DocType: Workflow,Allow Self Approval,Leyfa sjálfs samþykki DocType: Event,Event Category,Viðburð Flokkur apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2981,8 +3053,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Flytja til DocType: Address,Preferred Billing Address,Valinn Billing Address apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Of margir skrifar í einni beiðni. Vinsamlegast sendu smærri beiðnir apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive hefur verið stillt. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Gerð skjals {0} hefur verið endurtekin. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,gildi Breytt DocType: Workflow State,arrow-up,ör-upp +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Það ætti að vera að minnsta kosti ein röð fyrir {0} töfluna apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Til að stilla sjálfvirka endurtekningu, virkjaðu „Leyfa sjálfvirka endurtekningu“ frá {0}." DocType: OAuth Bearer Token,Expires In,rennur Í DocType: DocField,Allow on Submit,Leyfa á Senda @@ -3069,6 +3143,7 @@ DocType: Custom Field,Options Help,valkostir Hjálp 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 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 @@ -3086,6 +3161,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code DocType: Webhook,Webhook Request,Webhook Beiðni apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Mistókst: {0} til {1}: {2} DocType: Data Migration Mapping,Mapping Type,Kortlagningartegund +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Veldu Nauðsynlegur apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Vafra apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Engin þörf fyrir tákn, tölustafi eða hástafi." DocType: DocField,Currency,Gjaldmiðill @@ -3116,11 +3192,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Bréf höfuð byggt á apps/frappe/frappe/utils/oauth.py,Token is missing,Token vantar apps/frappe/frappe/www/update-password.html,Set Password,Stilltu lykilorð +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} færslur tókst að flytja inn. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Athugaðu: Breyting á Page Name mun brjóta fyrri vefslóð á þessa síðu. apps/frappe/frappe/utils/file_manager.py,Removed {0},Fjarlægði {0} DocType: SMS Settings,SMS Settings,SMS-stillingar DocType: Company History,Highlight,Highlight DocType: Dashboard Chart,Sum,Summa +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,með gagnainnflutningi DocType: OAuth Provider Settings,Force,Force apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Síðast samstillt {0} DocType: DocField,Fold,Fold @@ -3157,6 +3235,7 @@ DocType: Workflow State,Home,Home DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Notandi getur skráð þig inn með tölvupósti eða notendanafni DocType: Workflow State,question-sign,spurning-merki +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} er óvirk apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Vettvangur "leið" er skylt fyrir vefskoðanir apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Setja inn dálk fyrir {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Notandinn á þessu sviði fær verðlaun stig @@ -3190,6 +3269,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Items DocType: Notification,Print Settings,prentstillingar DocType: Page,Yes,Já DocType: DocType,Max Attachments,Max Viðhengi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Um það bil {0} sekúndur eftir DocType: Calendar View,End Date Field,Lokadagur apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Almennar flýtileiðir DocType: Desktop Icon,Page,Page @@ -3300,6 +3380,7 @@ DocType: GSuite Settings,Allow GSuite access,Leyfa GSuite aðgang DocType: DocType,DESC,DESC DocType: DocType,Naming,nafngiftir apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Velja allt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Dálkur {0} apps/frappe/frappe/config/customization.py,Custom Translations,Custom Þýðingar apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,progress apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,eftir Hlutverk @@ -3341,11 +3422,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Sen DocType: Stripe Settings,Stripe Settings,Röndarstillingar DocType: Data Migration Mapping,Data Migration Mapping,Gagnaflutningur Kortlagning DocType: Auto Email Report,Period,tímabil +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Um það bil {0} mínúta eftir apps/frappe/frappe/www/login.py,Invalid Login Token,Ógilt Innskráning Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Fleygja apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 klukkustund síðan DocType: Website Settings,Home Page,Page Heim DocType: Error Snapshot,Parent Error Snapshot,Parent Snapshot Villa +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Kortasúlur frá {0} að reitum í {1} DocType: Access Log,Filters,síur DocType: Workflow State,share-alt,hlut-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Biðröð ætti að vera einn af {0} @@ -3365,6 +3448,7 @@ DocType: Calendar View,Start Date Field,Start Date Field DocType: Role,Role Name,hlutverk Name apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Switch Til Desk apps/frappe/frappe/config/core.py,Script or Query reports,Handrit eða Fyrirspurn skýrslur +DocType: Contact Phone,Is Primary Mobile,Er aðal farsími DocType: Workflow Document State,Workflow Document State,Workflow skjal State apps/frappe/frappe/public/js/frappe/request.js,File too big,Skrá of stór apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Netfangs bætt mörgum sinnum @@ -3410,6 +3494,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Page Stillingar apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Vistar ... apps/frappe/frappe/www/update-password.html,Invalid Password,ógilt lykilorð +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} færsla tókst af {1}. DocType: Contact,Purchase Master Manager,Kaup Master Manager apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Smelltu á læsitáknið til að skipta um almenning / einkaaðila DocType: Module Def,Module Name,Module Name @@ -3443,6 +3528,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Vinsamlegast sláðu inn gilt farsímanúmer Nos apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Sumar aðgerðir virðast ekki virka í vafranum þínum. Vinsamlegast uppfærðu vafrann þinn í nýjustu útgáfuna. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Veit ekki, spyrja 'help'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},felldi niður þetta skjal {0} DocType: DocType,Comments and Communications will be associated with this linked document,Athugasemdir og Communications verður í tengslum við þetta tengda skjal apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Sía ... DocType: Workflow State,bold,feitletrað @@ -3461,6 +3547,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Bæta við / DocType: Comment,Published,Útgefið apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Þakka þér fyrir þinn email DocType: DocField,Small Text,lítill texti +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Ekki er hægt að stilla númer {0} sem aðal fyrir síma og farsíma nr. DocType: Workflow,Allow approval for creator of the document,Leyfa samþykki fyrir höfundur skjalsins apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Vista skýrslu DocType: Webhook,on_cancel,on_cancel @@ -3518,6 +3605,7 @@ DocType: Print Settings,PDF Settings,PDF Stillingar DocType: Kanban Board Column,Column Name,dálkur Name DocType: Language,Based On,Byggt á DocType: Email Account,"For more information, click here.","Smelltu hér til að fá frekari upplýsingar." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Fjöldi dálka passar ekki við gögn apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,gera Default apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Framkvæmdartími: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Ógild innifalið slóð @@ -3607,7 +3695,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Hladdu inn {0} skrám DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Tilkynna byrjunartíma -apps/frappe/frappe/config/settings.py,Export Data,Flytja út gögn +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Flytja út gögn 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. @@ -3625,7 +3713,6 @@ DocType: Report,Disable Prepared Report,Slökkva á undirbúinni skýrslu apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Notandi {0} bað um eyðingu gagna apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Ólöglegt aðgangsauðkennis. Vinsamlegast reyndu aftur apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","The umsókn hefur verið uppfærð í nýja útgáfu, vinsamlegast endurnýja þessa síðu" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,Valfrjálst: The viðvörun verður send ef þessi tjáning er satt DocType: Data Migration Plan,Plan Name,Áætlun Nafn DocType: Print Settings,Print with letterhead,Prenta með bréfshaus @@ -3666,6 +3753,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Get ekki stillt breyta án Hætta apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Page DocType: DocType,Is Child Table,Er Child Tafla +DocType: Data Import Beta,Template Options,Valkostir sniðmáts apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} verður að vera einn af {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} er að lesa þetta skjal apps/frappe/frappe/config/core.py,Background Email Queue,Bakgrunnur Email Biðröð @@ -3673,7 +3761,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Lykilorð Endurstill DocType: Communication,Opened,opnað DocType: Workflow State,chevron-left,Chevron-vinstri DocType: Communication,Sending,Sendir -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Ekki leyft þetta vistfang DocType: Website Slideshow,This goes above the slideshow.,Þetta fer ofan slideshow. DocType: Contact,Last Name,Eftirnafn DocType: Event,Private,Private @@ -3687,7 +3774,6 @@ DocType: Workflow Action,Workflow Action,workflow Action apps/frappe/frappe/utils/bot.py,I found these: ,Ég fann þetta: DocType: Event,Send an email reminder in the morning,Senda áminningu í tölvupósti í morgun DocType: Blog Post,Published On,birt á -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 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} @@ -3708,7 +3794,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,viðvörun-skilti DocType: Prepared Report,Prepared Report,Tilbúinn skýrsla apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Bættu metatögnum við vefsíðurnar þínar -DocType: Contact,Phone Nos,Sími nr 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 @@ -3725,6 +3810,7 @@ DocType: Data Migration Connector,Data Migration,Gagnaflutningur DocType: User,API Key cannot be regenerated,Ekki er hægt að endurnýja API lykilinn apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Eitthvað fór úrskeiðis DocType: System Settings,Number Format,Fjöldi Format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} færsla tókst. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Yfirlit DocType: Event,Event Participants,Atburður þátttakendur DocType: Auto Repeat,Frequency,tíðni @@ -3732,7 +3818,7 @@ DocType: Custom Field,Insert After,Settu Eftir DocType: Event,Sync with Google Calendar,Samstillt við Google dagatalið DocType: Access Log,Report Name,skýrsla Name DocType: Desktop Icon,Reverse Icon Color,Reverse Icon Litur -DocType: Notification,Save,Vista +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Vista apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Næsta áætlað dagsetning apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Úthlutaðu þeim sem hefur minnst verkefni apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Hluti fyrirsögn @@ -3755,11 +3841,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Skipulag> Sérsníða form 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 DocType: Desktop Icon,Category,Flokkur +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Gildi {0} vantar fyrir {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Bæta við tengiliðum apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landslag apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Viðskiptavinur hlið handrit eftirnafn í JavaScript @@ -3782,6 +3868,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Uppfærsla orkupunkta apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Vinsamlegast veldu annan greiðslumáta. PayPal styður ekki viðskipti í mynt '{0}' DocType: Chat Message,Room Type,Herbergistegund +DocType: Data Import Beta,Import Log Preview,Forskoðun innflutningsskrár apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Leita reit {0} er ekki gilt apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,hlaðið skrá DocType: Workflow State,ok-circle,OK-hring @@ -3848,6 +3935,7 @@ DocType: DocType,Allow Auto Repeat,Leyfa sjálfvirka endurtekningu apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Engin gildi til að sýna DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Email Sniðmát +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Uppfærsla {0} tókst. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Notandi {0} hefur ekki aðgang að kenningum með leyfi fyrir hlutverki fyrir skjal {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Bæði notandanafn og lykilorð apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vinsamlegast hressa til að fá nýjustu skjalið. diff --git a/frappe/translations/it.csv b/frappe/translations/it.csv index 4dc1b0c017..3608459bf4 100644 --- a/frappe/translations/it.csv +++ b/frappe/translations/it.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Sono disponibili nuove {} versioni per le seguenti app apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Si prega di selezionare un campo Quantità. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Caricamento file di importazione ... DocType: Assignment Rule,Last User,Ultimo utente apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Una nuova attività, {0}, ti è stata assegnata da {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sessioni predefinite salvate +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Ricarica file DocType: Email Queue,Email Queue records.,record Email coda. DocType: Post,Post,Messaggio DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mensile DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Abilita Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Pericoloso -apps/frappe/frappe/www/login.py,Email Address,Indirizzo E-Mail +DocType: Address,Email Address,Indirizzo E-Mail DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Notifica inviata non letta apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Esportazione non consentita . Hai bisogno di {0} ruolo/i da esportare. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Amministrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opzioni di contatto, come "Query vendite, il supporto delle query", ecc ciascuno su una nuova riga o separati da virgole." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Aggiungi un tag ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Ritratto -DocType: Data Migration Run,Insert,Inserire +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Inserire apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Consentire Accesso Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Selezionare {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Inserisci l'URL di base @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 giorno f 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 DocType: Company History,Company History,Storico Azienda -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Reset +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Reset DocType: Workflow State,volume-up,volume-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks che richiamano le richieste API nelle applicazioni web +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Mostra traccia DocType: DocType,Default Print Format,Formato Stampa Predefinito DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nessuno: Fine del flusso di lavoro apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} campo non può essere impostato come unica in {1}, in quanto vi sono valori non univoci esistenti" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipi di documenti +DocType: Global Search Settings,Document Types,Tipi di documenti DocType: Address,Jammu and Kashmir,Jammu e Kashmir DocType: Workflow,Workflow State Field,Stato del campo flusso di lavoro -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Config> Utente DocType: Language,Guest,Ospite DocType: DocType,Title Field,Titolo campo DocType: Error Log,Error Log,Registro errori @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Ripete come "abcabcabc" sono solo leggermente più difficile da trovare rispetto ad "ABC" DocType: Notification,Channel,Canale apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Se pensi che non sia autorizzato, si consiglia di cambiare la password dell'amministratore." +DocType: Data Import Beta,Data Import Beta,Beta di importazione dati apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} è obbligatorio DocType: Assignment Rule,Assignment Rules,Regole di assegnazione DocType: Workflow State,eject,espellere @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Nome Azione del Workflow apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType non può essere fusa DocType: Web Form Field,Fieldtype,Tipo di campo apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Non è un file zip +DocType: Global Search DocType,Global Search DocType,Ricerca globale DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                New {{ doc.doctype }} #{{ doc.name }}
                                                ","Per aggiungere argomento dinamico, utilizzare i tag jinja come
                                                 New {{ doc.doctype }} #{{ doc.name }} 
                                                " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Evento Doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Tu DocType: Braintree Settings,Braintree Settings,Impostazioni Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} record creati correttamente. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Salva filtro DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Impossibile eliminare {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Inserisci parametri url pe apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Ripetizione automatica creata per questo documento apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Visualizza il tuo rapporto nel tuo browser apps/frappe/frappe/config/desk.py,Event and other calendars.,Evento e altri calendari. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 riga obbligatoria) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Tutti i campi sono necessari per pubblicare il commento. DocType: Custom Script,Adds a client custom script to a DocType,Aggiunge uno script personalizzato del client a DocType DocType: Print Settings,Printer Name,Nome della stampante @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Aggiornamento massivo DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Consenti all'ospite di Visualizzare apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} non dovrebbe essere uguale a {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Eliminare {0} elementi in modo permanente? apps/frappe/frappe/utils/oauth.py,Not Allowed,Non ammessi @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Visualizza DocType: Email Group,Total Subscribers,Totale Iscritti apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Numero riga apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Se un ruolo non ha accesso al livello 0 , quindi livelli superiori sono prive di significato ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Salva come DocType: Comment,Seen,Visto @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Definisce gli stati del flusso di lavoro e le regole per un documento. DocType: Workflow State,Filter,Filtro @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,Chiuso DocType: Blog Settings,Blog Title,Titolo Blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,ruoli standard non possono essere disabilitati apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Tipo di chat +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Colonne della mappa DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Non è possibile utilizzare sub-query in modo da @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Aggiungi colonna apps/frappe/frappe/www/contact.html,Your email address,Il tuo indirizzo email DocType: Desktop Icon,Module,Modulo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} aggiornato correttamente su {1}. DocType: Notification,Send Alert On,Invia Avviso su DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Personalizzare Etichetta,Nascondere Stampa, predefinito etc." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Decompressione dei file ... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Utente {0} non può essere eliminato DocType: System Settings,Currency Precision,Precisione valuta apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Un'altra operazione sta bloccando questo. Riprova in pochi secondi. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Cancella filtri DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Gli allegati non possono essere collegati correttamente al nuovo documento DocType: Chat Message Attachment,Attachment,Allegato @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Impossibile apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar: impossibile aggiornare l'evento {0} in Google Calendar, codice errore {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cercare o digitare un comando DocType: Activity Log,Timeline Name,Nome Timeline +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,È possibile impostare solo uno {0} come primario. DocType: Email Account,e.g. smtp.gmail.com,p. es. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Aggiunge una nuova regola DocType: Contact,Sales Master Manager,Sales Master Manager @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Campo del secondo nome LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importazione di {0} di {1} DocType: GCalendar Account,Allow GCalendar Access,Consenti accesso GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} è un campo obbligatorio +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} è un campo obbligatorio apps/frappe/frappe/templates/includes/login/login.js,Login token required,Necessario il token di accesso apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rango mensile: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Seleziona più voci di elenco @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Impossibile connettersi: apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Una parola di per sé è facile da indovinare. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Assegnazione automatica non riuscita: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Ricerca... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Selezionare prego apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,La fusione è possibile solo tra gruppo a gruppo o Leaf Node- to- Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Aggiunti {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Non ha prodotto. Cerca qualcosa di nuovo @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,ID client OAuth DocType: Auto Repeat,Subject,Oggetto apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Ritorna alla scrivania DocType: Web Form,Amount Based On Field,Importo basato sul Campo -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/core/doctype/docshare/docshare.py,User is mandatory for Share,L'utente è obbligatorio per Condivisione DocType: DocField,Hidden,Nascosto DocType: Web Form,Allow Incomplete Forms,Consenti moduli incompleti @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} e {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Inizia una conversazione. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Aggiungere sempre ""Bozza"" nell'intestazione per la stampa dei documenti" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Errore nella notifica: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} anno / i fa DocType: Data Migration Run,Current Mapping Start,Inizio corrente di mapping apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,L'email è stata contrassegnata come spam DocType: Comment,Website Manager,Responsabile sito web @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,L'uso della sotto-query o della funzione è limitato apps/frappe/frappe/config/customization.py,Add your own translations,Aggiungi le tue traduzioni DocType: Country,Country Name,Nome Nazione +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Modello vuoto DocType: About Us Team Member,About Us Team Member,Chi siamo Membri Team apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","I permessi sono impostati su Ruoli e tipi di documenti (chiamati DOCTYPE ) impostando i diritti come lettura, scrittura , creazione, eliminazione , Invia, Cancella , Modifica , Report, importazione, esportazione , stampa , e-mail e impostare le autorizzazioni utente." DocType: Event,Wednesday,Mercoledì @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,Sito web dell'associazion DocType: Web Form,Sidebar Items,articoli Sidebar DocType: Web Form,Show as Grid,Mostra come griglia apps/frappe/frappe/installer.py,App {0} already installed,App {0} già installata +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Gli utenti assegnati al documento di riferimento riceveranno punti. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Nessuna anteprima DocType: Workflow State,exclamation-sign,esclamazione-sign apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,File {0} decompressi @@ -597,6 +612,7 @@ DocType: Notification,Days Before,Giorni Prima apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Gli eventi giornalieri dovrebbero concludersi nello stesso giorno. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Modificare... DocType: Workflow State,volume-down,volume-giù +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accesso non consentito da questo indirizzo IP apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,Invia notifica a DocType: DocField,Collapsible,Pieghevole @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Sviluppatore apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Creato apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} in riga {1} non può avere sia URL che elementi figlio +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Dovrebbe esserci almeno una riga per le seguenti tabelle: {0} DocType: Print Format,Default Print Language,Lingua di stampa predefinita apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Antenati di apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} non può essere eliminato @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Ospite +DocType: Data Import Beta,Import File,Importare file apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Colonna {0} già esiste. DocType: ToDo,High,Alto apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nuovo evento @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,Invia notifiche per thread e- apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Non in modalità sviluppatore apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Il backup dei file è pronto -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Punti massimi consentiti dopo aver moltiplicato i punti con il valore del moltiplicatore (Nota: per nessun valore di limite impostato come 0) DocType: DocField,In Global Search,Alla ricerca globale DocType: System Settings,Brute Force Security,Sicurezza contro Bruteforce DocType: Workflow State,indent-left,indent-left @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Utente '{0}' già ha il ruolo '{1}' DocType: System Settings,Two Factor Authentication method,Metodo di autenticazione due fattori apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Prima imposta il nome e salva il record. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 registrazioni apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Condiviso con {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Disiscrivi DocType: View Log,Reference Name,Nome di riferimento @@ -813,6 +830,8 @@ DocType: Data Migration Connector,Data Migration Connector,Connettore di migrazi 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 DocType: Note,Notify Users On Every Login,Notifica gli utenti ad ogni accesso +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Impossibile abbinare la colonna {0} a nessun campo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} record aggiornati correttamente. DocType: PayPal Settings,API Password,API Password apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Inserisci il modulo python o seleziona il tipo di connettore apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Il nome del campo non è specificato per il campo personalizzato @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplica nome {0} {1} -DocType: Email Queue,Retry,Riprova +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Riprova +DocType: Contact Phone,Number,Numero DocType: Web Form Field,Web Form Field,Campo modulo web apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Hai un nuovo messaggio da: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Modifica HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Inserisci l'URL di reindirizzamento apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),Proprietà della vist apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Fai clic su un file per selezionarlo. DocType: Note Seen By,Note Seen By,Nota vista da apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Prova ad utilizzare un modello di tastiera più a lungo con più giri -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Classifica +,LeaderBoard,Classifica DocType: DocType,Default Sort Order,Ordinamento predefinito DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Rispondi Aiuto @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,Centesimo apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Componi email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Stati del flusso di lavoro (p. es. Bozza, Approvato, Annullato)." DocType: Print Settings,Allow Print for Draft,Consentire la stampa per le Bozze +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/link_selector.js,Set Quantity,Set Quantità apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Presenta questo documento per confermare DocType: Contact,Unsubscribed,Disiscritto @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Unità organizzativa per gl ,Transaction Log Report,Rapporto del registro delle transazioni DocType: Custom DocPerm,Custom DocPerm,DocPerm personalizzato DocType: Newsletter,Send Unsubscribe Link,Invia Cancellati link +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Ci sono alcuni record collegati che devono essere creati prima di poter importare il tuo file. Vuoi creare automaticamente i seguenti record mancanti? DocType: Access Log,Method,Metodo DocType: Report,Script Report,Script Report DocType: OAuth Authorization Code,Scopes,Scopes @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Caricato con successo apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Sei connesso ad internet. DocType: Social Login Key,Enable Social Login,Abilita accesso social +DocType: Data Import Beta,Warnings,Avvertenze DocType: Communication,Event,Evento apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Il {0}, {1} ha scritto:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Impossibile eliminare campo standard. È possibile solo nasconderlo @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Inserisci DocType: Kanban Board Column,Blue,Blu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Tutte le personalizzazioni saranno rimosse. Si prega di confermare. DocType: Page,Page HTML,Pagina HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Esporta righe errate apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Il nome del gruppo non può essere vuoto. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Ulteriori nodi possono essere creati solo sotto i nodi di tipo ' Gruppo ' DocType: SMS Parameter,Header,Intestazione @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Richiesta scaduta apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Abilita / Disabilita domini DocType: Role Permission for Page and Report,Allow Roles,Consenti ruoli +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} record importati correttamente da {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Espressione Python semplice, esempio: stato in ("Invalid")" DocType: User,Last Active,Ultimo attivo DocType: Email Account,SMTP Settings for outgoing emails,Impostazioni SMTP per le email in uscita apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,scegli un DocType: Data Export,Filter List,Elenco dei filtri DocType: Data Export,Excel,Eccellere -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,La tua password è stata aggiornata. Ecco la nuova password 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 @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID utente DocType: Communication,Sent,Inviati DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Amministrazione DocType: User,Simultaneous Sessions,Sessioni Simultanee DocType: Social Login Key,Client Credentials,Credenziali client @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Aggiorn apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Maestro DocType: DocType,User Cannot Create,L'utente non può creare apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fatto con successo -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Cartella {0} non esiste apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,accesso Dropbox è approvato! DocType: Customize Form,Enter Form Type,Inserisci Tipo Modulo DocType: Google Drive,Authorize Google Drive Access,Autorizza l'accesso a Google Drive @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Nessun record marcato. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Eliminare campo apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Non sei connesso a Internet. Riprova più tardi. -DocType: User,Send Password Update Notification,Invia notifica aggiornamento password apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permettere DocType, DocType. Fai attenzione!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formati su misura per la stampa, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Somma di {0} @@ -1207,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Codice di verifica n apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,L'integrazione dei contatti di Google è disabilitata. DocType: Assignment Rule,Description,Descrizione DocType: Print Settings,Repeat Header and Footer in PDF,Ripetere Intestazione e piè di pagina in PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Fallimento DocType: Address Template,Is Default,È Default DocType: Data Migration Connector,Connector Type,Tipo di connettore apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Nome colonna non può essere vuoto @@ -1219,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Vai a {0} Pagina DocType: LDAP Settings,Password for Base DN,Password per Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Campo della Tabella 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/model/document.py,Action Failed,Azione Fallita apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,per l'utente @@ -1272,6 +1296,7 @@ DocType: Print Settings,Enable Raw Printing,Abilita stampa raw DocType: Website Route Redirect,Source,Fonte apps/frappe/frappe/templates/includes/list/filters.html,clear,chiaro apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Finito +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Config> Utente DocType: Prepared Report,Filter Values,Valori del filtro DocType: Communication,User Tags,Tags Utente DocType: Data Migration Run,Fail,Fallire @@ -1327,6 +1352,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Segu ,Activity,Attività DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Aiuto: Per creare un collegamento a un altro record nel sistema, utilizzare ""#Form/Note/[Nota Nome]"" come collegamento url. (Non usare ""http://"")" DocType: User Permission,Allow,Consenti +DocType: Data Import Beta,Update Existing Records,Aggiorna i record esistenti apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Evitiamo la ripetizione di parole e caratteri DocType: Energy Point Rule,Energy Point Rule,Regola dei punti di energia DocType: Communication,Delayed,Ritardato @@ -1339,9 +1365,7 @@ DocType: Milestone,Track Field,Traccia campo DocType: Notification,Set Property After Alert,Imposta proprietà dopo avvisi apps/frappe/frappe/config/customization.py,Add fields to forms.,Aggiungi campi ai moduli. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Sembra che qualcosa non va con la configurazione Paypal di questo sito. -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/sidebar/review.js,Add Review,Aggiungi recensione -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Dimensione carattere (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Solo i DocTypes standard possono essere personalizzati dal modulo personalizzato. DocType: Email Account,Sendgrid,SendGrid @@ -1378,6 +1402,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Scusate! Non è possibile eliminare i commenti generati automaticamente DocType: Google Settings,Used For Google Maps Integration.,Utilizzato per l'integrazione di Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Riferimento DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Nessun record verrà esportato DocType: User,System User,Utente di sistema DocType: Report,Is Standard,È standard DocType: Desktop Icon,_report,_report @@ -1392,6 +1417,7 @@ DocType: Workflow State,minus-sign,segno meno apps/frappe/frappe/public/js/frappe/request.js,Not Found,Non trovato apps/frappe/frappe/www/printview.py,No {0} permission,No {0} permesso apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export autorizzazioni personalizzate +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nessun articolo trovato. DocType: Data Export,Fields Multicheck,Campi Multicheck DocType: Activity Log,Login,Entra DocType: Web Form,Payments,Pagamenti @@ -1451,8 +1477,9 @@ DocType: Address,Postal,Postale DocType: Email Account,Default Incoming,Posta in arrivo predefinita DocType: Workflow State,repeat,ripetizione DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Il valore deve essere uno di {0} DocType: Role,"If disabled, this role will be removed from all users.","Se disattivato, questo ruolo verrà rimosso da tutti gli utenti." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Vai a {0} Elenco +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Vai a {0} Elenco 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 @@ -1466,6 +1493,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Nome campo locale DocType: DocType,Track Changes,Tenere traccia delle modifiche DocType: Workflow State,Check,Seleziona DocType: Chat Profile,Offline,Disconnesso +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} importato correttamente DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Invia messaggio di disiscrizione apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Modifica Titolo @@ -1492,11 +1520,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} ha già assegnato il valore predefinito per {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                No results found for '

                                                ,

                                                Nessun risultato trovato per "

                                                DocType: DocField,Attach Image,Allega immagine DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Password Aggiornata @@ -1517,8 +1545,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Non consentito per {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 non è un formato di report valido. Il formato del Report dovrebbe \ uno dei seguenti %s DocType: Chat Message,Chat,Chat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Config> Autorizzazioni utente DocType: LDAP Group Mapping,LDAP Group Mapping,Mappatura del gruppo LDAP DocType: Dashboard Chart,Chart Options,Opzioni del grafico +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Colonna senza titolo apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} da {1} a {2} nella riga #{3} DocType: Communication,Expired,Scaduto apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Sembra che il token che stai usando non sia valido! @@ -1528,6 +1558,7 @@ DocType: DocType,System,Sistema DocType: Web Form,Max Attachment Size (in MB),Dimensione Max Allegato (in MB) apps/frappe/frappe/www/login.html,Have an account? Login,Hai un account? Accedi DocType: Workflow State,arrow-down,freccia verso il basso +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Riga {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},L'utente non ha permesso di eliminare {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} di {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Ultimo aggiornamento il @@ -1544,6 +1575,7 @@ DocType: Custom Role,Custom Role,ruolo personalizzato apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Home/Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Inserisci la tua password DocType: Dropbox Settings,Dropbox Access Secret,Accesso Segreto Dropbox +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obbligatorio) 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. @@ -1618,6 +1650,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mostra das apps/frappe/frappe/desk/form/assign_to.py,New Message,Nuovo messaggio DocType: File,Preview HTML,Anteprima HTML DocType: Desktop Icon,query-report,query-report +DocType: Data Import Beta,Template Warnings,Avvertenze sui modelli apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filtri salvati DocType: DocField,Percent,Percentuale apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Si prega di impostare filtri @@ -1639,6 +1672,7 @@ DocType: Custom Field,Custom,Personalizzato DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Se abilitato, gli utenti che effettuano il login da Indirizzo IP limitato, non verranno richiesti Autori a due fattori" DocType: Auto Repeat,Get Contacts,Ottieni contatti apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Gli articoli archiviati in {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Saltare la colonna senza titolo DocType: Notification,Send alert if date matches this field's value,Invia avviso se la data coincide con il valore di questo campo DocType: Workflow,Transitions,Transizioni apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} a {2} @@ -1662,6 +1696,7 @@ DocType: Workflow State,step-backward,passo indietro apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Si prega di impostare tasti di accesso Dropbox nel tuo sito config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Eliminare questo record per consentire l'invio a questo indirizzo email +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Se porta non standard (es. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Personalizza le scorciatoie apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Solo campi obbligatori sono necessari per i nuovi record. È possibile eliminare le colonne non obbligatori, se lo si desidera." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Mostra più attività @@ -1769,7 +1804,9 @@ DocType: Note,Seen By Table,Visto da Tavolo apps/frappe/frappe/www/third_party_apps.html,Logged in,Collegato apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Predefinito Invio e Posta in arrivo DocType: System Settings,OTP App,App. OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} aggiornato correttamente su {1}. DocType: Google Drive,Send Email for Successful Backup,Invia e-mail per il backup riuscito +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Lo scheduler non è attivo. Impossibile importare i dati. DocType: Print Settings,Letter,Lettera DocType: DocType,"Naming Options:
                                                1. field:[fieldname] - By Field
                                                2. naming_series: - By Naming Series (field called naming_series must be present
                                                3. Prompt - Prompt user for a name
                                                4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                5. @@ -1783,6 +1820,7 @@ DocType: GCalendar Account,Next Sync Token,Token successivo di sincronizzazione DocType: Energy Point Settings,Energy Point Settings,Impostazioni del punto di energia DocType: Async Task,Succeeded,Riuscito apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},I campi obbligatori richiesti in {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                  No results found for '

                                                  ,

                                                  Nessun risultato trovato per "

                                                  apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Aggiorna Autorizzazioni per {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Utenti e Permessi DocType: S3 Backup Settings,S3 Backup Settings,S3 Impostazioni di backup @@ -1853,6 +1891,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,In DocType: Notification,Value Change,Valore Change DocType: Google Contacts,Authorize Google Contacts Access,Autorizza l'accesso ai contatti di Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Mostra solo i campi numerici da Report +DocType: Data Import Beta,Import Type,Tipo di importazione DocType: Access Log,HTML Page,Pagina HTML DocType: Address,Subsidiary,Sussidiario apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Tentativo di connessione al vassoio QZ ... @@ -1863,7 +1902,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Server di DocType: Custom DocPerm,Write,Scrivi apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Solo l'amministratore può creare delle Query / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aggiornamento -DocType: File,Preview,anteprima +DocType: Data Import Beta,Preview,anteprima apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Il campo "Valore" è obbligatoria. Si prega di specificare il valore di essere aggiornato DocType: Customize Form,Use this fieldname to generate title,Utilizzare questo nome campo per generare titolo apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importa posta elettronica da @@ -1946,6 +1985,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser non su DocType: Social Login Key,Client URLs,URL del cliente apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Alcune informazioni manca apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} creato con successo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Salto {0} di {1}, {2}" DocType: Custom DocPerm,Cancel,Annulla apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Elimina in blocco apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,File {0} non esiste @@ -1973,7 +2013,6 @@ DocType: GCalendar Account,Session Token,Token di sessione DocType: Currency,Symbol,Simbolo apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Conferma la cancellazione dei dati -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nuova password inviata per email apps/frappe/frappe/auth.py,Login not allowed at this time,Accesso non consentito in questo momento DocType: Data Migration Run,Current Mapping Action,Azioni correnti di mapping DocType: Dashboard Chart Source,Source Name,Source Name @@ -1986,6 +2025,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Seguito da DocType: LDAP Settings,LDAP Email Field,LDAP Email Campo apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Esporta {0} record apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Già presente negli utenti delle liste da fare DocType: User Email,Enable Outgoing,Abilita uscita DocType: Address,Fax,Fax @@ -2043,8 +2083,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Stampa documenti apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Vai al campo DocType: Contact Us Settings,Forward To Email Address,Inoltra a Indirizzo e-mail +DocType: Contact Phone,Is Primary Phone,È il telefono principale apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Invia un'email a {0} per collegarla qui. DocType: Auto Email Report,Weekdays,Nei giorni feriali +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Verranno esportati {0} record apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Campo del titolo deve essere un nome di campo valido DocType: Post Comment,Post Comment,Posta un commento apps/frappe/frappe/config/core.py,Documents,Documenti @@ -2062,7 +2104,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Questo campo viene visualizzato solo se il nome del campo definito qui ha valore o le regole sono veri (esempi): eval myfield: doc.myfield == 'il mio valore' eval: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Oggi +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 personalizzazione> Modello indirizzo. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Dopo aver impostato questo, gli utenti potranno accedere al documento (es. post del blog ) solo se il link esiste (es. Blogger ) ." +DocType: Data Import Beta,Submit After Import,Invia dopo l'importazione DocType: Error Log,Log of Scheduler Errors,Log degli errori Scheduler DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App client Secret @@ -2081,10 +2125,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Disabilita Link Iscrizione Clienti nella pagina di Login apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Assegnato a/proprietario DocType: Workflow State,arrow-left,freccia-sinistra +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Esporta 1 record DocType: Workflow State,fullscreen,Schermo intero DocType: Chat Token,Chat Token,Token della chat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Crea grafico apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Non importare DocType: Web Page,Center,Centro DocType: Notification,Value To Be Set,Valore da impostare apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Modifica {0} @@ -2104,6 +2150,7 @@ DocType: Print Format,Show Section Headings,Mostra Sezione intestazioni DocType: Bulk Update,Limit,Limite apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Abbiamo ricevuto una richiesta di cancellazione di {0} dati associati a: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Aggiungi una nuova sezione +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Record filtrati apps/frappe/frappe/www/printview.py,No template found at path: {0},Nessun modello trovato nel percorso: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nessun account e-mail DocType: Comment,Cancelled,Annullato @@ -2190,10 +2237,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Ripristina tipi di documento di ricerca globale. ,Lead Conversion Time,Piombo tempo di conversione apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Crea Report DocType: Note,Notify users with a popup when they log in,Notifica gli utenti con un avviso quando si connettono +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,I moduli principali {0} non possono essere cercati nella Ricerca globale. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Apri chat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} non esiste, selezionare un nuovo obiettivo da unire" DocType: Data Migration Connector,Python Module,Modulo Python @@ -2210,8 +2260,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Chiudi 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Config> Autorizzazioni utente -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Aggiornare +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Aggiornare DocType: Transaction Log,Transaction Hash,Transazione hash DocType: Error Snapshot,Snapshot View,Istantanea vista apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Si prega di salvare la Newsletter prima di inviare @@ -2227,6 +2276,7 @@ DocType: Data Import,In Progress,In corso apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,In coda per il backup. Si può richiedere alcuni minuti a un'ora. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Il permesso dell'utente esiste già +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mappatura della colonna {0} al campo {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Visualizza {0} DocType: User,Hourly,ogni ora apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrati OAuth client App @@ -2239,7 +2289,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} non può essere ""{2}"". Dovrebbe essere uno di ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},guadagnato da {0} tramite la regola automatica {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} o {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Aggiornamento password DocType: Workflow State,trash,cestinare DocType: System Settings,Older backups will be automatically deleted,I backup più vecchi verranno eliminati automaticamente apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID chiave di accesso non valido o chiave di accesso segreto. @@ -2267,6 +2316,7 @@ DocType: Address,Preferred Shipping Address,Indirizzo di spedizione predefinito apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Con carta intestata apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} ha creato questo {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Non consentito per {0}: {1} nella riga {2}. Campo riservato: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-ovest-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Se questa opzione è selezionata, verranno importate righe con dati validi e le righe non valide verranno riversate in un nuovo file per poterle importare in un secondo momento." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Documento è modificabile solo dagli utenti del ruolo @@ -2293,6 +2343,7 @@ DocType: Custom Field,Is Mandatory Field,È Campo obbligatorio DocType: User,Website User,Website Utente apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Alcune colonne potrebbero essere tagliate quando si stampa in PDF. Cerca di mantenere il numero di colonne sotto 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Non uguale +DocType: Data Import Beta,Don't Send Emails,Non inviare e-mail DocType: Integration Request,Integration Request Service,Integrazione richiesta di servizio DocType: Access Log,Access Log,Accedi al registro DocType: Website Script,Script to attach to all web pages.,Script di allegare a tutte le pagine web. @@ -2332,6 +2383,7 @@ DocType: Contact,Passive,Passivo DocType: Auto Repeat,Accounts Manager,Accounts Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Assegnazione per {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Il tuo pagamento viene annullato. +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/views/reports/report_view.js,Select File Type,Selezionare il tipo di file apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Guarda tutto DocType: Help Article,Knowledge Base Editor,Conoscenza Editor Base @@ -2364,6 +2416,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Dati apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Stato Documento apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Approvazione richiesta +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,I seguenti record devono essere creati prima di poter importare il tuo file. DocType: OAuth Authorization Code,OAuth Authorization Code,Codice di autorizzazione OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Non è consentito importare DocType: Deleted Document,Deleted DocType,DocType eliminata @@ -2417,8 +2470,8 @@ DocType: System Settings,System Settings,Impostazioni di sistema DocType: GCalendar Settings,Google API Credentials,Credenziali API di Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,La sessione non è riuscita apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Questa email è stata inviata a {0} e copiato in {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ha inviato questo documento {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} anno / i fa DocType: Social Login Key,Provider Name,Nome del provider apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Creare un nuovo {0} DocType: Contact,Google Contacts,Contatti Google @@ -2426,6 +2479,7 @@ DocType: GCalendar Account,GCalendar Account,Conto GCalendar DocType: Email Rule,Is Spam,è spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Apri {0} +DocType: Data Import Beta,Import Warnings,Importa avvisi DocType: OAuth Client,Default Redirect URI,Predefinito Redirect URI DocType: Auto Repeat,Recipients,Destinatari DocType: System Settings,Choose authentication method to be used by all users,Scegli il metodo di autenticazione da utilizzare da tutti gli utenti @@ -2543,6 +2597,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Rapporto agg apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Errore Webhook DocType: Email Flag Queue,Unread,Non letto DocType: Bulk Update,Desk,Scrivania +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Saltare la colonna {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Il filtro deve essere una tupla o un elenco (in un elenco) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Scrivere una query SELECT. Nota risultato non è paging (tutti i dati vengono inviati in una sola volta). DocType: Email Account,Attachment Limit (MB),Limite Allegato (MB) @@ -2557,6 +2612,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Crea nuovo DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-mail non inviato a {0} (sottoscritte / disabilitato) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Seleziona i campi da esportare DocType: Async Task,Traceback,Rintracciare DocType: Currency,Smallest Currency Fraction Value,Il più piccolo di valuta Frazione Valore apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Preparazione del rapporto @@ -2565,6 +2621,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Attiva Commenti apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Note DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Limitare l'utente da solo questo indirizzo IP. Più indirizzi IP possono essere aggiunti separando con virgole. Accetta anche gli indirizzi IP parziali, come (111.111.111)" +DocType: Data Import Beta,Import Preview,Anteprima di importazione DocType: Communication,From,Da apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Selezionare un nodo primo gruppo. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Trova {0} in {1} @@ -2663,6 +2720,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Fra DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,In coda +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Config> Personalizza modulo DocType: Braintree Settings,Use Sandbox,Usa Sandbox apps/frappe/frappe/utils/goal.py,This month,Questo mese apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nuovo formato di stampa personalizzato @@ -2678,6 +2736,7 @@ DocType: Session Default,Session Default,Sessione predefinita DocType: Chat Room,Last Message,Ultimo messaggio DocType: OAuth Bearer Token,Access Token,Token di accesso DocType: About Us Settings,Org History,org Storia +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Circa {0} minuti rimanenti DocType: Auto Repeat,Next Schedule Date,Data di pianificazione successiva DocType: Workflow,Workflow Name,Nome Workflow DocType: DocShare,Notify by Email,Notifica via email @@ -2707,6 +2766,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Autore apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,riprendere l'invio apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Riaprire +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Mostra avvisi apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Utente Acquisti DocType: Data Migration Run,Push Failed,Push non riuscita @@ -2743,6 +2803,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Ricerc apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Non è consentito visualizzare la newsletter. DocType: User,Interests,Interessi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Le istruzioni per la reimpostazione della password sono state inviate al tuo indirizzo email +DocType: Energy Point Rule,Allot Points To Assigned Users,Assegnare punti agli utenti assegnati apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Livello 0 è per le autorizzazioni a livello di documento, \ livelli più elevati per le autorizzazioni a livello di campo." DocType: Contact Email,Is Primary,È primario @@ -2765,6 +2826,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Tipo di esportazione DocType: Workflow State,circle-arrow-left,cerchio-freccia-sinistra DocType: System Settings,Force User to Reset Password,Forza l'utente a reimpostare la password apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Per avere un report aggiornato, clicca {0}." @@ -2777,13 +2839,16 @@ DocType: Contact,Middle Name,Secondo nome DocType: Custom Field,Field Description,Descrizione Campo apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nome non impostato tramite Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail in arrivo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Aggiornamento {0} di {1}, {2}" DocType: Auto Email Report,Filters Display,filtri di visualizzazione apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Per poter apportare un emendamento è necessario che sia presente il campo "modificato_da" +DocType: Contact,Numbers,Numeri apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ha apprezzato il tuo lavoro su {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Salva filtri DocType: Address,Plant,Impianto apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Rispondi a tutti DocType: DocType,Setup,Setup +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Tutti i record DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Indirizzo email i cui contatti Google devono essere sincronizzati. DocType: Email Account,Initial Sync Count,Conte sincronizzazione iniziale DocType: Workflow State,glass,vetro @@ -2808,7 +2873,7 @@ DocType: Workflow State,font,carattere DocType: DocType,Show Preview Popup,Mostra popup di anteprima apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Questa è nella top-100 delle password comuni. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Si prega di abilitare i pop-up -DocType: User,Mobile No,Num. Cellulare +DocType: Contact,Mobile No,Num. Cellulare DocType: Communication,Text Content,contenuto Testo DocType: Customize Form Field,Is Custom Field,È Campo Personalizzato DocType: Workflow,"If checked, all other workflows become inactive.","Se selezionata, tutti gli altri flussi di lavoro diventano inattivi." @@ -2854,6 +2919,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Aggiu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nome del nuovo formato di stampa apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Attiva barra laterale DocType: Data Migration Run,Pull Insert,Tirare l'inserimento +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Punti massimi consentiti dopo aver moltiplicato i punti con il valore del moltiplicatore (Nota: per nessun limite, lasciare questo campo vuoto o impostare 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Modello non valido apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Query SQL non valida apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obbligatorio: DocType: Chat Message,Mentions,menzioni @@ -2868,6 +2936,7 @@ DocType: User Permission,User Permission,autorizzazione utente apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP non installato apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Scarica dati +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valori modificati per {0} {1} DocType: Workflow State,hand-right,mano destra DocType: Website Settings,Subdomain,Sottodominio DocType: S3 Backup Settings,Region,Regione @@ -2894,10 +2963,12 @@ DocType: Braintree Settings,Public Key,Chiave pubblica DocType: GSuite Settings,GSuite Settings,Impostazioni di GSuite DocType: Address,Links,Collegamenti DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Utilizza il nome dell'indirizzo e-mail indicato in questo account come nome del mittente per tutte le e-mail inviate utilizzando questo account. +DocType: Energy Point Rule,Field To Check,Campo da controllare apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Contatti Google: impossibile aggiornare il contatto in Contatti Google {0}, codice errore {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Si prega di selezionare il tipo di documento. apps/frappe/frappe/model/base_document.py,Value missing for,Valore mancante per apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Aggiungi una sottovoce +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Progressi nell'importazione DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Se la condizione è soddisfatta, l'utente verrà premiato con i punti. per esempio. doc.status == 'Chiuso'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Record confermato non può essere eliminato. @@ -2934,6 +3005,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizza l'access apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,La pagina che stai cercando non è presente. Questo potrebbe essere dovuto al fatto che viene spostato o vi è un errore di battitura nel collegamento. apps/frappe/frappe/www/404.html,Error Code: {0},Codice di errore: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descrizione per la pagina di profilo, in testo normale, solo un paio di righe. (max 140 caratteri)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sono campi obbligatori DocType: Workflow,Allow Self Approval,Consenti auto approvazione DocType: Event,Event Category,Categoria di eventi apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2982,8 +3054,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Sposta in DocType: Address,Preferred Billing Address,Indirizzo di fatturazione predefinito apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Troppi scrive in una richiesta. Si prega di inviare le richieste più piccoli apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive è stato configurato. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Il tipo di documento {0} è stato ripetuto. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,valori modificati DocType: Workflow State,arrow-up,freccia-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Dovrebbe esserci almeno una riga per la tabella {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Per configurare la ripetizione automatica, abilitare "Consenti ripetizione automatica" da {0}." DocType: OAuth Bearer Token,Expires In,Scade tra DocType: DocField,Allow on Submit,Consenti se Confermato @@ -3070,6 +3144,7 @@ DocType: Custom Field,Options Help,Opzioni Aiuto 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 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 @@ -3087,6 +3162,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Codice di verifica DocType: Webhook,Webhook Request,Richiesta di Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Non riuscita: {0} a {1}: {2} DocType: Data Migration Mapping,Mapping Type,Tipo di mapping +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,selezionare obbligatoria apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Sfoglia apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Non c'è bisogno di simboli, cifre o lettere maiuscole." DocType: DocField,Currency,Valuta @@ -3117,11 +3193,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Testa di lettera basata su apps/frappe/frappe/utils/oauth.py,Token is missing,Token mancante apps/frappe/frappe/www/update-password.html,Set Password,Imposta password +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} record importati correttamente. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Nota: la modifica del nome della pagina interrompe l'URL precedente a questa pagina. apps/frappe/frappe/utils/file_manager.py,Removed {0},Rimosso {0} DocType: SMS Settings,SMS Settings,Impostazioni SMS DocType: Company History,Highlight,Evidenziare DocType: Dashboard Chart,Sum,Somma +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,tramite importazione dati DocType: OAuth Provider Settings,Force,Vigore apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Ultima sincronizzazione {0} DocType: DocField,Fold,Piega @@ -3158,6 +3236,7 @@ DocType: Workflow State,Home,Home DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,L'utente può accedere utilizzando l'ID e-mail o il nome utente DocType: Workflow State,question-sign,domanda-sign +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} è disabilitato apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Il campo "percorso" è obbligatorio per le viste Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Inserisci colonna prima di {0} DocType: Energy Point Rule,The user from this field will be rewarded points,All'utente di questo campo verranno assegnati punti @@ -3191,6 +3270,7 @@ DocType: Website Settings,Top Bar Items,Top Articoli Bar DocType: Notification,Print Settings,Impostazioni di stampa DocType: Page,Yes,Si DocType: DocType,Max Attachments,Numero massimo allegati +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Circa {0} secondi rimanenti DocType: Calendar View,End Date Field,Campo data finale apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Scorciatoie globali DocType: Desktop Icon,Page,Pagina @@ -3301,6 +3381,7 @@ DocType: GSuite Settings,Allow GSuite access,Consenti accesso GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Nomine apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Seleziona tutto +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Colonna {0} apps/frappe/frappe/config/customization.py,Custom Translations,Traduzioni personalizzate apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Progresso apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,per Ruolo @@ -3342,11 +3423,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Inv DocType: Stripe Settings,Stripe Settings,Impostazioni Stripe DocType: Data Migration Mapping,Data Migration Mapping,Mappatura di migrazione dei dati DocType: Auto Email Report,Period,periodo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Circa {0} minuti rimanenti apps/frappe/frappe/www/login.py,Invalid Login Token,Invalid Login Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Scartare apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 ora fa DocType: Website Settings,Home Page,Home Page DocType: Error Snapshot,Parent Error Snapshot,Snapshot Errore padre +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Mappare le colonne da {0} ai campi in {1} DocType: Access Log,Filters,Filtri DocType: Workflow State,share-alt,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},La coda dovrebbe essere una delle {0} @@ -3377,6 +3460,7 @@ DocType: Calendar View,Start Date Field,Campo di data di inizio DocType: Role,Role Name,Nome Ruolo apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Vai al Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script o Report Query +DocType: Contact Phone,Is Primary Mobile,È il cellulare principale DocType: Workflow Document State,Workflow Document State,Stato Documento del Workflow apps/frappe/frappe/public/js/frappe/request.js,File too big,File troppo grande apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-mail account aggiunto più volte @@ -3422,6 +3506,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Impostazioni pagina apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Salvataggio... apps/frappe/frappe/www/update-password.html,Invalid Password,Password non valida +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} importato correttamente su {1}. DocType: Contact,Purchase Master Manager,Direttore Acquisti apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Fai clic sull'icona del lucchetto per attivare / disattivare pubblico / privato DocType: Module Def,Module Name,Nome Modulo @@ -3455,6 +3540,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Inserisci nos mobili validi apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Alcune delle funzionalità potrebbero non funzionare nel tuo browser. Aggiorna il tuo browser alla versione più recente. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Non so, chiedere 'aiuto'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ha annullato questo documento {0} DocType: DocType,Comments and Communications will be associated with this linked document,Commenti e comunicazioni saranno associati a questo documento collegato apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtro ... DocType: Workflow State,bold,grassetto @@ -3473,6 +3559,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Aggiungere / DocType: Comment,Published,Pubblicato apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Grazie per la vostra e-mail DocType: DocField,Small Text,Testo piccolo +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Il numero {0} non può essere impostato come principale per il telefono e per il numero di cellulare DocType: Workflow,Allow approval for creator of the document,Consenti l'approvazione per il creatore del documento apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Salva report DocType: Webhook,on_cancel,on_cancel @@ -3530,6 +3617,7 @@ DocType: Print Settings,PDF Settings,Impostazioni PDF DocType: Kanban Board Column,Column Name,Nome colonna DocType: Language,Based On,Basato su DocType: Email Account,"For more information, click here.","Per maggiori informazioni, clicca qui ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Il numero di colonne non corrisponde ai dati apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Imposta come default apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Tempo di esecuzione: {0} sec apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Percorso di inclusione non valido @@ -3619,7 +3707,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Carica {0} file DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Segnala ora di inizio -apps/frappe/frappe/config/settings.py,Export Data,Esporta dati +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Esporta dati 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. @@ -3637,7 +3725,6 @@ DocType: Report,Disable Prepared Report,Disabilita rapporto preparato apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,L'utente {0} ha richiesto l'eliminazione dei dati apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Illegal token di accesso. Riprova apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","L'applicazione è stata aggiornata a una nuova versione, è necessario ricaricare la pagina" -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 personalizzazione> Modello indirizzo. DocType: Notification,Optional: The alert will be sent if this expression is true,Facoltativo: L'avviso sarà inviato se questa espressione è vera DocType: Data Migration Plan,Plan Name,Nome piano DocType: Print Settings,Print with letterhead,Stampa con carta intestata @@ -3678,6 +3765,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Impossibile impostare Modifica senza Annulla apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Pagina completa DocType: DocType,Is Child Table,È Tabella Figlio +DocType: Data Import Beta,Template Options,Opzioni modello apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} deve essere uno di {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} sta attualmente visualizzando questo documento apps/frappe/frappe/config/core.py,Background Email Queue,Coda email background @@ -3685,7 +3773,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Reimposta Password DocType: Communication,Opened,Aperto DocType: Workflow State,chevron-left,chevron-sinistra DocType: Communication,Sending,Invio -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Non consentito da questo indirizzo IP DocType: Website Slideshow,This goes above the slideshow.,Questo va al di sopra della presentazione. DocType: Contact,Last Name,Cognome DocType: Event,Private,Privato @@ -3699,7 +3786,6 @@ DocType: Workflow Action,Workflow Action,Azioni flusso di lavoro apps/frappe/frappe/utils/bot.py,I found these: ,Ho trovato questi: DocType: Event,Send an email reminder in the morning,Invia un promemoria tramite email al mattino DocType: Blog Post,Published On,Edizione del -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 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} @@ -3720,7 +3806,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,avvertimento-sign DocType: Prepared Report,Prepared Report,Rapporto preparato apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Aggiungi meta tag alle tue pagine web -DocType: Contact,Phone Nos,Numeri di telefono 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 @@ -3737,6 +3822,7 @@ DocType: Data Migration Connector,Data Migration,Migrazione dei dati DocType: User,API Key cannot be regenerated,La chiave API non può essere rigenerata apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Qualcosa è andato storto DocType: System Settings,Number Format,Formato numero +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} record importato correttamente. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sommario DocType: Event,Event Participants,Partecipanti all'evento DocType: Auto Repeat,Frequency,Frequenza @@ -3744,7 +3830,7 @@ DocType: Custom Field,Insert After,Inserisci Dopo DocType: Event,Sync with Google Calendar,Sincronizza con Google Calendar DocType: Access Log,Report Name,Nome Report DocType: Desktop Icon,Reverse Icon Color,Reverse Icona Colore -DocType: Notification,Save,Salva +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Salva apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Prossima data pianificata apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Assegna a colui che ha il minor numero di incarichi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Sezione Intestazione @@ -3767,11 +3853,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Config> Personalizza modulo 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" DocType: Desktop Icon,Category,Categoria +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Valore {0} mancante per {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Aggiungi contatti apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paesaggio apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Estensioni di script lato client in Javascript @@ -3794,6 +3880,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aggiornamento del punto di energia apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Si prega di selezionare un altro metodo di pagamento. PayPal non supporta le transazioni in valuta '{0}' DocType: Chat Message,Room Type,Tipo di stanza +DocType: Data Import Beta,Import Log Preview,Importa anteprima registro apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Cerca campo {0} non è valido apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,file caricato DocType: Workflow State,ok-circle,ok-cerchio @@ -3860,6 +3947,7 @@ DocType: DocType,Allow Auto Repeat,Consenti ripetizione automatica apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nessun valore da mostrare DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Modello di email +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Record {0} aggiornato correttamente. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},L'utente {0} non ha accesso al tipo di documento tramite l'autorizzazione del ruolo per il documento {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Sono richiesti login e password apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Si prega di aggiornare per ottenere l'ultimo documento. diff --git a/frappe/translations/ja.csv b/frappe/translations/ja.csv index 481e496bce..5de1101998 100644 --- a/frappe/translations/ja.csv +++ b/frappe/translations/ja.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,次のアプリの新しい{}リリースが利用可能です apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,金額フィールドを選択してください。 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,インポートファイルを読み込んでいます... DocType: Assignment Rule,Last User,最後のユーザー apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",{1}からあなたに新しいタスク{0}が割当されています。 {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,保存されたセッションデフォルト +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ファイルをリロード DocType: Email Queue,Email Queue records.,メールキューのレコード。 DocType: Post,Post,投稿 DocType: Address,Punjab,パンジャーブ州 @@ -44,6 +46,7 @@ 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,パラメータ @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,月次 DocType: Address,Uttarakhand,ウッタラーカンド州 DocType: Email Account,Enable Incoming,着信を有効にする apps/frappe/frappe/core/doctype/version/version_view.html,Danger,危険 -apps/frappe/frappe/www/login.py,Email Address,メールアドレス +DocType: Address,Email Address,メールアドレス DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,未読通知送信済 apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,エクスポートは許可されていません。役割{0}を必要とします。 @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,管理者 DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",新しい行またはカンマで区切られた「セールスクエリ、サポートクエリ」などのような連絡先オプション apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,タグを追加... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ポートレート -DocType: Data Migration Run,Insert,挿入 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,挿入 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Googleドライブのアクセスを許可 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0}を選択 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,ベースURLを入力してください @@ -118,17 +121,17 @@ 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,テーマを設定 DocType: Company History,Company History,沿革 -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,リセット +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,リセット DocType: Workflow State,volume-up,音量を上げる apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,ウェブアプリケーションのAPIリクエストを実行するWebhooks +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,トレースバックを表示 DocType: DocType,Default Print Format,デフォルト印刷フォーマット DocType: Workflow State,Tags,タグ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,なし:ワークフローの終了 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",非ユニークの値が存在するため、フィールド {0} を{1} 内でユニークに設定することはできません -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,文書タイプ +DocType: Global Search Settings,Document Types,文書タイプ DocType: Address,Jammu and Kashmir,ジャンムー・カシミール州 DocType: Workflow,Workflow State Field,ワークフローステータスのフィールド -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設定>ユーザー DocType: Language,Guest,ゲスト DocType: DocType,Title Field,タイトルフィールド DocType: Error Log,Error Log,エラーログ @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",「ABCABCABC」などの繰り返しは「ABC」よりわずかに推測が困難です DocType: Notification,Channel,チャネル apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",これが不正であると考えられる場合は、管理者パスワードを変更してください。 +DocType: Data Import Beta,Data Import Beta,データインポートベータ apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0}は必須です DocType: Assignment Rule,Assignment Rules,割り当て規則 DocType: Workflow State,eject,イジェクト @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,ワークフローアクシ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,文書タイプを混在させることはできません。 DocType: Web Form Field,Fieldtype,フィールドタイプ apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,zipファイルではありません +DocType: Global Search DocType,Global Search DocType,グローバル検索DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                  New {{ doc.doctype }} #{{ doc.name }}
                                                  ",動的な件名を追加するには、jinjaタグを使用します。
                                                   New {{ doc.doctype }} #{{ doc.name }} 
                                                  @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,文書イベント apps/frappe/frappe/public/js/frappe/utils/user.js,You,あなた DocType: Braintree Settings,Braintree Settings,Braintreeの設定 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0}レコードが正常に作成されました。 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,フィルタを保存する DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0}は削除できません @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,メッセージのURLパ apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,この文書用に作成された自動繰り返し apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,ブラウザでレポートを表示 apps/frappe/frappe/config/desk.py,Event and other calendars.,イベントや他のカレンダー +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0}(1行必須) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,すべてのフィールドは、コメントを送信するために必要です。 DocType: Custom Script,Adds a client custom script to a DocType,クライアントのカスタムスクリプトをDocTypeに追加します DocType: Print Settings,Printer Name,プリンタ名 @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,一括更新 DocType: Workflow State,chevron-up,山カッコ(上) DocType: DocType,Allow Guest to View,ユーザーレビュー表示することができます apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0}は{1}と同じではいけません -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,永久{0}の項目を削除しますか? apps/frappe/frappe/utils/oauth.py,Not Allowed,許可されていません @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,表示 DocType: Email Group,Total Subscribers,総登録者数 apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},トップ{0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,行番号 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",「役割」にレベル0のアクセス権が無い場合、より高いレベルには意味がありません。 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,名前を付けて保存 DocType: Comment,Seen,閲覧済 @@ -307,6 +314,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,例: DocType: Workflow,Defines workflow states and rules for a document.,ドキュメントのためのワークフローの状況とルールを定義します。 DocType: Workflow State,Filter,フィルタ @@ -329,6 +337,7 @@ DocType: Activity Log,Closed,クローズ DocType: Blog Settings,Blog Title,ブログのタイトル apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,標準の役割は無効にすることはできません apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,チャットタイプ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,列のマップ DocType: Address,Mizoram,ミゾラム州 DocType: Newsletter,Newsletter,ニュースレター apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,順にサブクエリを使用することはできません @@ -363,6 +372,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,New Value,新しい値 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,列を追加 apps/frappe/frappe/www/contact.html,Your email address,あなたのメール アドレス DocType: Desktop Icon,Module,モジュール +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{1}から{0}レコードを更新しました。 DocType: Notification,Send Alert On,アラート送信をON DocType: Customize Form,"Customize Label, Print Hide, Default etc.",ラベル・印刷を隠す・デフォルトなどをカスタマイズ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ファイルを解凍しています... @@ -394,6 +404,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ユーザー{0}を削除することはできません DocType: System Settings,Currency Precision,通貨の精度 apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,別の取引がこれをブロックしています。数秒後にもう一度お試しください。 +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,フィルターをクリア DocType: Test Runner,App,アプリ apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,添付ファイルを新しい文書に正しくリンクできませんでした DocType: Chat Message Attachment,Attachment,添付 @@ -419,6 +430,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,メールを apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Googleカレンダー-Googleカレンダーのイベント{0}を更新できませんでした、エラーコード{1}。 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,検索またはコマンド入力 DocType: Activity Log,Timeline Name,タイムライン名 +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,プライマリとして設定できる{0}は1つだけです。 DocType: Email Account,e.g. smtp.gmail.com,例「smtp.gmail.com」 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,新しいルールを追加 DocType: Contact,Sales Master Manager,販売マスターマネージャー @@ -435,7 +447,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAPミドルネームフィールド apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1}の{0}をインポートしています DocType: GCalendar Account,Allow GCalendar Access,GCalendarアクセスを許可する -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0}は必須フィールドです +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0}は必須フィールドです apps/frappe/frappe/templates/includes/login/login.js,Login token required,ログイントークンが必要です apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,月間ランク: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,複数のリストアイテムを選択 @@ -465,6 +477,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},接続できません: apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,単語自体が推測容易です。 apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},自動割り当てに失敗しました:{0} apps/frappe/frappe/templates/includes/search_box.html,Search...,検索... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,会社を選択してください apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,マージはグループ同士またはリーフノード同士でのみ可能です apps/frappe/frappe/utils/file_manager.py,Added {0},{0}を追加しました apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,一致するレコードはありません。新しい何かを検索 @@ -477,7 +490,6 @@ DocType: Google Settings,OAuth Client ID,OAuthクライアントID DocType: Auto Repeat,Subject,タイトル apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,デスクに戻る DocType: Web Form,Amount Based On Field,金額フィールドに基づいて -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,[設定]> [メール]> [メールアカウント]からデフォルトのメールアカウントを設定してください apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,共有にはユーザーが必須です DocType: DocField,Hidden,隠された DocType: Web Form,Allow Incomplete Forms,不完全なフォームを許可する @@ -514,6 +526,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0}と{1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,会話を開始する。 DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",常に印刷ドラフト文書の見出し "ドラフト"を追加 apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},通知エラー:{} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前 DocType: Data Migration Run,Current Mapping Start,現在のマッピングの開始 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,メールがスパムとしてマークされています DocType: Comment,Website Manager,Webサイトマネージャー @@ -551,6 +564,7 @@ DocType: Workflow State,barcode,バーコード apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,サブクエリまたは機能の使用は制限されています apps/frappe/frappe/config/customization.py,Add your own translations,独自の翻訳を追加 DocType: Country,Country Name,国名 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,空白のテンプレート DocType: About Us Team Member,About Us Team Member,問い合わせチームメンバーについて apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.",権限(閲覧、書込、作成、削除、提出、キャンセル、修正、レポート、インポート、エクスポート、印刷、メール、および設定ユーザー権限設定のような)を設定することで、役割と文書タイプにアクセス権限が設定されます。 DocType: Event,Wednesday,水曜日 @@ -562,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,ウェブサイトのテー DocType: Web Form,Sidebar Items,サイドバーのアイテム DocType: Web Form,Show as Grid,グリッドとして表示 apps/frappe/frappe/installer.py,App {0} already installed,アプリ {0}は既にインストールされています +DocType: Energy Point Rule,Users assigned to the reference document will get points.,参照ドキュメントに割り当てられたユーザーはポイントを取得します。 apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,プレビューなし DocType: Workflow State,exclamation-sign,感嘆符記号 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,解凍された{0}ファイル @@ -597,6 +612,7 @@ DocType: Notification,Days Before,事前 apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,毎日のイベントは同じ日に終了する必要があります。 apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,編集... DocType: Workflow State,volume-down,音量を下げる +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,このIPアドレスからのアクセスは許可されていません apps/frappe/frappe/desk/reportview.py,No Tags,タグがありません DocType: Email Account,Send Notification to,通知送信先 DocType: DocField,Collapsible,折り畳み @@ -652,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,開発者 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,作成済 apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,行{1}の{0}は、URLと子アイテムの両方を持つことはできません +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},次のテーブルには少なくとも1行必要です:{0} DocType: Print Format,Default Print Language,デフォルトの印刷言語 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,祖先 apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ルート{0}は削除できません @@ -694,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,ハードディスク DocType: Integration Request,Host,ホスト +DocType: Data Import Beta,Import File,インポートファイル apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,列{0}はすでに存在しています。 DocType: ToDo,High,高 apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,新しいイベント @@ -722,8 +740,6 @@ DocType: User,Send Notifications for Email threads,電子メールスレッド apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,教授 apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,非開発者モード apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ファイルのバックアップが完了しました -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",ポイントに乗数値を乗算した後に許可される最大ポイント(注:値を0に設定しない場合) DocType: DocField,In Global Search,グローバル検索内 DocType: System Settings,Brute Force Security,ブルートフォースセキュリティ DocType: Workflow State,indent-left,インデント左 @@ -765,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',ユーザー '{0}'は既に役割 '{1}' を持っています DocType: System Settings,Two Factor Authentication method,2要素認証方式 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,最初に名前を設定し、レコードを保存します。 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5件 apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0}と共有 apps/frappe/frappe/email/queue.py,Unsubscribe,登録解除 DocType: View Log,Reference Name,参照名 @@ -813,6 +830,8 @@ 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,電子メールステータスを追跡する DocType: Note,Notify Users On Every Login,ログインごとにユーザーに通知する +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,列{0}をフィールドと一致させることはできません +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0}レコードを更新しました。 DocType: PayPal Settings,API Password,APIパスワード apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Pythonモジュールを入力するか、コネクタの種類を選択してください apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,カスタムフィールドにフィールド名が設定されていません @@ -841,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,値を変更済み apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},{0}と{1}は名前が重複しています -DocType: Email Queue,Retry,リトライ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,リトライ +DocType: Contact Phone,Number,数 DocType: Web Form Field,Web Form Field,Webフォームフィールド apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,あなたからの新しいメッセージがあります: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTMLを編集 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,リダイレクトURLを入力してください apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +889,7 @@ DocType: Notification,View Properties (via Customize Form),ビュー属性(カ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ファイルをクリックして選択します。 DocType: Note Seen By,Note Seen By,から見たノート apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,巻数で長いキーボード・パターンを使用してみてください -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,リーダーボード +,LeaderBoard,リーダーボード DocType: DocType,Default Sort Order,デフォルトのソート順 DocType: Address,Rajasthan,ラージャスターン州 DocType: Email Template,Email Reply Help,メール返信ヘルプ @@ -903,6 +924,7 @@ apps/frappe/frappe/utils/data.py,Cent,セント apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Eメールの作成 apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).",ワークフローの状態(例:ドラフト・承認・キャンセル) DocType: Print Settings,Allow Print for Draft,下書きの印刷を許可 +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/link_selector.js,Set Quantity,数量を設定 apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,確認のため、この文書を提出 DocType: Contact,Unsubscribed,購読解除 @@ -934,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,ユーザーの組織単位 ,Transaction Log Report,トランザクションログレポート DocType: Custom DocPerm,Custom DocPerm,カスタムDocPerm DocType: Newsletter,Send Unsubscribe Link,解除リンクを送信 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,ファイルをインポートする前に、作成する必要があるリンクされたレコードがいくつかあります。次の不足しているレコードを自動的に作成しますか? DocType: Access Log,Method,方法 DocType: Report,Script Report,スクリプトレポート DocType: OAuth Authorization Code,Scopes,スコープス @@ -974,6 +997,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,アップロードしました apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,あなたはインターネットに接続しています。 DocType: Social Login Key,Enable Social Login,ソーシャルログインを有効にする +DocType: Data Import Beta,Warnings,警告 DocType: Communication,Event,イベント apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",{0}で{1}が記述: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,標準のフィールドを削除することはできません。必要に応じて非表示にできます @@ -1029,6 +1053,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,下に挿 DocType: Kanban Board Column,Blue,青 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,全てのカスタマイズが削除されます。ご確認ください。 DocType: Page,Page HTML,ページのHTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,エラー行のエクスポート apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,グループ名は空にすることはできません。 apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,これ以上のノードは「グループ」タイプのノードの下にのみ作成することができます DocType: SMS Parameter,Header,ヘッダー @@ -1067,13 +1092,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,リクエストタイムアウト apps/frappe/frappe/config/settings.py,Enable / Disable Domains,ドメインの有効化/無効化 DocType: Role Permission for Page and Report,Allow Roles,役割を許可 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{1}から{0}レコードを正常にインポートしました。 DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")",単純なPython式、例:(「無効」のステータス) DocType: User,Last Active,最後のアクティブ DocType: Email Account,SMTP Settings for outgoing emails,送信メール用のSMTP設定 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,選ぶ DocType: Data Export,Filter List,フィルタリスト DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,パスワードが更新されました。これが新しいパスワードです。 DocType: Email Account,Auto Reply Message,自動返信メッセージ DocType: Data Migration Mapping,Condition,条件 apps/frappe/frappe/utils/data.py,{0} hours ago,{0}時間前 @@ -1082,7 +1107,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ユーザー ID DocType: Communication,Sent,送信済 DocType: Address,Kerala,ケーララ州 -DocType: File,Lft,左 apps/frappe/frappe/public/js/frappe/desk.js,Administration,運営管理 DocType: User,Simultaneous Sessions,同時セッション DocType: Social Login Key,Client Credentials,Client Credentials @@ -1114,7 +1138,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},更新 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,マスター DocType: DocType,User Cannot Create,ユーザーが作成できません。 apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,成功しました -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,フォルダ{0}は存在しません。 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropboxのアクセスが承認されます! DocType: Customize Form,Enter Form Type,フォームタイプを入力してください DocType: Google Drive,Authorize Google Drive Access,Googleドライブアクセスを認証する @@ -1122,7 +1145,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,タグ付けされたレコードがありません apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,フィールド削除 apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,インターネットに接続されていません。しばらく後で再試行してください。 -DocType: User,Send Password Update Notification,パスワード更新通知の送信 apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",文書タイプを許可(慎重に!) apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",印刷・電子メールのカスタマイズ形式 apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0}の合計 @@ -1208,6 +1230,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,不正な確認コ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Contacts Integrationは無効になっています。 DocType: Assignment Rule,Description,説明 DocType: Print Settings,Repeat Header and Footer in PDF,PDFにヘッダーとフッターを繰り返し +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,失敗 DocType: Address Template,Is Default,デフォルト DocType: Data Migration Connector,Connector Type,コネクタタイプ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,列名を空にすることはできません @@ -1220,6 +1243,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0}ページに移 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,列に基づく +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/model/document.py,Action Failed,アクションは失敗しました。 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,ユーザーのための @@ -1273,6 +1297,7 @@ DocType: Print Settings,Enable Raw Printing,生の印刷を有効にする DocType: Website Route Redirect,Source,ソース apps/frappe/frappe/templates/includes/list/filters.html,clear,クリア apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,完成した +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設定>ユーザー DocType: Prepared Report,Filter Values,フィルタ値 DocType: Communication,User Tags,ユーザータグ DocType: Data Migration Run,Fail,失敗 @@ -1328,6 +1353,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,た ,Activity,活動 DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","ヘルプ:システム内の別のレコードにリンクするには、「#フォーム/備考/ [名前をメモ]「リンクのURLとして使用します。 (「http:// ""を使用しないでください)" DocType: User Permission,Allow,許可 +DocType: Data Import Beta,Update Existing Records,既存のレコードを更新する apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,繰り返し単語または文字列を回避してみましょう DocType: Energy Point Rule,Energy Point Rule,エネルギーポイントルール DocType: Communication,Delayed,遅延 @@ -1340,9 +1366,7 @@ DocType: Milestone,Track Field,トラックフィールド DocType: Notification,Set Property After Alert,アラート後のプロパティの設定 apps/frappe/frappe/config/customization.py,Add fields to forms.,フォームにフィールドを追加。 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,このサイトのPaypal設定に何らかの問題があるようです。 -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/sidebar/review.js,Add Review,レビューを追加 -DocType: File,rgt,右 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),フォントサイズ(px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,標準のDocTypeだけがフォームのカスタマイズからカスタマイズできます。 DocType: Email Account,Sendgrid,Sendgrid @@ -1379,6 +1403,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,フ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,自動生成されたコメントを削除することはできません DocType: Google Settings,Used For Google Maps Integration.,Googleマップの統合に使用されます。 apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,参照文書型 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,レコードはエクスポートされません DocType: User,System User,システムユーザー DocType: Report,Is Standard,標準 DocType: Desktop Icon,_report,_report @@ -1393,6 +1418,7 @@ DocType: Workflow State,minus-sign,マイナス記号 apps/frappe/frappe/public/js/frappe/request.js,Not Found,見つかりません apps/frappe/frappe/www/printview.py,No {0} permission,{0}の権限はありません apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,エクスポートカスタムアクセス許可 +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,項目は見つかりませんでした。 DocType: Data Export,Fields Multicheck,フィールドのマルチチェック DocType: Activity Log,Login,ログイン DocType: Web Form,Payments,支払 @@ -1452,8 +1478,9 @@ DocType: Address,Postal,郵便 DocType: Email Account,Default Incoming,デフォルト収益 DocType: Workflow State,repeat,繰り返し DocType: Website Settings,Banner,バナー +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},値は{0}のいずれかでなければなりません DocType: Role,"If disabled, this role will be removed from all users.",無効にした場合、この役割は全ユーザーから削除されます。 -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0}リストに移動します +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,検索のヘルプ DocType: Milestone,Milestone Tracker,マイルストーントラッカー apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,登録されているが無効 @@ -1467,6 +1494,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,ローカルフィール DocType: DocType,Track Changes,変更履歴の記録 DocType: Workflow State,Check,チェック DocType: Chat Profile,Offline,オフライン +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0}が正常にインポートされました DocType: User,API Key,APIキー DocType: Email Account,Send unsubscribe message in email,電子メールでの登録解除メッセージを送ります apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,タイトル編集 @@ -1493,11 +1521,11 @@ 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"" など(選択した文書タイプによって異なります)の有効なメソッドを持つトリガー" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1}の値を変更しました 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,合計ページ数 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0}は既に{1}のデフォルト値を割り当てています。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                  No results found for '

                                                  ,

                                                  の結果は見つかりませんでした

                                                  DocType: DocField,Attach Image,画像を添付 DocType: Workflow State,list-alt,リスト(別種) apps/frappe/frappe/www/update-password.html,Password Updated,パスワード更新 @@ -1518,8 +1546,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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,チャット +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設定>ユーザー権限 DocType: LDAP Group Mapping,LDAP Group Mapping,LDAPグループマッピング DocType: Dashboard Chart,Chart Options,チャートオプション +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,無題のコラム apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0}から{1} {2}内の行#に{3} DocType: Communication,Expired,期限切れ apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,使用しているトークンが無効のようです! @@ -1529,6 +1559,7 @@ DocType: DocType,System,システム DocType: Web Form,Max Attachment Size (in MB),添付ファイル最大容量(MB単位) apps/frappe/frappe/www/login.html,Have an account? Login,アカウントをお持ちですか?ログイン DocType: Workflow State,arrow-down,下矢印 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},行{0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ユーザーは{0}を削除できません:{1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1}の{0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,最終更新日 @@ -1545,6 +1576,7 @@ DocType: Custom Role,Custom Role,カスタム役割 apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,ホーム/テスト フォルダ2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,パスワードを入力 DocType: Dropbox Settings,Dropbox Access Secret,Dropboxのアクセスの秘密 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(必須) 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.,ファイルにデータが見つかりません。新しいファイルをデータで再接続してください。 @@ -1619,6 +1651,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ダッシ apps/frappe/frappe/desk/form/assign_to.py,New Message,新しいメッセージ DocType: File,Preview HTML,プレビューHTML DocType: Desktop Icon,query-report,query-report +DocType: Data Import Beta,Template Warnings,テンプレートの警告 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,保存したフィルタ DocType: DocField,Percent,割合(%) apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,フィルタを設定してください @@ -1640,6 +1673,7 @@ DocType: Custom Field,Custom,カスタム DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",有効にすると、制限付きIPアドレスからログインしたユーザーは、Two Factor Auth DocType: Auto Repeat,Get Contacts,連絡先を取得する apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0}配下の投稿 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,無題の列をスキップする DocType: Notification,Send alert if date matches this field's value,日付がこのフィールドの値と一致した場合にアラートを送信 DocType: Workflow,Transitions,移行 apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} {2}へ @@ -1663,6 +1697,7 @@ DocType: Workflow State,step-backward,戻る apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,サイト設定でDropboxのアクセスキーを設定してください apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,このメールアドレスに送信できるようにするには、このレコードを削除します +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)",非標準ポート(例:POP3:995/110、IMAP:993/143) apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,ショートカットをカスタマイズする apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,新しいレコードには必須フィールドのみが必要です。非必須の列は削除することができます。 apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,より多くのアクティビティを表示 @@ -1771,7 +1806,9 @@ 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,手紙 DocType: DocType,"Naming Options:
                                                  1. field:[fieldname] - By Field
                                                  2. naming_series: - By Naming Series (field called naming_series must be present
                                                  3. Prompt - Prompt user for a name
                                                  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                  5. @@ -1785,6 +1822,7 @@ DocType: GCalendar Account,Next Sync Token,次の同期トークン DocType: Energy Point Settings,Energy Point Settings,エネルギーポイント設定 DocType: Async Task,Succeeded,成功 apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0}に必要な必須フィールド +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                    No results found for '

                                                    ,

                                                    「」の結果は見つかりませんでした

                                                    apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0}のアクセス権限をリセットしますか? apps/frappe/frappe/config/desktop.py,Users and Permissions,ユーザーと権限 DocType: S3 Backup Settings,S3 Backup Settings,S3バックアップ設定 @@ -1855,6 +1893,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,In DocType: Notification,Value Change,値変更 DocType: Google Contacts,Authorize Google Contacts Access,Google連絡先へのアクセスを承認 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,レポートから数値フィールドのみを表示する +DocType: Data Import Beta,Import Type,インポートタイプ DocType: Access Log,HTML Page,HTMLページ DocType: Address,Subsidiary,子会社 apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZトレイへの接続を試みています... @@ -1865,7 +1904,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,無効な DocType: Custom DocPerm,Write,書き込む apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,クエリー/スクリプトレポートを作成することができるのは管理者だけです apps/frappe/frappe/public/js/frappe/form/save.js,Updating,更新 -DocType: File,Preview,プレビュー +DocType: Data Import Beta,Preview,プレビュー apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",フィールド「値」が必須です。更新する値を指定してください DocType: Customize Form,Use this fieldname to generate title,タイトルを生成するには、このフィールド名を使用します apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,メールインポート元 @@ -1948,6 +1987,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,サポート DocType: Social Login Key,Client URLs,クライアントURL apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,一部の情報が欠落しています apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0}が正常に作成されました +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}",{1}、{2}の{0}をスキップしています DocType: Custom DocPerm,Cancel,キャンセル apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,一括削除 apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,ファイル{0}が存在しません @@ -1976,7 +2016,6 @@ DocType: GCalendar Account,Session Token,セッショントークン DocType: Currency,Symbol,シンボル apps/frappe/frappe/model/base_document.py,Row #{0}:,行 {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,データ削除確認 -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,新しいパスワードをメールで送信しました apps/frappe/frappe/auth.py,Login not allowed at this time,この時点でログインは許可されていません。 DocType: Data Migration Run,Current Mapping Action,現在のマッピングアクション DocType: Dashboard Chart Source,Source Name,ソース名 @@ -1989,6 +2028,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,グ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,に続く DocType: LDAP Settings,LDAP Email Field,LDAPメールフィールド apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0}リスト +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0}レコードをエクスポート apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,既にユーザのやることリストに存在します DocType: User Email,Enable Outgoing,送信を有効にする DocType: Address,Fax,FAX @@ -2046,8 +2086,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,ドキュメントを印刷する apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,フィールドへジャンプ DocType: Contact Us Settings,Forward To Email Address,メールアドレスに転送 +DocType: Contact Phone,Is Primary Phone,プライマリ電話です apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ここにリンクするには、{0}にEメールを送信してください。 DocType: Auto Email Report,Weekdays,平日 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0}レコードがエクスポートされます apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,タイトルフィールドは、有効なフィールド名である必要があります。 DocType: Post Comment,Post Comment,コメントを投稿 apps/frappe/frappe/config/core.py,Documents,文書 @@ -2065,7 +2107,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",ここで定義されたフィールド名が値を持っているかのルールが真(例)である場合にのみ、このフィールドが表示されます:myFieldでのeval:doc.myfield == 'マイ値'のeval:doc.age> 18 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,今日 +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",この設定によりユーザーはリンクのあるドキュメント(ブログ記事など)にアクセス可能となります(例:Blogger)。 +DocType: Data Import Beta,Submit After Import,インポート後に送信 DocType: Error Log,Log of Scheduler Errors,スケジューラーのエラーログ DocType: User,Bio,自己紹介 DocType: OAuth Client,App Client Secret,アプリのクライアントシークレット @@ -2084,10 +2128,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,ログインページの顧客の登録リンクを無効にする apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,所有者に割当 DocType: Workflow State,arrow-left,左矢印 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1レコードをエクスポート DocType: Workflow State,fullscreen,フルスクリーン DocType: Chat Token,Chat Token,チャットトークン apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,グラフを作成 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,インポートしない DocType: Web Page,Center,中央 DocType: Notification,Value To Be Set,設定する値 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0}を編集する @@ -2107,6 +2153,7 @@ DocType: Print Format,Show Section Headings,セクション見出しを表示 DocType: Bulk Update,Limit,リミット apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},{1}に関連付けられている{0}データの削除要求を受け取りました apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,新しいセクションを追加 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,フィルターされたレコード apps/frappe/frappe/www/printview.py,No template found at path: {0},テンプレートが次のパスに見つかりません:{0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,メールアカウントがありません DocType: Comment,Cancelled,キャンセル @@ -2193,10 +2240,13 @@ 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} 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になります +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,グローバル検索ドキュメントタイプのリセット。 ,Lead Conversion Time,リード変換時間 apps/frappe/frappe/desk/page/activity/activity.js,Build Report,レポートを作成 DocType: Note,Notify users with a popup when they log in,ユーザーがログインする際ポップアップで通知する +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,コアモジュール{0}はグローバル検索で検索できません。 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,オープンチャット apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1}は存在しないため、マージする新しいターゲットを選択してください DocType: Data Migration Connector,Python Module,Pythonモジュール @@ -2213,8 +2263,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,閉じる apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,文書ステータスを0から2に変更することはできません DocType: File,Attached To Field,フィールドに添付 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設定>ユーザー権限 -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,更新 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,更新 DocType: Transaction Log,Transaction Hash,トランザクションハッシュ DocType: Error Snapshot,Snapshot View,スナップショットの表示 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,送信する前にニュースレターを保存してください @@ -2230,6 +2279,7 @@ DocType: Data Import,In Progress,進行中 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,バックアップのためにキューに入れられました。それは時間に数分かかることがあります。 DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,ユーザー権限は既に存在します +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},列{0}をフィールド{1}にマッピングしています apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},ビュー{0} DocType: User,Hourly,毎時 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuthクライアントアプリの登録 @@ -2242,7 +2292,6 @@ DocType: SMS Settings,SMS Gateway URL,SMSゲートウェイURL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} は""{2}""にすることはできません。""{3}""のいずれかでなければなりません" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},自動ルール{1}により{0}が獲得しました apps/frappe/frappe/utils/data.py,{0} or {1},{0}または{1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,パスワード更新 DocType: Workflow State,trash,ゴミ箱 DocType: System Settings,Older backups will be automatically deleted,古いバックアップは自動的に削除されます apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,無効なアクセスキーIDまたはシークレットアクセスキーです。 @@ -2270,6 +2319,7 @@ DocType: Address,Preferred Shipping Address,優先出荷住所 apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,レターヘッド付 apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0}が{1}に作成 apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},行{2}の{0}:{1}には使用できません。制限付きフィールド:{3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,メールアカウントが設定されていません。 [設定]> [メール]> [メールアカウント]から新しいメールアカウントを作成してください DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",これをチェックすると、有効なデータを持つ行がインポートされ、後でインポートするために無効な行が新しいファイルにダンプされます。 apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,文書は、ユーザーの役割によってのみ編集可能となります @@ -2296,6 +2346,7 @@ DocType: Custom Field,Is Mandatory Field,必須フィールド DocType: User,Website User,ウェブサイトのユーザー apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,PDFへの印刷時に一部の列が途切れる場合があります。列数を10未満に保つようにしてください。 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,等しくない +DocType: Data Import Beta,Don't Send Emails,メールを送信しない DocType: Integration Request,Integration Request Service,統合リクエストサービス DocType: Access Log,Access Log,アクセスログ DocType: Website Script,Script to attach to all web pages.,全てのWebページに添付するためのスクリプト @@ -2335,6 +2386,7 @@ DocType: Contact,Passive,消極的 DocType: Auto Repeat,Accounts Manager,会計管理者 apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1}の割り当て apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,支払がキャンセルされました。 +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,[設定]> [メール]> [メールアカウント]からデフォルトのメールアカウントを設定してください apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,ファイルタイプを選択 apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,すべて見る DocType: Help Article,Knowledge Base Editor,ナレッジベースエディター @@ -2367,6 +2419,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,データ apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,文書ステータス apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,承認が必要 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,ファイルをインポートする前に、次のレコードを作成する必要があります。 DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth認証コード apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,インポートは許可されていません DocType: Deleted Document,Deleted DocType,削除されたDOCTYPE @@ -2420,8 +2473,8 @@ DocType: System Settings,System Settings,システム設定 DocType: GCalendar Settings,Google API Credentials,Google APIクレデンシャル apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,セッションの開始に失敗しました apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},このメールは{0}に送信され、{1}にコピーされました +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},このドキュメントを送信しました{0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前 DocType: Social Login Key,Provider Name,プロバイダ名 apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},新しい{0}を作成する DocType: Contact,Google Contacts,Googleの連絡先 @@ -2429,6 +2482,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendarアカウント DocType: Email Rule,Is Spam,スパム apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},レポート {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},{0}を開く +DocType: Data Import Beta,Import Warnings,インポート警告 DocType: OAuth Client,Default Redirect URI,デフォルトリダイレクトURI DocType: Auto Repeat,Recipients,受信者 DocType: System Settings,Choose authentication method to be used by all users,すべてのユーザーが使用する認証方法を選択する @@ -2547,6 +2601,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,レポート apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,スラックWebhookエラー DocType: Email Flag Queue,Unread,未読にする DocType: Bulk Update,Desk,デスク +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},列{0}をスキップしています apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),フィルタはタプルまたはリスト(リスト内)でなければなりません apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,SELECTクエリを書き込んでください。結果はページングされない(全データが1度に返却される)ことに注意してください。 DocType: Email Account,Attachment Limit (MB),添付ファイルの制限(MB) @@ -2561,6 +2616,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,新規作成 DocType: Workflow State,chevron-down,山カッコ(下) apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),メール{0}(無効/非購読)に送信されません +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,エクスポートするフィールドを選択 DocType: Async Task,Traceback,トレースバック DocType: Currency,Smallest Currency Fraction Value,最小通貨分数値 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,レポート作成 @@ -2571,6 +2627,7 @@ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ノート DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"このIPアドレスのみからアクセス可能とします。 複数のIPアドレスは、カンマで区切ることにより追加することができます。 また、部分的なIPアドレスも指定可能です(例:111.111.111)" +DocType: Data Import Beta,Import Preview,インポートプレビュー DocType: Communication,From,から apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,はじめにグループノードを選択してください apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} {1}で見つける @@ -2669,6 +2726,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Between DocType: Social Login Key,fairlogin,フェアログイン DocType: Async Task,Queued,キュー追加済 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,[設定]> [フォームのカスタマイズ] DocType: Braintree Settings,Use Sandbox,サンドボックスを使用 apps/frappe/frappe/utils/goal.py,This month,今月 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,新しいカスタム印刷フォーマット @@ -2684,6 +2742,7 @@ DocType: Session Default,Session Default,セッションデフォルト DocType: Chat Room,Last Message,最新メッセージ DocType: OAuth Bearer Token,Access Token,アクセストークン DocType: About Us Settings,Org History,沿革 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,残り約{0}分 DocType: Auto Repeat,Next Schedule Date,次のスケジュール日 DocType: Workflow,Workflow Name,ワークフロー名 DocType: DocShare,Notify by Email,メールによる通知 @@ -2713,6 +2772,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,著者 apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,送信を再開 apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,再オープン +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,警告を表示 apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,仕入ユーザー DocType: Data Migration Run,Push Failed,プッシュ失敗 @@ -2749,6 +2809,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,詳細 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ニュースレターを閲覧することはできません。 DocType: User,Interests,興味 apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,パスワードのリセット手順をメールで送信しました +DocType: Energy Point Rule,Allot Points To Assigned Users,割り当てられたユーザーにポイントを割り当てる apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",レベル0は、文書レベルのアクセス権限であり、フィールドレベルのアクセス権限の上位です。 DocType: Contact Email,Is Primary,プライマリです @@ -2771,6 +2832,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,インポートを開始する +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,輸出タイプ DocType: Workflow State,circle-arrow-left,円矢印(左) DocType: System Settings,Force User to Reset Password,ユーザーにパスワードのリセットを強制する apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",更新されたレポートを入手するには、{0}をクリックしてください。 @@ -2783,13 +2845,16 @@ DocType: Contact,Middle Name,ミドルネーム DocType: Custom Field,Field Description,フィールド説明 apps/frappe/frappe/model/naming.py,Name not set via Prompt,プロンプトから名前が設定されていません apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,メール受信トレイ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}",{1}、{2}の{0}を更新しています DocType: Auto Email Report,Filters Display,フィルタの表示 apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",修正を行うには、「amended_from」フィールドが存在する必要があります。 +DocType: Contact,Numbers,数字 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0}は{1} {2}での作業を高く評価しました apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,フィルタを保存 DocType: Address,Plant,プラント apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,全員に返信 DocType: DocType,Setup,セットアップ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,すべての記録 DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Googleの連絡先を同期するメールアドレス。 DocType: Email Account,Initial Sync Count,最初の同期カウント DocType: Workflow State,glass,ガラス @@ -2814,7 +2879,7 @@ DocType: Workflow State,font,フォント DocType: DocType,Show Preview Popup,プレビューを表示するポップアップ apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,これはトップ100内の一般的なパスワードです。 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,ポップアップを有効にしてください -DocType: User,Mobile No,携帯番号 +DocType: Contact,Mobile No,携帯番号 DocType: Communication,Text Content,テキストコンテンツ DocType: Customize Form Field,Is Custom Field,カスタムフィールド DocType: Workflow,"If checked, all other workflows become inactive.",チェックすると、他のすべてのワークフローが非アクティブになります。 @@ -2860,6 +2925,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,フ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,新しい印刷形式の名前 apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,サイドバーの切り替え DocType: Data Migration Run,Pull Insert,プルインサート +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",ポイントに乗数値を乗算した後に許可される最大ポイント(注:制限がない場合、このフィールドを空のままにするか、0に設定します) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,無効なテンプレート apps/frappe/frappe/model/db_query.py,Illegal SQL Query,不正なSQLクエリ apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,必須: DocType: Chat Message,Mentions,覚え書き @@ -2874,6 +2942,7 @@ DocType: User Permission,User Permission,ユーザーのアクセス許可 apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ブログ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAPがインストールされていません apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,データをダウンロード +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1}の値を変更しました DocType: Workflow State,hand-right,手(右) DocType: Website Settings,Subdomain,サブドメイン DocType: S3 Backup Settings,Region,地域 @@ -2900,10 +2969,12 @@ DocType: Braintree Settings,Public Key,公開鍵 DocType: GSuite Settings,GSuite Settings,GSuiteの設定 DocType: Address,Links,リンク DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,このアカウントを使用して送信されるすべての電子メールの送信者の名前として、このアカウントに記載されている電子メールアドレス名を使用します。 +DocType: Energy Point Rule,Field To Check,チェックするフィールド apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.",Googleコンタクト-Googleコンタクト{0}の連絡先を更新できませんでした、エラーコード{1}。 apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,ドキュメントタイプを選択してください。 apps/frappe/frappe/model/base_document.py,Value missing for,値の記入漏れ apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,子を追加 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,インポートの進行状況 DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",条件が満たされればユーザーはポイントで報われます。例えば。 doc.status == '終了' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:提出済レコードを削除することはできません。 @@ -2940,6 +3011,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Googleカレンダー apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,あなたが探しているページがありません。それが移動またはリンクにタイプミスがあるされているので、これは可能性があります。 apps/frappe/frappe/www/404.html,Error Code: {0},エラーコード:{0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",一覧ページの説明(最大2行・140文字・プレーンテキストのみ) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0}は必須フィールドです DocType: Workflow,Allow Self Approval,自己承認を許可する DocType: Event,Event Category,イベントカテゴリ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,ジョン・ドウ @@ -2987,8 +3059,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,へ引っ越す DocType: Address,Preferred Billing Address,優先請求先住所 apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,1リクエスト内に記入が多すぎます。リクエストを小さくして送信してください apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Googleドライブが構成されました。 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,ドキュメントタイプ{0}が繰り返されています。 apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,変更された値 DocType: Workflow State,arrow-up,上矢印 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0}テーブルには少なくとも1行必要です apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",自動繰り返しを設定するには、{0}から「自動繰り返しを許可する」を有効にします。 DocType: OAuth Bearer Token,Expires In,で有効期限 DocType: DocField,Allow on Submit,提出を許可 @@ -3075,6 +3149,7 @@ DocType: Custom Field,Options Help,オプションのヘルプ 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レコードがエクスポートされます 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,ドメインに制限する @@ -3092,6 +3167,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,検証コード DocType: Webhook,Webhook Request,Webhookリクエスト apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},**失敗しました:{0}の{1}:{2} DocType: Data Migration Mapping,Mapping Type,マッピングタイプ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,必須選択 apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,ブラウズ apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.",記号・数字・大文字は必要ありません。 DocType: DocField,Currency,通貨 @@ -3122,11 +3198,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,に基づくレターヘッド apps/frappe/frappe/utils/oauth.py,Token is missing,トークンがありません apps/frappe/frappe/www/update-password.html,Set Password,パスワードを設定 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0}レコードを正常にインポートしました。 apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,注:ページ名を変更すると、このページの前のURLが破損します。 apps/frappe/frappe/utils/file_manager.py,Removed {0},削除済 {0} DocType: SMS Settings,SMS Settings,SMS設定 DocType: Company History,Highlight,ハイライト DocType: Dashboard Chart,Sum,和 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,データインポート経由 DocType: OAuth Provider Settings,Force,力 apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},最後に同期しました{0} DocType: DocField,Fold,フォールド @@ -3163,6 +3241,7 @@ DocType: Workflow State,Home,ホーム DocType: OAuth Provider Settings,Auto,オート DocType: System Settings,User can login using Email id or User Name,ユーザーは電子メールIDまたはユーザー名を使用してログインできます DocType: Workflow State,question-sign,質問記号 +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0}は無効です apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ウェブビューでは「経路」フィールドは必須です apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0}の前に列を挿入する DocType: Energy Point Rule,The user from this field will be rewarded points,このフィールドのユーザーにはポイントが与えられます @@ -3196,6 +3275,7 @@ DocType: Website Settings,Top Bar Items,トップバーアイテム DocType: Notification,Print Settings,印刷設定 DocType: Page,Yes,はい DocType: DocType,Max Attachments,最大添付ファイル +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,残り約{0}秒 DocType: Calendar View,End Date Field,終了日フィールド apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,グローバルショートカット DocType: Desktop Icon,Page,ページ @@ -3306,6 +3386,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuiteアクセスを許可する DocType: DocType,DESC,DESC DocType: DocType,Naming,命名 apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,すべて選択 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},列{0} apps/frappe/frappe/config/customization.py,Custom Translations,カスタム翻訳 apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,進捗 apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,役割 @@ -3347,11 +3428,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,開 DocType: Stripe Settings,Stripe Settings,ストライプ設定 DocType: Data Migration Mapping,Data Migration Mapping,データ移行マッピング DocType: Auto Email Report,Period,期間 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,残り約{0}分 apps/frappe/frappe/www/login.py,Invalid Login Token,無効なログイントークン 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,共有 apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},キューは{0}のいずれかでなければなりません @@ -3382,6 +3465,7 @@ DocType: Calendar View,Start Date Field,開始日フィールド DocType: Role,Role Name,役割名 apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,デスクに切り替え apps/frappe/frappe/config/core.py,Script or Query reports,スクリプトまたはクエリレポート +DocType: Contact Phone,Is Primary Mobile,プライマリモバイル DocType: Workflow Document State,Workflow Document State,ワークフロー文書のステータス apps/frappe/frappe/public/js/frappe/request.js,File too big,大きすぎるファイル apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,電子メールアカウントが複数回追加されました @@ -3427,6 +3511,7 @@ DocType: DocField,Float,小数 DocType: Print Settings,Page Settings,ページ設定 apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,保存中... apps/frappe/frappe/www/update-password.html,Invalid Password,無効なパスワード +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{1}から{0}レコードを正常にインポートしました。 DocType: Contact,Purchase Master Manager,仕入マスターマネージャー apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,ロックアイコンをクリックして、パブリック/プライベートを切り替えます DocType: Module Def,Module Name,モジュール名 @@ -3460,6 +3545,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,有効な携帯電話番号を入力してください apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,一部の機能がブラウザで動作しない場合があります。ブラウザを最新バージョンに更新してください。 apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",わかりません。ヘルプを参照してください。 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},このドキュメントをキャンセルしました{0} DocType: DocType,Comments and Communications will be associated with this linked document,コメントとの通信は、このリンクされたドキュメントに関連付けられます apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,フィルター... DocType: Workflow State,bold,太字 @@ -3478,6 +3564,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,メールア DocType: Comment,Published,公開済 apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,メールいただきありがとうございます DocType: DocField,Small Text,小さいテキスト +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,番号{0}は、電話番号とモバイル番号のプライマリとして設定できません。 DocType: Workflow,Allow approval for creator of the document,文書作成者の承認を許可する apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,レポートを保存 DocType: Webhook,on_cancel,on_cancel @@ -3535,6 +3622,7 @@ DocType: Print Settings,PDF Settings,PDF設定 DocType: Kanban Board Column,Column Name,列名 DocType: Language,Based On,参照元 DocType: Email Account,"For more information, click here.","詳しくは、 こちらをクリックしてください 。" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,列の数がデータと一致しません apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,デフォルト作成 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,実行時間:{0}秒 apps/frappe/frappe/model/utils/__init__.py,Invalid include path,無効なインクルードパス @@ -3624,7 +3712,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar同期ID DocType: Prepared Report,Report Start Time,レポートの開始時間 -apps/frappe/frappe/config/settings.py,Export Data,データのエクスポート +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,データのエクスポート 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.,これはバックグラウンドレポートです。適切なフィルタを設定してから、新しいフィルタを生成してください。 @@ -3642,7 +3730,6 @@ DocType: Report,Disable Prepared Report,作成済みレポートを無効にす apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,ユーザー{0}がデータ削除を要求しました apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,アクセストークンが不正です。もう一度やり直してください apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",アプリケーションが新しいバージョンに更新されました。このページを更新してください -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.,デフォルトのアドレステンプレートが見つかりません。 [設定]> [印刷とブランディング]> [アドレステンプレート]から新しいものを作成してください。 DocType: Notification,Optional: The alert will be sent if this expression is true,(任意)この式がtrueの場合、アラートが送信されます DocType: Data Migration Plan,Plan Name,計画名 DocType: Print Settings,Print with letterhead,レターヘッド付き印刷 @@ -3683,6 +3770,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}:キャンセルせずに修正を設定することはできません apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,全ページ DocType: DocType,Is Child Table,子表 +DocType: Data Import Beta,Template Options,テンプレートオプション apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0}は{1}のいずれかである必要があります apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} が現在この文書を表示 apps/frappe/frappe/config/core.py,Background Email Queue,バックグラウンドメールキュー @@ -3690,7 +3778,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,パスワードの DocType: Communication,Opened,オープン済 DocType: Workflow State,chevron-left,山カッコ(左) DocType: Communication,Sending,送信中 -apps/frappe/frappe/auth.py,Not allowed from this IP Address,このIPアドレスからは許可されていません DocType: Website Slideshow,This goes above the slideshow.,スライドショーの上に配置されます DocType: Contact,Last Name,お名前(姓) DocType: Event,Private,個人 @@ -3704,7 +3791,6 @@ DocType: Workflow Action,Workflow Action,ワークフローアクション apps/frappe/frappe/utils/bot.py,I found these: ,私はこれらが見つかりました: DocType: Event,Send an email reminder in the morning,午前中にリマインダーメールを送信 DocType: Blog Post,Published On,公開 -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,メールアカウントが設定されていません。 [設定]> [メール]> [メールアカウント]から新しいメールアカウントを作成してください 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}に戻しました @@ -3725,7 +3811,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,警告サイン DocType: Prepared Report,Prepared Report,準備レポート apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Webページにメタタグを追加する -DocType: Contact,Phone Nos,電話番号 DocType: Workflow State,User,ユーザー DocType: Website Settings,"Show title in browser window as ""Prefix - title""",「接頭辞 - タイトル」のようにブラウザでタイトルを表示 DocType: Payment Gateway,Gateway Settings,ゲートウェイ設定 @@ -3742,6 +3827,7 @@ DocType: Data Migration Connector,Data Migration,データ移行 DocType: User,API Key cannot be regenerated,APIキーを再生成できません apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,何らかの問題が発生しました DocType: System Settings,Number Format,数の書式 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0}レコードを正常にインポートしました。 apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,概要 DocType: Event,Event Participants,イベント参加者 DocType: Auto Repeat,Frequency,周波数 @@ -3749,7 +3835,7 @@ DocType: Custom Field,Insert After,後に挿入 DocType: Event,Sync with Google Calendar,Googleカレンダーと同期 DocType: Access Log,Report Name,レポート名 DocType: Desktop Icon,Reverse Icon Color,アイコン色を反転 -DocType: Notification,Save,保存 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,保存 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,次回の予定日 apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,割り当てが最も少ない方に割り当てます apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,セクション見出し @@ -3772,11 +3858,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,[設定]> [フォームのカスタマイズ] DocType: Google Contacts,Last Sync On,最後の同期オン DocType: Deleted Document,Deleted Document,削除された文書 apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,問題が起きました DocType: Desktop Icon,Category,カテゴリー +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},{1}の値{0}がありません apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,連絡先を追加 apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,景観 apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,JavaScriptのクライアントサイドスクリプト拡張子 @@ -3799,6 +3885,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,エネルギーポイントの更新 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',他のお支払方法を選択してください。 PayPalは通貨「{0}」での取引をサポートしていません DocType: Chat Message,Room Type,ルームタイプ +DocType: Data Import Beta,Import Log Preview,インポートログプレビュー apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,検索フィールド{0}は有効ではありません apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,アップロードされたファイル DocType: Workflow State,ok-circle,OKマーク @@ -3865,6 +3952,7 @@ DocType: DocType,Allow Auto Repeat,自動繰り返しを許可 apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,表示する値がありません DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,メールテンプレート +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0}レコードを更新しました。 apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},ユーザー{0}には、文書{1}のロール許可によるDoctypeアクセス権がありません apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ログインとパスワードの両方が必要 apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,最新の書類を取得するために更新してください diff --git a/frappe/translations/km.csv b/frappe/translations/km.csv index 45d66d4491..eaf18f7aa4 100644 --- a/frappe/translations/km.csv +++ b/frappe/translations/km.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,{} ការចេញផ្សាយថ្មីសម្រាប់កម្មវិធីខាងក្រោមអាចប្រើបាន apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,សូមជ្រើសវាលចំនួនទឹកប្រាក់។ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,កំពុងផ្ទុកឯកសារនាំចូល ... DocType: Assignment Rule,Last User,អ្នកប្រើប្រាស់ចុងក្រោយ។ apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ការភារកិច្ចថ្មី, {0} ត្រូវបានផ្ដល់ទៅអ្នកដោយ {1} ។ {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,បានរក្សាទុកលំនាំដើមវេន។ +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ផ្ទុកឯកសារឡើងវិញ។ DocType: Email Queue,Email Queue records.,កំណត់ត្រាជួរអ៊ីម៉ែល។ DocType: Post,Post,ភ្នំពេញប៉ុស្តិ៍ DocType: Address,Punjab,រដ្ឋ Punjab @@ -44,6 +46,7 @@ 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,ប៉ារ៉ាម៉ែត្រ @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,ប្រចាំខែ DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,អនុញ្ញាតការចូល apps/frappe/frappe/core/doctype/version/version_view.html,Danger,គ្រោះថ្នាក់ -apps/frappe/frappe/www/login.py,Email Address,អាសយដ្ឋានអ៊ីម៉ែល +DocType: Address,Email Address,អាសយដ្ឋានអ៊ីម៉ែល DocType: Workflow State,th-large,ទីធំ DocType: Communication,Unread Notification Sent,ការជូនដំណឹងដែលមិនទាន់អានបានផ្ញើ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ការនាំចេញមិនត្រូវបានអនុញ្ញាត។ អ្នកត្រូវការ {0} តួនាទីក្នុងការនាំចេញ។ @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,អ្ន DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ជម្រើសនៃការទំនាក់ទំនង, ដូចជា "ការលក់សំណួរជំនួយសំណួរ" លនៅលើបន្ទាត់ថ្មីឬបំបែកដោយសញ្ញាក្បៀស។" apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,បន្ថែមស្លាកមួយ ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,បញ្ឈរ។ -DocType: Data Migration Run,Insert,បញ្ចូល +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,បញ្ចូល apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,អនុញ្ញាតការចូលដំណើរការ Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},ជ្រើស {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,សូមបញ្ចូល URL មូលដ្ឋាន @@ -118,17 +121,17 @@ 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,កំណត់រចនាសម្ព័ន្ធស្បែក។ DocType: Company History,Company History,ប្រវត្តិក្រុមហ៊ុន -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,កំណត់ឡើងវិញ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,កំណត់ឡើងវិញ DocType: Workflow State,volume-up,បរិមាណឡើង apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks ការស្នើសុំ API ទៅក្នុងកម្មវិធីបណ្ដាញ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,បង្ហាញ Traceback ។ DocType: DocType,Default Print Format,ទ្រង់ទ្រាយបោះពុម្ពលំនាំដើម DocType: Workflow State,Tags,ស្លាក apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,គ្មាន: ការបញ្ចប់នៃលំហូរការងារ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} វាលមិនអាចត្រូវបានកំណត់ជាតែមួយគត់នៅ {1}, ដូចជាមានតម្លៃតែមួយគត់ដែលមិនមែនជាដែលមានស្រាប់" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ប្រភេទឯកសារ +DocType: Global Search Settings,Document Types,ប្រភេទឯកសារ DocType: Address,Jammu and Kashmir,Jammu និង Kashmir DocType: Workflow,Workflow State Field,វាលរដ្ឋលំហូរការងារ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,តំឡើង> អ្នកប្រើប្រាស់។ DocType: Language,Guest,អ្នកទស្សនា DocType: DocType,Title Field,ចំណងជើងវាល DocType: Error Log,Error Log,កំហុសក្នុងការចូល @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",ម្តងទៀតដូចជា "abcabcabc" ត្រូវបានតែបន្តិចពិបាកក្នុងការទាយជាង "ABC" DocType: Notification,Channel,ឆានែល apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","បើអ្នកគិតថានេះគឺជាការគ្មានការអនុញ្ញាត, សូមផ្លាស់ប្តូរពាក្យសម្ងាត់របស់អ្នកគ្រប់គ្រង។" +DocType: Data Import Beta,Data Import Beta,ទិន្នន័យនាំចូលបេតា។ apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} គឺជាការចាំបាច់ DocType: Assignment Rule,Assignment Rules,វិធានចាត់តាំង។ DocType: Workflow State,eject,ច្រានចេញ @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,ឈ្មោះសកម្ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,ចង្អុលបង្ហាញនេះមិនអាចត្រូវបានបញ្ចូលគ្នា DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,មិនមែនជាឯកសារ zip មួយ +DocType: Global Search DocType,Global Search DocType,ការស្វែងរកប្រភេទឯកសារសកល។ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                    New {{ doc.doctype }} #{{ doc.name }}
                                                    ",ដើម្បីបន្ថែមប្រធានបទថាមវន្តសូមប្រើស្លាក jinja ដូចជា
                                                     New {{ doc.doctype }} #{{ doc.name }} 
                                                    @@ -209,6 +214,7 @@ DocType: SMS Settings,Enter url parameter for message,បញ្ចូលប៉ apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,បង្កើតឡើងវិញដោយស្វ័យប្រវត្តិសម្រាប់ឯកសារនេះ។ apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,មើលរបាយការណ៍ក្នុងកម្មវិធីអ៊ីនធឺណិតរបស់អ្នក apps/frappe/frappe/config/desk.py,Event and other calendars.,ព្រឹត្តិការណ៍និងប្រតិទិនផ្សេងទៀត។ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (ចាំបាច់មួយជួរ) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,វាលទាំងអស់គឺចាំបាច់ដើម្បីដាក់មតិយោបល់។ DocType: Custom Script,Adds a client custom script to a DocType,បន្ថែមស្គ្រីបផ្ទាល់ខ្លួនរបស់អតិថិជនទៅ DocType ។ DocType: Print Settings,Printer Name,ឈ្មោះម៉ាស៊ីនបោះពុម្ព @@ -250,7 +256,6 @@ DocType: Bulk Update,Bulk Update,បច្ចុប្បន្នភាពច DocType: Workflow State,chevron-up,ក្រុមហ៊ុន Chevron ឡើង DocType: DocType,Allow Guest to View,អនុញ្ញាតឱ្យភ្ញៀវដើម្បីមើល apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} មិនគួរដូច {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,លុប {0} ធាតុជារៀងរហូត? apps/frappe/frappe/utils/oauth.py,Not Allowed,មិនអនុញ្ញាត @@ -266,6 +271,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,អេក្រង់បង្ហាញ DocType: Email Group,Total Subscribers,អតិថិជនសរុប apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},{0} កំពូល +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,លេខជួរដេក។ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",ប្រសិនបើមានតួនាទីមួយមិនមានសិទ្ធិចូលដំណើរការនៅថ្នាក់ 0 កម្រិតខ្ពស់គឺជាគ្មានន័យ។ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,រក្សាទុកជា DocType: Comment,Seen,គេមើលឃើញ @@ -305,6 +311,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,ឧទាហរណ៍: DocType: Workflow,Defines workflow states and rules for a document.,កំណត់របស់រដ្ឋជាលំហូរការងារនិងច្បាប់សម្រាប់ឯកសារមួយ។ DocType: Workflow State,Filter,តម្រង @@ -327,6 +334,7 @@ DocType: Activity Log,Closed,បានបិទ DocType: Blog Settings,Blog Title,ចំណងជើងកំណត់ហេតុបណ្ដាញ apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,តួនាទីស្ដង់ដារមិនអាចត្រូវបានបិទ apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,ប្រភេទជជែកកំសាន្ត +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,ជួរឈរផែនទី។ DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,ព្រឹត្តិប័ត្រព័ត៌មាន apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,មិនអាចប្រើអនុសំណួរនៅក្នុងលំដាប់ដោយ @@ -361,6 +369,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,បន្ថែមជួរឈរ apps/frappe/frappe/www/contact.html,Your email address,អាសយដ្ឋានអ៊ីម៉ែលរបស់អ្នក DocType: Desktop Icon,Module,ម៉ូឌុល +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,បានធ្វើបច្ចុប្បន្នភាពកំណត់ត្រា {0} ដោយជោគជ័យចេញពី {1} ។ DocType: Notification,Send Alert On,ផ្ញើការជូនដំណឹងនៅថ្ងៃ DocType: Customize Form,"Customize Label, Print Hide, Default etc.",ប្ដូរតាមបំណងស្លាកបោះពុម្ពលាក់លំនាំដើមល apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,កំពុងពន្លាឯកសារ ... @@ -392,6 +401,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,អ្នកប្រើ {0} មិនអាចត្រូវបានលុប DocType: System Settings,Currency Precision,រូបិយប័ណ្ណជាក់លាក់ apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,ប្រតិបត្តិការមួយផ្សេងទៀតត្រូវបានរារាំងមួយនេះ។ សូមព្យាយាមម្ដងទៀតនៅពីរបីវិនាទី។ +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,សម្អាតតម្រង។ DocType: Test Runner,App,កម្មវិធី apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,ឯកសារភ្ជាប់មិនអាចភ្ជាប់ទៅឯកសារថ្មីបានទេ DocType: Chat Message Attachment,Attachment,ឯកសារភ្ជាប់ @@ -433,7 +443,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,វាលឈ្មោះកណ្តាល LDAP ។ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},ការនាំចូល {0} នៃ {1} DocType: GCalendar Account,Allow GCalendar Access,អនុញ្ញាតឱ្យចូលដំណើរការ GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} គឺជាវាលចាំបាច់មួយ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} គឺជាវាលចាំបាច់មួយ apps/frappe/frappe/templates/includes/login/login.js,Login token required,តម្រូវឱ្យចូលនិមិត្តសញ្ញា apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ចំណាត់ថ្នាក់ប្រចាំខែ៖ apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ជ្រើសរើសធាតុបញ្ជីច្រើន។ @@ -463,6 +473,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},មិនអាចតភ apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,ពាក្យដោយខ្លួនវាគឺជាការងាយស្រួលក្នុងការទាយ។ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},ការចាត់ចែងដោយស្វ័យប្រវត្តិបានបរាជ័យ៖ {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,ស្វែងរក ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,សូមជ្រើសរើសក្រុមហ៊ុន apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,រួមបញ្ចូលគ្នារវាងអាចធ្វើបានតែរវាងក្រុមហ៊ុនទៅក្រុមឬស្លឹកថ្នាំងមួយទៅថ្នាំងស្លឹក apps/frappe/frappe/utils/file_manager.py,Added {0},បន្ថែម {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,គ្មានកំណត់ត្រាដែលផ្គូផ្គង។ ស្វែងរកអ្វីដែលថ្មី @@ -475,7 +486,6 @@ DocType: Google Settings,OAuth Client ID,លេខសម្គាល់អតិ DocType: Auto Repeat,Subject,ប្រធានបទ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ត្រលប់ទៅតុ DocType: Web Form,Amount Based On Field,ចំនួនទឹកប្រាក់ដោយផ្អែកលើវាល -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,សូមរៀបចំគណនីអ៊ីមែលលំនាំដើមពីតំឡើង> អ៊ីមែល> គណនីអ៊ីមែល។ apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,អ្នកប្រើគឺជាការចាំបាច់បំផុតសម្រាប់ចែករំលែក DocType: DocField,Hidden,ដែលបានលាក់ DocType: Web Form,Allow Incomplete Forms,អនុញ្ញាតឱ្យសំណុំបែបបទមិនពេញលេញ @@ -548,6 +558,7 @@ DocType: Workflow State,barcode,លេខកូដ apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,ការប្រើពាក្យរងឬអនុគមន៍ត្រូវបានហាមឃាត់ apps/frappe/frappe/config/customization.py,Add your own translations,បន្ថែមបកប្រែផ្ទាល់ខ្លួនរបស់អ្នក DocType: Country,Country Name,ឈ្មោះប្រទេស +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,គំរូទទេ។ DocType: About Us Team Member,About Us Team Member,អំពីយើងក្រុមការងារជាសមាជិក apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","សិទ្ធិត្រូវបានកំណត់នៅលើប្រភេទឯកសារតួនាទីនិង (ហៅ DOCTYPE) ដោយកំណត់សិទ្ធិដូចជាការអានសរសេរ, បង្កើត, លុប, ដាក់ស្នើ, បោះបង់, ធ្វើវិសោធនកម្ម, របាយការណ៍, នាំចូល, នាំចេញ, បោះពុម្ពអ៊ីមែលនិងការកំណត់ដោយអ្នកប្រើអនុញ្ញាត។" DocType: Event,Wednesday,ថ្ងៃពុធ @@ -559,6 +570,7 @@ DocType: Website Settings,Website Theme Image Link,វេបសាយរូប DocType: Web Form,Sidebar Items,ធាតុរបារចំហៀង DocType: Web Form,Show as Grid,បង្ហាញជាក្រឡាចត្រង្គ apps/frappe/frappe/installer.py,App {0} already installed,កម្មវិធី {0} បានដំឡើងរួចហើយ +DocType: Energy Point Rule,Users assigned to the reference document will get points.,អ្នកប្រើដែលបានចាត់ឱ្យទៅឯកសារយោងនឹងទទួលបានពិន្ទុ។ apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,គ្មានការមើលជាមុន DocType: Workflow State,exclamation-sign,ឧទានសញ្ញា apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,ពន្លា {0} ឯកសារ។ @@ -594,6 +606,7 @@ DocType: Notification,Days Before,ប៉ុន្មានថ្ងៃមុន apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ព្រឹត្តិការណ៍ប្រចាំថ្ងៃគួរតែបញ្ចប់នៅថ្ងៃតែមួយ។ apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,កែសម្រួល ... DocType: Workflow State,volume-down,បរិមាណចុះ +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ការចូលប្រើមិនត្រូវបានអនុញ្ញាតពីអាសយដ្ឋាន IP នេះទេ។ apps/frappe/frappe/desk/reportview.py,No Tags,គ្មានស្លាក DocType: Email Account,Send Notification to,ផ្ញើការជូនដំណឹងទៅ DocType: DocField,Collapsible,ការដួលរលំ @@ -649,6 +662,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,អ្នកអភិវឌ្ឍ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,បានបង្កើតកំណត់ 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,ភាសាបោះពុម្ពលំនាំដើម។ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,បុព្វបុរសនៃ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ជា Root {0} មិនអាចត្រូវបានលុប @@ -690,6 +704,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",គោលដៅ = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,ម៉ាស៊ីន +DocType: Data Import Beta,Import File,នាំចូលឯកសារ។ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,ជួរឈរ {0} មានរួចហើយ។ DocType: ToDo,High,ឧត្តម apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,ព្រឹត្តិការណ៍ថ្មី @@ -718,8 +733,6 @@ DocType: User,Send Notifications for Email threads,ផ្ញើការជូ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,សាស្រ្តាចារ្យ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,មិននៅក្នុងរបៀបអ្នកអភិវឌ្ឍ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ការបម្រុងទុកឯកសារគឺរួចរាល់ហើយ -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",ពិន្ទុអតិបរិមាត្រូវបានអនុញ្ញាតបន្ទាប់ពីគុណនឹងចំនុចគុណ (កំណត់ចំណាំៈចំពោះការកំណត់តម្លៃដែលមិនបានកំណត់គឺ ០) DocType: DocField,In Global Search,នៅក្នុងការស្វែងរកសកល DocType: System Settings,Brute Force Security,សន្ដិសុខកម្លាំង Brute DocType: Workflow State,indent-left,បន្ទាត់ខាងឆ្វេង @@ -761,6 +774,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',អ្នកប្រើ '{0}' ដែលមានតួនាទីរួចទៅហើយ "{1} ' DocType: System Settings,Two Factor Authentication method,វិធីសាស្ត្រផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវពីរ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ដំបូងកំណត់ឈ្មោះនិងរក្សាទុកកំណត់ត្រា។ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,៥ កំណត់ត្រា។ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ចែករំលែកជាមួយនឹង {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ឈប់ជាវ DocType: View Log,Reference Name,ឈ្មោះឯកសារយោង @@ -809,6 +823,8 @@ 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,តាមដានស្ថានភាពអ៊ីម៉ែល DocType: Note,Notify Users On Every Login,ជូនដំណឹងអ្នកប្រើប្រាស់នៅលើការចូលជារៀងរាល់ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,មិនអាចផ្គូផ្គងជួរឈរ {0} ជាមួយវាលណាមួយទេ។ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,បានធ្វើបច្ចុប្បន្នភាពកំណត់ត្រា {0} ដោយជោគជ័យ។ DocType: PayPal Settings,API Password,ពាក្យសម្ងាត់ API របស់ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,បញ្ចូលម៉ូឌុល python ឬជ្រើសប្រភេទឧបករណ៍ភ្ជាប់ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname សម្រាប់មិនបានកំណត់វាលផ្ទាល់ខ្លួន @@ -837,9 +853,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,តម្លៃជាបានផ្លាស់ប្តូរ apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},ស្ទួនឈ្មោះ {0} {1} -DocType: Email Queue,Retry,ព្យាយាមម្តងទៀត +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,ព្យាយាមម្តងទៀត +DocType: Contact Phone,Number,ចំនួន DocType: Web Form Field,Web Form Field,វាលសំណុំបែបបទបណ្តាញ apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,អ្នកមានសារថ្មីពី: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,កែសម្រួលរបស់ HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,សូមបញ្ចូល URL ប្ដូរទិស apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -864,7 +882,7 @@ DocType: Notification,View Properties (via Customize Form),លក្ខណៈស apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ចុចលើឯកសារដើម្បីជ្រើសរើសវា។ DocType: Note Seen By,Note Seen By,ចំណាំមើលឃើញដោយ apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,សូមព្យាយាមដើម្បីប្រើលំនាំក្តារចុចច្រើនទៀតដោយធ្វើការបង្វិលយូរជាង -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,តារាងពិន្ទុ +,LeaderBoard,តារាងពិន្ទុ DocType: DocType,Default Sort Order,លំដាប់តម្រៀបលំនាំដើម។ DocType: Address,Rajasthan,រដ្ឋ Rajasthan DocType: Email Template,Email Reply Help,អ៊ីមែលជំនួយជំនួយ @@ -899,6 +917,7 @@ apps/frappe/frappe/utils/data.py,Cent,ភាគ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,តែងអ៊ីមែល apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","អាមេរិកសម្រាប់លំហូរការងារ (ឧសេចក្តីព្រាងអនុម័ត, លុបចោល) ។" DocType: Print Settings,Allow Print for Draft,អនុញ្ញាតឱ្យបោះពុម្ពសម្រាប់សេចក្តីព្រាង +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/link_selector.js,Set Quantity,កំណត់បរិមាណ apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ដាក់ស្នើឯកសារនេះដើម្បីបញ្ជាក់ DocType: Contact,Unsubscribed,ជាវ @@ -930,6 +949,7 @@ DocType: LDAP Settings,Organizational Unit for Users,អង្គភាពរៀ ,Transaction Log Report,របាយការណ៍កំណត់ហេតុប្រតិបត្តិការ DocType: Custom DocPerm,Custom DocPerm,DocPerm ផ្ទាល់ខ្លួន DocType: Newsletter,Send Unsubscribe Link,ផ្ញើឈប់ជាវតំណ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,មានកំណត់ត្រាភ្ជាប់មួយចំនួនដែលត្រូវការបង្កើតមុនពេលដែលយើងអាចនាំចូលឯកសាររបស់អ្នក។ តើអ្នកចង់បង្កើតកំណត់ត្រាបាត់ដូចខាងក្រោមដោយស្វ័យប្រវត្តិទេ? DocType: Access Log,Method,វិធីសាស្រ្ត DocType: Report,Script Report,របាយការណ៍ស្គ្រីប DocType: OAuth Authorization Code,Scopes,វិសាលភាព @@ -970,6 +990,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,បានផ្ទុកឡើងដោយជោគជ័យ។ apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,អ្នកត្រូវបានភ្ជាប់អ៊ីនធឺណិត។ DocType: Social Login Key,Enable Social Login,បើកដំណើរការចូលសង្គម +DocType: Data Import Beta,Warnings,ការព្រមាន។ DocType: Communication,Event,ព្រឹត្តការណ៍ apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","នៅលើ {0}, {1} បានសរសេរថា:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,មិនអាចលុបវាលស្តង់ដារ។ អ្នកអាចលាក់វាប្រសិនបើអ្នកចង់បាន @@ -1025,6 +1046,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,បញ្ DocType: Kanban Board Column,Blue,ពណ៌ខៀវ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,ការប្ដូរតាមបំណងទាំងអស់នឹងត្រូវបានយកចេញ។ សូមបញ្ជាក់។ DocType: Page,Page HTML,HTML ដែលទំព័រ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,នាំចេញជួរដេក Errored ។ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ឈ្មោះក្រុមមិនអាចទទេបានទេ។ apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,ថ្នាំងបន្ថែមទៀតអាចត្រូវបានបង្កើតក្រោមការថ្នាំងប្រភេទ 'ក្រុម DocType: SMS Parameter,Header,បឋមកថា @@ -1069,7 +1091,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,ការកំណត apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ជ្រើសយកមួយ។ DocType: Data Export,Filter List,បញ្ជីតម្រង DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,ពាក្យសម្ងាត់របស់អ្នកត្រូវបានធ្វើឱ្យទាន់សម័យ។ ខាងក្រោមនេះគឺជាពាក្យសម្ងាត់ថ្មីរបស់អ្នក DocType: Email Account,Auto Reply Message,សារឆ្លើយតបដោយស្វ័យប្រវត្តិ DocType: Data Migration Mapping,Condition,លក្ខខណ្ឌ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ម៉ោងមុន @@ -1078,7 +1099,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,លេខសម្គាល់អ្នកប្រើ DocType: Communication,Sent,ដែលបានផ្ញើ DocType: Address,Kerala,រដ្ឋ Kerala -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,រដ្ឋបាល។ DocType: User,Simultaneous Sessions,សម័យដំណាលគ្នា DocType: Social Login Key,Client Credentials,សារតាំងរបស់ម៉ាស៊ីនភ្ញៀវ @@ -1110,7 +1130,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},បា apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,អនុបណ្ឌិត DocType: DocType,User Cannot Create,អ្នកប្រើដែលមិនអាចបង្កើត apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,ធ្វើបានជោគជ័យ។ -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,ថត {0} មិនមាន apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ការចូលដំណើរការ Dropbox ត្រូវបានអនុម័ត! DocType: Customize Form,Enter Form Type,បញ្ចូលប្រភេទសំណុំបែបបទ DocType: Google Drive,Authorize Google Drive Access,ផ្តល់សិទ្ធិចូលប្រើថាសហ្គូហ្គល។ @@ -1118,7 +1137,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,គ្មានកំណត់ត្រាដែលបានដាក់ស្លាក។ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,យកវាល apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,អ្នកមិនត្រូវបានតភ្ជាប់អ៊ីនធឺណិត។ ព្យាយាមម្តងទៀតពេលខ្លះ។ -DocType: User,Send Password Update Notification,ផ្ញើការជូនដំណឹងធ្វើឱ្យទាន់សម័យពាក្យសម្ងាត់ apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","អនុញ្ញាតឱ្យចង្អុលបង្ហាញ, ចង្អុលបង្ហាញ។ ចូរប្រយ័ត្ន!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ទ្រង់ទ្រាយប្ដូរតាមបំណងសម្រាប់ការបោះពុម្ព, អ៊ីម៉ែល" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},ផលបូកនៃ {0} @@ -1202,6 +1220,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,លេខកូដ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,សមាហរណកម្មទំនាក់ទំនង Google ត្រូវបានបិទ។ DocType: Assignment Rule,Description,ការពិពណ៌នាសង្ខេប DocType: Print Settings,Repeat Header and Footer in PDF,ធ្វើម្តងទៀតបឋមកថានិងបាតកថាជា PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,ការបរាជ័យ។ DocType: Address Template,Is Default,ជាលំនាំដើម DocType: Data Migration Connector,Connector Type,ប្រភេទឧបករណ៍ភ្ជាប់ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,ឈ្មោះជួរឈរមិនអាចទទេ @@ -1214,6 +1233,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,ចូលទៅក 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,ជួរឈរដែលមានមូលដ្ឋានលើ +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/model/document.py,Action Failed,សកម្មភាពបរាជ័យ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,សម្រាប់អ្នកប្រើ @@ -1264,6 +1284,7 @@ DocType: Print Settings,Enable Raw Printing,បើកដំណើរការក DocType: Website Route Redirect,Source,ប្រភព apps/frappe/frappe/templates/includes/list/filters.html,clear,ការច្បាស់លាស់ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,ចប់ហើយ។ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,តំឡើង> អ្នកប្រើប្រាស់។ DocType: Prepared Report,Filter Values,តម្លៃតម្រង DocType: Communication,User Tags,ស្លាករបស់អ្នកប្រើ DocType: Data Migration Run,Fail,បរាជ័យ @@ -1319,6 +1340,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,ធ ,Activity,សកម្មភាព DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",ជំនួយ: ដើម្បីភ្ជាប់ទៅនឹងកំណត់ត្រាមួយផ្សេងទៀតនៅក្នុងប្រព័ន្ធប្រើ "សំណុំបែបបទ / ចំណាំ / [ឈ្មោះចំណាំ]" ជាតំណ URL ។ (កុំប្រើ "http: //") DocType: User Permission,Allow,អនុញ្ញាត +DocType: Data Import Beta,Update Existing Records,ធ្វើបច្ចុប្បន្នភាពកំណត់ត្រាដែលមានស្រាប់។ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,សូមឱ្យយើងជៀសវាងពាក្យម្តងហើយម្តងទៀតនិងតួអក្សរ DocType: Energy Point Rule,Energy Point Rule,វិធានចំណុចថាមពល។ DocType: Communication,Delayed,បានពន្យាពេល @@ -1331,9 +1353,7 @@ DocType: Milestone,Track Field,តាមដានវាល។ DocType: Notification,Set Property After Alert,កំណត់អចលនទ្រព្យបន្ទាប់ពីការព្រមាន apps/frappe/frappe/config/customization.py,Add fields to forms.,បន្ថែមវាលទៅទម្រង់។ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,មើលទៅដូចជាមានអ្វីមួយគឺជាការខុសដោយការកំណត់រចនាសម្ព័ន្ធលើ Paypal របស់តំបន់បណ្ដាញនេះ។ -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/sidebar/review.js,Add Review,បន្ថែមការពិនិត្យឡើងវិញ។ -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ទំហំអក្សរ (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,មានតែ DocTypes ស្តង់ដារប៉ុណ្ណោះដែលត្រូវបានអនុញ្ញាតិអោយប្តូរតាមទម្រង់បែបបទផ្ទាល់ខ្លួន។ DocType: Email Account,Sendgrid,Sendgrid @@ -1369,6 +1389,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ត apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,សូមអភ័យទោស! អ្នកមិនអាចលុបមតិបានបង្កើតដោយស្វ័យប្រវត្តិ DocType: Google Settings,Used For Google Maps Integration.,ប្រើសម្រាប់ Google ផែនទីសមាហរណកម្ម។ apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,ចង្អុលបង្ហាញសេចក្តីយោង +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,គ្មានកំណត់ត្រាណាមួយនឹងត្រូវនាំចេញទេ។ DocType: User,System User,អ្នកប្រើប្រព័ន្ធ DocType: Report,Is Standard,គឺ Standard DocType: Desktop Icon,_report,_របាយការណ៏ @@ -1382,6 +1403,7 @@ DocType: Workflow State,minus-sign,ដកសញ្ញា apps/frappe/frappe/public/js/frappe/request.js,Not Found,រកមិនឃើញ apps/frappe/frappe/www/printview.py,No {0} permission,គ្មានការអនុញ្ញាត {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,នាំចេញសិទ្ធិផ្ទាល់ខ្លួន +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,មិនមែនមុខទំនិញ DocType: Data Export,Fields Multicheck,វាលច្រើន DocType: Activity Log,Login,ចូល DocType: Web Form,Payments,ការទូទាត់ @@ -1438,8 +1460,9 @@ DocType: Address,Postal,ប្រៃសណីយ DocType: Email Account,Default Incoming,លំនាំដើមចូល DocType: Workflow State,repeat,ការធ្វើឡើងវិញ DocType: Website Settings,Banner,បដា +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},តម្លៃត្រូវតែជាផ្នែកមួយនៃ {0} DocType: Role,"If disabled, this role will be removed from all users.","ប្រសិនបើអ្នកបានបិទ, តួនាទីនេះនឹងត្រូវបានយកចេញពីអ្នកប្រើទាំងអស់។" -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,ចូលទៅកាន់ {0} បញ្ជី។ +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,ជំនួយអំពីស្វែងរក DocType: Milestone,Milestone Tracker,កម្មវិធីតាមដានមីល្លិន។ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,បានចុះឈ្មោះប៉ុន្តែពិការ @@ -1453,6 +1476,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,ឈ្មោះវាល DocType: DocType,Track Changes,តាមដានការផ្លាស់ប្តូរ DocType: Workflow State,Check,ពិនិត្យ DocType: Chat Profile,Offline,ក្រៅបណ្តាញ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},បាននាំចូលដោយជោគជ័យ {0} DocType: User,API Key,កូនសោ API DocType: Email Account,Send unsubscribe message in email,ផ្ញើសារជាវជាប្រចាំនៅក្នុងអ៊ីមែល apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,កែសម្រួលចំណងជើង @@ -1479,11 +1503,11 @@ 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/form/footer/timeline.js,changed value of {0} {1},ការផ្លាស់ប្តូរតម្លៃនៃ {0} {1} 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,ទំព័រសរុប apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} បានកំណត់តម្លៃលំនាំដើមរួចហើយសម្រាប់ {1} ។ -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                    No results found for '

                                                    ,

                                                    រកមិនឃើញលទ្ធផលសម្រាប់ '

                                                    DocType: DocField,Attach Image,ភ្ជាប់រូបភាព DocType: Workflow State,list-alt,បញ្ជីធៀបទៅនឹងនីវ៉ូទឹក apps/frappe/frappe/www/update-password.html,Password Updated,ពាក្យសម្ងាត់ដែលបានធ្វើបច្ចុប្បន្នភាព @@ -1503,8 +1527,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,តំឡើង> សិទ្ធិអ្នកប្រើប្រាស់។ DocType: LDAP Group Mapping,LDAP Group Mapping,ផែនទីក្រុមអិល។ ឌី។ ភី DocType: Dashboard Chart,Chart Options,ជម្រើសគំនូសតាង។ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,ជួរឈរគ្មានចំណងជើង។ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} ពី {1} ទៅ {2} នៅក្នុងជួរដេក # {3} DocType: Communication,Expired,ផុតកំណត់ apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,ហាក់ដូចជានិមិត្តសញ្ញាដែលអ្នកកំពុងប្រើគឺមិនត្រឹមត្រូវ! @@ -1514,6 +1540,7 @@ DocType: DocType,System,របស់ប្រព័ន្ធ DocType: Web Form,Max Attachment Size (in MB),ទំហំឯកសារភ្ជាប់អតិបរមា (នៅក្នុងមេកាបៃ) apps/frappe/frappe/www/login.html,Have an account? Login,មានគណនីទេឬ? ចូល DocType: Workflow State,arrow-down,ព្រួញចុះ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},ជួរដេក {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},អ្នកប្រើមិនត្រូវបានអនុញ្ញាតឱ្យលុប {0} {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} នៃ {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,បន្ទាន់សម័យចុងក្រោយនៅថ្ងៃទី @@ -1530,6 +1557,7 @@ DocType: Custom Role,Custom Role,តួនាទីផ្ទាល់ខ្ល apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,ទំព័រដើម / ការធ្វើតេស្តថត 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,បញ្ចូលពាក្យសម្ងាត់របស់អ្នក DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ចូលដំណើរការសម្ងាត់ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ចាំបាច់) 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.,រកមិនឃើញទិន្នន័យនៅក្នុងឯកសារ។ សូមភ្ជាប់ឯកសារថ្មីឡើងវិញជាមួយទិន្នន័យ។ @@ -1600,6 +1628,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,បង្ apps/frappe/frappe/desk/form/assign_to.py,New Message,សារថ្មី DocType: File,Preview HTML,មើលជាមុនរបស់ HTML DocType: Desktop Icon,query-report,របាយការណ៍សំណួរ +DocType: Data Import Beta,Template Warnings,ការព្រមានគំរូ។ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,តម្រងដែលបានរក្សាទុក DocType: DocField,Percent,ភាគរយ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,សូមកំណត់តម្រង @@ -1621,6 +1650,7 @@ DocType: Custom Field,Custom,ផ្ទាល់ខ្លួន DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",ប្រសិនបើបើកដំណើរការអ្នកប្រើដែលចូលពីអាស័យដ្ឋាន IP ដែលបានដាក់កម្រិតនឹងមិនត្រូវបានជូនដំណឹងសម្រាប់ Two Factor Auth ទេ DocType: Auto Repeat,Get Contacts,ទទួលបានទំនាក់ទំនង apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ប្រកាសបានដាក់នៅក្រោម {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,រំលងជួរឈរគ្មានចំណងជើង។ DocType: Notification,Send alert if date matches this field's value,ផ្ញើការជូនដំណឹងប្រសិនបើតម្លៃរបស់វាលកាលបរិច្ឆេទផ្គូផ្គងនេះ DocType: Workflow,Transitions,ដំណើរផ្លាស់ប្តូរ apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} ទៅ {2} @@ -1644,6 +1674,7 @@ DocType: Workflow State,step-backward,ជំហានថយក្រោយ apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,សូមកំណត់កូនសោកំណត់រចនាសម្ព័ន្ធការចូលដំណើរការ Dropbox ក្នុងតំបន់របស់អ្នក apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,លុបកំណត់ត្រានេះដើម្បីឱ្យផ្ញើទៅកាន់អាសយដ្ឋានអ៊ីមែលនេះ +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","ប្រសិនបើច្រកមិនស្តង់ដារ (ឧ។ POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,ប្ដូរផ្លូវកាត់តាមបំណង។ apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,មានតែវាលជាចាំបាច់គឺចាំបាច់សម្រាប់កំណត់ត្រាថ្មីមួយ។ អ្នកអាចលុបជួរឈរដែលមិនចាំបាច់ប្រសិនបើអ្នកចង់។ apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,បង្ហាញសកម្មភាពច្រើនទៀត។ @@ -1751,6 +1782,7 @@ 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 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,លិខិត DocType: DocType,"Naming Options:
                                                    1. field:[fieldname] - By Field
                                                    2. naming_series: - By Naming Series (field called naming_series must be present
                                                    3. Prompt - Prompt user for a name
                                                    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                    5. @@ -1764,6 +1796,7 @@ DocType: GCalendar Account,Next Sync Token,សមកាលកម្មសំង DocType: Energy Point Settings,Energy Point Settings,ការកំណត់ចំណុចថាមពល។ DocType: Async Task,Succeeded,ទទួលបានជោគជ័យ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},វាលដែលចាំបាច់តម្រូវឱ្យមាននៅ {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                      No results found for '

                                                      ,

                                                      រកមិនឃើញលទ្ធផលសម្រាប់ '

                                                      apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,សិទ្ធិកំណត់ឡើងសម្រាប់ {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,អ្នកប្រើនិងសិទ្ធិ DocType: S3 Backup Settings,S3 Backup Settings,ការកំណត់បម្រុងទុក S3 @@ -1834,6 +1867,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ក្នុង DocType: Notification,Value Change,តម្លៃរបស់ការផ្លាស់ប្តូរ DocType: Google Contacts,Authorize Google Contacts Access,ផ្តល់សិទ្ធិចូលប្រើទំនាក់ទំនង Google ។ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,បង្ហាញតែវាលលេខពីរបាយការណ៍ +DocType: Data Import Beta,Import Type,ប្រភេទនាំចូល។ DocType: Access Log,HTML Page,ទំព័រ HTML ។ DocType: Address,Subsidiary,ក្រុមហ៊ុនបុត្រសម្ព័ន្ធ apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,ការព្យាយាមភ្ជាប់ទៅ QZ ថាស ... @@ -1844,7 +1878,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,ម៉ា DocType: Custom DocPerm,Write,ការសរសេរ apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,មានតែអ្នកគ្រប់គ្រងត្រូវបានអនុញ្ញាតឱ្យបង្កើតសំណួរ / របាយការណ៏ស្គ្រីប apps/frappe/frappe/public/js/frappe/form/save.js,Updating,បង្ដើតថ្មី -DocType: File,Preview,មើលជាមុន +DocType: Data Import Beta,Preview,មើលជាមុន apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",វាល "តម្លៃ" គឺជាចាំបាច់។ សូមបញ្ជាក់តម្លៃដែលនឹងត្រូវបានធ្វើឱ្យទាន់សម័យ DocType: Customize Form,Use this fieldname to generate title,ប្រើ fieldname នេះដើម្បីបង្កើតចំណងជើង apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,នាំចូលអ៊ីមែលពី @@ -1927,6 +1961,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,កម្ម DocType: Social Login Key,Client URLs,URL ម៉ាស៊ីនភ្ញៀវ apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,ពមួយចំនួនត្រូវបានបាត់ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} បានបង្កើតដោយជោគជ័យ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","រំលង {0} នៃ {1}, {2}" DocType: Custom DocPerm,Cancel,បោះបង់ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,លុបច្រើន។ apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,ឯកសារ {0} មិនមាន @@ -1954,7 +1989,6 @@ DocType: GCalendar Account,Session Token,សញ្ញាតំណាងសម័ DocType: Currency,Symbol,និមិត្តសញ្ញា apps/frappe/frappe/model/base_document.py,Row #{0}:,ជួរដេក # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,បញ្ជាក់ការលុបទិន្នន័យ។ -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,ពាក្យសម្ងាត់ថ្មីតាមអ៊ីមែលនៅ apps/frappe/frappe/auth.py,Login not allowed at this time,មិនអនុញ្ញាតឱ្យចូលនៅពេលនេះ DocType: Data Migration Run,Current Mapping Action,សកម្មភាពផ្គូផ្គងបច្ចុប្បន្ន DocType: Dashboard Chart Source,Source Name,ឈ្មោះប្រភព @@ -1967,6 +2001,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ព apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,តាមដានដោយ DocType: LDAP Settings,LDAP Email Field,បម្រើ LDAP វាលអ៊ីមែល apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} បញ្ជី +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,នាំចេញកំណត់ត្រា {0} ។ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,រួចហើយនៅក្នុងរបស់អ្នកប្រើដើម្បីធ្វើបញ្ជី DocType: User Email,Enable Outgoing,អនុញ្ញាតឱ្យចេញ DocType: Address,Fax,ទូរសារ @@ -2024,8 +2059,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,បោះពុម្ពឯកសារ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,លោតទៅវាល។ DocType: Contact Us Settings,Forward To Email Address,បញ្ចូនបន្តទៅអាសយដ្ឋានអ៊ីម៉ែ +DocType: Contact Phone,Is Primary Phone,គឺជាទូរស័ព្ទបឋម។ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,សូមផ្ញើអ៊ីមែលទៅ {0} ដើម្បីភ្ជាប់វានៅទីនេះ។ DocType: Auto Email Report,Weekdays,ថ្ងៃធ្វើការ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} កំណត់ត្រានឹងត្រូវបាននាំចេញ។ apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,វាលចំណងជើងត្រូវតែជា fieldname ដែលមានសុពលភាព DocType: Post Comment,Post Comment,ដាក់មតិយោបល់ apps/frappe/frappe/config/core.py,Documents,ឯកសារ @@ -2043,7 +2080,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",វាលនេះនឹងបង្ហាញតែប៉ុណ្ណោះប្រសិនបើបានកំណត់នៅទីនេះ fieldname តម្លៃឬច្បាប់ដែលមាននេះគឺជាការពិត (ឧទាហរណ៍): myfield eval: doc.myfield == 'តម្លៃរបស់ខ្ញុំ' eval: doc.age> 18 DocType: Social Login Key,Office 365,ការិយាល័យ 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ថ្ងៃនេះ +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",នៅពេលដែលអ្នកបានកំណត់នេះអ្នកប្រើនឹងត្រូវបានចូលដំណើរការឯកសារដែលអាច (ឧ។ ប្រកាសកំណត់ហេតុបណ្ដាញ) ដែលជាកន្លែងដែលតំណនេះមាន (អ្នកសរសេរប្លុកឧ។ ) ។ +DocType: Data Import Beta,Submit After Import,ដាក់ស្នើបន្ទាប់ពីនាំចូល។ DocType: Error Log,Log of Scheduler Errors,កំណត់ហេតុនៃកំហុសកម្មវិធីកំណត់ពេល DocType: User,Bio,ជីវប្រវត្តិ DocType: OAuth Client,App Client Secret,កម្មវិធីម៉ាស៊ីនភ្ញៀវសម្ងាត់ @@ -2062,10 +2101,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,បិទតំណចុះឈ្មោះអតិថិជននៅក្នុងទំព័រចូល apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,ដែលបានផ្ដល់ដើម្បី / ម្ចាស់ DocType: Workflow State,arrow-left,ព្រួញឆ្វេង +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,នាំចេញកំណត់ត្រាចំនួន ១ ។ DocType: Workflow State,fullscreen,ពេញអេក្រង់ DocType: Chat Token,Chat Token,លេខសំងាត់ជជែក apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,បង្កើតគំនូសតាង។ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,កុំនាំចូល។ DocType: Web Page,Center,មជ្ឈមណ្ឌល DocType: Notification,Value To Be Set,តម្លៃត្រូវបានកំណត់ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},កែសម្រួល {0} @@ -2085,6 +2126,7 @@ DocType: Print Format,Show Section Headings,បង្ហាញក្បាលផ DocType: Bulk Update,Limit,ដែនកំណត់ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},យើងបានទទួលសំណើលុបទិន្នន័យ {0} ដែលទាក់ទងនឹង៖ {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,បន្ថែមផ្នែកថ្មី +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,កំណត់ត្រាត្រង។ apps/frappe/frappe/www/printview.py,No template found at path: {0},គ្មានរកឃើញនៅផ្លូវពុម្ព: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,គ្មានគណនីអ៊ីម៉ែល DocType: Comment,Cancelled,លុបចោល @@ -2170,10 +2212,13 @@ 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} 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,នឹងមានលេខសម្គាល់ការចូលរបស់អ្នក +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,ប្រភេទឯកសារស្វែងរកសកលកំណត់ឡើងវិញ។ ,Lead Conversion Time,នាំមុខការប្រែចិត្តជឿ apps/frappe/frappe/desk/page/activity/activity.js,Build Report,កសាងរបាយការណ៍ DocType: Note,Notify users with a popup when they log in,ជូនដំណឹងអ្នកប្រើដែលមានលេចឡើងនៅពេលដែលពួកគេចូល +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,ម៉ូឌុលស្នូល {0} មិនអាចត្រូវបានស្វែងរកនៅក្នុងការស្វែងរកសកលទេ។ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,បើកជជែក។ apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} មិនមានជ្រើសគោលដៅថ្មីដើម្បីបញ្ចូលចូលគ្នា DocType: Data Migration Connector,Python Module,ម៉ូឌុល Python @@ -2190,8 +2235,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,បិទការ 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,តំឡើង> សិទ្ធិអ្នកប្រើប្រាស់។ -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,ធ្វើឱ្យទាន់សម័យ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,ធ្វើឱ្យទាន់សម័យ DocType: Transaction Log,Transaction Hash,ប្រតិបត្តិការហាប់ DocType: Error Snapshot,Snapshot View,រូបថតមើល apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,សូមរក្សាទុកព្រឹត្តិប័ត្រព័ត៌មានមុនពេលបញ្ជូន @@ -2219,7 +2263,6 @@ DocType: SMS Settings,SMS Gateway URL,URL ដែលបានសារ SMS Gatewa apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} មិនអាចត្រូវបាន "{2}" ។ វាគួរតែជាផ្នែកមួយនៃ "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ទទួលបានដោយ {0} តាមរយៈច្បាប់ស្វ័យប្រវត្តិ {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ឬ {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,ធ្វើឱ្យទាន់សម័យពាក្យសម្ងាត់ DocType: Workflow State,trash,ធុងសំរាម DocType: System Settings,Older backups will be automatically deleted,បម្រុងទុកចាស់ជាងនេះនឹងត្រូវបានលុបដោយស្វ័យប្រវត្តិ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,លេខសម្គាល់ការចូលប្រើមិនត្រឹមត្រូវឬកូនសោសម្ងាត់។ @@ -2246,6 +2289,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,រ DocType: Address,Preferred Shipping Address,ការដឹកជញ្ជូនអាសយដ្ឋានដែលពេញចិត្ត apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,ជាមួយនឹងក្បាលលិខិត apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} បានបង្កើតឡើងនេះ {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីមែលមិនត្រូវបានរៀបចំទេ។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីពីតំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល។ DocType: S3 Backup Settings,eu-west-1,អឺ - ខាងលិច -១ ។ DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",បើធីកនេះជួរដេកដែលមានទិន្នន័យត្រឹមត្រូវនឹងត្រូវបាននាំចូលហើយជួរដេកមិនត្រឹមត្រូវនឹងត្រូវបានបោះចោលទៅក្នុងឯកសារថ្មីមួយសម្រាប់ឱ្យអ្នកនាំចូលនៅពេលក្រោយ។ apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ឯកសារតែមួយគត់ដែលអាចកែបានដោយអ្នកប្រើនៃតួនាទី @@ -2272,6 +2316,7 @@ DocType: Custom Field,Is Mandatory Field,គឺជាវាលដោយបង្ DocType: User,Website User,វេបសាយរបស់អ្នកប្រើប្រាស់ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,ជួរឈរខ្លះអាចនឹងត្រូវកាត់ចេញនៅពេលបោះពុម្ពជា PDF ។ ព្យាយាមរក្សាចំនួនជួរឈរក្រោម ១០ ។ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,មិនស្មើ +DocType: Data Import Beta,Don't Send Emails,កុំផ្ញើអ៊ីមែល។ DocType: Integration Request,Integration Request Service,សេវាសំណើសមាហរណកម្ម DocType: Access Log,Access Log,កំណត់ហេតុចូលដំណើរការ។ DocType: Website Script,Script to attach to all web pages.,ស្គ្រីបដើម្បីភ្ជាប់ទៅទំព័រតំបន់បណ្ដាញទាំងអស់។ @@ -2310,6 +2355,7 @@ DocType: Contact,Passive,អកម្ម DocType: Auto Repeat,Accounts Manager,ការគ្រប់គ្រងគណនី apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},កិច្ចការសម្រាប់ {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,ការបង់ប្រាក់របស់អ្នកត្រូវបានលុបចោល។ +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,សូមរៀបចំគណនីអ៊ីមែលលំនាំដើមពីតំឡើង> អ៊ីមែល> គណនីអ៊ីមែល។ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,ជ្រើសប្រភេទឯកសារ apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,មើលទាំងអស់ DocType: Help Article,Knowledge Base Editor,កម្មវិធីនិពន្ធចំនេះដឹងមូលដ្ឋាន @@ -2342,6 +2388,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,ទិន្នន័យដែលបាន apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,ស្ថានភាពឯកសារ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,ទាមទារការយល់ព្រម។ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,កំណត់ត្រាខាងក្រោមចាំបាច់ត្រូវបង្កើតមុនពេលដែលយើងអាចនាំចូលឯកសាររបស់អ្នក។ DocType: OAuth Authorization Code,OAuth Authorization Code,កូដអនុញ្ញាត OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,មិនអនុញ្ញាតឱ្យនាំចូល DocType: Deleted Document,Deleted DocType,DOCTYPE បានលុប @@ -2395,6 +2442,7 @@ DocType: GCalendar Settings,Google API Credentials,Google API Credentials apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ចាប់ផ្ដើមសម័យបានបរាជ័យ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ចាប់ផ្ដើមសម័យបានបរាជ័យ apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},អ៊ីម៉ែលនេះបានផ្ញើទៅ {0} និងបានចម្លងទៅ {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},បានបញ្ជូនឯកសារនេះ {0} DocType: Workflow State,th,ទី DocType: Social Login Key,Provider Name,ឈ្មោះក្រុមហ៊ុនផ្ដល់ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},បង្កើតថ្មីមួយ {0} @@ -2403,6 +2451,7 @@ DocType: GCalendar Account,GCalendar Account,គណនី GCalendar DocType: Email Rule,Is Spam,នេះគឺជាសារឥតបានការ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},របាយការណ៍ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ការបើកចំហរ {0} +DocType: Data Import Beta,Import Warnings,នាំចូលការព្រមាន។ DocType: OAuth Client,Default Redirect URI,ប្ដូរទិស URI លំនាំដើម DocType: Auto Repeat,Recipients,អ្នកទទួល DocType: System Settings,Choose authentication method to be used by all users,ជ្រើសវិធីសាស្ត្រផ្ទៀងផ្ទាត់ដែលត្រូវប្រើដោយអ្នកប្រើទាំងអស់ @@ -2519,6 +2568,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,របាយ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,កំហុស Slug Webhook DocType: Email Flag Queue,Unread,មិនទាន់អាន DocType: Bulk Update,Desk,តុ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},រំលងជួរឈរ {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),តម្រងត្រូវតែ tuple ឬបញ្ជី (នៅក្នុងបញ្ជីមួយ) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,សរសេរសំណួរ SELECT ។ លទ្ធផលចំណាំមិនត្រូវ paged (ទិន្នន័យទាំងអស់ត្រូវបានបញ្ជូនក្នុងពេលតែមួយ) ។ DocType: Email Account,Attachment Limit (MB),ដែនកំណត់ឯកសារភ្ជាប់ (មេកាបៃ) @@ -2533,6 +2583,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,បង្កើតថ្មី DocType: Workflow State,chevron-down,ក្រុមហ៊ុន Chevron ចុះ apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),អ៊ីម៉ែលមិនត្រូវបានបញ្ជូនទៅនឹង {0} (មិនជាវ / បិទ) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,ជ្រើសរើសវាលដើម្បីនាំចេញ។ DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,តម្លៃប្រភាគតូចជាងគេបំផុតរូបិយប័ណ្ណ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,កំពុងរៀបចំរបាយការណ៍។ @@ -2541,6 +2592,7 @@ DocType: Workflow State,th-list,ទីបញ្ជី DocType: Web Page,Enable Comments,អនុញ្ញាតយោបល់ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,កំណត់ត្រា DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),ដាក់កម្រិតអ្នកប្រើពីអាសយដ្ឋាន IP នេះប៉ុណ្ណោះ។ អាសយដ្ឋាន IP ច្រើនអាចត្រូវបានបន្ថែមដោយបំបែកដោយប្រើក្បៀស។ អាសយដ្ឋាន IP ផងដែរព្រមទទួលយកផ្នែកដូចជា (111.111.111) +DocType: Data Import Beta,Import Preview,ការនាំចូលការមើលជាមុន។ DocType: Communication,From,ចាប់ពី apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,ជ្រើសថ្នាំងជាក្រុមមួយជាលើកដំបូង។ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},សែ្វងរកនៅ {0} {1} @@ -2639,6 +2691,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,រវាង DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,បានដាក់ជាជួរ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,រៀបចំ> ទម្រង់បែបបទតាមតម្រូវការ។ DocType: Braintree Settings,Use Sandbox,ប្រើសេនបក់ apps/frappe/frappe/utils/goal.py,This month,ខែនេះ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,ញូទ្រង់ទ្រាយបោះពុម្ពផ្ទាល់ខ្លួន @@ -2654,6 +2707,7 @@ DocType: Session Default,Session Default,លំនាំដើមសម័យ។ DocType: Chat Room,Last Message,សារចុងក្រោយ DocType: OAuth Bearer Token,Access Token,ការចូលដំណើរការ Token DocType: About Us Settings,Org History,org ប្រវត្តិ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,នៅសល់ប្រហែល {0} នាទីទៀត។ DocType: Auto Repeat,Next Schedule Date,កាលបរិច្ឆេទកាលវិភាគបន្ទាប់ DocType: Workflow,Workflow Name,ឈ្មោះលំហូរការងារ DocType: DocShare,Notify by Email,ជូនដំណឹងដោយអ៊ីម៉ែល @@ -2683,6 +2737,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,អ្នកនិពន្ធ apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,បន្តការផ្ញើ apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,បើកជាថ្មី +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,បង្ហាញការព្រមាន។ apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,អ្នកប្រើប្រាស់ទិញ DocType: Data Migration Run,Push Failed,ការជំរុញបានបរាជ័យ @@ -2721,6 +2776,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ស្ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យមើលព្រឹត្តិប័ត្រ។ DocType: User,Interests,ចំណាប់អារម្មណ៍ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,សេចក្តីណែនាំអំពីការកំណត់ពាក្យសម្ងាត់ត្រូវបានគេបញ្ជូនទៅកាន់អ៊ីម៉ែលរបស់អ្នក +DocType: Energy Point Rule,Allot Points To Assigned Users,ពិន្ទុទាំងអស់ដើម្បីចាត់តាំងអ្នកប្រើប្រាស់។ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",កម្រិត 0 គឺសម្រាប់សិទ្ធិកម្រិតឯកសារ \ កម្រិតខ្ពស់សម្រាប់សិទ្ធិកម្រិតវាល។ DocType: Contact Email,Is Primary,គឺជាបឋម។ @@ -2744,6 +2800,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,គន្លឹះបោះពុម្ពផ្សាយ DocType: Stripe Settings,Publishable Key,គន្លឹះបោះពុម្ពផ្សាយ apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,ចាប់ផ្តើមនាំចូល +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,នាំចេញប្រភេទ DocType: Workflow State,circle-arrow-left,សញ្ញាព្រួញរង្វង់-ចាកចេញ DocType: System Settings,Force User to Reset Password,បង្ខំអ្នកប្រើប្រាស់ឱ្យកំណត់លេខសំងាត់ឡើងវិញ។ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",ដើម្បីទទួលបានរបាយការណ៍ថ្មីសូមចុចលើ {0} ។ @@ -2757,13 +2814,16 @@ DocType: Contact,Middle Name,ជាឈ្មោះកណ្តាល DocType: Custom Field,Field Description,វាលទិសដៅ apps/frappe/frappe/model/naming.py,Name not set via Prompt,មិនបានកំណត់តាមរយៈការពីឈ្មោះវីនដូ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ប្រអប់ទទួលអ៊ីម៉ែល +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","កំពុងធ្វើបច្ចុប្បន្នភាព {0} នៃ {1}, {2}" DocType: Auto Email Report,Filters Display,បង្ហាញតម្រង apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",វាល "ដែលបានធ្វើវិសោធនកម្ម - ត្រូវតែមានវត្តមាន" ដើម្បីធ្វើវិសោធនកម្ម។ +DocType: Contact,Numbers,លេខ។ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} បានកោតសរសើរចំពោះការងាររបស់អ្នកលើ {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,រក្សាទុកតម្រង។ DocType: Address,Plant,រោងចក្រ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ឆ្លើយតបទាំងអស់ DocType: DocType,Setup,ការដំឡើង +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,កំណត់ត្រាទាំងអស់។ DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,អាសយដ្ឋានអ៊ីមែលដែលទំនាក់ទំនងរបស់ Google នឹងត្រូវធ្វើសមកាលកម្ម។ DocType: Email Account,Initial Sync Count,ធ្វើសមកាលកម្មដំបូងរាប់ DocType: Workflow State,glass,កញ្ចក់ @@ -2788,7 +2848,7 @@ DocType: Workflow State,font,ពុម្ពអក្សរ DocType: DocType,Show Preview Popup,បង្ហាញការមើលជាមុនលេចឡើង។ apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,នេះគឺជាពាក្យសម្ងាត់កំពូលទាំង 100 ជារឿងធម្មតា។ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,សូមអនុញ្ញាតការលេច -DocType: User,Mobile No,គ្មានទូរស័ព្ទដៃ +DocType: Contact,Mobile No,គ្មានទូរស័ព្ទដៃ DocType: Communication,Text Content,មាតិកាអត្ថបទ DocType: Customize Form Field,Is Custom Field,គឺជាវាលផ្ទាល់ខ្លួន DocType: Workflow,"If checked, all other workflows become inactive.",ប្រសិនបើបានធីកលំហូរការងារផ្សេងទៀតទាំងអស់ទៅជាអសកម្ម។ @@ -2834,6 +2894,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ប apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,ឈ្មោះនៃទ្រង់ទ្រាយបោះពុម្ពថ្មី apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,បិទ / បើករបារចំហៀង DocType: Data Migration Run,Pull Insert,ទាញបញ្ចូល +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",ពិន្ទុអតិបរិមាត្រូវបានអនុញ្ញាតបន្ទាប់ពីគុណនឹងចំនុចគុណ (ចំណាំ៖ សំរាប់គ្មានដែនកំណត់ទុកវាលនេះអោយនៅទទេឬកំណត់ ០) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,គំរូមិនត្រឹមត្រូវ។ apps/frappe/frappe/model/db_query.py,Illegal SQL Query,សំណួរ SQL ខុសច្បាប់។ apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,ជាចាំបាច់: DocType: Chat Message,Mentions,Mentions @@ -2848,6 +2911,7 @@ DocType: User Permission,User Permission,សិទ្ធិអ្នកប្រ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,កំណត់ហេតុបណ្ដាញ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,បម្រើ LDAP មិនបានដំឡើង apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ទាញយកជាមួយនឹងទិន្នន័យ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},បានផ្លាស់ប្តូរតម្លៃសម្រាប់ {0} {1} DocType: Workflow State,hand-right,នៅខាងស្ដាំដៃ DocType: Website Settings,Subdomain,ដែនរង DocType: S3 Backup Settings,Region,តំបន់ @@ -2875,9 +2939,11 @@ DocType: Braintree Settings,Public Key,កូនសោសាធារណៈ DocType: GSuite Settings,GSuite Settings,ការកំណត់ GSuite DocType: Address,Links,តំណភ្ជាប់ DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,ប្រើឈ្មោះអាសយដ្ឋានអ៊ីមែលដែលបានរៀបរាប់នៅក្នុងគណនីនេះជាឈ្មោះរបស់អ្នកផ្ញើសម្រាប់អ៊ីមែលទាំងអស់ដែលបានផ្ញើដោយប្រើគណនីនេះ។ +DocType: Energy Point Rule,Field To Check,វាលដើម្បីពិនិត្យ។ apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,សូមជ្រើសប្រភេទឯកសារ។ apps/frappe/frappe/model/base_document.py,Value missing for,តម្លៃរបស់បាត់ខ្លួន apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,បន្ថែមកុមារ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,វឌ្ឍនភាពនាំចូល។ DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",ប្រសិនបើលក្ខខណ្ឌអ្នកប្រើប្រាស់ពេញចិត្តអ្នកនឹងទទួលបានរង្វាន់។ ឧ។ doc.status == 'បានបិទ' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: កំណត់ត្រាផ្តល់ជូនមិនអាចលុបបាន។ @@ -2914,6 +2980,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,ផ្តល់សិ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,ទំព័រដែលអ្នកកំពុងតែស្វែងរកការត្រូវបានបាត់។ នេះអាចជាដោយសារតែវាបានផ្លាស់ប្តូរឬមានកំហុសនៃការសរសេរតំណមួយ។ apps/frappe/frappe/www/404.html,Error Code: {0},កំហុសកូដ: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",សេចក្ដីពិពណ៌នាសម្រាប់ឈ្មោះទំព័រក្នុងអត្ថបទធម្មតាតែពីរបន្ទាត់មួយ។ (អតិបរមា 140 តួអក្សរ) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} គឺជាវាលចាំបាច់។ DocType: Workflow,Allow Self Approval,អនុញ្ញាតិឱ្យខ្លួនឯងយល់ព្រម DocType: Event,Event Category,ប្រភេទព្រឹត្តិការណ៍ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2963,6 +3030,7 @@ apps/frappe/frappe/database/database.py,Too many writes in one request. Please s apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,ថាសហ្គូហ្គលត្រូវបានកំណត់រចនាសម្ព័ន្ធ។ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,តម្លៃផ្លាស់ប្តូរ DocType: Workflow State,arrow-up,ព្រួញឡើងលើ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,វាគួរតែមានយ៉ាងហោចណាស់ជួរដេកមួយសម្រាប់តារាង {0} ។ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",ដើម្បីកំណត់រចនាសម្ព័ន្ធការធ្វើម្តងទៀតដោយស្វ័យប្រវត្តិបើកដំណើរការ "អនុញ្ញាតឱ្យធ្វើម្តងទៀតដោយស្វ័យប្រវត្តិ" ពី {0} ។ DocType: OAuth Bearer Token,Expires In,ផុតកំណត់នៅ DocType: DocField,Allow on Submit,អនុញ្ញាតឱ្យនៅលើដាក់ស្នើ @@ -3048,6 +3116,7 @@ DocType: Custom Field,Options Help,ជម្រើសជំនួយ 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,កំណត់ត្រា ១ នឹងត្រូវនាំចេញ។ 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,ដាក់កម្រិតទៅដែន @@ -3064,6 +3133,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,កូដ Verfication DocType: Webhook,Webhook Request,សំណើសុំ Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** បរាជ័យក្នុង: {0} ទៅ {1} {2} DocType: Data Migration Mapping,Mapping Type,ប្រភេទផែនទី +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,ជ្រើសចាំបាច់ apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,រកមើល apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.",មិនចាំបាច់សម្រាប់និមិត្តសញ្ញាលេខឬអក្សរធំ។ DocType: DocField,Currency,រូបិយប័ណ្ណ @@ -3099,6 +3169,7 @@ apps/frappe/frappe/utils/file_manager.py,Removed {0},យកចេញ {0} DocType: SMS Settings,SMS Settings,កំណត់ការផ្ញើសារជាអក្សរ DocType: Company History,Highlight,បន្លិច DocType: Dashboard Chart,Sum,ផលបូក +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,ស្ដង់ដារទ្រង់ទ្រាយបោះពុម្ពមិនអាចត្រូវបានធ្វើឱ្យទាន់សម័យ @@ -3133,6 +3204,7 @@ DocType: Workflow State,Home,ទំព័រដើម DocType: OAuth Provider Settings,Auto,ដោយស្វ័យប្រវត្តិ DocType: System Settings,User can login using Email id or User Name,អ្នកប្រើអាចចូលដោយប្រើអ៊ីម៉ែលលេខសម្គាល់ឬឈ្មោះអ្នកប្រើ DocType: Workflow State,question-sign,សំណួរសញ្ញា +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ត្រូវបានបិទ។ apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",វាល "ផ្លូវ" គឺចាំបាច់សម្រាប់ការមើលបណ្តាញ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},បញ្ចូលជួរឈរមុន {0} DocType: Energy Point Rule,The user from this field will be rewarded points,អ្នកប្រើប្រាស់ពីវិស័យនេះនឹងទទួលបានរង្វាន់។ @@ -3166,6 +3238,7 @@ DocType: Website Settings,Top Bar Items,ធាតុរបារកំពូល DocType: Notification,Print Settings,ការកំណត់សម្រាប់ការបោះពុម្ព DocType: Page,Yes,បាទ DocType: DocType,Max Attachments,ឯកសារភ្ជាប់អតិបរមា +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,នៅសល់ប្រហែល {0} វិនាទី។ DocType: Calendar View,End Date Field,វាលកាលបរិច្ឆេទបញ្ចប់ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ផ្លូវកាត់សកល។ DocType: Desktop Icon,Page,ទំព័រ @@ -3276,6 +3349,7 @@ DocType: GSuite Settings,Allow GSuite access,អនុញ្ញាតការ DocType: DocType,DESC,DESC DocType: DocType,Naming,ដាក់ឈ្មោះ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,ជ្រើសទាំងអស់ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},ជួរឈរ {0} apps/frappe/frappe/config/customization.py,Custom Translations,ការបកប្រែផ្ទាល់ខ្លួន apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,ការរីកចំរើន apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,ទៅតាមតួនាទី @@ -3318,6 +3392,7 @@ DocType: Stripe Settings,Stripe Settings,ការកំណត់ឆ្នូត DocType: Stripe Settings,Stripe Settings,ការកំណត់ឆ្នូត DocType: Data Migration Mapping,Data Migration Mapping,ផែនទីអន្តោប្រវេសន៍ទិន្នន័យ DocType: Auto Email Report,Period,រយៈពេល +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,នៅសល់ប្រហែល {0} នាទី។ apps/frappe/frappe/www/login.py,Invalid Login Token,ចូល Token ចំនួនមិនត្រឹមត្រូវ apps/frappe/frappe/public/js/frappe/chat.js,Discard,បោះបង់ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,១ ម៉ោងមុន @@ -3342,6 +3417,7 @@ DocType: Calendar View,Start Date Field,ចាប់ផ្តើមវាលក DocType: Role,Role Name,ឈ្មោះតួនាទី apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,ប្តូរទៅតុ apps/frappe/frappe/config/core.py,Script or Query reports,ស្គ្រីបឬសំណួររាយការណ៍ +DocType: Contact Phone,Is Primary Mobile,គឺជាទូរស័ព្ទចល័តបឋម។ DocType: Workflow Document State,Workflow Document State,លំហូរការងាររដ្ឋឯកសារ apps/frappe/frappe/public/js/frappe/request.js,File too big,ឯកសារធំពេក apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,គណនីអ៊ីម៉ែលបន្ថែមទៀតច្រើនដង @@ -3420,6 +3496,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,លក្ខណៈពិសេសមួយចំនួនអាចនឹងមិនដំណើរការនៅក្នុងកម្មវិធីរុករករបស់អ្នក។ សូមធ្វើឱ្យទាន់សម័យកម្មវិធីរុករករបស់អ្នកទៅកំណែចុងក្រោយបំផុត។ apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,លក្ខណៈពិសេសមួយចំនួនអាចនឹងមិនដំណើរការនៅក្នុងកម្មវិធីរុករករបស់អ្នក។ សូមធ្វើឱ្យទាន់សម័យកម្មវិធីរុករករបស់អ្នកទៅកំណែចុងក្រោយបំផុត។ apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",មិនបានដឹងសូមសួរជំនួយ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},បានលុបចោលឯកសារនេះ {0} DocType: DocType,Comments and Communications will be associated with this linked document,យោបល់និងទំនាក់ទំនងនឹងត្រូវបានភ្ជាប់ជាមួយឯកសារភ្ជាប់នេះ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,តម្រង ... DocType: Workflow State,bold,ដិត @@ -3438,6 +3515,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,បន្ថ DocType: Comment,Published,បោះពុម្ពផ្សាយ apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,សូមអរគុណអ្នកសម្រាប់អ៊ីម៉ែលរបស់អ្នក DocType: DocField,Small Text,អត្ថបទខ្នាតតូច +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,លេខ {0} មិនអាចត្រូវបានកំណត់ជាទូរស័ព្ទចល័តក៏ដូចជាលេខទូរស័ព្ទទេ។ DocType: Workflow,Allow approval for creator of the document,អនុញ្ញាតការអនុម័តសម្រាប់អ្នកបង្កើតឯកសារ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,រក្សាទុករបាយការណ៍។ DocType: Webhook,on_cancel,on_cancel @@ -3494,6 +3572,7 @@ DocType: Print Settings,PDF Settings,ការកំណត់ជា PDF DocType: Kanban Board Column,Column Name,ឈ្មោះជួរឈរ DocType: Language,Based On,ដោយផ្អែកលើការ DocType: Email Account,"For more information, click here.","សម្រាប់ព័ត៌មានបន្ថែម សូមចុចត្រង់នេះ ។" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,ចំនួនជួរឈរមិនត្រូវគ្នានឹងទិន្នន័យ។ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,ធ្វើឱ្យលំនាំដើម apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,ពេលវេលាប្រតិបត្តិ: {0} វិនាទី។ apps/frappe/frappe/model/utils/__init__.py,Invalid include path,មិនត្រឹមត្រូវរាប់បញ្ចូលទាំងផ្លូវ។ @@ -3582,7 +3661,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar លេខសមកាលកម្ម DocType: Prepared Report,Report Start Time,រាយការណ៍ពីម៉ោងចាប់ផ្តើម -apps/frappe/frappe/config/settings.py,Export Data,នាំចេញទិន្នន័យ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,នាំចេញទិន្នន័យ 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.,នេះគឺជារបាយការណ៍ផ្ទៃខាងក្រោយ។ សូមកំណត់តម្រងដែលសមស្របហើយបន្ទាប់មកបង្កើតថ្មី។ @@ -3600,7 +3679,6 @@ DocType: Report,Disable Prepared Report,បិទរបាយការណ៍ត apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,អ្នកប្រើប្រាស់ {0} បានស្នើសុំអោយលុបទិន្នន័យ។ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Token ចំនួនចូលដំណើរការខុសច្បាប់។ សូមព្យាយាមម្ដងទៀត apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",កម្មវិធីនេះត្រូវបានធ្វើឱ្យទាន់សម័យទៅកំណែថ្មីសូមឱ្យស្រស់ទំព័រនេះ -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.,រកមិនឃើញគំរូអាសយដ្ឋានលំនាំដើម។ សូមបង្កើតថ្មីមួយពីការតំឡើង> បោះពុម្ពនិងយីហោ> គំរូអាសយដ្ឋាន។ DocType: Notification,Optional: The alert will be sent if this expression is true,ស្រេចចិត្ត: ការជូនដំណឹងនឹងត្រូវបានផ្ញើទេប្រសិនបើកន្សោមនេះគឺជាការពិត DocType: Data Migration Plan,Plan Name,ឈ្មោះផែនការ DocType: Print Settings,Print with letterhead,បោះពុម្ពដោយមានក្បាលសំបុត្រ @@ -3641,6 +3719,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: មិនអាចកំណត់ការធ្វើវិសោធនកម្មច្បាប់ដោយមិនបោះបង់ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,ទំព័រពេញ DocType: DocType,Is Child Table,គឺជាតារាងកុមារ +DocType: Data Import Beta,Template Options,ជម្រើសគំរូ។ apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} ត្រូវតែជាផ្នែកមួយនៃ {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} បច្ចុប្បន្នកំពុងមើលឯកសារនេះ apps/frappe/frappe/config/core.py,Background Email Queue,ផ្ទៃខាងក្រោយជួររអ៊ីម៉ែល @@ -3648,7 +3727,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,កំណត់ឡ DocType: Communication,Opened,បានបើក DocType: Workflow State,chevron-left,ក្រុមហ៊ុន Chevron ឆ្វេង DocType: Communication,Sending,ការផ្ញើ -apps/frappe/frappe/auth.py,Not allowed from this IP Address,មិនត្រូវបានអនុញ្ញាតពីអាសយដ្ឋាន IP នេះ DocType: Website Slideshow,This goes above the slideshow.,នេះទៅបង្ហាញស្លាយខាងលើ។ DocType: Contact,Last Name,ឈ្មោះចុងក្រោយ DocType: Event,Private,ឯកជន @@ -3662,7 +3740,6 @@ DocType: Workflow Action,Workflow Action,សកម្មភាពលំហូរ apps/frappe/frappe/utils/bot.py,I found these: ,ខ្ញុំបានរកឃើញទាំងនេះ: DocType: Event,Send an email reminder in the morning,ផ្ញើការរំលឹកអ៊ីម៉ែលមួយនៅពេលព្រឹក DocType: Blog Post,Published On,បានចេញផ្សាយនៅថ្ងៃទី -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីមែលមិនត្រូវបានរៀបចំទេ។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីពីតំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល។ 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} @@ -3683,7 +3760,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,ការព្រមានសញ្ញា DocType: Prepared Report,Prepared Report,របាយការណ៍ដែលបានរៀបចំ apps/frappe/frappe/config/website.py,Add meta tags to your web pages,បន្ថែមស្លាកមេតាទៅគេហទំព័ររបស់អ្នក។ -DocType: Contact,Phone Nos,ទូរស័ព្ទលេខ។ DocType: Workflow State,User,របស់អ្នកប្រើ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",បង្ហាញចំណងជើងនៅក្នុងបង្អួចកម្មវិធីរុករកជា "បុព្វបទ - ចំណងជើងថា" DocType: Payment Gateway,Gateway Settings,ការកំណត់ច្រកទ្វារ @@ -3708,7 +3784,7 @@ DocType: Custom Field,Insert After,បញ្ចូលបន្ទាប់ពី DocType: Event,Sync with Google Calendar,ធ្វើសមកាលកម្មជាមួយប្រតិទិន Google ។ DocType: Access Log,Report Name,ឈ្មោះរបាយការណ៏ DocType: Desktop Icon,Reverse Icon Color,បញ្ច្រាសល័រូបតំណាង -DocType: Notification,Save,រក្សាទុក +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,រក្សាទុក apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,កាលវិភាគថ្ងៃបន្ទាប់ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,ប្រគល់ឱ្យអ្នកដែលមានការងារតិចបំផុត។ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,ផ្នែកក្បាល @@ -3731,11 +3807,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,រៀបចំ> ទម្រង់បែបបទតាមតម្រូវការ។ DocType: Google Contacts,Last Sync On,ធ្វើសមកាលកម្មចុងក្រោយ DocType: Deleted Document,Deleted Document,លុបឯកសារ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,អូ! អ្វីមួយដែលខុស DocType: Desktop Icon,Category,ប្រភេទ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},តម្លៃ {0} បាត់សម្រាប់ {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,បន្ថែមទំនាក់ទំនង apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ទេសភាព។ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ផ្នែកបន្ថែមស្គ្រីបខាងម៉ាស៊ីនភ្ញៀវនៅក្នុងការអនុញ្ញាត JavaScript @@ -3759,6 +3835,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ការធ្វើបច្ចុប្បន្នភាពចំណុចថាមពល។ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',សូមជ្រើសវិធីសាស្ត្រទូទាត់ផ្សេងទៀត។ បានតាមរយៈការមិនគាំទ្រការតិបត្តិការនៅក្នុងរូបិយប័ណ្ណ '{0}' DocType: Chat Message,Room Type,ប្រភេទបន្ទប់ +DocType: Data Import Beta,Import Log Preview,ការនាំចូលកំណត់ហេតុមើលជាមុន។ apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,វាលស្វែងរក {0} មិនត្រឹមត្រូវ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,ឯកសារដែលបានផ្ទុកឡើង។ DocType: Workflow State,ok-circle,អី-រង្វង់ @@ -3826,6 +3903,7 @@ DocType: DocType,Allow Auto Repeat,អនុញ្ញាតឱ្យធ្វើ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,មិនមានតម្លៃដើម្បីបង្ហាញ។ DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,គំរូអ៊ីម៉ែល +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,បានធ្វើបច្ចុប្បន្នភាពកំណត់ត្រា {0} ដោយជោគជ័យ។ apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},អ្នកប្រើ {0} មិនមានសិទ្ធិចូលប្រើផ្នែកគំហើញតាមរយៈការអនុញ្ញាតតួនាទីសម្រាប់ឯកសារ {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,អ្នកទាំងពីរចូលនិងពាក្យសម្ងាត់ដែលបានទាមទារ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,សូមស្រស់ដើម្បីទទួលបានឯកសារថ្មីបំផុត។ diff --git a/frappe/translations/kn.csv b/frappe/translations/kn.csv index 4c94bb923d..061a57cb8d 100644 --- a/frappe/translations/kn.csv +++ b/frappe/translations/kn.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,ಹೊಸ {} ಕೆಳಗಿನ ಅಪ್ಲಿಕೇಶನ್ಗಳಿಗೆ ಬಿಡುಗಡೆಗಳು ಲಭ್ಯವಿವೆ apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,ಒಂದು ಪ್ರಮಾಣ ಫೀಲ್ಡ್ ಆಯ್ಕೆ ಮಾಡಿ. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,ಆಮದು ಫೈಲ್ ಅನ್ನು ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ ... DocType: Assignment Rule,Last User,ಕೊನೆಯ ಬಳಕೆದಾರ apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ಒಂದು ಹೊಸ ಕೆಲಸವನ್ನು, {0}, {1} ನಿಮಗೆ ಗೊತ್ತುಮಾಡಲ. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,ಸೆಷನ್ ಡೀಫಾಲ್ಟ್‌ಗಳನ್ನು ಉಳಿಸಲಾಗಿದೆ +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ಫೈಲ್ ಅನ್ನು ಮರುಲೋಡ್ ಮಾಡಿ DocType: Email Queue,Email Queue records.,ಇಮೇಲ್ ಸರದಿಗೆ ದಾಖಲೆಗಳು. DocType: Post,Post,ಪೋಸ್ಟ್ DocType: Address,Punjab,ಪಂಜಾಬ್ @@ -44,6 +46,7 @@ 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,ನಿಯತಾಂಕ @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,ಮಾಸಿಕ DocType: Address,Uttarakhand,ಉತ್ತರಾಖಂಡ್ DocType: Email Account,Enable Incoming,ಒಳಬರುವ ಸಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ಅಪಾಯ -apps/frappe/frappe/www/login.py,Email Address,ಇಮೇಲ್ ವಿಳಾಸ +DocType: Address,Email Address,ಇಮೇಲ್ ವಿಳಾಸ DocType: Workflow State,th-large,ನೇ ದೊಡ್ಡ DocType: Communication,Unread Notification Sent,ಕಳುಹಿಸಲಾಗಿದೆ ಓದದ ಅಧಿಸೂಚನೆಯನ್ನು apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ರಫ್ತು ಅವಕಾಶ . ನೀವು ರಫ್ತು {0} ಪಾತ್ರದಲ್ಲಿ ಅಗತ್ಯವಿದೆ . @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,ನಿರ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ಇತ್ಯಾದಿ "" ಮಾರಾಟದ ಪ್ರಶ್ನೆ , ಪ್ರಶ್ನೆ ಬೆಂಬಲ "" ಹೊಸ ಸಾಲಿನಲ್ಲಿ ಪ್ರತಿ ಅಥವಾ ಬೇರ್ಪಡಿಸಲಾಗಿರುತ್ತದೆ ನಂತಹ ಸಂಪರ್ಕ ಆಯ್ಕೆಗಳನ್ನು ." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,ಟ್ಯಾಗ್ ಸೇರಿಸಿ ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ಭಾವಚಿತ್ರ -DocType: Data Migration Run,Insert,ಸೇರಿಸಿ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,ಸೇರಿಸಿ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google ಡ್ರೈವ್ ಅನುಮತಿಸಬಹುದು apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},ಆಯ್ಕೆ {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,ಬೇಸ್ URL ಅನ್ನು ನಮೂದಿಸಿ @@ -117,17 +120,17 @@ 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,ಥೀಮ್ ಅನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಿ DocType: Company History,Company History,ಕಂಪನಿ ಇತಿಹಾಸ -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,ಮರುಹೊಂದಿಸಿ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,ಮರುಹೊಂದಿಸಿ DocType: Workflow State,volume-up,ಪರಿಮಾಣ ಅಪ್ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,ವೆಬ್ ಅಪ್ಲಿಕೇಶನ್ಗಳಿಗೆ ವೆಬ್ಹುಕ್ಸ್ ಕರೆ API ವಿನಂತಿಗಳು +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ಟ್ರೇಸ್‌ಬ್ಯಾಕ್ ತೋರಿಸಿ DocType: DocType,Default Print Format,ಡೀಫಾಲ್ಟ್ ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್ DocType: Workflow State,Tags,ಟ್ಯಾಗ್ಗಳು apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ಯಾವುದೂ : ವರ್ಕ್ಫ್ಲೋ ಅಂತ್ಯ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",ಅ ಅನನ್ಯ ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಮೌಲ್ಯಗಳನ್ನು ಲಭ್ಯವಿರುವುದರಿಂದ {0} ಕ್ಷೇತ್ರದಲ್ಲಿ {1} ನಲ್ಲಿ ಅನನ್ಯ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ಡಾಕ್ಯುಮೆಂಟ್ ವಿಧಗಳು +DocType: Global Search Settings,Document Types,ಡಾಕ್ಯುಮೆಂಟ್ ವಿಧಗಳು DocType: Address,Jammu and Kashmir,ಜಮ್ಮು ಮತ್ತು ಕಾಶ್ಮೀರ DocType: Workflow,Workflow State Field,ವರ್ಕ್ಫ್ಲೋ ರಾಜ್ಯ ಫೀಲ್ಡ್ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ DocType: Language,Guest,ಅತಿಥಿ DocType: DocType,Title Field,ಶೀರ್ಷಿಕೆ ಫೀಲ್ಡ್ DocType: Error Log,Error Log,ದೋಷ ಲಾಗ್ @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" "ಎಬಿಸಿ" ಹೆಚ್ಚು ಊಹಿಸಲು ಕಷ್ಟ ಸ್ವಲ್ಪ ಹಾಗೆ ಪುನರಾವರ್ತನೆಗಳು DocType: Notification,Channel,ಚಾನಲ್ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","ಈ ಅನಧಿಕೃತ ಭಾವಿಸಿದರೆ, ನಿರ್ವಾಹಕ ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸಲು ದಯವಿಟ್ಟು." +DocType: Data Import Beta,Data Import Beta,ಡೇಟಾ ಆಮದು ಬೀಟಾ apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} ಕಡ್ಡಾಯ DocType: Assignment Rule,Assignment Rules,ನಿಯೋಜನೆ ನಿಯಮಗಳು DocType: Workflow State,eject,ದಬ್ಬು @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,ವರ್ಕ್ಫ್ಲೆ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,Doctype ವಿಲೀನಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ಒಂದು ಜಿಪ್ ಫೈಲ್ +DocType: Global Search DocType,Global Search DocType,ಜಾಗತಿಕ ಹುಡುಕಾಟ ಡಾಕ್ಟೈಪ್ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                      New {{ doc.doctype }} #{{ doc.name }}
                                                      ","ಕ್ರಿಯಾತ್ಮಕ ವಿಷಯ ಸೇರಿಸಲು, ಜಿಂಜ ಟ್ಯಾಗ್ಗಳನ್ನು ಬಳಸಿ
                                                       New {{ doc.doctype }} #{{ doc.name }} 
                                                      " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,ಡಾಕ್ ಈವೆಂಟ್ apps/frappe/frappe/public/js/frappe/utils/user.js,You,ನೀವು DocType: Braintree Settings,Braintree Settings,ಬ್ರೈನ್ಟ್ರೀ ಸೆಟ್ಟಿಂಗ್ಗಳು +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} ದಾಖಲೆಗಳನ್ನು ಯಶಸ್ವಿಯಾಗಿ ರಚಿಸಲಾಗಿದೆ. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ಫಿಲ್ಟರ್ ಉಳಿಸಿ DocType: Print Format,Helvetica,ಗಾತ್ರ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,ಸಂದೇಶವು U apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,ಈ ಡಾಕ್ಯುಮೆಂಟ್‌ಗಾಗಿ ಸ್ವಯಂ ಪುನರಾವರ್ತನೆಯನ್ನು ರಚಿಸಲಾಗಿದೆ apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,ನಿಮ್ಮ ಬ್ರೌಸರ್ನಲ್ಲಿ ವರದಿ ವೀಕ್ಷಿಸಿ apps/frappe/frappe/config/desk.py,Event and other calendars.,ಈವೆಂಟ್ ಮತ್ತು ಇತರ ಪಂಚಾಂಗಗಳಲ್ಲಿ. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 ಸಾಲು ಕಡ್ಡಾಯ) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,ಎಲ್ಲಾ ಜಾಗ ಕಾಮೆಂಟ್ ಸಲ್ಲಿಸಲು ಅವಶ್ಯಕ. DocType: Custom Script,Adds a client custom script to a DocType,ಕ್ಲೈಂಟ್ ಕಸ್ಟಮ್ ಸ್ಕ್ರಿಪ್ಟ್ ಅನ್ನು ಡಾಕ್ಟೈಪ್ಗೆ ಸೇರಿಸುತ್ತದೆ DocType: Print Settings,Printer Name,ಮುದ್ರಕದ ಹೆಸರು @@ -250,7 +257,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ಜ DocType: Bulk Update,Bulk Update,ಬಹುಸಂಖ್ಯೆಯ ನವೀಕರಣ DocType: Workflow State,chevron-up,CHEVRON ಅಪ್ DocType: DocType,Allow Guest to View,ಅತಿಥಿ ವೀಕ್ಷಿಸಿ ಅನುಮತಿಸಿ -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,ಶಾಶ್ವತವಾಗಿ {0} ಐಟಂಗಳನ್ನು ಅಳಿಸುವುದೇ? apps/frappe/frappe/utils/oauth.py,Not Allowed,ಅವಕಾಶವಿಲ್ಲ @@ -266,6 +272,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,ಪ್ರದರ್ಶಿಸು DocType: Email Group,Total Subscribers,ಒಟ್ಟು ಚಂದಾದಾರರು apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},ಟಾಪ್ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,ಸಾಲು ಸಂಖ್ಯೆ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ಒಂದು ಪಾತ್ರ ಮಟ್ಟದ 0 ಪ್ರವೇಶವನ್ನು ಹೊಂದಿಲ್ಲ ವೇಳೆ , ನಂತರ ಹೆಚ್ಚಿನ ಮಟ್ಟದಲ್ಲಿ ಅರ್ಥಹೀನ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ಉಳಿಸಿ DocType: Comment,Seen,ಸೀನ್ @@ -306,6 +313,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,ಉದಾಹರಣೆ : DocType: Workflow,Defines workflow states and rules for a document.,ಒಂದು ದಾಖಲೆ ಕೆಲಸದೊತ್ತಡದ ರಾಜ್ಯಗಳು ಮತ್ತು ನಿಯಮಗಳನ್ನು ವ್ಯಾಖ್ಯಾನಿಸುತ್ತದೆ. DocType: Workflow State,Filter,ಫಿಲ್ಟರ್ @@ -328,6 +336,7 @@ DocType: Activity Log,Closed,ಮುಚ್ಚಲಾಗಿದೆ DocType: Blog Settings,Blog Title,ಬ್ಲಾಗ್ ಶೀರ್ಷಿಕೆ apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಪಾತ್ರಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,ಚಾಟ್ ಕೌಟುಂಬಿಕತೆ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,ನಕ್ಷೆ ಕಾಲಮ್‌ಗಳು DocType: Address,Mizoram,ಮಿಜೋರಾಂ DocType: Newsletter,Newsletter,ಸುದ್ದಿಪತ್ರ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ಮೂಲಕ ಸಲುವಾಗಿ ಉಪ ಪ್ರಶ್ನಾವಳಿ ಬಳಸುವಂತಿಲ್ಲ @@ -394,6 +403,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ಬಳ DocType: System Settings,Currency Precision,ಕರೆನ್ಸಿ ನಿಖರವಾದ DocType: System Settings,Currency Precision,ಕರೆನ್ಸಿ ನಿಖರವಾದ apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,ಮತ್ತೊಂದು ವ್ಯವಹಾರ ಈ ಒಂದು ತಡೆಯುವ ಇದೆ. ಕೆಲವು ನಿಮಿಷಗಳ ನಂತರ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,ಫಿಲ್ಟರ್‌ಗಳನ್ನು ತೆರವುಗೊಳಿಸಿ DocType: Test Runner,App,ಅಪ್ಲಿಕೇಶನ್ apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,ಲಗತ್ತುಗಳನ್ನು ಹೊಸ ಡಾಕ್ಯುಮೆಂಟ್ಗೆ ಸರಿಯಾಗಿ ಲಿಂಕ್ ಮಾಡಲಾಗಲಿಲ್ಲ DocType: Chat Message Attachment,Attachment,ಲಗತ್ತು @@ -434,7 +444,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html,"Your query has been receive apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ಒಳಬರುವಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದರೆ ಮಾತ್ರ ಸ್ವಯಂಚಾಲಿತ ಲಿಂಕ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು. DocType: LDAP Settings,LDAP Middle Name Field,LDAP ಮಧ್ಯದ ಹೆಸರು ಕ್ಷೇತ್ರ DocType: GCalendar Account,Allow GCalendar Access,GCalendar ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಿ -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} ಒಂದು ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರವಾಗಿದೆ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ಒಂದು ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರವಾಗಿದೆ apps/frappe/frappe/templates/includes/login/login.js,Login token required,ಲಾಗಿನ್ ಟೋಕನ್ ಅಗತ್ಯವಿದೆ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ಮಾಸಿಕ ಶ್ರೇಣಿ: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ಬಹು ಪಟ್ಟಿ ವಸ್ತುಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ @@ -464,6 +474,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},ಸಂಪರ್ಕ ಸ apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,ಸ್ವತಃ ಒಂದು ಪದ ಊಹಿಸಲು ಸುಲಭ. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},ಸ್ವಯಂ ನಿಯೋಜನೆ ವಿಫಲವಾಗಿದೆ: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,ಹುಡುಕಾಟ ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,ಕಂಪನಿ ಆಯ್ಕೆಮಾಡಿ apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,ಮರ್ಜಿಂಗ್ ಗ್ರೂಪ್ ಟು ಗುಂಪು ಅಥವಾ ಲೀಫ್ ನೋಡ್ ಯಾ ನೋಡ್ ಲೀಫ್ ನಡುವೆ ಮಾತ್ರ ಸಾಧ್ಯ apps/frappe/frappe/utils/file_manager.py,Added {0},ಸೇರಿಸಲಾಗಿದೆ {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,ಯಾವುದೇ ಹೊಂದಾಣಿಕೆಯಾಗುವ ದಾಖಲೆಗಳು. ಹೊಸದನ್ನು ಹುಡುಕಿ @@ -476,7 +487,6 @@ DocType: Google Settings,OAuth Client ID,OAuth ಕ್ಲೈಂಟ್ ID DocType: Auto Repeat,Subject,ವಿಷಯ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ಡೆಸ್ಕ್ಗೆ ಹಿಂತಿರುಗಿ DocType: Web Form,Amount Based On Field,ಪ್ರಮಾಣ ಫೀಲ್ಡ್ ರಂದು ಆಧರಿಸಿ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,ಬಳಕೆದಾರ ಹಂಚಿಕೊಳ್ಳಿ ಕಡ್ಡಾಯವಾದರೂ DocType: DocField,Hidden,ಗುಪ್ತ DocType: Web Form,Allow Incomplete Forms,ಅಪೂರ್ಣ ಫಾರ್ಮ್ಸ್ ಅನುಮತಿಸಿ @@ -513,6 +523,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ಮತ್ತು {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,ಸಂವಾದವನ್ನು ಪ್ರಾರಂಭಿಸಿ. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ಯಾವಾಗಲೂ "ಡ್ರಾಫ್ಟ್" ಸೇರಿಸಿ ಮುದ್ರಣ ಕರಡು ದಾಖಲೆಗಳನ್ನು ಶಿರೋನಾಮೆ apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},ಅಧಿಸೂಚನೆಯಲ್ಲಿ ದೋಷ: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳು) ಹಿಂದೆ DocType: Data Migration Run,Current Mapping Start,ಪ್ರಸ್ತುತ ಮ್ಯಾಪಿಂಗ್ ಪ್ರಾರಂಭ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ಇಮೇಲ್ ಸ್ಪ್ಯಾಮ್ ಎಂದು ಗುರುತಿಸಲಾಗಿದೆ DocType: Comment,Website Manager,ವೆಬ್ಸೈಟ್ ಮ್ಯಾನೇಜರ್ @@ -550,6 +561,7 @@ DocType: Workflow State,barcode,ಬಾರ್ಕೋಡ್ apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,ಉಪ-ಪ್ರಶ್ನೆ ಅಥವಾ ಕ್ರಿಯೆಯ ಬಳಕೆಯನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ apps/frappe/frappe/config/customization.py,Add your own translations,ನಿಮ್ಮ ಸ್ವಂತ ಅನುವಾದಗಳು ಸೇರಿಸಬಹುದು DocType: Country,Country Name,ದೇಶದ ಹೆಸರು +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,ಖಾಲಿ ಟೆಂಪ್ಲೇಟು DocType: About Us Team Member,About Us Team Member,ನಮ್ಮ ತಂಡದ ಸದಸ್ಯರು ಬಗ್ಗೆ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","ಅನುಮತಿಗಳು ರಿಪೋರ್ಟ್ , ಆಮದು , ರಫ್ತು , ಪ್ರಿಂಟ್ , ಇಮೇಲ್ ಮತ್ತು ಬಳಕೆದಾರ ಅನುಮತಿಗಳು , ಮಾಡಿರಿ , ರದ್ದು , ಸಲ್ಲಿಸಿ , ಅಳಿಸಿ , ರಚಿಸಿ , ಬರೆಯಿರಿ , ಓದಿ ಹಕ್ಕು ಹೊಂದಿಸುವ ಮೂಲಕ ಪಾತ್ರಗಳು ಮತ್ತು ಡಾಕ್ಯುಮೆಂಟ್ ವಿಧಗಳು ( DOCTYPES ಕರೆಯಲಾಗುತ್ತದೆ) ಸೆಟ್ ." DocType: Event,Wednesday,ಬುಧವಾರ @@ -560,6 +572,7 @@ DocType: Website Settings,Website Theme Image Link,ವೆಬ್ಸೈಟ್ DocType: Web Form,Sidebar Items,ಪಾರ್ಶ್ವಪಟ್ಟಿ ಐಟಂಗಳು DocType: Web Form,Show as Grid,ಗ್ರಿಡ್ನಂತೆ ತೋರಿಸಿ apps/frappe/frappe/installer.py,App {0} already installed,ಅಪ್ಲಿಕೇಶನ್ {0} ಈಗಾಗಲೇ ಸ್ಥಾಪಿಸಲಾಗಿದೆ +DocType: Energy Point Rule,Users assigned to the reference document will get points.,ಉಲ್ಲೇಖ ಡಾಕ್ಯುಮೆಂಟ್‌ಗೆ ನಿಯೋಜಿಸಲಾದ ಬಳಕೆದಾರರು ಅಂಕಗಳನ್ನು ಪಡೆಯುತ್ತಾರೆ. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,ಯಾವುದೇ ಪೂರ್ವವೀಕ್ಷಣೆ ಇಲ್ಲ DocType: Workflow State,exclamation-sign,ಘೋಷಣಾ - ಚಿಹ್ನೆ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,ಅನ್ಜಿಪ್ಡ್ {0} ಫೈಲ್‌ಗಳು @@ -595,6 +608,7 @@ DocType: Notification,Days Before,ದಿನಗಳ ಮೊದಲು apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ದೈನಂದಿನ ಘಟನೆಗಳು ಒಂದೇ ದಿನದಲ್ಲಿ ಮುಗಿಯಬೇಕು. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ಸಂಪಾದಿಸಿ ... DocType: Workflow State,volume-down,ಪರಿಮಾಣ ಡೌನ್ +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ಈ ಐಪಿ ವಿಳಾಸದಿಂದ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ apps/frappe/frappe/desk/reportview.py,No Tags,ಯಾವುದೇ ಟ್ಯಾಗ್ಗಳು DocType: Email Account,Send Notification to,ಗೆ ಅಧಿಸೂಚನೆ ಕಳುಹಿಸಿ DocType: DocField,Collapsible,ಬಾಗಿಕೊಳ್ಳಬಹುದಾದ @@ -651,6 +665,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,ಡೆವಲಪರ್ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,ದಾಖಲಿಸಿದವರು 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,ಡೀಫಾಲ್ಟ್ ಮುದ್ರಣ ಭಾಷೆ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,ಪೂರ್ವಜರ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ರೂಟ್ {0} ಅಳಿಸಲಾಗಿಲ್ಲ @@ -692,6 +707,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","ಗುರಿ = ""_blank""" DocType: Workflow State,hdd,ಎಚ್ಡಿಡಿ DocType: Integration Request,Host,ಹೋಸ್ಟ್ +DocType: Data Import Beta,Import File,ಫೈಲ್ ಆಮದು ಮಾಡಿ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,ಅಂಕಣ {0} ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. DocType: ToDo,High,ಎತ್ತರದ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,ಹೊಸ ಈವೆಂಟ್ @@ -720,8 +736,6 @@ DocType: User,Send Notifications for Email threads,ಇಮೇಲ್ ಎಳೆಗ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ಪ್ರೊಫೆಸರ್ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,ಮಾಡಿರುವುದಿಲ್ಲ ಡೆವಲಪರ್ ಮೋಡ್ನಲ್ಲಿ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ಫೈಲ್ ಬ್ಯಾಕ್ಅಪ್ ಸಿದ್ಧವಾಗಿದೆ -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",ಗುಣಕ ಮೌಲ್ಯದೊಂದಿಗೆ ಬಿಂದುಗಳನ್ನು ಗುಣಿಸಿದ ನಂತರ ಗರಿಷ್ಠ ಅಂಕಗಳನ್ನು ಅನುಮತಿಸಲಾಗಿದೆ (ಗಮನಿಸಿ: ಯಾವುದೇ ಮಿತಿಯನ್ನು ಹೊಂದಿಸದ ಮೌಲ್ಯವನ್ನು 0 ಎಂದು ನಿಗದಿಪಡಿಸಿ) DocType: DocField,In Global Search,ಜಾಗತಿಕ ಸರ್ಚ್ DocType: System Settings,Brute Force Security,ಬ್ರೂಟ್ ಫೋರ್ಸ್ ಸೆಕ್ಯುರಿಟಿ DocType: Workflow State,indent-left,ಇಂಡೆಂಟ್ ಎಡ @@ -764,6 +778,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',ಬಳಕೆದಾರ '{0}' ಈಗಾಗಲೇ ಪಾತ್ರವನ್ನು ಹೊಂದಿದೆ '{1}' DocType: System Settings,Two Factor Authentication method,ಎರಡು ಫ್ಯಾಕ್ಟರ್ ದೃಢೀಕರಣ ವಿಧಾನ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ಮೊದಲ ಹೆಸರನ್ನು ಹೊಂದಿಸಿ ಮತ್ತು ದಾಖಲೆಯನ್ನು ಉಳಿಸಿ. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ದಾಖಲೆಗಳು apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ಹಂಚಿಕೊಂಡಿದ್ದಾರೆ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ DocType: View Log,Reference Name,ರೆಫರೆನ್ಸ್ ಹೆಸರು @@ -814,6 +829,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,ಇಮೇಲ್ ಸ್ಥಿತಿ ಟ್ರ್ಯಾಕ್ ಮಾಡಿ DocType: Note,Notify Users On Every Login,ಪ್ರತಿ ಲಾಗಿನ್ ರಂದು ಬಳಕೆದಾರರು ಸೂಚಿಸಿ DocType: Note,Notify Users On Every Login,ಪ್ರತಿ ಲಾಗಿನ್ ರಂದು ಬಳಕೆದಾರರು ಸೂಚಿಸಿ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} ದಾಖಲೆಗಳನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ. DocType: PayPal Settings,API Password,ಎಪಿಐ ಪಾಸ್ವರ್ಡ್ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,ಪೈಥಾನ್ ಘಟಕವನ್ನು ನಮೂದಿಸಿ ಅಥವಾ ಕನೆಕ್ಟರ್ ಪ್ರಕಾರವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,ವಾಡಿಕೆ ಕ್ಷೇತ್ರ ಸೆಟ್ ಕ್ಷೇತ್ರ ಹೆಸರು @@ -842,9 +858,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,ಮೌಲ್ಯ ಬದಲಾಗಿದೆ apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},ನಕಲಿ ಹೆಸರು {0} {1} -DocType: Email Queue,Retry,ಮರುಪ್ರಯತ್ನಿಸಿ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,ಮರುಪ್ರಯತ್ನಿಸಿ +DocType: Contact Phone,Number,ಸಂಖ್ಯೆ DocType: Web Form Field,Web Form Field,ವೆಬ್ ಫಾರ್ಮ್ ಫೀಲ್ಡ್ apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,ಇದರಿಂದ ನೀವು ಹೊಸ ಸಂದೇಶವನ್ನು ಹೊಂದಿದ್ದೀರಿ: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML ಸಂಪಾದಿಸಿ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,URL ಮರುನಿರ್ದೇಶಿಸಿ ನಮೂದಿಸಿ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Restore Original Permissions,ಮೂಲ ಅನುಮತಿಗಳು ಮರುಸ್ಥಾಪಿಸಿ @@ -868,7 +886,7 @@ DocType: Notification,View Properties (via Customize Form),(ಕಸ್ಟಮೆ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ಫೈಲ್ ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಲು ಅದನ್ನು ಕ್ಲಿಕ್ ಮಾಡಿ. DocType: Note Seen By,Note Seen By,ಸೀನ್ ಬೈ ಗಮನಿಸಿ apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,ಹೆಚ್ಚು ತಿರುವುಗಳು ಒಂದು ಸುದೀರ್ಘ ಕೀಬೋರ್ಡ್ ಮಾದರಿಯನ್ನು ಬಳಸಲು ಪ್ರಯತ್ನಿಸಿ -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,ಲೀಡರ್ +,LeaderBoard,ಲೀಡರ್ DocType: DocType,Default Sort Order,ಡೀಫಾಲ್ಟ್ ವಿಂಗಡಣೆ ಆದೇಶ DocType: Address,Rajasthan,ರಾಜಸ್ಥಾನ DocType: Email Template,Email Reply Help,ಇಮೇಲ್ ಉತ್ತರಿಸಿ ಸಹಾಯ @@ -903,6 +921,7 @@ apps/frappe/frappe/utils/data.py,Cent,ಸೆಂಟ್ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ಇಮೇಲ್ ರಚಿಸಿ apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","ಕೆಲಸದೊತ್ತಡದ ಸ್ಟೇಟ್ಸ್ ( ಉದಾ ಡ್ರಾಫ್ಟ್ , ಅನುಮೋದನೆ, ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ ) ." DocType: Print Settings,Allow Print for Draft,ಡ್ರಾಫ್ಟ್ ಪ್ರಿಂಟ್ ಅನುಮತಿಸಿ +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/link_selector.js,Set Quantity,ಹೊಂದಿಸಿ ಪ್ರಮಾಣ apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ಖಚಿತಪಡಿಸಲು ದಾಖಲೆ ಸಲ್ಲಿಸಿ DocType: Contact,Unsubscribed,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ @@ -933,6 +952,7 @@ DocType: LDAP Settings,Organizational Unit for Users,ಬಳಕೆದಾರರಿ ,Transaction Log Report,ಟ್ರಾನ್ಸಾಕ್ಷನ್ ಲಾಗ್ ರಿಪೋರ್ಟ್ DocType: Custom DocPerm,Custom DocPerm,ಕಸ್ಟಮ್ DocPerm DocType: Newsletter,Send Unsubscribe Link,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಲಿಂಕ್ ಕಳುಹಿಸಿ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,ನಿಮ್ಮ ಫೈಲ್ ಅನ್ನು ನಾವು ಆಮದು ಮಾಡಿಕೊಳ್ಳುವ ಮೊದಲು ಕೆಲವು ಲಿಂಕ್ ದಾಖಲೆಗಳಿವೆ. ಕೆಳಗಿನ ಕಾಣೆಯಾದ ದಾಖಲೆಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ರಚಿಸಲು ನೀವು ಬಯಸುವಿರಾ? DocType: Access Log,Method,ವಿಧಾನ DocType: Report,Script Report,ಸ್ಕ್ರಿಪ್ಟ್ ವರದಿ DocType: OAuth Authorization Code,Scopes,ವ್ಯಾಪ್ತಿಗಳು @@ -974,6 +994,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,ಯಶಸ್ವಿಯಾಗಿ ಅಪ್‌ಲೋಡ್ ಮಾಡಲಾಗಿದೆ apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,ನೀವು ಇಂಟರ್ನೆಟ್ಗೆ ಸಂಪರ್ಕ ಹೊಂದಿದ್ದೀರಿ. DocType: Social Login Key,Enable Social Login,ಸಮಾಜ ಲಾಗಿನ್ ಸಕ್ರಿಯಗೊಳಿಸಿ +DocType: Data Import Beta,Warnings,ಎಚ್ಚರಿಕೆಗಳು DocType: Communication,Event,ಈವೆಂಟ್ apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} ನಲ್ಲಿ, {1} ಬರೆದರು:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,ಪ್ರಮಾಣಿತ ಕ್ಷೇತ್ರದಲ್ಲಿ ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನೀವು ಬಯಸಿದರೆ ನೀವು ಇದು ಮರೆಮಾಡಬಹುದು @@ -1029,6 +1050,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,ಕೆಳ DocType: Kanban Board Column,Blue,ಬ್ಲೂ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,ಎಲ್ಲಾ ಗ್ರಾಹಕೀಕರಣ ತೆಗೆದುಹಾಕಲಾಗುತ್ತದೆ. ಖಚಿತಪಡಿಸಿ. DocType: Page,Page HTML,HTML ಪುಟ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,ತಪ್ಪಾದ ಸಾಲುಗಳನ್ನು ರಫ್ತು ಮಾಡಿ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ಗುಂಪು ಹೆಸರು ಖಾಲಿ ಇರುವಂತಿಲ್ಲ. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,ಮತ್ತಷ್ಟು ಗ್ರಂಥಿಗಳು ಮಾತ್ರ ' ಗ್ರೂಪ್ ' ರೀತಿಯ ನೋಡ್ಗಳನ್ನು ಅಡಿಯಲ್ಲಿ ರಚಿಸಬಹುದಾಗಿದೆ DocType: SMS Parameter,Header,ತಲೆಹೊಡೆತ @@ -1074,7 +1096,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,ಹೊರಹೊ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ಒಂದು ಆಯ್ಕೆ DocType: Data Export,Filter List,ಫಿಲ್ಟರ್ ಪಟ್ಟಿ DocType: Data Export,Excel,ಎಕ್ಸೆಲ್ -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ಹೊಸ ಗುಪ್ತಪದವನ್ನು DocType: Email Account,Auto Reply Message,ಆಟೋ ಉತ್ತರಿಸಿ ಸಂದೇಶ DocType: Data Migration Mapping,Condition,ಪರಿಸ್ಥಿತಿ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ಗಂಟೆಗಳ ಹಿಂದೆ @@ -1083,7 +1104,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ಬಳಕೆದಾರ ID DocType: Communication,Sent,ಕಳುಹಿಸಲಾಗಿದೆ DocType: Address,Kerala,ಕೇರಳ -DocType: File,Lft,lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,ಆಡಳಿತ DocType: User,Simultaneous Sessions,ಏಕಕಾಲಿಕ ಸೆಷನ್ಸ್ DocType: Social Login Key,Client Credentials,ಕ್ಲೈಂಟ್ ರುಜುವಾತುಗಳು @@ -1115,7 +1135,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},ಅಪ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ಯಜಮಾನ DocType: DocType,User Cannot Create,ಬಳಕೆದಾರ ರಚಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,ಯಶಸ್ವಿಯಾಗಿ ಮುಗಿದಿದೆ -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,ಫೋಲ್ಡರ್ {0} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಪ್ರವೇಶ ಅನುಮೋದನೆ! DocType: Customize Form,Enter Form Type,FormTypeName ಯನ್ನು DocType: Google Drive,Authorize Google Drive Access,Google ಡ್ರೈವ್ ಪ್ರವೇಶವನ್ನು ಅಧಿಕೃತಗೊಳಿಸಿ @@ -1123,7 +1142,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,ಯಾವುದೇ ದಾಖಲೆಗಳು ಟ್ಯಾಗ್ . apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ಫೀಲ್ಡ್ ತೆಗೆದುಹಾಕಿ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,ನೀವು ಇಂಟರ್ನೆಟ್ಗೆ ಸಂಪರ್ಕ ಹೊಂದಿಲ್ಲ. ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಮರುಪ್ರಯತ್ನಿಸಿ. -DocType: User,Send Password Update Notification,ಪಾಸ್ವರ್ಡ್ ಅಪ್ಡೇಟ್ ಅಧಿಸೂಚನೆ ಕಳುಹಿಸಿ apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",ಅವಕಾಶ doctype doctype . ಎಚ್ಚರಿಕೆ! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ಮುದ್ರಣ, ಇಮೇಲ್ ಕಸ್ಟಮೈಸ್ ಸ್ವರೂಪಗಳು" apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,ಹೊಸ ಆವೃತ್ತಿ ಅಪ್ಡೇಟ್ @@ -1205,6 +1223,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,ತಪ್ಪಾದ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google ಸಂಪರ್ಕಗಳ ಸಂಯೋಜನೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. DocType: Assignment Rule,Description,ವಿವರಣೆ DocType: Print Settings,Repeat Header and Footer in PDF,ಪಿಡಿಎಫ್ ಶಿರೋಲೇಖ ಮತ್ತು ಅಡಿಟಿಪ್ಪಣಿ ಪುನರಾವರ್ತಿಸಿ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,ವೈಫಲ್ಯ DocType: Address Template,Is Default,ಡೀಫಾಲ್ಟ್ DocType: Data Migration Connector,Connector Type,ಕನೆಕ್ಟರ್ ಕೌಟುಂಬಿಕತೆ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,ಅಂಕಣ ಹೆಸರು ಖಾಲಿ ಇರುವಂತಿಲ್ಲ @@ -1269,6 +1288,7 @@ DocType: Print Settings,Enable Raw Printing,ಕಚ್ಚಾ ಮುದ್ರಣ DocType: Website Route Redirect,Source,ಮೂಲ apps/frappe/frappe/templates/includes/list/filters.html,clear,ಸ್ಪಷ್ಟ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,ಮುಗಿದಿದೆ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ DocType: Prepared Report,Filter Values,ಫಿಲ್ಟರ್ ಮೌಲ್ಯಗಳು DocType: Communication,User Tags,ಬಳಕೆದಾರ ಟ್ಯಾಗ್ಗಳು DocType: Data Migration Run,Fail,ಅನುತ್ತೀರ್ಣ @@ -1325,6 +1345,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,ಅ ,Activity,ಚಟುವಟಿಕೆ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","ಸಹಾಯ : , ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಮತ್ತೊಂದು ದಾಖಲೆ ಸಂಪರ್ಕ ಬಳಸಲು "" # ಫಾರ್ಮ್ / ಹಾಳೆ / [ ಟಿಪ್ಪಣಿ ಹೆಸರು ] "" ಲಿಂಕ್ URL ಎಂದು . ( ""http://"" ಬಳಸಬೇಡಿ )" DocType: User Permission,Allow,ಅನುಮತಿಸು +DocType: Data Import Beta,Update Existing Records,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ದಾಖಲೆಗಳನ್ನು ನವೀಕರಿಸಿ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,ಪದೇ ಪದಗಳು ಮತ್ತು ಪಾತ್ರಗಳು ತಪ್ಪಿಸಲು ಅವಕಾಶ DocType: Energy Point Rule,Energy Point Rule,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ ರೂಲ್ DocType: Communication,Delayed,ತಡವಾಗಿದೆ @@ -1337,9 +1358,7 @@ DocType: Milestone,Track Field,ಟ್ರ್ಯಾಕ್ ಫೀಲ್ಡ್ DocType: Notification,Set Property After Alert,ಎಚ್ಚರಿಕೆ ನಂತರ ಆಸ್ತಿ ಹೊಂದಿಸಿ apps/frappe/frappe/config/customization.py,Add fields to forms.,ರೂಪಗಳು ಕ್ಷೇತ್ರಗಳಲ್ಲಿ ಸೇರಿಸಿ . apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ಏನೋ ತೋರುತ್ತಿದೆ ಈ ಸೈಟ್ನ ಪೇಪಾಲ್ ಸಂರಚನಾ ಜೊತೆ ತಪ್ಪು. -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/sidebar/review.js,Add Review,ವಿಮರ್ಶೆಯನ್ನು ಸೇರಿಸಿ -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ಫಾಂಟ್ ಗಾತ್ರ (ಪಿಎಕ್ಸ್) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,ಕಸ್ಟಮೈಸ್ ಫಾರ್ಮ್‌ನಿಂದ ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಡಾಕ್‌ಟೈಪ್‌ಗಳನ್ನು ಮಾತ್ರ ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಅನುಮತಿಸಲಾಗಿದೆ. DocType: Email Account,Sendgrid,Sendgrid @@ -1375,6 +1394,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ಫ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ಕ್ಷಮಿಸಿ! ನೀವು ಸ್ವಯಂ ರಚಿತ ಕಾಮೆಂಟ್ಗಳನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ DocType: Google Settings,Used For Google Maps Integration.,Google ನಕ್ಷೆಗಳ ಏಕೀಕರಣಕ್ಕಾಗಿ ಬಳಸಲಾಗುತ್ತದೆ. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,ರೆಫರೆನ್ಸ್ doctype +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,ಯಾವುದೇ ದಾಖಲೆಗಳನ್ನು ರಫ್ತು ಮಾಡಲಾಗುವುದಿಲ್ಲ DocType: User,System User,ವ್ಯವಸ್ಥೆಯ ಬಳಕೆದಾರ DocType: Report,Is Standard,ಸ್ಟ್ಯಾಂಡರ್ಡ್ DocType: Desktop Icon,_report,_ವರದಿ @@ -1389,6 +1409,7 @@ DocType: Workflow State,minus-sign,ಮೈನಸ್ ಚಿಹ್ನೆ apps/frappe/frappe/public/js/frappe/request.js,Not Found,ಕಂಡುಬಂದಿಲ್ಲ apps/frappe/frappe/www/printview.py,No {0} permission,ಯಾವುದೇ {0} ಅನುಮತಿ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ರಫ್ತು ಕಸ್ಟಮ್ ಅನುಮತಿಗಳು +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ಯಾವುದೇ ಐಟಂಗಳು ಕಂಡುಬಂದಿಲ್ಲ. DocType: Data Export,Fields Multicheck,ಫೀಲ್ಡ್ಸ್ ಮಲ್ಟಿಚ್ಕ್ DocType: Activity Log,Login,ಲಾಗಿನ್ DocType: Web Form,Payments,ಪಾವತಿಗಳು @@ -1449,7 +1470,7 @@ DocType: Email Account,Default Incoming,ಡೀಫಾಲ್ಟ್ ಒಳಬರ DocType: Workflow State,repeat,ಪುನರಾವರ್ತಿತ DocType: Website Settings,Banner,ಗಮನಸೆಳೆಯುವ DocType: Role,"If disabled, this role will be removed from all users.","ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ, ಈ ಪಾತ್ರವನ್ನು ಎಲ್ಲಾ ಬಳಕೆದಾರರಿಗೆ ತೆಗೆದುಹಾಕಲಾಗುತ್ತದೆ." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} ಪಟ್ಟಿಗೆ ಹೋಗಿ +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,ಹುಡುಕಾಟ ಸಹಾಯ DocType: Milestone,Milestone Tracker,ಮೈಲಿಗಲ್ಲು ಟ್ರ್ಯಾಕರ್ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ನೋಂದಾಯಿತ ಆದರೆ ಅಂಗವಿಕಲ @@ -1463,6 +1484,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,ಸ್ಥಳೀಯ ಕ್ DocType: DocType,Track Changes,ಟ್ರ್ಯಾಕ್ ಬದಲಾವಣೆಗಳು DocType: Workflow State,Check,ಪರಿಶೀಲಿಸಿ DocType: Chat Profile,Offline,ಆಫ್ಲೈನ್ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},ಯಶಸ್ವಿಯಾಗಿ ಆಮದು ಮಾಡಲಾಗಿದೆ {0} DocType: User,API Key,API ಕೀ DocType: Email Account,Send unsubscribe message in email,ಇಮೇಲ್ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಸಂದೇಶವನ್ನು ಕಳುಹಿಸಲು apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,ಸಂಪಾದಿಸಿ ಶೀರ್ಷಿಕೆ @@ -1492,7 +1514,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ 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,ಒಟ್ಟು ಪುಟಗಳು -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                      No results found for '

                                                      ,

                                                      ಇದಕ್ಕಾಗಿ ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು ಕಂಡುಬಂದಿಲ್ಲ

                                                      DocType: DocField,Attach Image,ಚಿತ್ರ ಲಗತ್ತಿಸಿ DocType: Workflow State,list-alt,ಪಟ್ಟಿ ವಯಸ್ಸಿನ apps/frappe/frappe/www/update-password.html,Password Updated,ಪಾಸ್ವರ್ಡ್ Updated @@ -1513,8 +1534,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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 ಒಂದು \ ಮಾಡಬೇಕು ವರದಿ DocType: Chat Message,Chat,ಚಾಟಿಂಗ್ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ಸೆಟಪ್> ಬಳಕೆದಾರರ ಅನುಮತಿಗಳು DocType: LDAP Group Mapping,LDAP Group Mapping,ಎಲ್ಡಿಎಪಿ ಗ್ರೂಪ್ ಮ್ಯಾಪಿಂಗ್ DocType: Dashboard Chart,Chart Options,ಚಾರ್ಟ್ ಆಯ್ಕೆಗಳು +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,ಶೀರ್ಷಿಕೆರಹಿತ ಕಾಲಮ್ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} {1} ನಿಂದ {2} ಸಾಲು # {3} DocType: Communication,Expired,ಅವಧಿ apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,ನೀವು ಬಳಸುತ್ತಿರುವ ಟೋಕನ್ ಅಮಾನ್ಯವಾಗಿದೆ ಎಂದು ತೋರುತ್ತಿದೆ! @@ -1524,6 +1547,7 @@ DocType: DocType,System,ವ್ಯವಸ್ಥೆ DocType: Web Form,Max Attachment Size (in MB),ಮ್ಯಾಕ್ಸ್ ಲಗತ್ತು ಗಾತ್ರ (MB ಯಲ್ಲಿ) apps/frappe/frappe/www/login.html,Have an account? Login,ಒಂದು ಖಾತೆಯನ್ನು ಹೊಂದಿಲ್ಲ? ಲಾಗಿನ್ DocType: Workflow State,arrow-down,ಬಾಣದ ಡೌನ್ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},ಸಾಲು {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ಬಳಕೆದಾರ ಅಳಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} ನ {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,ಕೊನೆಯ ರಂದು ನವೀಕರಿಸಲಾಗಿದೆ @@ -1541,6 +1565,7 @@ DocType: Custom Role,Custom Role,ಕಸ್ಟಮ್ ಪಾತ್ರ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,ಮುಖಪುಟ / ಟೆಸ್ಟ್ ಫೋಲ್ಡರ್ 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ನಿಮ್ಮ ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ DocType: Dropbox Settings,Dropbox Access Secret,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಪ್ರವೇಶ ಸೀಕ್ರೆಟ್ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ಕಡ್ಡಾಯ) 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.,ಫೈಲ್ನಲ್ಲಿ ಯಾವುದೇ ಡೇಟಾ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಹೊಸ ಫೈಲ್ ಅನ್ನು ಡೇಟಾದೊಂದಿಗೆ ಮರುಹೊಂದಿಸಿ. @@ -1611,6 +1636,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ಡ್ಯ apps/frappe/frappe/desk/form/assign_to.py,New Message,ಹೊಸ ಸಂದೇಶ DocType: File,Preview HTML,ಮುನ್ನೋಟ ಎಚ್ಟಿಎಮ್ಎಲ್ DocType: Desktop Icon,query-report,ಪ್ರಶ್ನಾವಳಿ ವರದಿ +DocType: Data Import Beta,Template Warnings,ಟೆಂಪ್ಲೇಟು ಎಚ್ಚರಿಕೆಗಳು apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ಶೋಧಕಗಳು ಉಳಿಸಿದ DocType: DocField,Percent,ಪರ್ಸೆಂಟ್ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,ಶೋಧಕಗಳು ಸೆಟ್ ಮಾಡಿ @@ -1632,6 +1658,7 @@ DocType: Custom Field,Custom,ಪದ್ಧತಿ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದರೆ, ನಿರ್ಬಂಧಿತ ಐಪಿ ವಿಳಾಸದಿಂದ ಲಾಗಿನ್ ಮಾಡುವ ಬಳಕೆದಾರರನ್ನು ಎರಡು ಫ್ಯಾಕ್ಟರ್ ದೃಢೀಕರಣಕ್ಕಾಗಿ ಪ್ರಾಂಪ್ಟ್ ಮಾಡಲಾಗುವುದಿಲ್ಲ" DocType: Auto Repeat,Get Contacts,ಸಂಪರ್ಕಗಳನ್ನು ಪಡೆಯಿರಿ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ಅಡಿಯಲ್ಲಿ ದಾಖಲಿಸಿದ ಪೋಸ್ಟ್ಗಳು {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ಶೀರ್ಷಿಕೆರಹಿತ ಕಾಲಮ್ ಅನ್ನು ಬಿಡಲಾಗುತ್ತಿದೆ DocType: Notification,Send alert if date matches this field's value,ದಿನಾಂಕ ಈ ಕ್ಷೇತ್ರದಲ್ಲಿ ಮೌಲ್ಯದ ಹೊಂದುತ್ತಿದೆಯೇ ಎಚ್ಚರಿಕೆಯನ್ನು ಕಳಿಸಿ DocType: Workflow,Transitions,ಪರಿವರ್ತನೆಗಳು apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} ನಿಂದ {2} @@ -1655,6 +1682,7 @@ DocType: Workflow State,step-backward,ಹಂತ ಹಿಂದುಳಿದ apps/frappe/frappe/utils/boilerplate.py,{app_title},{ App_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,ನಿಮ್ಮ ಸೈಟ್ ಸಂರಚನಾ ಡ್ರಾಪ್ಬಾಕ್ಸ್ accesskeys ಸೆಟ್ ದಯವಿಟ್ಟು apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,ಈ ವಿಳಾಸಕ್ಕೆ ಕಳುಹಿಸಲು ಅವಕಾಶ ಈ ರೆಕಾರ್ಡ್ ಅಳಿಸು +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","ಪ್ರಮಾಣಿತವಲ್ಲದ ಪೋರ್ಟ್ ಆಗಿದ್ದರೆ (ಉದಾ. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,ಶಾರ್ಟ್‌ಕಟ್‌ಗಳನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ಮಾತ್ರ ಕಡ್ಡಾಯವಾಗಿ ಜಾಗ ಹೊಸ ದಾಖಲೆಗಳು ಅವಶ್ಯಕ. ನೀವು ಬಯಸಿದರೆ ನೀವು ಕಡ್ಡಾಯವಲ್ಲದ ಕಾಲಮ್ಗಳನ್ನು ಅಳಿಸಬಹುದು. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,ಹೆಚ್ಚಿನ ಚಟುವಟಿಕೆಯನ್ನು ತೋರಿಸಿ @@ -1759,6 +1787,7 @@ 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 ಅಪ್ಲಿಕೇಶನ್ 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,ಅಕ್ಷರಗಳು DocType: DocType,"Naming Options:
                                                      1. field:[fieldname] - By Field
                                                      2. naming_series: - By Naming Series (field called naming_series must be present
                                                      3. Prompt - Prompt user for a name
                                                      4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                      5. @@ -1772,6 +1801,7 @@ DocType: GCalendar Account,Next Sync Token,ಮುಂದಿನ ಸಿಂಕ್ DocType: Energy Point Settings,Energy Point Settings,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳು DocType: Async Task,Succeeded,ಉತ್ತರಾಧಿಕಾರಿ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},ಅಗತ್ಯವಿದೆ ಕಡ್ಡಾಯ ಜಾಗ {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                        No results found for '

                                                        ,

                                                        ಇದಕ್ಕಾಗಿ ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು ಕಂಡುಬಂದಿಲ್ಲ

                                                        apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} ಅನುಮತಿಗಳನ್ನು ಮರುಹೊಂದಿಸಿ ? apps/frappe/frappe/config/desktop.py,Users and Permissions,ಬಳಕೆದಾರರು ಮತ್ತು ಅನುಮತಿಗಳು DocType: S3 Backup Settings,S3 Backup Settings,S3 ಬ್ಯಾಕಪ್ ಸೆಟ್ಟಿಂಗ್ಗಳು @@ -1843,6 +1873,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ರಲ್ಲಿ DocType: Notification,Value Change,ಮೌಲ್ಯ ಬದಲಾಯಿಸು DocType: Google Contacts,Authorize Google Contacts Access,Google ಸಂಪರ್ಕಗಳ ಪ್ರವೇಶವನ್ನು ಅಧಿಕೃತಗೊಳಿಸಿ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,ವರದಿಗಳಿಂದ ಸಂಖ್ಯಾ ಕ್ಷೇತ್ರಗಳನ್ನು ಮಾತ್ರ ತೋರಿಸಲಾಗುತ್ತಿದೆ +DocType: Data Import Beta,Import Type,ಆಮದು ಪ್ರಕಾರ DocType: Access Log,HTML Page,HTML ಪುಟ DocType: Address,Subsidiary,ಸಹಕಾರಿ apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ ಟ್ರೇಗೆ ಸಂಪರ್ಕವನ್ನು ಪ್ರಯತ್ನಿಸುತ್ತಿದೆ ... @@ -1853,7 +1884,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,ಅಮಾ DocType: Custom DocPerm,Write,ಬರೆ apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,ಕೇವಲ ನಿರ್ವಾಹಕರು ಪ್ರಶ್ನೆ / ಸ್ಕ್ರಿಪ್ಟ್ ವರದಿಗಳು ರಚಿಸಲು ಅವಕಾಶ apps/frappe/frappe/public/js/frappe/form/save.js,Updating,ನವೀಕರಿಸಲಾಗುತ್ತಿದೆ -DocType: File,Preview,ಮುನ್ನೋಟ +DocType: Data Import Beta,Preview,ಮುನ್ನೋಟ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ಫೀಲ್ಡ್ "ಮೌಲ್ಯ" ಕಡ್ಡಾಯ. ನವೀಕರಿಸಲಾಗುತ್ತದೆ ಮೌಲ್ಯವನ್ನು ಸೂಚಿಸಲು DocType: Customize Form,Use this fieldname to generate title,ಶೀರ್ಷಿಕೆ ತಯಾರಿಸಲು ಈ FIELDNAME ಬಳಸಿ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,ಆಮದು ಇಮೇಲ್ @@ -1965,7 +1996,6 @@ DocType: GCalendar Account,Session Token,ಸೆಷನ್ ಟೋಕನ್ DocType: Currency,Symbol,ವಿಗ್ರಹ apps/frappe/frappe/model/base_document.py,Row #{0}:,ರೋ # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,ಡೇಟಾವನ್ನು ಅಳಿಸುವುದನ್ನು ದೃ irm ೀಕರಿಸಿ -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಇಮೇಲ್ apps/frappe/frappe/auth.py,Login not allowed at this time,ಲಾಗಿನ್ ಈ ಸಮಯದಲ್ಲಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ DocType: Data Migration Run,Current Mapping Action,ಪ್ರಸ್ತುತ ಮ್ಯಾಪಿಂಗ್ ಕ್ರಿಯೆ DocType: Dashboard Chart Source,Source Name,ಮೂಲ ಹೆಸರು @@ -1978,6 +2008,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ಜ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ನಂತರ DocType: LDAP Settings,LDAP Email Field,LDAP ಅನ್ನು ಇಮೇಲ್ ಫೀಲ್ಡ್ apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} ಪಟ್ಟಿ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} ದಾಖಲೆಗಳನ್ನು ರಫ್ತು ಮಾಡಿ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ಈಗಾಗಲೇ ಬಳಕೆದಾರರ ಪಟ್ಟಿ ಮಾಡಲು ರಲ್ಲಿ DocType: User Email,Enable Outgoing,ಹೊರಹೋಗುವ ಸಕ್ರಿಯಗೊಳಿಸಿ DocType: Address,Fax,ಫ್ಯಾಕ್ಸ್ @@ -2037,7 +2068,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,ಪ್ರಿಂಟ್ ಡಾಕ್ಯುಮೆಂಟ್ಸ್ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ಕ್ಷೇತ್ರಕ್ಕೆ ಹೋಗು DocType: Contact Us Settings,Forward To Email Address,ಫಾರ್ವರ್ಡ್ ಇಮೇಲ್ ವಿಳಾಸಕ್ಕೆ +DocType: Contact Phone,Is Primary Phone,ಪ್ರಾಥಮಿಕ ಫೋನ್ ಆಗಿದೆ DocType: Auto Email Report,Weekdays,ವಾರದ ದಿನಗಳು +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} ದಾಖಲೆಗಳನ್ನು ರಫ್ತು ಮಾಡಲಾಗುತ್ತದೆ apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,ಶೀರ್ಷಿಕೆ ಕ್ಷೇತ್ರದಲ್ಲಿ ಮಾನ್ಯ ಕ್ಷೇತ್ರ ಹೆಸರು ಇರಬೇಕು DocType: Post Comment,Post Comment,ಕಾಮೆಂಟ್ ಪೋಸ್ಟ್ ಮಾಡಿ apps/frappe/frappe/config/core.py,Documents,ಡಾಕ್ಯುಮೆಂಟ್ಸ್ @@ -2056,7 +2089,9 @@ eval:doc.age>18",ಇಲ್ಲಿ ವ್ಯಾಖ್ಯಾನಿಸಲಾಗ DocType: Social Login Key,Office 365,ಕಚೇರಿ 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ಇಂದು apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ಇಂದು +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ನೀವು ಈ ಹೊಂದಿರಬೇಕು, ಬಳಕೆದಾರರು ಮಾತ್ರ ಸಾಧ್ಯವಾಗುತ್ತದೆ ಪ್ರವೇಶ ದಾಖಲೆಗಳನ್ನು ಲಿಂಕ್ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಅಲ್ಲಿ ( ಉದಾ. ಬ್ಲಾಗ್ ಪೋಸ್ಟ್ ) ( ಉದಾ. ಬ್ಲಾಗರ್ ) ಇರುತ್ತದೆ ." +DocType: Data Import Beta,Submit After Import,ಆಮದು ನಂತರ ಸಲ್ಲಿಸಿ DocType: Error Log,Log of Scheduler Errors,ಶೆಡ್ಯೂಲರ ತಪ್ಪುಗಳಿಗೆ ಲಾಗ್ DocType: User,Bio,ಬಯೋ DocType: OAuth Client,App Client Secret,ಅಪ್ಲಿಕೇಶನ್ ಕ್ಲೈಂಟ್ ಸೀಕ್ರೆಟ್ @@ -2075,10 +2110,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,ಲಾಗಿನ್ ಪುಟ ಕಸ್ಟಮರ್ ಸೈನ್ ಅಪ್ ಲಿಂಕ್ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ ಮಾಲೀಕರನ್ನು ನಿಯೋಜಿಸಲಾಗಿದೆ DocType: Workflow State,arrow-left,ಬಾಣದ ಎಡ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,ರಫ್ತು 1 ದಾಖಲೆ DocType: Workflow State,fullscreen,ಫುಲ್ ಸ್ಕ್ರೀನ್ DocType: Chat Token,Chat Token,ಟೋಕನ್ ಚಾಟ್ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ಚಾರ್ಟ್ ರಚಿಸಿ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ಆಮದು ಮಾಡಬೇಡಿ DocType: Web Page,Center,ಕೇಂದ್ರ DocType: Notification,Value To Be Set,ಮೌಲ್ಯ ಹೊಂದಿಸಿ ಬಿ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} ಸಂಪಾದಿಸಿ @@ -2098,6 +2135,7 @@ DocType: Print Format,Show Section Headings,ಶೋ ವಿಭಾಗ ಶಿ DocType: Bulk Update,Limit,ಮಿತಿ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},ಇದಕ್ಕೆ ಸಂಬಂಧಿಸಿದ {0} ಡೇಟಾವನ್ನು ಅಳಿಸಲು ನಾವು ವಿನಂತಿಯನ್ನು ಸ್ವೀಕರಿಸಿದ್ದೇವೆ: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,ಹೊಸ ವಿಭಾಗವನ್ನು ಸೇರಿಸಿ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,ಫಿಲ್ಟರ್ ಮಾಡಿದ ದಾಖಲೆಗಳು apps/frappe/frappe/www/printview.py,No template found at path: {0},ಮಾರ್ಗ ಕಂಡುಬರುವ ಯಾವುದೇ ಟೆಂಪ್ಲೇಟು: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ಯಾವುದೇ ಇಮೇಲ್ ಖಾತೆ DocType: Comment,Cancelled,ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ @@ -2183,7 +2221,9 @@ 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} ಸಾಧ್ಯವಿಲ್ಲ 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 ಅನ್ನು +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,ಜಾಗತಿಕ ಹುಡುಕಾಟ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರಗಳು ಮರುಹೊಂದಿಸಿ. ,Lead Conversion Time,ಪರಿವರ್ತನೆ ಸಮಯವನ್ನು ಲೀಡ್ ಮಾಡಿ apps/frappe/frappe/desk/page/activity/activity.js,Build Report,ವರದಿ ಬಿಲ್ಡ್ DocType: Note,Notify users with a popup when they log in,ಅವರು ಒಳಗೆ ಪ್ರವೇಶಿಸಿದಾಗ ಪಾಪ್ಅಪ್ ಬಳಕೆದಾರರಿಗೆ ಸೂಚಿಸಿ @@ -2203,8 +2243,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,ಮುಚ್ಚಿ 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ಸೆಟಪ್> ಬಳಕೆದಾರರ ಅನುಮತಿಗಳು -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,ಅಪ್ಡೇಟ್ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,ಅಪ್ಡೇಟ್ DocType: Transaction Log,Transaction Hash,ಟ್ರಾನ್ಸಾಕ್ಷನ್ ಹ್ಯಾಶ್ DocType: Error Snapshot,Snapshot View,ಸ್ನ್ಯಾಪ್ಶಾಟ್ ವೀಕ್ಷಿಸಿ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,ಕಳುಹಿಸುವ ಮೊದಲು ಸುದ್ದಿಪತ್ರವನ್ನು ಉಳಿಸಲು ದಯವಿಟ್ಟು @@ -2231,7 +2270,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,ಪಾಯಿಂಟ DocType: SMS Settings,SMS Gateway URL,SMS ಗೇಟ್ವೇ URL ಅನ್ನು apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ಸಾಧ್ಯವಿಲ್ಲ ""{2}"". ಇದು ""{3}"" ಒಂದು ಆಗಿರಬೇಕು" apps/frappe/frappe/utils/data.py,{0} or {1},{0} ಅಥವಾ {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,ಪಾಸ್ವರ್ಡ್ ಅಪ್ಡೇಟ್ DocType: Workflow State,trash,ಕಸ DocType: System Settings,Older backups will be automatically deleted,ಹಳೆಯ ಬ್ಯಾಕ್ಅಪ್ ಅಳಿಸಲ್ಪಡುತ್ತದೆ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ಅಮಾನ್ಯವಾದ ಪ್ರವೇಶ ಕೀ ID ಅಥವಾ ರಹಸ್ಯ ಪ್ರವೇಶ ಕೀ. @@ -2259,6 +2297,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,ಯ DocType: Address,Preferred Shipping Address,ಮೆಚ್ಚಿನ ಶಿಪ್ಪಿಂಗ್ ವಿಳಾಸ apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,ಪತ್ರ ತಲೆ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} ದಾಖಲಿಸಿದವರು ಈ {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ. ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ದಯವಿಟ್ಟು ಹೊಸ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ರಚಿಸಿ DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","ಇದನ್ನು ಪರಿಶೀಲಿಸಿದಲ್ಲಿ, ಮಾನ್ಯವಾದ ಡೇಟಾದೊಂದಿಗೆ ಸಾಲುಗಳನ್ನು ಆಮದು ಮಾಡಲಾಗುವುದು ಮತ್ತು ನಂತರ ನೀವು ಆಮದು ಮಾಡಲು ಅಮಾನ್ಯವಾದ ಸಾಲುಗಳನ್ನು ಹೊಸ ಫೈಲ್ಗೆ ಎಸೆಯಲಾಗುತ್ತದೆ." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ಡಾಕ್ಯುಮೆಂಟ್ ಪಾತ್ರವನ್ನು ಬಳಕೆದಾರರು ಮಾತ್ರ ಸಂಪಾದಿಸಬಹುದು @@ -2285,6 +2324,7 @@ DocType: Custom Field,Is Mandatory Field,ಕಡ್ಡಾಯ ಕ್ಷೇತ DocType: User,Website User,ವೆಬ್ಸೈಟ್ ಬಳಕೆದಾರ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,ಪಿಡಿಎಫ್ಗೆ ಮುದ್ರಿಸುವಾಗ ಕೆಲವು ಕಾಲಮ್ಗಳನ್ನು ಕತ್ತರಿಸಬಹುದು. 10 ಕ್ಕಿಂತ ಕಡಿಮೆ ಕಾಲಮ್‌ಗಳ ಸಂಖ್ಯೆಯನ್ನು ಇರಿಸಿಕೊಳ್ಳಲು ಪ್ರಯತ್ನಿಸಿ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,ಸಮ +DocType: Data Import Beta,Don't Send Emails,ಇಮೇಲ್‌ಗಳನ್ನು ಕಳುಹಿಸಬೇಡಿ DocType: Integration Request,Integration Request Service,ಇಂಟಿಗ್ರೇಷನ್ ವಿನಂತಿ ಸೇವೆ DocType: Access Log,Access Log,ಪ್ರವೇಶ ಲಾಗ್ DocType: Website Script,Script to attach to all web pages.,ಸ್ಕ್ರಿಪ್ಟ್ ಎಲ್ಲ ವೆಬ್ ಪುಟಗಳು ಅಂಟಿಕೊಳ್ಳುವುದು. @@ -2324,6 +2364,7 @@ DocType: Contact,Passive,ನಿಷ್ಕ್ರಿಯ DocType: Auto Repeat,Accounts Manager,ಖಾತೆಗಳು ಮ್ಯಾನೇಜರ್ apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} ಗಾಗಿ ನಿಯೋಜನೆ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,ನಿಮ್ಮ ಪಾವತಿ ರದ್ದುಪಡಿಸಲಾಗಿದೆ. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,ಕಡತ ಬಗೆಯ apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,ಎಲ್ಲವನ್ನೂ ವೀಕ್ಷಿಸಿ DocType: Help Article,Knowledge Base Editor,ಜ್ಞಾನ ನೆಲೆ ಸಂಪಾದಕ @@ -2355,6 +2396,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,ಡೇಟಾ apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,ಡಾಕ್ಯುಮೆಂಟ್ ಸ್ಥಿತಿ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,ಅನುಮೋದನೆ ಅಗತ್ಯವಿದೆ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,ನಿಮ್ಮ ಫೈಲ್ ಅನ್ನು ನಾವು ಆಮದು ಮಾಡಿಕೊಳ್ಳುವ ಮೊದಲು ಈ ಕೆಳಗಿನ ದಾಖಲೆಗಳನ್ನು ರಚಿಸಬೇಕಾಗಿದೆ. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth ಅನ್ನು ಅಧಿಕಾರ ಕೋಡ್ apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,ಆಮದು ಅವಕಾಶ DocType: Deleted Document,Deleted DocType,ಅಳಿಸಲಾಗಿದೆ DOCTYPE @@ -2408,8 +2450,8 @@ DocType: GCalendar Settings,Google API Credentials,ಗೂಗಲ್ API ರುಜ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ಸೆಷನ್ ಪ್ರಾರಂಭಿಸಿ ವಿಫಲವಾಗಿದೆ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ಸೆಷನ್ ಪ್ರಾರಂಭಿಸಿ ವಿಫಲವಾಗಿದೆ apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ಈ ಇಮೇಲ್ {0} ಕಳುಹಿಸಲಾಗಿದೆ ಮತ್ತು ನಕಲು ಮಾಡಲಾಯಿತು {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಸಲ್ಲಿಸಿದೆ {0} DocType: Workflow State,th,ನೇ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳು) ಹಿಂದೆ DocType: Social Login Key,Provider Name,ಪೂರೈಕೆದಾರ ಹೆಸರು apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ಹೊಸ {0} ರಚಿಸಿ DocType: Contact,Google Contacts,Google ಸಂಪರ್ಕಗಳು @@ -2417,6 +2459,7 @@ DocType: GCalendar Account,GCalendar Account,ಜಿಕಾಲೆಂಡರ್ ಖ DocType: Email Rule,Is Spam,ಸ್ಪಾಮ್ ಈಸ್ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},ವರದಿ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ಓಪನ್ {0} +DocType: Data Import Beta,Import Warnings,ಆಮದು ಎಚ್ಚರಿಕೆಗಳು DocType: OAuth Client,Default Redirect URI,ಡೀಫಾಲ್ಟ್ ಮರುನಿರ್ದೇಶನ URI ಅನ್ನು DocType: Auto Repeat,Recipients,ಸ್ವೀಕೃತದಾರರ DocType: System Settings,Choose authentication method to be used by all users,ಎಲ್ಲ ಬಳಕೆದಾರರಿಂದ ಬಳಸಬೇಕಾದ ದೃಢೀಕರಣ ವಿಧಾನವನ್ನು ಆರಿಸಿಕೊಳ್ಳಿ @@ -2547,6 +2590,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,ಹೊಸ ರಚಿಸಿ DocType: Workflow State,chevron-down,CHEVRON ಡೌನ್ apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),ಕಳುಹಿಸಲಾಗಿಲ್ಲ ಇಮೇಲ್ {0} (ಅಂಗವಿಕಲ / ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,ರಫ್ತು ಮಾಡಲು ಕ್ಷೇತ್ರಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,ಚಿಕ್ಕ ಕರೆನ್ಸಿ ಫ್ರ್ಯಾಕ್ಷನ್ ಮೌಲ್ಯ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,ವರದಿ ಸಿದ್ಧಪಡಿಸಲಾಗುತ್ತಿದೆ @@ -2555,6 +2599,7 @@ DocType: Workflow State,th-list,ನೇ ಪಟ್ಟಿ DocType: Web Page,Enable Comments,ಪ್ರತಿಕ್ರಿಯೆಗಳು ಸಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ಟಿಪ್ಪಣಿಗಳು DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),ಈ IP ವಿಳಾಸವನ್ನು ಕೇವಲ ಬಳಕೆದಾರರ ನಿರ್ಬಂಧಿಸಿ . ಬಹು IP ವಿಳಾಸಗಳನ್ನು ಕಾಮಾಗಳೊಂದಿಗೆ ಬೇರ್ಪಡಿಸುವ ಮೂಲಕ ಸೇರಿಸಬಹುದು. ಆದ್ದರಿಂದ ಹಾಗೆ ಭಾಗಶಃ IP ವಿಳಾಸಗಳನ್ನು ಸ್ವೀಕರಿಸುತ್ತದೆ (111 111 111) +DocType: Data Import Beta,Import Preview,ಆಮದು ಪೂರ್ವವೀಕ್ಷಣೆ DocType: Communication,From,ಗೆ apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,ಮೊದಲ ಗುಂಪು ನೋಡ್ ಆಯ್ಕೆ. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},ರಲ್ಲಿ {0} ಕ್ಲಿಕ್ {1} @@ -2652,6 +2697,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,ನಡುವೆ DocType: Social Login Key,fairlogin,ನ್ಯಾಯವಾದಿ DocType: Async Task,Queued,ಸರತಿಯಲ್ಲಿ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ಸೆಟಪ್> ಫಾರ್ಮ್ ಅನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ DocType: Braintree Settings,Use Sandbox,ಸ್ಯಾಂಡ್ಬಾಕ್ಸ್ ಬಳಸಿ apps/frappe/frappe/utils/goal.py,This month,ಈ ತಿಂಗಳು apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,ಹೊಸ ಕಸ್ಟಮ್ ಪ್ರಿಂಟ್ ಸ್ವರೂಪ @@ -2666,6 +2712,7 @@ DocType: Session Default,Session Default,ಸೆಷನ್ ಡೀಫಾಲ್ಟ DocType: Chat Room,Last Message,ಕೊನೆಯ ಸಂದೇಶ DocType: OAuth Bearer Token,Access Token,ಪ್ರವೇಶ ಟೋಕನ್ DocType: About Us Settings,Org History,ಆರ್ಗ್ ಇತಿಹಾಸ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,ಸುಮಾರು {0} ನಿಮಿಷಗಳು ಉಳಿದಿವೆ DocType: Auto Repeat,Next Schedule Date,ಮುಂದಿನ ವೇಳಾಪಟ್ಟಿ ದಿನಾಂಕ DocType: Workflow,Workflow Name,ವರ್ಕ್ಫ್ಲೋ ಹೆಸರು DocType: DocShare,Notify by Email,ಇಮೇಲ್ ಮೂಲಕ ಸೂಚಿಸಿ @@ -2695,6 +2742,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,ಲೇಖಕ apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,ಪುನರಾರಂಭಿಸು ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,ಪುನಾರಂಭಿಸುವ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,ಎಚ್ಚರಿಕೆಗಳನ್ನು ತೋರಿಸಿ apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},ಮರು: {0} DocType: Address,Purchase User,ಖರೀದಿ ಬಳಕೆದಾರ DocType: Data Migration Run,Push Failed,ಪುಶ್ ವಿಫಲವಾಗಿದೆ @@ -2732,6 +2780,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ವಿ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ಸುದ್ದಿಪತ್ರವನ್ನು ವೀಕ್ಷಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ. DocType: User,Interests,ಆಸಕ್ತಿಗಳು apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,ಪಾಸ್ವರ್ಡ್ ರೀಸೆಟ್ ಸೂಚನೆಗಳನ್ನು ನಿಮ್ಮ ಇಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ +DocType: Energy Point Rule,Allot Points To Assigned Users,ನಿಯೋಜಿಸಲಾದ ಬಳಕೆದಾರರಿಗೆ ಅಂಕಗಳನ್ನು ನೀಡಿ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","ಹಂತ 0 ಕ್ಷೇತ್ರದಲ್ಲಿ ಹಂತದ ಅನುಮತಿಗಳನ್ನು ಡಾಕ್ಯುಮೆಂಟ್ ಹಂತದ ಅನುಮತಿಗಳನ್ನು, \ ಹೆಚ್ಚಿನ ಮಟ್ಟದ ಹೊಂದಿದೆ." DocType: Contact Email,Is Primary,ಪ್ರಾಥಮಿಕವಾಗಿದೆ @@ -2755,6 +2804,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,.ಪ್ರಕಟಿಸುವ ಕೀ DocType: Stripe Settings,Publishable Key,.ಪ್ರಕಟಿಸುವ ಕೀ apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,ಆಮದು ಪ್ರಾರಂಭಿಸಿ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,ರಫ್ತು ಕೌಟುಂಬಿಕತೆ DocType: Workflow State,circle-arrow-left,ವೃತ್ತದ ಬಾಣವನ್ನು ಬಿಟ್ಟು DocType: System Settings,Force User to Reset Password,ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಲು ಬಳಕೆದಾರರನ್ನು ಒತ್ತಾಯಿಸಿ apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis ಸಂಗ್ರಹ ಸರ್ವರ್ ಚಾಲನೆಯಲ್ಲಿಲ್ಲ. ನಿರ್ವಾಹಕ / ಟೆಕ್ ಬೆಂಬಲವನ್ನು ಸಂಪರ್ಕಿಸಿ @@ -2769,10 +2819,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,ಪ್ರಾಂಪ್ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ DocType: Auto Email Report,Filters Display,ಶೋಧಕಗಳು ಪ್ರದರ್ಶನ apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ತಿದ್ದುಪಡಿ ಮಾಡಲು "ತಿದ್ದುಪಡಿ ಮಾಡಿದ_" ಕ್ಷೇತ್ರವು ಇರಬೇಕು. +DocType: Contact,Numbers,ಸಂಖ್ಯೆಗಳು apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ಫಿಲ್ಟರ್‌ಗಳನ್ನು ಉಳಿಸಿ DocType: Address,Plant,ಗಿಡ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ಎಲ್ಲರಿಗೂ ಪ್ರತ್ಯುತ್ತರ DocType: DocType,Setup,ಸೆಟಪ್ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,ಎಲ್ಲಾ ದಾಖಲೆಗಳು DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google ಸಂಪರ್ಕಗಳನ್ನು ಸಿಂಕ್ ಮಾಡಬೇಕಾದ ಇಮೇಲ್ ವಿಳಾಸ. DocType: Email Account,Initial Sync Count,ಆರಂಭಿಕ ಸಿಂಕ್ ಕೌಂಟ್ DocType: Workflow State,glass,ಗಾಜು @@ -2797,7 +2849,7 @@ DocType: Workflow State,font,ತೈಲದಾನಿ DocType: DocType,Show Preview Popup,ಪೂರ್ವವೀಕ್ಷಣೆ ಪಾಪ್ಅಪ್ ತೋರಿಸಿ apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ಈ ಉನ್ನತ 100 ಸಾಮಾನ್ಯ ಗುಪ್ತಪದವನ್ನು. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,ಪಾಪ್ ಅಪ್ಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ದಯವಿಟ್ಟು -DocType: User,Mobile No,ಮೊಬೈಲ್ ಸಂಖ್ಯೆ +DocType: Contact,Mobile No,ಮೊಬೈಲ್ ಸಂಖ್ಯೆ DocType: Communication,Text Content,ಪಠ್ಯ ವಿಷಯ DocType: Customize Form Field,Is Custom Field,ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರವಾಗಿದೆ DocType: Workflow,"If checked, all other workflows become inactive.","ಪರಿಶೀಲಿಸಿದರೆ, ಎಲ್ಲಾ ಇತರ ಕಾರ್ಯಗಳಲ್ಲಿ ನಿಷ್ಕ್ರಿಯವಾಗುತ್ತವೆ ." @@ -2843,6 +2895,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ಸ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,ಹೊಸ ಪ್ರಿಂಟ್ ಸ್ವರೂಪ ಹೆಸರು apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,ಟಾಗಲ್ ಪಾರ್ಶ್ವಪಟ್ಟಿ DocType: Data Migration Run,Pull Insert,ಸೇರಿಸಿ ಪುಲ್ ಮಾಡಿ +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",ಗುಣಕ ಮೌಲ್ಯದೊಂದಿಗೆ ಬಿಂದುಗಳನ್ನು ಗುಣಿಸಿದ ನಂತರ ಗರಿಷ್ಠ ಅಂಕಗಳನ್ನು ಅನುಮತಿಸಲಾಗಿದೆ (ಗಮನಿಸಿ: ಯಾವುದೇ ಮಿತಿಯಿಲ್ಲದೆ ಈ ಕ್ಷೇತ್ರವನ್ನು ಖಾಲಿ ಬಿಡಿ ಅಥವಾ 0 ಅನ್ನು ಹೊಂದಿಸಿ) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,ಅಮಾನ್ಯ ಟೆಂಪ್ಲೇಟು apps/frappe/frappe/model/db_query.py,Illegal SQL Query,ಅಕ್ರಮ SQL ಪ್ರಶ್ನೆ apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,ಕಡ್ಡಾಯ: DocType: Chat Message,Mentions,ಉಲ್ಲೇಖಗಳು @@ -2883,9 +2938,11 @@ DocType: Braintree Settings,Public Key,ಸಾರ್ವಜನಿಕ ಕೀ DocType: GSuite Settings,GSuite Settings,GSuite ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Address,Links,ಲಿಂಕ್ಸ್ DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,ಈ ಖಾತೆಯನ್ನು ಬಳಸಿಕೊಂಡು ಕಳುಹಿಸಲಾದ ಎಲ್ಲಾ ಇಮೇಲ್‌ಗಳಿಗೆ ಕಳುಹಿಸುವವರ ಹೆಸರಾಗಿ ಈ ಖಾತೆಯಲ್ಲಿ ಉಲ್ಲೇಖಿಸಲಾದ ಇಮೇಲ್ ವಿಳಾಸ ಹೆಸರನ್ನು ಬಳಸುತ್ತದೆ. +DocType: Energy Point Rule,Field To Check,ಪರಿಶೀಲಿಸಲು ಕ್ಷೇತ್ರ apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,ದಯವಿಟ್ಟು ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ. apps/frappe/frappe/model/base_document.py,Value missing for,ಮೌಲ್ಯ ಕಾಣೆಯಾಗಿದೆ apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,ಮಕ್ಕಳ ಸೇರಿಸಿ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,ಆಮದು ಪ್ರಗತಿ DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",ಷರತ್ತು ತೃಪ್ತಿ ಹೊಂದಿದ್ದರೆ ಬಳಕೆದಾರರಿಗೆ ಅಂಕಗಳೊಂದಿಗೆ ಬಹುಮಾನ ನೀಡಲಾಗುತ್ತದೆ. ಉದಾ. doc.status == 'ಮುಚ್ಚಲಾಗಿದೆ' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ಸಲ್ಲಿಸಲಾಗಿದೆ ರೆಕಾರ್ಡ್ ಅಳಿಸಲಾಗುವುದಿಲ್ಲ. @@ -2922,6 +2979,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google ಕ್ಯಾಲ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,ನೀವು ಹುಡುಕುತ್ತಿರುವ ಪುಟ ಕಾಣೆಯಾಗಿದೆ. ಸ್ಥಳಾಂತರ ಅಥವಾ ಲಿಂಕ್ ಒಂದು ಮುದ್ರಣದೋಷ ಇಲ್ಲ ಏಕೆಂದರೆ ಆಗಿರಬಹುದು. apps/frappe/frappe/www/404.html,Error Code: {0},ದೋಷ ಕೋಡ್: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","ಸರಳ ಪಠ್ಯ ಪಟ್ಟಿಗಳನ್ನು ಪುಟ ವಿವರಣೆ , ಸಾಲುಗಳನ್ನು ಕೇವಲ ಒಂದೆರಡು . ( ಮ್ಯಾಕ್ಸ್ 140 ಅಕ್ಷರಗಳು)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರಗಳಾಗಿವೆ DocType: Workflow,Allow Self Approval,ಸ್ವಯಂ ಅನುಮೋದನೆಯನ್ನು ಅನುಮತಿಸಿ DocType: Event,Event Category,ಈವೆಂಟ್ ವರ್ಗ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,ಜಾನ್ ಡೋ @@ -2970,8 +3028,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ಗೆ ಸರಿಸ DocType: Address,Preferred Billing Address,ಮೆಚ್ಚಿನ ಬಿಲ್ಲಿಂಗ್ ವಿಳಾಸ apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,ಹಲವಾರು ಒಂದು ವಿನಂತಿಯನ್ನು ಬರೆಯುತ್ತಾರೆ. ಸಣ್ಣ ಮನವಿಯನ್ನು ಕಳುಹಿಸಲು ದಯವಿಟ್ಟು apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google ಡ್ರೈವ್ ಅನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿದೆ. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ {0} ಅನ್ನು ಪುನರಾವರ್ತಿಸಲಾಗಿದೆ. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ಮೌಲ್ಯಗಳು ಬದಲಾವಣೆ DocType: Workflow State,arrow-up,ಬಾಣದ ಅಪ್ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} ಕೋಷ್ಟಕಕ್ಕೆ ಕನಿಷ್ಠ ಒಂದು ಸಾಲು ಇರಬೇಕು DocType: OAuth Bearer Token,Expires In,ರಲ್ಲಿ ಮುಕ್ತಾಯಗೊಳ್ಳುತ್ತದೆ DocType: DocField,Allow on Submit,ಸಲ್ಲಿಸಿ ಮೇಲೆ ಅನುಮತಿಸಿ DocType: DocField,HTML,ಎಚ್ಟಿಎಮ್ಎಲ್ @@ -3056,6 +3116,7 @@ DocType: Custom Field,Options Help,ಆಯ್ಕೆಗಳು ಸಹಾಯ 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 ದಾಖಲೆಯನ್ನು ರಫ್ತು ಮಾಡಲಾಗುತ್ತದೆ 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 ನಿರ್ಬಂಧಿಸು @@ -3072,6 +3133,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,ಪರಿಶೀಲನಾ ಕ DocType: Webhook,Webhook Request,Webhook ವಿನಂತಿ apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** ವಿಫಲವಾಗಿದೆ: {0} ಗೆ {1}: {2} DocType: Data Migration Mapping,Mapping Type,ಮ್ಯಾಪಿಂಗ್ ಕೌಟುಂಬಿಕತೆ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,ಕಡ್ಡಾಯವಾಗಿ ಆಯ್ಕೆ apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,ಬ್ರೌಸ್ apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","ಚಿಹ್ನೆಗಳು, ಅಂಕೆಗಳು, ಅಥವಾ ದೊಡ್ಡಕ್ಷರ ಅಕ್ಷರಗಳು ಅಗತ್ಯವಿಲ್ಲ." DocType: DocField,Currency,ಕರೆನ್ಸಿ @@ -3102,11 +3164,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,ಲೆಟರ್ ಹೆಡ್ ಆಧರಿಸಿದೆ apps/frappe/frappe/utils/oauth.py,Token is missing,ಟೋಕನ್ ಕಾಣೆಯಾಗಿದೆ apps/frappe/frappe/www/update-password.html,Set Password,ಹೊಂದಿಸಿ ಪಾಸ್ವರ್ಡ್ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} ದಾಖಲೆಗಳನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಆಮದು ಮಾಡಲಾಗಿದೆ. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,ಗಮನಿಸಿ: ಪುಟ ಹೆಸರು ಬದಲಾಯಿಸುವುದು ಈ ಪುಟಕ್ಕೆ ಹಿಂದಿನ URL ಒಡೆಯುತ್ತವೆ. apps/frappe/frappe/utils/file_manager.py,Removed {0},ತೆಗೆದು {0} DocType: SMS Settings,SMS Settings,SMS ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Company History,Highlight,ಹೈಲೈಟ್ DocType: Dashboard Chart,Sum,ಮೊತ್ತ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,ಡೇಟಾ ಆಮದು ಮೂಲಕ DocType: OAuth Provider Settings,Force,ಫೋರ್ಸ್ apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},ಕೊನೆಯದಾಗಿ ಸಿಂಕ್ ಮಾಡಲಾಗಿದೆ {0} DocType: DocField,Fold,ಪಟ್ಟು @@ -3175,6 +3239,7 @@ DocType: Website Settings,Top Bar Items,ಟಾಪ್ ಬಾರ್ ಐಟಂಗ DocType: Notification,Print Settings,ಮುದ್ರಣ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು DocType: Page,Yes,ಹೌದು DocType: DocType,Max Attachments,ಮ್ಯಾಕ್ಸ್ ಲಗತ್ತುಗಳನ್ನು +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,ಸುಮಾರು {0} ಸೆಕೆಂಡುಗಳು ಉಳಿದಿವೆ DocType: Calendar View,End Date Field,ಅಂತಿಮ ದಿನಾಂಕ ಕ್ಷೇತ್ರ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ಜಾಗತಿಕ ಶಾರ್ಟ್‌ಕಟ್‌ಗಳು DocType: Desktop Icon,Page,ಪುಟ @@ -3283,6 +3348,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite ಪ್ರವೇಶಿಸ DocType: DocType,DESC,DESC DocType: DocType,Naming,ಹೆಸರಿಸುವ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,ಎಲ್ಲಾ ಆಯ್ಕೆಮಾಡಿ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},ಕಾಲಮ್ {0} apps/frappe/frappe/config/customization.py,Custom Translations,ಕಸ್ಟಮ್ ಅನುವಾದಗಳು apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,ಪ್ರೋಗ್ರೆಸ್ apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,ಪಾತ್ರ @@ -3325,6 +3391,7 @@ DocType: Stripe Settings,Stripe Settings,ಪಟ್ಟಿ ಸೆಟ್ಟಿಂ DocType: Stripe Settings,Stripe Settings,ಪಟ್ಟಿ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Data Migration Mapping,Data Migration Mapping,ಡೇಟಾ ವಲಸೆ ಮ್ಯಾಪಿಂಗ್ DocType: Auto Email Report,Period,ಅವಧಿ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,ಸುಮಾರು {0} ನಿಮಿಷ ಉಳಿದಿದೆ apps/frappe/frappe/www/login.py,Invalid Login Token,ಸಹಿ ತಪ್ಪಿದೆ ಟೋಕನ್ apps/frappe/frappe/public/js/frappe/chat.js,Discard,ತಿರಸ್ಕರಿಸಿ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 ಗಂಟೆಯ ಹಿಂದೆ @@ -3360,6 +3427,7 @@ DocType: Calendar View,Start Date Field,ಪ್ರಾರಂಭ ದಿನಾಂಕ DocType: Role,Role Name,ಪಾತ್ರ ಹೆಸರು apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,ಡೆಸ್ಕ್ ಬದಲಿಸಿ apps/frappe/frappe/config/core.py,Script or Query reports,ಸ್ಕ್ರಿಪ್ಟ್ ಅಥವಾ ಪ್ರಶ್ನೆಯ ವರದಿ +DocType: Contact Phone,Is Primary Mobile,ಪ್ರಾಥಮಿಕ ಮೊಬೈಲ್ ಆಗಿದೆ DocType: Workflow Document State,Workflow Document State,ಡಾಕ್ಯುಮೆಂಟ್ ವರ್ಕ್ಫ್ಲೋ ರಾಜ್ಯ apps/frappe/frappe/public/js/frappe/request.js,File too big,ತುಂಬಾ ದೊಡ್ಡ ಫೈಲ್ apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ಇಮೇಲ್ ಖಾತೆ ಅನೇಕ ಬಾರಿ ಸೇರಿಸಲಾಗಿದೆ @@ -3436,6 +3504,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,ಕೆಲವು ವೈಶಿಷ್ಟ್ಯಗಳು ನಿಮ್ಮ ಬ್ರೌಸರ್ನಲ್ಲಿ ಕೆಲಸ ಇರಬಹುದು. ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಗೆ ನಿಮ್ಮ ಬ್ರೌಸರ್ ಅಪ್ಡೇಟ್. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,ಕೆಲವು ವೈಶಿಷ್ಟ್ಯಗಳು ನಿಮ್ಮ ಬ್ರೌಸರ್ನಲ್ಲಿ ಕೆಲಸ ಇರಬಹುದು. ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಗೆ ನಿಮ್ಮ ಬ್ರೌಸರ್ ಅಪ್ಡೇಟ್. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","ಕೇಳಿ, ಗೊತ್ತಿಲ್ಲ 'ಸಹಾಯ'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ {0} DocType: DocType,Comments and Communications will be associated with this linked document,ಪ್ರತಿಕ್ರಿಯೆಗಳು ಮತ್ತು ಸಂಪರ್ಕ ಈ ದಾಖಲೆಯಲ್ಲಿ ಸಂಬಂಧ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,ಫಿಲ್ಟರ್ ... DocType: Workflow State,bold,ದಿಟ್ಟ @@ -3510,6 +3579,7 @@ DocType: Print Settings,PDF Settings,ಪಿಡಿಎಫ್ ಸೆಟ್ಟಿಂ DocType: Kanban Board Column,Column Name,ಅಂಕಣ ಹೆಸರು DocType: Language,Based On,ಆಧರಿಸಿದೆ DocType: Email Account,"For more information, click here.","ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ, ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,ಕಾಲಮ್‌ಗಳ ಸಂಖ್ಯೆ ಡೇಟಾದೊಂದಿಗೆ ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,ಡೀಫಾಲ್ಟ್ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,ಮರಣದಂಡನೆ ಸಮಯ: {0} ಸೆ apps/frappe/frappe/model/utils/__init__.py,Invalid include path,ಅಮಾನ್ಯ ಮಾರ್ಗವನ್ನು ಒಳಗೊಂಡಿದೆ @@ -3597,7 +3667,7 @@ 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: Deleted Document,GCalendar Sync ID,ಜಿಕಾಲೆಂಡರ್ ಸಿಂಕ್ ID DocType: Prepared Report,Report Start Time,ಪ್ರಾರಂಭ ಸಮಯವನ್ನು ವರದಿ ಮಾಡಿ -apps/frappe/frappe/config/settings.py,Export Data,ಡೇಟಾವನ್ನು ರಫ್ತು ಮಾಡಿ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ಡೇಟಾವನ್ನು ರಫ್ತು ಮಾಡಿ 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.,ಇದು ಹಿನ್ನೆಲೆ ವರದಿಯಾಗಿದೆ. ದಯವಿಟ್ಟು ಸೂಕ್ತವಾದ ಫಿಲ್ಟರ್‌ಗಳನ್ನು ಹೊಂದಿಸಿ ಮತ್ತು ನಂತರ ಹೊಸದನ್ನು ರಚಿಸಿ. @@ -3614,7 +3684,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},{0} ರಚಿ DocType: Report,Disable Prepared Report,ಸಿದ್ಧಪಡಿಸಿದ ವರದಿಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,ಅಕ್ರಮ ಪ್ರವೇಶ ಟೋಕನ್. ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","ಅಪ್ಲಿಕೇಶನ್ ಹೊಸ ಆವೃತ್ತಿ ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗಿದೆ, ಈ ಪುಟವನ್ನು ರಿಫ್ರೆಶ್ ಮಾಡಿ" -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.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಪ್ರಿಂಟಿಂಗ್ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್> ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್‌ನಿಂದ ಹೊಸದನ್ನು ರಚಿಸಿ. DocType: Notification,Optional: The alert will be sent if this expression is true,ಐಚ್ಛಿಕ: ಈ ಅಭಿವ್ಯಕ್ತಿ ನಿಜವಾದ ವೇಳೆ ಎಚ್ಚರಿಕೆಯನ್ನು ಕಳುಹಿಸಲಾಗುವುದು DocType: Data Migration Plan,Plan Name,ಯೋಜನೆ ಹೆಸರು DocType: Print Settings,Print with letterhead,ತಲೆಬರಹ ನೊಂದಿಗೆ ಮುದ್ರಿಸಿ @@ -3653,6 +3722,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : ರದ್ದು ಮಾಡಿರಿ ಇಲ್ಲದೆ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,ಪೂರ್ಣ ಪುಟ DocType: DocType,Is Child Table,ChildTable ಈಸ್ +DocType: Data Import Beta,Template Options,ಟೆಂಪ್ಲೇಟು ಆಯ್ಕೆಗಳು apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} {1} ಒಂದು ಇರಬೇಕು apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} ಪ್ರಸ್ತುತ ದಾಖಲೆ ವೀಕ್ಷಿಸುತ್ತಿದ್ದಾರೆ apps/frappe/frappe/config/core.py,Background Email Queue,ಹಿನ್ನೆಲೆ ಇಮೇಲ್ ಸರದಿಗೆ @@ -3660,7 +3730,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,ಪಾಸ್ವರ DocType: Communication,Opened,ತೆರೆಯಲಾಗಿದೆ DocType: Workflow State,chevron-left,CHEVRON ಎಡ DocType: Communication,Sending,ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ -apps/frappe/frappe/auth.py,Not allowed from this IP Address,ಈ IP ವಿಳಾಸ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ DocType: Website Slideshow,This goes above the slideshow.,ಈ ಸ್ಲೈಡ್ ಮೇಲೆ ಹೋಗುತ್ತದೆ . DocType: Contact,Last Name,ಕೊನೆಯ ಹೆಸರು DocType: Event,Private,ಖಾಸಗಿ @@ -3674,7 +3743,6 @@ DocType: Workflow Action,Workflow Action,ವರ್ಕ್ಫ್ಲೋ ಆ apps/frappe/frappe/utils/bot.py,I found these: ,ಈ ಕಂಡು: DocType: Event,Send an email reminder in the morning,ಬೆಳಿಗ್ಗೆ ಇಮೇಲ್ ಜ್ಞಾಪನೆಯನ್ನು ಕಳುಹಿಸಿ DocType: Blog Post,Published On,ರಂದು ಪ್ರಕಟವಾದ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ. ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ದಯವಿಟ್ಟು ಹೊಸ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ರಚಿಸಿ DocType: Contact,Gender,ಲಿಂಗ apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,ಕಡ್ಡಾಯ ಮಾಹಿತಿ ಕಾಣೆಯಾಗಿದೆ: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,ವಿನಂತಿ URL ಅನ್ನು ಪರಿಶೀಲಿಸಿ @@ -3694,7 +3762,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,ಎಚ್ಚರಿಕೆ ಚಿಹ್ನೆ DocType: Prepared Report,Prepared Report,ಸಿದ್ಧಪಡಿಸಿದ ವರದಿ apps/frappe/frappe/config/website.py,Add meta tags to your web pages,ನಿಮ್ಮ ವೆಬ್ ಪುಟಗಳಿಗೆ ಮೆಟಾ ಟ್ಯಾಗ್‌ಗಳನ್ನು ಸೇರಿಸಿ -DocType: Contact,Phone Nos,ಫೋನ್ ಸಂಖ್ಯೆ DocType: Workflow State,User,ಬಳಕೆದಾರ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ಬ್ರೌಸರ್ ವಿಂಡೋದಲ್ಲಿ ಶೊ ಪ್ರಶಸ್ತಿಯನ್ನು "ಪೂರ್ವಪ್ರತ್ಯಯ - ಶೀರ್ಷಿಕೆ" DocType: Payment Gateway,Gateway Settings,ಗೇಟ್ವೇ ಸೆಟ್ಟಿಂಗ್ಗಳು @@ -3712,6 +3779,7 @@ DocType: Data Migration Connector,Data Migration,ಡೇಟಾ ವಲಸೆ DocType: User,API Key cannot be regenerated,API ಕೀಯನ್ನು ಪುನಃ ರಚಿಸಲಾಗುವುದಿಲ್ಲ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,ಏನೋ ತಪ್ಪಾಗಿದೆ DocType: System Settings,Number Format,ಸಂಖ್ಯೆ ಸ್ವರೂಪ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} ದಾಖಲೆಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಆಮದು ಮಾಡಲಾಗಿದೆ. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,ಸಾರಾಂಶ DocType: Event,Event Participants,ಈವೆಂಟ್ ಭಾಗವಹಿಸುವವರು DocType: Auto Repeat,Frequency,ಆವರ್ತನ @@ -3719,7 +3787,7 @@ DocType: Custom Field,Insert After,InsertAfter DocType: Event,Sync with Google Calendar,Google ಕ್ಯಾಲೆಂಡರ್‌ನೊಂದಿಗೆ ಸಿಂಕ್ ಮಾಡಿ DocType: Access Log,Report Name,ವರದಿ ಹೆಸರು DocType: Desktop Icon,Reverse Icon Color,ಐಕಾನ್ ಬಣ್ಣ ರಿವರ್ಸ್ -DocType: Notification,Save,ಉಳಿಸಿ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,ಉಳಿಸಿ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,ಮುಂದಿನ ಪರಿಶಿಷ್ಟ ದಿನಾಂಕ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,ಕನಿಷ್ಠ ಕಾರ್ಯಯೋಜನೆಗಳನ್ನು ಹೊಂದಿರುವವರಿಗೆ ನಿಯೋಜಿಸಿ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,ವಿಭಾಗ ಶಿರೋನಾಮೆ @@ -3742,7 +3810,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ಸೆಟಪ್> ಫಾರ್ಮ್ ಅನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ DocType: Google Contacts,Last Sync On,ಕೊನೆಯ ಸಿಂಕ್ ಆನ್ DocType: Deleted Document,Deleted Document,ಅಳಿಸಲಾಗಿದೆ ಡಾಕ್ಯುಮೆಂಟ್ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ಅಯ್ಯೋ! ಏನೋ ತಪ್ಪಾಗಿದೆ @@ -3770,6 +3837,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ ನವೀಕರಣ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',ಮತ್ತೊಂದು ಪಾವತಿ ವಿಧಾನವನ್ನು ಅನುಸರಿಸಿ. ಪೇಪಾಲ್ ಕರೆನ್ಸಿ ವ್ಯವಹಾರಗಳ ಬೆಂಬಲಿಸದಿರುವುದರಿಂದ '{0}' DocType: Chat Message,Room Type,ಕೋಣೆ ಪ್ರಕಾರ +DocType: Data Import Beta,Import Log Preview,ಲಾಗ್ ಪೂರ್ವವೀಕ್ಷಣೆಯನ್ನು ಆಮದು ಮಾಡಿ apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,ಹುಡುಕಾಟ ಕ್ಷೇತ್ರದಲ್ಲಿ {0} ಮಾನ್ಯವಾಗಿಲ್ಲ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,ಅಪ್‌ಲೋಡ್ ಮಾಡಿದ ಫೈಲ್ DocType: Workflow State,ok-circle,ಸರಿ ವೃತ್ತ @@ -3836,6 +3904,7 @@ DocType: DocType,Allow Auto Repeat,ಸ್ವಯಂ ಪುನರಾವರ್ತ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ತೋರಿಸಲು ಮೌಲ್ಯಗಳಿಲ್ಲ DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ಇಮೇಲ್ ಟೆಂಪ್ಲೇಟು +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} ದಾಖಲೆಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ಅಗತ್ಯವಿದೆ ಲಾಗಿನ್ ಮತ್ತು ಪಾಸ್ವರ್ಡ್ ಎರಡೂ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,ಇತ್ತೀಚಿನ ಡಾಕ್ಯುಮೆಂಟ್ ಪಡೆಯಲು ರಿಫ್ರೆಶ್ ಮಾಡಿ. DocType: User,Security Settings,ಭದ್ರತಾ ಸೆಟ್ಟಿಂಗ್ಗಳು diff --git a/frappe/translations/ko.csv b/frappe/translations/ko.csv index c718942bf1..9d85cb188e 100644 --- a/frappe/translations/ko.csv +++ b/frappe/translations/ko.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,다음 앱의 새로운 {} 버전을 사용할 수 있습니다. apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,금액 필드를 선택하십시오. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,가져 오기 파일로드 중 ... DocType: Assignment Rule,Last User,최종 사용자 apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","새 작업은, {0}, {1}가 할당되었습니다. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,세션 기본값 저장 됨 +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,파일 새로 고침 DocType: Email Queue,Email Queue records.,이메일 큐 기록합니다. DocType: Post,Post,우편 DocType: Address,Punjab,펀 자브 @@ -44,6 +46,7 @@ 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,매개변수 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,월 DocType: Address,Uttarakhand,우타 라칸 드 DocType: Email Account,Enable Incoming,수신 사용 apps/frappe/frappe/core/doctype/version/version_view.html,Danger,위험 -apps/frappe/frappe/www/login.py,Email Address,이메일 주소 +DocType: Address,Email Address,이메일 주소 DocType: Workflow State,th-large,일 대형 DocType: Communication,Unread Notification Sent,보낸 읽지 않은 알림 apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,수출은 허용되지 않습니다.당신은 수출 {0} 역할을해야합니다. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,관리자 DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","등 ""판매 쿼리, 지원 쿼리""새 줄에 각 또는 쉼표로 구분하여 같은 연락처 옵션." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,태그 추가 ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,초상화 -DocType: Data Migration Run,Insert,삽입 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,삽입 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,구글 드라이브의 접근이 허용 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},선택 {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,기본 URL을 입력하십시오. @@ -119,17 +122,17 @@ 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,테마 구성 DocType: Company History,Company History,회사 연혁 -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,다시 놓기 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,다시 놓기 DocType: Workflow State,volume-up,볼륨 업 apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,웹 애플 리케이션에 API 요청을 호출하는 Webhooks +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,역 추적 표시 DocType: DocType,Default Print Format,기본 인쇄 형식 DocType: Workflow State,Tags,태그 apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,없음 : 워크 플로우의 끝 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",고유하지 않은 기존의 값이 있기 때문에 {0} 필드는 {1}에 독특한 설정할 수 없습니다 -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,문서 유형 +DocType: Global Search Settings,Document Types,문서 유형 DocType: Address,Jammu and Kashmir,잠무와 카슈미르 DocType: Workflow,Workflow State Field,워크 플로 상태 필드 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,설정> 사용자 DocType: Language,Guest,손님 DocType: DocType,Title Field,제목 필드 DocType: Error Log,Error Log,오류 로그 @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","abcabcabc"약간 어렵게은 "ABC"보다 생각하는 것처럼 반복 DocType: Notification,Channel,채널 apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","이 권한이없는 생각한다면, 관리자 암호를 변경하십시오." +DocType: Data Import Beta,Data Import Beta,데이터 가져 오기 베타 apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} 필수입니다 DocType: Assignment Rule,Assignment Rules,배정 규칙 DocType: Workflow State,eject,배출 @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,워크 플로 작업 이름 apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,문서 종류는 병합 할 수 없습니다 DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,아니 zip 파일 +DocType: Global Search DocType,Global Search DocType,글로벌 검색 DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                        New {{ doc.doctype }} #{{ doc.name }}
                                                        ",동적 제목을 추가하려면 다음과 같은 jinja 태그를 사용하십시오.
                                                         New {{ doc.doctype }} #{{ doc.name }} 
                                                        @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,문서 이벤트 apps/frappe/frappe/public/js/frappe/utils/user.js,You,당신 DocType: Braintree Settings,Braintree Settings,Braintree 설정 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} 레코드를 작성했습니다. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,필터 저장 DocType: Print Format,Helvetica,헬 베티 apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0}을 (를) 삭제할 수 없습니다. @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,메시지의 URL 매개 apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,이 문서에 대해 생성 된 자동 반복 apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,브라우저에서 보고서보기 apps/frappe/frappe/config/desk.py,Event and other calendars.,이벤트 및 기타 일정. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 행 필수) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,모든 필드는 의견을 제출하는 데 필요합니다. DocType: Custom Script,Adds a client custom script to a DocType,DocType에 클라이언트 사용자 정의 스크립트를 추가합니다. DocType: Print Settings,Printer Name,프린터 이름 @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,대량 업데이트 DocType: Workflow State,chevron-up,갈매기 업 DocType: DocType,Allow Guest to View,고객이 볼 수 있도록 허용 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0}은 (는) {1}과 (와) 같을 수 없습니다. -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,영구적 {0} 항목을 삭제 하시겠습니까? apps/frappe/frappe/utils/oauth.py,Not Allowed,사용할 수 없음 @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,스크린 DocType: Email Group,Total Subscribers,총 구독자 apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},상위 {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,행 번호 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","역할은 레벨 0에서 액세스 할 수없는 경우, 높은 수준은 무의미하다." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,다른 이름으로 저장 DocType: Comment,Seen,신 @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,예 DocType: Workflow,Defines workflow states and rules for a document.,문서 워크 플로우 상태와 규칙을 정의합니다. DocType: Workflow State,Filter,필터 @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,닫힘 DocType: Blog Settings,Blog Title,블로그 제목 apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,표준 역할은 비활성화 할 수 없습니다 apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,채팅 유형 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,지도 열 DocType: Address,Mizoram,미조람 DocType: Newsletter,Newsletter,뉴스레터 apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,순서대로 하위 쿼리를 사용할 수 없습니다 @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,열 추가 apps/frappe/frappe/www/contact.html,Your email address,귀하의 이메일 주소 DocType: Desktop Icon,Module,모듈 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{1}에서 {0} 레코드를 성공적으로 업데이트했습니다. DocType: Notification,Send Alert On,경고보내기 DocType: Customize Form,"Customize Label, Print Hide, Default etc.","등 라벨, 인쇄 숨기기, 기본을 사용자 정의" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,파일 압축 해제 중 ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} 사 DocType: System Settings,Currency Precision,통화 정밀도 DocType: System Settings,Currency Precision,통화 정밀도 apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,또 다른 트랜잭션이 하나를 차단하고 있습니다. 잠시 후 다시 시도하십시오. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,필터 지우기 DocType: Test Runner,App,앱 apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,첨부 파일을 새 문서에 올바르게 연결할 수 없습니다. DocType: Chat Message Attachment,Attachment,첨부 @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,이 시간 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Google 캘린더-Google 캘린더에서 이벤트 {0}을 (를) 업데이트 할 수 없습니다. 오류 코드 {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,명령을 검색하거나 입력 DocType: Activity Log,Timeline Name,타임 라인 이름 +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,하나의 {0} 만 기본으로 설정할 수 있습니다. DocType: Email Account,e.g. smtp.gmail.com,예) smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,새 규칙 추가 DocType: Contact,Sales Master Manager,판매 마스터 관리자 @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP 중간 이름 필드 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} 중 {0} 가져 오는 중 DocType: GCalendar Account,Allow GCalendar Access,GCalendar 액세스 허용 -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0}은 (는) 필수 입력란입니다. +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0}은 (는) 필수 입력란입니다. apps/frappe/frappe/templates/includes/login/login.js,Login token required,로그인 토큰 필요 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,월간 순위 : apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,여러 목록 항목 선택 @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},연결할 수 없습니 apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,그 자체로 단어를 추측하기 쉽다. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},자동 할당 실패 : {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,수색... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,회사를 선택하세요 apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,병합 그룹에 그룹 또는 리프 노드 - 투 - 잎 노드 사이에만 가능합니다 apps/frappe/frappe/utils/file_manager.py,Added {0},추가 {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,일치하는 레코드가 없습니다. 새로운 무언가를 검색 @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,OAuth 클라이언트 ID DocType: Auto Repeat,Subject,주제 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,데스크로 돌아 가기 DocType: Web Form,Amount Based On Field,금액 필드를 기준으로 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오 apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,사용자는 공유를위한 필수입니다 DocType: DocField,Hidden,숨겨진 DocType: Web Form,Allow Incomplete Forms,불완전한 양식 허용 @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0}과 {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,대화를 시작하십시오. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",항상 인쇄 초안 문서 제목 "초안"을 추가 apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},알림 오류 : {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} 년 전 DocType: Data Migration Run,Current Mapping Start,현재 매핑 시작 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,이메일이 스팸으로 표시되었습니다. DocType: Comment,Website Manager,웹 사이트 관리자 @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,바코드 apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,하위 쿼리 또는 기능의 사용이 제한됩니다. apps/frappe/frappe/config/customization.py,Add your own translations,자신의 번역을 추가 DocType: Country,Country Name,국가 이름 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,빈 템플릿 DocType: About Us Team Member,About Us Team Member,팀 구성원에 대한 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","권한은보고, 가져 오기, 내보내기, 인쇄, 전자 메일 및 사용자 설정 권한, 정정, 취소, 제출, 생성, 삭제, 읽기, 쓰기와 같은 권한을 설정하여 역할 및 문서 유형 (doctype에 호출)에 설정됩니다." DocType: Event,Wednesday,수요일 @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,웹 사이트 테마 이미 DocType: Web Form,Sidebar Items,사이드 바 항목 DocType: Web Form,Show as Grid,눈금으로 표시 apps/frappe/frappe/installer.py,App {0} already installed,앱 {0}이 (가) 이미 설치되었습니다. +DocType: Energy Point Rule,Users assigned to the reference document will get points.,참조 문서에 할당 된 사용자는 포인트를받습니다. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,미리보기 없음 DocType: Workflow State,exclamation-sign,느낌표 기호 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,압축되지 않은 {0} 파일 @@ -605,6 +620,7 @@ DocType: Notification,Days Before,일전 apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,일일 행사는 당일에 끝나야합니다. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,편집하다... DocType: Workflow State,volume-down,볼륨 다운 +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,이 IP 주소에서 액세스 할 수 없습니다 apps/frappe/frappe/desk/reportview.py,No Tags,태그가 없습니다 DocType: Email Account,Send Notification to,에 통지를 보내 DocType: DocField,Collapsible,접을 수있는 @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,개발자 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,생성 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,기본 인쇄 언어 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,조상 apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,루트 {0} 삭제할 수 없습니다 @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","대상 = ""_blank""" DocType: Workflow State,hdd,하드 디스크 DocType: Integration Request,Host,주인 +DocType: Data Import Beta,Import File,파일 가져 오기 apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,열 {0}이 (가) 이미 존재합니다. DocType: ToDo,High,높음 apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,새로운 이벤트 @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,전자 메일 스레드에 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,교수 apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,아니 개발자 모드에서 apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,파일 백업이 준비되었습니다. -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",포인트에 승수 값을 곱한 후 허용되는 최대 포인트 (주 : 한계 설정 값이 0이 아닌 경우) DocType: DocField,In Global Search,글로벌 검색 DocType: System Settings,Brute Force Security,무차별 공격 보안 DocType: Workflow State,indent-left,들여 쓰기 왼쪽 @@ -775,6 +791,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',사용자는 '{0}'이미 역할이 '{1}' DocType: System Settings,Two Factor Authentication method,2 요소 인증 방법 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,먼저 이름을 설정하고 레코드를 저장하십시오. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 기록 apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},함께 공유 {0} apps/frappe/frappe/email/queue.py,Unsubscribe,가입 취소 DocType: View Log,Reference Name,참조명(Reference Name) @@ -825,6 +842,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,이메일 상태 추적 DocType: Note,Notify Users On Every Login,로그인 할 때마다 사용자에게 알림 DocType: Note,Notify Users On Every Login,로그인 할 때마다 사용자에게 알림 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,필드와 {0} 열을 일치시킬 수 없습니다 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} 레코드를 성공적으로 업데이트했습니다. DocType: PayPal Settings,API Password,API 비밀번호 apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,파이썬 모듈 입력 또는 커넥터 유형 선택 apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,필드 이름은 사용자 정의 필드를 설정하지 @@ -853,9 +872,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,값 변경 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},중복 된 이름 {0} {1} -DocType: Email Queue,Retry,다시 해 보다 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,다시 해 보다 +DocType: Contact Phone,Number,번호 DocType: Web Form Field,Web Form Field,웹 양식 필드 apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,님의 새 메시지가 있습니다. +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML 편집 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,리디렉션 URL을 입력하십시오. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -881,7 +902,7 @@ DocType: Notification,View Properties (via Customize Form),(지정 양식)보기 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,파일을 클릭하여 선택하십시오. DocType: Note Seen By,Note Seen By,볼 참고 apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,더 많은 회전과 더 이상 키보드 패턴을 사용해보십시오 -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,리더 보드 +,LeaderBoard,리더 보드 DocType: DocType,Default Sort Order,기본 정렬 순서 DocType: Address,Rajasthan,라자스탄 DocType: Email Template,Email Reply Help,이메일 답장 도움말 @@ -916,6 +937,7 @@ apps/frappe/frappe/utils/data.py,Cent,센트 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,이메일 작성 apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","워크 플로의 상태 (예를 들어, 초안, 승인, 취소)." DocType: Print Settings,Allow Print for Draft,초안에 대한 인쇄 허용 +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/link_selector.js,Set Quantity,설정 수량 apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,확인하기 위해이 문서를 제출 DocType: Contact,Unsubscribed,가입되어 있지 않음 @@ -947,6 +969,7 @@ DocType: LDAP Settings,Organizational Unit for Users,사용자를위한 조직 ,Transaction Log Report,트랜잭션 로그 보고서 DocType: Custom DocPerm,Custom DocPerm,사용자 정의 DocPerm DocType: Newsletter,Send Unsubscribe Link,탈퇴 링크 보내기 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,파일을 가져 오기 전에 생성해야하는 연결된 레코드가 있습니다. 다음과 같은 누락 된 레코드를 자동으로 작성 하시겠습니까? DocType: Access Log,Method,방법 DocType: Report,Script Report,스크립트 보고서 DocType: OAuth Authorization Code,Scopes,범위 @@ -988,6 +1011,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,성공적으로 업로드되었습니다 apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,인터넷에 연결되어 있습니다. DocType: Social Login Key,Enable Social Login,소셜 로그인 사용 +DocType: Data Import Beta,Warnings,경고 DocType: Communication,Event,이벤트 apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",{0}에서 {1} 썼다 : apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,표준 필드를 삭제할 수 없습니다. 당신이 원한다면 당신은 그것을 숨길 수 있습니다 @@ -1043,6 +1067,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,아래에 DocType: Kanban Board Column,Blue,푸른 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,모든 사용자 지정이 제거됩니다.확인하시기 바랍니다. DocType: Page,Page HTML,페이지의 HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,오류가있는 행 내보내기 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,그룹 이름은 비워 둘 수 없습니다. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,또한 노드는 '그룹'형태의 노드에서 생성 할 수 있습니다 DocType: SMS Parameter,Header,머리글 @@ -1082,13 +1107,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,시간 초과 요청 apps/frappe/frappe/config/settings.py,Enable / Disable Domains,도메인 활성화 / 비활성화 DocType: Role Permission for Page and Report,Allow Roles,역할 허용 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{1}에서 {0} 레코드를 성공적으로 가져 왔습니다. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","간단한 파이썬 표현식, 예 : 상태 ( "잘못된")" DocType: User,Last Active,활성 마지막 DocType: Email Account,SMTP Settings for outgoing emails,보내는 이메일에 대한 SMTP 설정 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,선택 DocType: Data Export,Filter List,필터 목록 DocType: Data Export,Excel,뛰어나다 -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,암호가 업데이트되었습니다.여기에 새 암호입니다 DocType: Email Account,Auto Reply Message,자동 응답 메시지 DocType: Data Migration Mapping,Condition,조건 apps/frappe/frappe/utils/data.py,{0} hours ago,{0} 시간 전 @@ -1097,7 +1122,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,사용자 ID DocType: Communication,Sent,발신 DocType: Address,Kerala,케 랄라 -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,관리 DocType: User,Simultaneous Sessions,동시 세션 DocType: Social Login Key,Client Credentials,클라이언트 자격 증명 @@ -1129,7 +1153,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},업데 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,지도자 DocType: DocType,User Cannot Create,사용자가 만들 수 없습니다 apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,성공적으로 완료되었습니다. -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,폴더 {0} 존재하지 않습니다 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,보관 용 액세스가 승인! DocType: Customize Form,Enter Form Type,양식 유형을 입력 DocType: Google Drive,Authorize Google Drive Access,Google 드라이브 액세스 권한 부여 @@ -1137,7 +1160,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,레코드 태그가 없습니다. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,이 필드를 제거 apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,인터넷에 연결되어 있지 않습니다. 언젠가 후에 다시 시도하십시오. -DocType: User,Send Password Update Notification,암호 업데이트 알림 보내기 apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","허용 문서 종류, 문서 종류.주의!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","인쇄, 이메일, 사용자 정의 형식" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0}의 합 @@ -1223,6 +1245,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,잘못된 인증 코 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google 주소록 통합이 사용 중지되었습니다. DocType: Assignment Rule,Description,내용 DocType: Print Settings,Repeat Header and Footer in PDF,PDF에 머리글과 바닥 글을 반복 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,실패 DocType: Address Template,Is Default,기본값 DocType: Data Migration Connector,Connector Type,커넥터 유형 apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,열 이름은 비워 둘 수 없습니다 @@ -1235,6 +1258,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} 페이지로 이 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,열을 기반으로 +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/model/document.py,Action Failed,작업 실패 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,사용자에 대한 @@ -1288,6 +1312,7 @@ DocType: Print Settings,Enable Raw Printing,원시 인쇄 사용 DocType: Website Route Redirect,Source,소스 apps/frappe/frappe/templates/includes/list/filters.html,clear,명확한 apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,끝마친 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,설정> 사용자 DocType: Prepared Report,Filter Values,필터 값 DocType: Communication,User Tags,사용자 태그 DocType: Data Migration Run,Fail,실패 @@ -1344,6 +1369,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,따 ,Activity,활동 내역 DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","도움말 : 시스템에서 다른 레코드에 링크는 ""# 양식 / 주 / [이름 참고]""링크 URL로 사용합니다. (에 ""http://""를 사용하지 않는다)" DocType: User Permission,Allow,허용하다 +DocType: Data Import Beta,Update Existing Records,기존 레코드 업데이트 apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,의 반복 단어 또는 문자를 방지하자 DocType: Energy Point Rule,Energy Point Rule,에너지 포인트 규칙 DocType: Communication,Delayed,지연 @@ -1356,9 +1382,7 @@ DocType: Milestone,Track Field,트랙 경기장 DocType: Notification,Set Property After Alert,경고 후 속성 설정 apps/frappe/frappe/config/customization.py,Add fields to forms.,양식에 필드를 추가합니다. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,이 사이트의 Paypal 구성에 문제가있는 것 같습니다. -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/sidebar/review.js,Add Review,검토 추가 -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),글꼴 크기 (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,표준 DocTypes 만 사용자 정의 양식에서 사용자 정의 할 수 있습니다. DocType: Email Account,Sendgrid,Sendgrid @@ -1395,6 +1419,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,필 apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,죄송합니다! 당신은 자동 생성 주석을 삭제할 수 없습니다 DocType: Google Settings,Used For Google Maps Integration.,Google지도 통합에 사용됩니다. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,참조 문서 종류 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,레코드가 내보내지지 않습니다 DocType: User,System User,시스템 사용자 DocType: Report,Is Standard,표준입니다 DocType: Desktop Icon,_report,_보고서 @@ -1410,6 +1435,7 @@ DocType: Workflow State,minus-sign,마이너스 기호 apps/frappe/frappe/public/js/frappe/request.js,Not Found,찾을 수 없음 apps/frappe/frappe/www/printview.py,No {0} permission,어떤 {0} 권한이 없습니다 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,수출 사용자 지정 권한 +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,제품을 찾지 못했습니다. DocType: Data Export,Fields Multicheck,필드 멀티 체크 DocType: Activity Log,Login,로그인 DocType: Web Form,Payments,지불 @@ -1470,8 +1496,9 @@ DocType: Address,Postal,우편의 DocType: Email Account,Default Incoming,기본 수신 DocType: Workflow State,repeat,반복 DocType: Website Settings,Banner,기치 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},값은 {0} 중 하나 여야합니다 DocType: Role,"If disabled, this role will be removed from all users.","사용할 경우,이 역할은 모든 사용자에서 제거됩니다." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} 목록으로 이동하십시오. +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,검색에 대한 도움말 DocType: Milestone,Milestone Tracker,마일스톤 트래커 apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,등록하지만 비활성화 @@ -1485,6 +1512,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,로컬 필드 이름 DocType: DocType,Track Changes,변경 내용 추적 DocType: Workflow State,Check,확인 DocType: Chat Profile,Offline,오프라인 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0}을 (를) 성공적으로 가져 왔습니다 DocType: User,API Key,API 키 DocType: Email Account,Send unsubscribe message in email,이메일 수신 거부 메시지 보내기 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,편집 제목 @@ -1511,11 +1539,11 @@ 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/form/footer/timeline.js,changed value of {0} {1},{0}의 값 변경 {1} 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,총 페이지 수 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0}에 이미 {1}에 대한 기본값이 지정되었습니다. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                        No results found for '

                                                        ,

                                                        '에 대한 검색 결과가 없습니다.

                                                        DocType: DocField,Attach Image,이미지 첨부 DocType: Workflow State,list-alt,목록 - 고도 apps/frappe/frappe/www/update-password.html,Password Updated,암호 업데이트 @@ -1536,8 +1564,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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,채팅 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,설정> 사용자 권한 DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP 그룹 매핑 DocType: Dashboard Chart,Chart Options,차트 옵션 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,제목없는 열 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0}에서 {1} {2}에서 행 번호에 {3} DocType: Communication,Expired,만료 apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,사용중인 토큰이 유효하지 않은 것 같습니다. @@ -1547,6 +1577,7 @@ DocType: DocType,System,시스템 DocType: Web Form,Max Attachment Size (in MB),(MB)에서 최대 첨부 파일 크기 apps/frappe/frappe/www/login.html,Have an account? Login,계정이있으세요? 로그인 DocType: Workflow State,arrow-down,화살표 아래로 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},행 {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},사용자가 삭제할 수 없습니다 {0} {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} 중 {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,최근에 업데이트 @@ -1564,6 +1595,7 @@ DocType: Custom Role,Custom Role,사용자 정의 역할 apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,홈 / 테스트 폴더 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,암호를 입력 DocType: Dropbox Settings,Dropbox Access Secret,보관 용 액세스 비밀 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(필수) 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.,파일에서 데이터를 찾을 수 없습니다. 새 파일을 데이터로 다시 첨부하십시오. @@ -1638,6 +1670,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,대시 보 apps/frappe/frappe/desk/form/assign_to.py,New Message,새로운 메시지 DocType: File,Preview HTML,미리보기 HTML DocType: Desktop Icon,query-report,쿼리 보고서 +DocType: Data Import Beta,Template Warnings,템플릿 경고 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,필터 저장 DocType: DocField,Percent,퍼센트 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,필터를 설정하십시오 @@ -1659,6 +1692,7 @@ DocType: Custom Field,Custom,사용자 지정 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",이 옵션을 사용하면 제한된 IP 주소에서 로그인 한 사용자는 Two Factor Auth DocType: Auto Repeat,Get Contacts,연락처 가져 오기 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},아래에 제출 한 게시물 {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,제목없는 열 건너 뛰기 DocType: Notification,Send alert if date matches this field's value,날짜가이 필드의 값과 일치하는 경우 경고를 보내기 DocType: Workflow,Transitions,전환 apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1}에 {2} @@ -1682,6 +1716,7 @@ DocType: Workflow State,step-backward,스텝 뒤로 apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,사이트 구성에 보관 액세스 키를 설정하십시오 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,이 이메일 주소로 보낼 수 있도록이 기록을 삭제 +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","비표준 포트 인 경우 (예 : POP3 : 995/110, IMAP : 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,바로 가기 사용자 정의 apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,만 필수 필드는 새로운 기록을 위해 필요하다.당신이 원하는 경우 필수가 아닌 열을 삭제할 수 있습니다. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,더 많은 활동 표시 @@ -1789,7 +1824,9 @@ 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,글자 DocType: DocType,"Naming Options:
                                                        1. field:[fieldname] - By Field
                                                        2. naming_series: - By Naming Series (field called naming_series must be present
                                                        3. Prompt - Prompt user for a name
                                                        4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                        5. @@ -1803,6 +1840,7 @@ DocType: GCalendar Account,Next Sync Token,다음 동기화 토큰 DocType: Energy Point Settings,Energy Point Settings,에너지 포인트 설정 DocType: Async Task,Succeeded,성공 apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},에 필요한 필수 필드 {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                          No results found for '

                                                          ,

                                                          '에 대한 검색 결과가 없습니다.

                                                          apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0}에 대한 사용 권한을 다시 설정? apps/frappe/frappe/config/desktop.py,Users and Permissions,사용자 및 권한 DocType: S3 Backup Settings,S3 Backup Settings,S3 백업 설정 @@ -1874,6 +1912,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,"결과적으로, DocType: Notification,Value Change,값 변경 DocType: Google Contacts,Authorize Google Contacts Access,Google 주소록 액세스 권한 부여 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,보고서의 숫자 필드 만 표시 +DocType: Data Import Beta,Import Type,수입품 DocType: Access Log,HTML Page,HTML 페이지 DocType: Address,Subsidiary,자회사 apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ 트레이에 연결 시도 중 ... @@ -1884,7 +1923,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,잘못된 DocType: Custom DocPerm,Write,쓰기 apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,관리자 만 조회 / 스크립트 보고서를 작성할 수 apps/frappe/frappe/public/js/frappe/form/save.js,Updating,업데이트 -DocType: File,Preview,미리보기 +DocType: Data Import Beta,Preview,미리보기 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",이 필드를 "값은"필수입니다. 업데이트 할 값을 지정하십시오 DocType: Customize Form,Use this fieldname to generate title,제목을 생성하려면이 필드 이름을 사용 apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,가져 오기 이메일 @@ -1969,6 +2008,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,브라우저 DocType: Social Login Key,Client URLs,클라이언트 URL apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,일부 정보가 누락 apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0}이 (가) 성공적으로 생성되었습니다. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","{1}, {2}의 {0} 건너 뛰기" DocType: Custom DocPerm,Cancel,취소 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,대량 삭제 apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,{0} 존재하지 않는 파일 @@ -1996,7 +2036,6 @@ DocType: GCalendar Account,Session Token,세션 토큰 DocType: Currency,Symbol,상징 apps/frappe/frappe/model/base_document.py,Row #{0}:,행 # {0} : apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,데이터 삭제 확인 -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,새 암호를 이메일로 전송 apps/frappe/frappe/auth.py,Login not allowed at this time,로그인이 시간에 허용되지 DocType: Data Migration Run,Current Mapping Action,현재 매핑 작업 DocType: Dashboard Chart Source,Source Name,원본 이름 @@ -2009,6 +2048,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,글 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,뒤따라 DocType: LDAP Settings,LDAP Email Field,LDAP 이메일 필드 apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} 목록 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} 레코드 내보내기 apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,사용자의 할일 목록에 이미 있습니다. DocType: User Email,Enable Outgoing,보내는 사용 DocType: Address,Fax,팩스 @@ -2068,8 +2108,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,문서 인쇄 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,필드로 이동 DocType: Contact Us Settings,Forward To Email Address,앞으로 이메일 주소 +DocType: Contact Phone,Is Primary Phone,기본 전화입니까 apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,{0}에 이메일을 보내 여기에 연결하십시오. DocType: Auto Email Report,Weekdays,평일 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} 레코드가 내보내집니다 apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,제목 필드는 유효한 필드 이름이어야합니다 DocType: Post Comment,Post Comment,댓글 달기 apps/frappe/frappe/config/core.py,Documents,서류 @@ -2088,7 +2130,9 @@ eval:doc.age>18",여기에 정의 된 필드 이름 값을 가지고 또는 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,오늘 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,오늘 +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","이 설정되면, 사용자는 수 액세스 문서 (예 될 것입니다링크가 존재하는 블로그의 포스트) (예 :블로거)." +DocType: Data Import Beta,Submit After Import,수입 후 제출 DocType: Error Log,Log of Scheduler Errors,스케줄러 오류의 로그 DocType: User,Bio,바이오 DocType: OAuth Client,App Client Secret,응용 프로그램 클라이언트 비밀 @@ -2107,10 +2151,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,로그인 페이지에서 고객의 가입 링크를 사용하지 않도록 설정 apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ 소유자에 할당 DocType: Workflow State,arrow-left,화살표가 왼쪽 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,수출 1 레코드 DocType: Workflow State,fullscreen,전체 화면 DocType: Chat Token,Chat Token,채팅 토큰 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,차트 만들기 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,가져 오지마 DocType: Web Page,Center,가운데 DocType: Notification,Value To Be Set,설정 될 값 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} 수정 @@ -2130,6 +2176,7 @@ DocType: Print Format,Show Section Headings,보기 섹션 제목 DocType: Bulk Update,Limit,한도 apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},{0} 데이터와 관련된 데이터 삭제 요청이 접수되었습니다 : {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,새 섹션 추가 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,필터링 된 레코드 apps/frappe/frappe/www/printview.py,No template found at path: {0},경로에서 발견되지 템플릿 없습니다 : {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,어떤 이메일 계정 없습니다 DocType: Comment,Cancelled,취소 @@ -2217,10 +2264,13 @@ 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} 할 수 없습니다. 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가됩니다. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,글로벌 검색 문서 유형 재설정. ,Lead Conversion Time,리드 전환 시간 apps/frappe/frappe/desk/page/activity/activity.js,Build Report,보고서보기 빌드 DocType: Note,Notify users with a popup when they log in,그들이 로그인 할 때 팝업으로 사용자에게 알림 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,글로벌 검색에서 핵심 모듈 {0}을 (를) 검색 할 수 없습니다. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,채팅 열기 apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1}이 (가) 없습니다, 새로운 대상을 선택해서 병합하세요." DocType: Data Migration Connector,Python Module,파이썬 모듈 @@ -2237,8 +2287,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,닫기 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,설정> 사용자 권한 -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,업데이트 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,업데이트 DocType: Transaction Log,Transaction Hash,트랜잭션 해시 DocType: Error Snapshot,Snapshot View,스냅 샷보기 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,전송하기 전에 뉴스를 저장하십시오 @@ -2254,6 +2303,7 @@ DocType: Data Import,In Progress,진행 중 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,백업을 위해 대기 중. 이 시간에 몇 분 정도 걸릴 수 있습니다. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,사용자 권한이 이미 있습니다. +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},{0} 열을 {1} 필드에 맵핑 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},보기 {0} DocType: User,Hourly,매시간 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth를 클라이언트 응용 프로그램을 등록 @@ -2266,7 +2316,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS 게이트웨이 URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ""{2}""가 될 수 없습니다. ""{3}""중 하나입니다." apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},자동 규칙 {1}을 (를) 통해 {0}에 의해 획득되었습니다. apps/frappe/frappe/utils/data.py,{0} or {1},{0} 또는 {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,암호 업데이트 DocType: Workflow State,trash,쓰레기 DocType: System Settings,Older backups will be automatically deleted,이전 백업은 자동으로 삭제됩니다 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,잘못된 액세스 키 ID 또는 비밀 액세스 키. @@ -2295,6 +2344,7 @@ DocType: Address,Preferred Shipping Address,선호하는 배송 주소 apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,편지 머리 apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} 작성이 {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},행 {2}에서 {0} : {1}에 대해 허용되지 않습니다. 제한된 필드 : {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오 DocType: S3 Backup Settings,eu-west-1,서해 -1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",이 옵션을 선택하면 유효한 데이터가있는 행을 가져오고 나중에 가져올 수 있도록 잘못된 행이 새 파일로 덤프됩니다. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,문서 역할의 사용자 만 편집 할 수 있습니다 @@ -2321,6 +2371,7 @@ DocType: Custom Field,Is Mandatory Field,필수 필드 DocType: User,Website User,웹 사이트의 사용자 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,PDF로 인쇄 할 때 일부 열이 잘릴 수 있습니다. 열 수를 10 미만으로 유지하십시오. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,같지 않음 +DocType: Data Import Beta,Don't Send Emails,이메일을 보내지 마십시오 DocType: Integration Request,Integration Request Service,통합 요청 서비스 DocType: Access Log,Access Log,액세스 로그 DocType: Website Script,Script to attach to all web pages.,스크립트는 모든 웹 페이지에 연결합니다. @@ -2361,6 +2412,7 @@ DocType: Contact,Passive,수동 DocType: Auto Repeat,Accounts Manager,계정 관리자 apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1}에 대한 과제 apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,결제가 취소되었습니다. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,선택 파일 형식 apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,모두보기 DocType: Help Article,Knowledge Base Editor,기술 자료 편집기 @@ -2393,6 +2445,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,자료 apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,문서 상태 apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,승인 필요 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,파일을 가져 오기 전에 다음 레코드를 작성해야합니다. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth를 인증 코드 apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,수입하는 것이 허용되지 않음 DocType: Deleted Document,Deleted DocType,삭제에서 DocType @@ -2447,8 +2500,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API 자격증 명 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,세션 시작 실패 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,세션 시작 실패 apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},이 이메일은 {0}에 전송하고 복사 된 {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},이 문서를 제출했습니다 {0} DocType: Workflow State,th,일 -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} 년 전 DocType: Social Login Key,Provider Name,공급자 이름 apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},새 {0} 만들기 DocType: Contact,Google Contacts,Google 주소록 @@ -2456,6 +2509,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar 계정 DocType: Email Rule,Is Spam,스팸인가 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},보고서 {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},열기 {0} +DocType: Data Import Beta,Import Warnings,수입 경고 DocType: OAuth Client,Default Redirect URI,기본 리디렉션 URI DocType: Auto Repeat,Recipients,받는 사람 DocType: System Settings,Choose authentication method to be used by all users,모든 사용자가 사용할 인증 방법 선택 @@ -2574,6 +2628,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,보고서가 apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,슬랙 웹 후크 오류 DocType: Email Flag Queue,Unread,읽히지 않는 DocType: Bulk Update,Desk,책상 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},열 {0} 건너 뛰기 apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),필터는 튜플 또는 목록이어야합니다 (목록에 있음). apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,SELECT 쿼리를 작성합니다.참고 결과는 (모든 데이터를 한 번에 전송) 페이징되지 않습니다. DocType: Email Account,Attachment Limit (MB),첨부 파일 제한 (MB) @@ -2588,6 +2643,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,새로 만들기 DocType: Workflow State,chevron-down,갈매기 다운 apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),로 전송되지 이메일 {0} (장애인 / 탈퇴) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,내보낼 필드 선택 DocType: Async Task,Traceback,역 추적 DocType: Currency,Smallest Currency Fraction Value,가장 작은 통화 분수 값 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,보고서 준비 @@ -2596,6 +2652,7 @@ DocType: Workflow State,th-list,일 목록 DocType: Web Page,Enable Comments,댓글 사용 apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,노트 DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),이 IP 주소 만에서 사용자를 제한합니다.여러 개의 IP 주소를 쉼표로 분리하여 추가 할 수 있습니다.또한 (111.111.111)와 같은 부분적인 IP 주소를 허용 +DocType: Data Import Beta,Import Preview,가져 오기 미리보기 DocType: Communication,From,로부터 apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,첫 번째 그룹 노드를 선택합니다. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},에서 {0}을 찾기 {1} @@ -2695,6 +2752,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,중에서 DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,대기 중 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,설정> 양식 사용자 정의 DocType: Braintree Settings,Use Sandbox,사용 샌드 박스 apps/frappe/frappe/utils/goal.py,This month,이번 달 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,새 사용자 정의 인쇄 형식 @@ -2710,6 +2768,7 @@ DocType: Session Default,Session Default,세션 기본값 DocType: Chat Room,Last Message,마지막 메시지 DocType: OAuth Bearer Token,Access Token,액세스 토큰 DocType: About Us Settings,Org History,조직의 역사 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,약 {0} 분 남음 DocType: Auto Repeat,Next Schedule Date,다음 일정 날짜 DocType: Workflow,Workflow Name,워크 플로 이름 DocType: DocShare,Notify by Email,이메일로 알림 @@ -2739,6 +2798,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,저자 apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,전송 재개 apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,다시 열다 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,경고 표시 apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},제목 : Re : {0} DocType: Address,Purchase User,구매 사용자 DocType: Data Migration Run,Push Failed,푸시 실패 @@ -2777,6 +2837,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,고급 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,뉴스 레터를 볼 수 없습니다. DocType: User,Interests,이해 apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,암호 재설정 지침은 전자 메일로 전송 한 +DocType: Energy Point Rule,Allot Points To Assigned Users,할당 된 사용자에게 할당 포인트 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",레벨 0은. 서 레벨 권한 용이고 필드 레벨 권한 용 상위 레벨입니다. DocType: Contact Email,Is Primary,기본 @@ -2800,6 +2861,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,게시 가능 키 DocType: Stripe Settings,Publishable Key,게시 가능 키 apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,가져 오기 시작 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,수출 유형 DocType: Workflow State,circle-arrow-left,원형 화살표 왼쪽 DocType: System Settings,Force User to Reset Password,사용자가 암호를 다시 설정하도록 강요하십시오 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",업데이트 된 보고서를 얻으려면 {0}을 클릭하십시오. @@ -2813,13 +2875,16 @@ DocType: Contact,Middle Name,중간 이름 DocType: Custom Field,Field Description,필드 설명 apps/frappe/frappe/model/naming.py,Name not set via Prompt,프롬프트를 통해 설정되지 않은 이름 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,이메일받은 편지함 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1}, {2}의 {0} 업데이트" DocType: Auto Email Report,Filters Display,필터 표시 apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",수정하려면 "amended_from"필드가 있어야합니다. +DocType: Contact,Numbers,번호 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} 님의 {1} {2} 작업에 감사드립니다. apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,필터 저장 DocType: Address,Plant,심기 apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,모든 응답 DocType: DocType,Setup,설정 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,모든 기록 DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google 주소록을 동기화 할 이메일 주소입니다. DocType: Email Account,Initial Sync Count,초기 동기화 카운트 DocType: Workflow State,glass,유리 @@ -2844,7 +2909,7 @@ DocType: Workflow State,font,글꼴 DocType: DocType,Show Preview Popup,미리보기 팝업 표시 apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,이 최고 100 일반적인 암호입니다. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,팝업을 활성화하십시오 -DocType: User,Mobile No,모바일 없음 +DocType: Contact,Mobile No,모바일 없음 DocType: Communication,Text Content,텍스트 내용 DocType: Customize Form Field,Is Custom Field,사용자 정의 필드입니다 DocType: Workflow,"If checked, all other workflows become inactive.",이 옵션을 선택하면 다른 모든 워크 플로는 비활성 상태가됩니다. @@ -2890,6 +2955,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,형 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,새로운 인쇄 형식의 이름 apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,사이드 바 전환 DocType: Data Migration Run,Pull Insert,끌어 오기 삽입 +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",점에 승수 값을 곱한 후 허용되는 최대 점 (참고 : 제한이 없으면이 필드를 비워 두거나 0으로 설정) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,잘못된 템플릿 apps/frappe/frappe/model/db_query.py,Illegal SQL Query,잘못된 SQL 쿼리 apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,필수 : DocType: Chat Message,Mentions,멘션 @@ -2904,6 +2972,7 @@ DocType: User Permission,User Permission,사용자 권한 apps/frappe/frappe/templates/includes/blog/blog.html,Blog,블로그 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP가 설치되지 않음 apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,데이터 다운로드 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1}에 대한 변경된 값 DocType: Workflow State,hand-right,손 오른쪽 DocType: Website Settings,Subdomain,하위 도메인 DocType: S3 Backup Settings,Region,지방 @@ -2931,10 +3000,12 @@ DocType: Braintree Settings,Public Key,공개 키 DocType: GSuite Settings,GSuite Settings,GSuite 설정 DocType: Address,Links,링크 DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,이 계정에서 언급 된 전자 메일 주소 이름을이 계정을 사용하여 보낸 모든 전자 메일의 보낸 사람 이름으로 사용합니다. +DocType: Energy Point Rule,Field To Check,확인할 필드 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.",Google 주소록-Google 주소록 {0}에서 연락처를 업데이트 할 수 없습니다. 오류 코드 {1}. apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,문서 유형을 선택하십시오. apps/frappe/frappe/model/base_document.py,Value missing for,값을 누락 apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,자식 추가 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,가져 오기 진행 DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",조건이 충족되면 사용자는 포인트로 보상 받게됩니다. 예 : doc.status == '닫힘' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1} : 제출 된 기록은 삭제할 수 없습니다. @@ -2971,6 +3042,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google 캘린더 액 apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,당신이 찾고있는 페이지가 없습니다. 이 이동하거나 링크에 오타가 있기 때문에이 될 수 있습니다. apps/frappe/frappe/www/404.html,Error Code: {0},오류 코드 : {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","일반 텍스트로 목록 페이지에 대한 설명, 라인의 단 몇. (최대 140 자)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0}은 필수 필드입니다 DocType: Workflow,Allow Self Approval,자체 승인 허용 DocType: Event,Event Category,이벤트 카테고리 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,존 도우 @@ -3019,8 +3091,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,이동 DocType: Address,Preferred Billing Address,선호하는 결제 주소 apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,너무 많은 사람들이 하나의 요청에 씁니다. 작은 요청을 보내 주시기 바랍니다 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google 드라이브가 구성되었습니다. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,문서 유형 {0}이 (가) 반복되었습니다. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,값 변경 DocType: Workflow State,arrow-up,화살표까지 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} 테이블에 대해 최소한 하나의 행이 있어야합니다 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",자동 반복을 구성하려면 {0}에서 "자동 반복 허용"을 활성화하십시오. DocType: OAuth Bearer Token,Expires In,에 만료 DocType: DocField,Allow on Submit,제출에 허용 @@ -3107,6 +3181,7 @@ DocType: Custom Field,Options Help,옵션 도움말 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 레코드가 내보내집니다 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,도메인으로 제한 @@ -3124,6 +3199,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,확인 코드 DocType: Webhook,Webhook Request,Webhook 요청 apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** 실패 : {0}에 {1} {2} DocType: Data Migration Mapping,Mapping Type,매핑 유형 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,필수 선택 apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,검색 apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","문자, 숫자, 또는 대문자에 대한 필요가 없습니다." DocType: DocField,Currency,통화 @@ -3154,11 +3230,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,편지 머리 기준 apps/frappe/frappe/utils/oauth.py,Token is missing,토큰이 없습니다 apps/frappe/frappe/www/update-password.html,Set Password,비밀번호 설정 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} 레코드를 성공적으로 가져 왔습니다. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,참고 : 페이지 이름을 변경하면이 페이지의 이전 URL이 깨집니다. apps/frappe/frappe/utils/file_manager.py,Removed {0},제거 {0} DocType: SMS Settings,SMS Settings,SMS 설정 DocType: Company History,Highlight,옵션 DocType: Dashboard Chart,Sum,합집합 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,데이터 가져 오기를 통해 DocType: OAuth Provider Settings,Force,힘 apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},마지막 동기화 된 {0} DocType: DocField,Fold,겹 @@ -3195,6 +3273,7 @@ DocType: Workflow State,Home,홈 DocType: OAuth Provider Settings,Auto,자동 DocType: System Settings,User can login using Email id or User Name,사용자는 이메일 ID 또는 사용자 이름을 사용하여 로그인 할 수 있습니다. DocType: Workflow State,question-sign,질문 서명 +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0}이 비활성화되었습니다 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",웹 조회에는 '경로'입력란이 필수 항목입니다. apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} 앞에 열 삽입 DocType: Energy Point Rule,The user from this field will be rewarded points,이 필드의 사용자는 보상 포인트가됩니다. @@ -3228,6 +3307,7 @@ DocType: Website Settings,Top Bar Items,상단 바의 항목 DocType: Notification,Print Settings,인쇄 설정 DocType: Page,Yes,예 DocType: DocType,Max Attachments,최대 첨부 파일 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,약 {0} 초 남음 DocType: Calendar View,End Date Field,종료 날짜 필드 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,글로벌 단축키 DocType: Desktop Icon,Page,페이지 @@ -3340,6 +3420,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite 액세스 허용 DocType: DocType,DESC,DESC DocType: DocType,Naming,Naming apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,모두 선택 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},열 {0} apps/frappe/frappe/config/customization.py,Custom Translations,사용자 정의 번역 apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,진행 apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,역할별 @@ -3382,11 +3463,13 @@ DocType: Stripe Settings,Stripe Settings,스트라이프 설정 DocType: Stripe Settings,Stripe Settings,스트라이프 설정 DocType: Data Migration Mapping,Data Migration Mapping,데이터 마이그레이션 매핑 DocType: Auto Email Report,Period,기간 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,약 {0} 분 남음 apps/frappe/frappe/www/login.py,Invalid Login Token,잘못된 로그인 토큰 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,공유 - 고도 apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},대기열은 {0} 중 하나 여야합니다. @@ -3417,6 +3500,7 @@ DocType: Calendar View,Start Date Field,시작 날짜 필드 DocType: Role,Role Name,역할 이름 apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,데스크로 전환 apps/frappe/frappe/config/core.py,Script or Query reports,스크립트 또는 쿼리 보고서 +DocType: Contact Phone,Is Primary Mobile,기본 모바일입니다 DocType: Workflow Document State,Workflow Document State,워크 플로 문서 상태 apps/frappe/frappe/public/js/frappe/request.js,File too big,너무 큰 파일 apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,이메일 계정이 여러 번 추가 @@ -3462,6 +3546,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,페이지 설정 apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,절약... apps/frappe/frappe/www/update-password.html,Invalid Password,유효하지 않은 비밀번호 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{1}에서 {0} 레코드를 가져 왔습니다. DocType: Contact,Purchase Master Manager,구매 마스터 관리자 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,자물쇠 아이콘을 클릭하여 공개 / 개인을 토글하십시오. DocType: Module Def,Module Name,모듈 이름 @@ -3496,6 +3581,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,일부 기능은 브라우저에서 작동하지 않을 수 있습니다. 브라우저를 최신 버전으로 업데이트하십시오. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,일부 기능은 브라우저에서 작동하지 않을 수 있습니다. 브라우저를 최신 버전으로 업데이트하십시오. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",물어 몰라 '도움' +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},이 문서 {0}을 (를) 취소했습니다 DocType: DocType,Comments and Communications will be associated with this linked document,댓글과 통신이 링크 된 문서로 연결됩니다 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,필터 ... DocType: Workflow State,bold,대담한 @@ -3514,6 +3600,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,이메일 계 DocType: Comment,Published,출판 apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,이메일 주셔서 감사합니다 DocType: DocField,Small Text,작은 텍스트용 +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,전화 번호와 휴대 전화 번호를 {0} (으)로 설정할 수 없습니다. DocType: Workflow,Allow approval for creator of the document,문서 작성자에게 승인 허용 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,보고서 저장 DocType: Webhook,on_cancel,on_cancel @@ -3571,6 +3658,7 @@ DocType: Print Settings,PDF Settings,PDF 설정 DocType: Kanban Board Column,Column Name,열 이름 DocType: Language,Based On,에 근거 DocType: Email Account,"For more information, click here.","자세한 내용은 여기를 클릭하십시오 ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,열 수가 데이터와 일치하지 않습니다 apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,기본 확인 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,실행 시간 : {0} 초 apps/frappe/frappe/model/utils/__init__.py,Invalid include path,포함 경로가 잘못되었습니다. @@ -3661,7 +3749,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar 동기화 ID DocType: Prepared Report,Report Start Time,보고서 시작 시간 -apps/frappe/frappe/config/settings.py,Export Data,데이터 내보내기 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,데이터 내보내기 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.,이것은 배경 보고서입니다. 적절한 필터를 설정 한 다음 새 필터를 생성하십시오. @@ -3679,7 +3767,6 @@ DocType: Report,Disable Prepared Report,준비 보고서 사용 안 함 apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,사용자 {0}이 (가) 데이터 삭제를 요청했습니다. apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,불법 액세스 토큰. 다시 시도하십시오 apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","응용 프로그램이 새 버전으로 업데이트되었습니다,이 페이지를 새로 고치십시오" -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.,기본 주소 템플릿이 없습니다. 설정> 인쇄 및 브랜딩> 주소 템플릿에서 새로 만드십시오. DocType: Notification,Optional: The alert will be sent if this expression is true,선택 사항 :이 표현에 해당하는 경우 경고가 전송됩니다 DocType: Data Migration Plan,Plan Name,계획 이름 DocType: Print Settings,Print with letterhead,레터로 인쇄 @@ -3720,6 +3807,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : 설정할 수 없습니다 취소없이 개정 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,전체 페이지 DocType: DocType,Is Child Table,자식 테이블입니다 +DocType: Data Import Beta,Template Options,템플릿 옵션 apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} {1} 중 하나 여야합니다 apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} 현재이 문서를보고 apps/frappe/frappe/config/core.py,Background Email Queue,이메일 대기열 @@ -3727,7 +3815,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,암호 재설정 DocType: Communication,Opened,개설 DocType: Workflow State,chevron-left,갈매기 왼쪽 DocType: Communication,Sending,보내기 -apps/frappe/frappe/auth.py,Not allowed from this IP Address,이 IP 주소에서 허용되지 않음 DocType: Website Slideshow,This goes above the slideshow.,슬라이드 쇼가 위에 간다. DocType: Contact,Last Name,성 DocType: Event,Private,개인 @@ -3741,7 +3828,6 @@ DocType: Workflow Action,Workflow Action,워크 플로 작업 apps/frappe/frappe/utils/bot.py,I found these: ,나는이 발견 : DocType: Event,Send an email reminder in the morning,아침에 이메일 알림 보내기 DocType: Blog Post,Published On,에 게시 -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오 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}에 점수를 되돌 렸습니다. @@ -3762,7 +3848,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,경고 기호 DocType: Prepared Report,Prepared Report,준비 보고서 apps/frappe/frappe/config/website.py,Add meta tags to your web pages,웹 페이지에 메타 태그 추가 -DocType: Contact,Phone Nos,전화 번호 DocType: Workflow State,User,사용자 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",같은 브라우저 창에 표시 제목 "접두어 - 제목" DocType: Payment Gateway,Gateway Settings,게이트웨이 설정 @@ -3780,6 +3865,7 @@ DocType: Data Migration Connector,Data Migration,데이터 마이그레이션 DocType: User,API Key cannot be regenerated,API 키를 다시 생성 할 수 없습니다. apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,문제가 발생했습니다 DocType: System Settings,Number Format,번호 형식 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} 레코드를 성공적으로 가져 왔습니다. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,개요 DocType: Event,Event Participants,이벤트 참가자 DocType: Auto Repeat,Frequency,회수 @@ -3787,7 +3873,7 @@ DocType: Custom Field,Insert After,후 삽입 DocType: Event,Sync with Google Calendar,Google 캘린더와 동기화 DocType: Access Log,Report Name,보고서 이름 DocType: Desktop Icon,Reverse Icon Color,아이콘 색상 반전 -DocType: Notification,Save,저장 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,저장 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,다음 예약 날짜 apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,할당이 가장 적은 사람에게 할당 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,섹션 제목 @@ -3810,11 +3896,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,설정> 양식 사용자 정의 DocType: Google Contacts,Last Sync On,마지막 동기화 DocType: Deleted Document,Deleted Document,삭제 된 문서 apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,죄송합니다. 문제가 발생했습니다 DocType: Desktop Icon,Category,범주 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},{1}에 대한 값 {0}이 누락되었습니다 apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,연락처 추가 apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,경치 apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,자바 스크립트에서 클라이언트 측 스크립트 확장 @@ -3838,6 +3924,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,에너지 포인트 업데이트 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',다른 지불 방법을 선택하세요. 페이팔은 '{0}'통화 트랜잭션을 지원하지 않습니다 DocType: Chat Message,Room Type,객실 유형 +DocType: Data Import Beta,Import Log Preview,가져 오기 로그 미리보기 apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,검색 필드 {0} 유효하지 않습니다 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,업로드 된 파일 DocType: Workflow State,ok-circle,OK-원 @@ -3906,6 +3993,7 @@ DocType: DocType,Allow Auto Repeat,자동 반복 허용 apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,표시 할 값이 없습니다. DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,이메일 템플릿 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} 레코드를 성공적으로 업데이트했습니다. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},사용자 {0}에게는 {1} 문서에 대한 역할 사용 권한을 통한 Doctype 액세스 권한이 없습니다. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,필요한 로그인과 암호가 모두 apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,최신 문서를 가져 오려면 새로 고침하십시오. diff --git a/frappe/translations/ku.csv b/frappe/translations/ku.csv index 5f11dbbd07..3b70d4aa46 100644 --- a/frappe/translations/ku.csv +++ b/frappe/translations/ku.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Nû {} ji bo serîlêdanên jêrîn berdest in apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Ji kerema xwe ve Mîqdar a Field hilbijêre. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Dosya importê tê barkirin ... DocType: Assignment Rule,Last User,Bikarhênera paşîn apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","A erka nû, {0}, ji we re hatiye by {1} rêdan. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Session Defaults Saved +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Pelê nûve bikin DocType: Email Queue,Email Queue records.,records Email Dorê. DocType: Post,Post,Koz DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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ê @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Mehane DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,çalak Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Talûke -apps/frappe/frappe/www/login.py,Email Address,Navnîşana emailê +DocType: Address,Email Address,Navnîşana emailê DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Hişyariya Unread Sent apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export qedexe ne. Ji we re lazim {0} roleke ji bo îxracata. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Vebijarkên Contact, wek "Sales Query, Support Query" û hwd her yek li ser xeta nû an jî ji aliyê cureyên cuda." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Tagek zêde bike ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portûgal -DocType: Data Migration Run,Insert,Lêzêdekirin +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Lêzêdekirin apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Destûra Google Drive destûr bide apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} Select apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Ji kerema xwe ji Bingeha Bingehê @@ -118,17 +121,17 @@ 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î DocType: Company History,Company History,Dîroka Company -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,reset bike +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,reset bike DocType: Workflow State,volume-up,volume-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks ji bo serîlêdanên web-webê daxwaz dikin +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Traceback nîşan bikin DocType: DocType,Default Print Format,Default Format bo çapkirinê DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,None: End of Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} qadê ne dikarin bên mîhenkirin wek ku di {1} yekane, çawa ku nirxên ne-yekane heyî li wir" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Types belge +DocType: Global Search Settings,Document Types,Types belge DocType: Address,Jammu and Kashmir,Jammu û Keşmîrê DocType: Workflow,Workflow State Field,Workflow Dewletê Field -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Bikarhêner DocType: Language,Guest,Mêvan DocType: DocType,Title Field,title Field DocType: Error Log,Error Log,Têkeve Error @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Dubareyên wek "abcabcabc" bi tenê hinekî bi zehmetî dibêm qey ji bilî "abc" DocType: Notification,Channel,Qenal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Eger tu difikirî ku ev destûr de ye, ji kerema xwe şîfreya xwe Administrator biguherin." +DocType: Data Import Beta,Data Import Beta,Danasîna Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} wêneke e DocType: Assignment Rule,Assignment Rules,Rêzên erkdariyê DocType: Workflow State,eject,derveavêtin @@ -163,6 +167,7 @@ DocType: Workflow Action Master,Workflow Action Name,Navê Workflow Action apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType bi yek bên DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ne pel zip +DocType: Global Search DocType,Global Search DocType,DocType Lêgerîna Gloverî DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                          New {{ doc.doctype }} #{{ doc.name }}
                                                          ","Ji bo mijara dînamîkî zêde bike, wekî jinja tagên bikar bînin
                                                           New {{ doc.doctype }} #{{ doc.name }} 
                                                          " @@ -210,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,parametre url ji bo peyame apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Repeat Auto ji bo vê belgeyê hate afirandin apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Guhertoya we di gerokê de bibînin apps/frappe/frappe/config/desk.py,Event and other calendars.,Event û din calendars. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 row mecbûrî) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Hemû qadên pêwist ji bo pêşkêşkirina de Rayi in. DocType: Custom Script,Adds a client custom script to a DocType,Xerîdarek xerîdar a muwekîlê li DocType zêde dike DocType: Print Settings,Printer Name,Navê Peldanka @@ -250,7 +256,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS DocType: Bulk Update,Bulk Update,Update Gir DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Destûrê bide Mêvan ji bo View -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Vemirandina {0} tomar de namîne? apps/frappe/frappe/utils/oauth.py,Not Allowed,Yorumlar ne @@ -266,6 +271,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Pêşkêşî DocType: Email Group,Total Subscribers,Total Subscribers apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Hejmara Rêzan apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Eger Role xwedîyê gihîştina asta 0 tune ne, asta wê bilind bi wate ne." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,dît @@ -326,6 +332,7 @@ DocType: Activity Log,Closed,Girtî DocType: Blog Settings,Blog Title,Title Blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,rolên Standard ne dikarin neçalak bibin apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Tîpa Chatê +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kolonên Nexşeyê DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"Can sub-query, da bi kar tînin bi destê" @@ -393,6 +400,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Bikarhê DocType: System Settings,Currency Precision,Precision Exchange DocType: System Settings,Currency Precision,Precision Exchange apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,mêjera din dorpêçan ev yek. Ji kerema xwe di çend deqeyan de careke din biceribîne. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Parzûnên zelal bikin DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Têkilî nikarin bi belgeya nû ya nû ve girêdayî ye DocType: Chat Message Attachment,Attachment,Attachment @@ -433,7 +441,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html,"Your query has been receive apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Girêdana otomatîkî tenê heke Input were çalak kirin dikare were aktîv kirin. DocType: LDAP Settings,LDAP Middle Name Field,Navê Navîn LDAP DocType: GCalendar Account,Allow GCalendar Access,G Accessa GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} zeviyek eynî ye +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} zeviyek eynî ye apps/frappe/frappe/templates/includes/login/login.js,Login token required,Têketinê têketin apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rêzeya mehane: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Tiştên navnîşa pirjimar hilbijêrin @@ -462,6 +470,7 @@ DocType: Domain Settings,Domain Settings,Settings Domain apps/frappe/frappe/email/receive.py,Cannot connect: {0},Nikare bigihîjê: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,A peyva destê xwe bi hêsanî texmîn e. apps/frappe/frappe/templates/includes/search_box.html,Search...,Gerr... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Ji kerema xwe ve Company hilbijêre apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Yedega di navbera tenê gengaz e Group-to-Pol an Leaf Node-to-Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Ev babete ji layê {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,No Partiya. Search tiştekî nû @@ -474,7 +483,6 @@ DocType: Google Settings,OAuth Client ID,Nasnameya Client OAuth DocType: Auto Repeat,Subject,Mijar apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Vegere Desk DocType: Web Form,Amount Based On Field,Şêwaz li ser Field -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 Rast Ji Bila Hesabê E-nameyê saz bike apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Bikarhêner ji bo Share wêneke e DocType: DocField,Hidden,veşartî DocType: Web Form,Allow Incomplete Forms,Destûrê bide Cureyên Incomplete @@ -511,6 +519,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} û {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Destpêk biaxivin. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Her tim "Pêşnûmeya" lê zêde bike Berev ji bo çapkirinê pêşnûma belge apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Di ificationapkirinê de çewtî: { +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} sal (sal) berê DocType: Data Migration Run,Current Mapping Start,Mapping Current Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email hatiye dîtin wek zibil nîşankirin DocType: Comment,Website Manager,Manager Website @@ -549,6 +558,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Bikaranîna sub-query an fonksiyonê qedexe ye apps/frappe/frappe/config/customization.py,Add your own translations,"Zêde dikin, xwe bi xwe" DocType: Country,Country Name,Navê welatê +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Ankablonê vala DocType: About Us Team Member,About Us Team Member,About Us Team Member apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Permissions in li ser ristên û Types Document (bi navê DocTypes) bi avakirina mafên wek Read set, hewe, Rencber, Vemirandina, Submit, Cancel, Qanûnên, Report, Import, Export, Print, Email û Set User Permissions." DocType: Event,Wednesday,Çarşem @@ -560,6 +570,7 @@ DocType: Website Settings,Website Theme Image Link,Website Link Theme Wêne DocType: Web Form,Sidebar Items,Nawy Kêlekê DocType: Web Form,Show as Grid,Wekî Grid nîşan bide apps/frappe/frappe/installer.py,App {0} already installed,App {0} jixwe sazkirî +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Bikarhênerên ku ji bo belgeya referansê hatine wezîfedarkirin dê امتیاز bigirin. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,No Preview DocType: Workflow State,exclamation-sign,baneşana-sign apps/frappe/frappe/public/js/frappe/form/controls/link.js,empty,vala @@ -594,6 +605,7 @@ DocType: Notification,Days Before,roj berî apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Divê Bûyerên Rojane di Heman Rojê de bi dawî bibin. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Weşandin... DocType: Workflow State,volume-down,volume-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Ji vê Navnîşana IP-yê destûr nayê dayîn 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 @@ -692,6 +704,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Mazûban +DocType: Data Import Beta,Import File,Pelê Import apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Stûna {0} niha hene. DocType: ToDo,High,Bilind apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Çalakiya nû @@ -720,8 +733,6 @@ DocType: User,Send Notifications for Email threads,Ji bo mijarên e-nameyê agah apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne li Mode Developer apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Barkirinê pelê amade ye -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Pîvanên herî zêde destûr didin ku piştî niqteyên bi nirxa pirrengê re pirjimar bikin (Nîşe: Ji bo 0/0/0 DocType: DocField,In Global Search,Di Global Search DocType: System Settings,Brute Force Security,Ewlekariya Hêza Brute DocType: Workflow State,indent-left,indent-çepê @@ -764,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Bikarhêner '{0}' jixwe rola heye '{1}' DocType: System Settings,Two Factor Authentication method,Method Mîhengkirina Du Factor apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Yekem navê xwe danîne û tomar bike. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 records apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Shared bi {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Unsubscribe DocType: View Log,Reference Name,Navê Reference @@ -842,9 +854,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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î apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Curenivîsên name {0} {1} -DocType: Email Queue,Retry,Biceribîne +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Biceribîne +DocType: Contact Phone,Number,Jimare DocType: Web Form Field,Web Form Field,Form Web Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Hûn bi peyamek nû heye ji: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,biguherîne HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Ji kerema xwe URL binivîse navnîşan apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -870,7 +884,7 @@ DocType: Notification,View Properties (via Customize Form),View Properties (via apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Li ser pelê bikirtînin ku hilbijêrin. DocType: Note Seen By,Note Seen By,Têbînî Seen By apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Try bi kar pattern Klavyeya êdî bi dixne more -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Leaderboard +,LeaderBoard,Leaderboard DocType: DocType,Default Sort Order,Fermana Sortkariyê ya Default DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Alîkariya Navnîşan Email @@ -905,6 +919,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,compose Email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Amerîka ji bo workflow (wek nimûne bi Pêşnûmeya, başora, weş)." DocType: Print Settings,Allow Print for Draft,Destûrê bide Print ji bo Pêşnûmeya +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êdanê ya QZ Tray de têkildar e ...

                                                          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/link_selector.js,Set Quantity,Set Diravan apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Submit vê belgeyê de ji bo piştrast DocType: Contact,Unsubscribed,Unsubscribed @@ -935,6 +950,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Yekîneya rêxistinî ji bo ,Transaction Log Report,Raporta Log Report DocType: Custom DocPerm,Custom DocPerm,DocPerm Custom DocType: Newsletter,Send Unsubscribe Link,Send Unsubscribe Link +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Hin qeydên têkildar hene ku hewce ne ku werin afirandin berî ku em dikarin pelê xwe bidin hev. Ma hûn dixwazin qeydên winda yên jêrîn bixweber biafirînin? DocType: Access Log,Method,Awa DocType: Report,Script Report,script Report DocType: OAuth Authorization Code,Scopes,Scopes @@ -976,6 +992,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Bi serfirazî hate barkirin apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Hûn bi înternetê ve girêdayî ye. DocType: Social Login Key,Enable Social Login,Têketina Civakî çalak bike +DocType: Data Import Beta,Warnings,Hişyariyên DocType: Communication,Event,Bûyer apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Li ser {0}, {1} nivîsî:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Can warê standard jêbirin. Hûn dikarin wê vedişêrin, eger tu dixwazî" @@ -1031,6 +1048,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Insert j DocType: Kanban Board Column,Blue,Şîn apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Hemû li ser budceya bê rakirin. Ji kerema xwe re piştrast bike. DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Rêzên çewt hatine derxistin apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Navê navnîşê vala nebe. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,hucûma berfireh dikarin bi tenê di bin 'Group' type hucûma tên afirandin DocType: SMS Parameter,Header,header @@ -1076,7 +1094,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,Settings SMTP bo emails apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,an hilbijêrin DocType: Data Export,Filter List,Lîsteya Filîteyê DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Te şîfreya xwe ji cara ghurrînikarî bi serda. Here şîfreya xwe ya nû ye 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 @@ -1085,7 +1102,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID'ya bikarhêner DocType: Communication,Sent,şandin DocType: Address,Kerala,kerala -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Birêvebirî DocType: User,Simultaneous Sessions,"Sessions, Stewr," DocType: Social Login Key,Client Credentials,"negihuriye, Client" @@ -1117,7 +1133,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Demê { apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mamoste DocType: DocType,User Cannot Create,User ne Can Create apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Serkeftin bi ser ketin -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Peldanka {0} tune apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,access Dropbox pejirandin heye! DocType: Customize Form,Enter Form Type,Enter Type Form DocType: Google Drive,Authorize Google Drive Access,Destûrdayîna Google Drive-ê destûr bide @@ -1125,7 +1140,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,No records tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,jê Field apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Tu ne girêdayî înternetê. Piştî demekê dîsa biceribîne. -DocType: User,Send Password Update Notification,Send Password agahdar bike Update apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Rêvekirin li DocType, DocType. Xwe şîyar be!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formats Customized bo Printing, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Sum of {0} @@ -1208,6 +1222,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Kodê nasnameya çew apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Yekkirina Têkiliyên Google nexşandî ye. DocType: Assignment Rule,Description,Terîf DocType: Print Settings,Repeat Header and Footer in PDF,Header û Rêza dubare in PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Têkçûnî DocType: Address Template,Is Default,e Default DocType: Data Migration Connector,Connector Type,Tîpa Connector apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Navê Stûna ne vala be @@ -1272,6 +1287,7 @@ DocType: Print Settings,Enable Raw Printing,Çapkirina Raw فعال bike DocType: Website Route Redirect,Source,Kanî apps/frappe/frappe/templates/includes/list/filters.html,clear,zelal apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Qedandin +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Bikarhêner DocType: Prepared Report,Filter Values,Nirxên nirxandin DocType: Communication,User Tags,Bikarhêner Tags DocType: Data Migration Run,Fail,Biserîneçûn @@ -1328,6 +1344,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Pêk ,Activity,Çalakî DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Alîkarî: To berve record din li sîstemê de, bi kar tînin "Form # / Têbînî / [Nîşe Name]" wek URL Link de. (Bi kar nayînin "http: //")" DocType: User Permission,Allow,Destûrdan +DocType: Data Import Beta,Update Existing Records,Dîmenên Xwe Veşînin apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Bila nekevin gotinan dubare û characters DocType: Energy Point Rule,Energy Point Rule,Rêza Panêla Enerjiyê DocType: Communication,Delayed,bi derengî @@ -1340,9 +1357,7 @@ DocType: Milestone,Track Field,Track Field DocType: Notification,Set Property After Alert,Set babet Piştî Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Lê zêde bike zevî ji bo formên. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Dişibe tiştek xelet bi veavakirina Paypal vê malperê ye. -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êdanê ya QZ Tray de têkildar e ...

                                                          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/sidebar/review.js,Add Review,Review zêde bikin -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Mezinahiya Font (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Tenê DocTypes standard têne destûr kirin ku ji Forma Hilbijarkî were veqetandin. DocType: Email Account,Sendgrid,Sendgrid @@ -1378,6 +1393,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Bibore! Tu dikarî comments-auto generated jêbirin ne DocType: Google Settings,Used For Google Maps Integration.,Ji bo entegrasyona nexşeyên Google-ê tête bikar anîn. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DocType Reference +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Dê qeyd neyên hinartin DocType: User,System User,Bikarhêner pergal DocType: Report,Is Standard,e Standard DocType: Desktop Icon,_report,_nûçe @@ -1393,6 +1409,7 @@ DocType: Workflow State,minus-sign,minus-sign apps/frappe/frappe/public/js/frappe/request.js,Not Found,Peyda nebû apps/frappe/frappe/www/printview.py,No {0} permission,No {0} destûr apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export Permissions Custom +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ti tişt nehat dîtin. DocType: Data Export,Fields Multicheck,Zeviyên Multicheck DocType: Activity Log,Login,Login DocType: Web Form,Payments,Payments @@ -1451,8 +1468,9 @@ DocType: Address,Postal,postal DocType: Email Account,Default Incoming,Default Incoming DocType: Workflow State,repeat,dûbare DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Nirx divê yek ji {0} be. DocType: Role,"If disabled, this role will be removed from all users.","Ger qedexekirin, ev rola wê ji hemû bikarhêneran rakirin." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Here cem {0} Navnîş +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Here cem {0} Navnîş 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 @@ -1495,7 +1513,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Serzêde kirin Manager System vê User ku li wê derê, divê Hindîstan û Manager yek System be" DocType: Chat Message,URLs,URL DocType: Data Migration Run,Total Pages,Total Pages -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                          No results found for '

                                                          ,"

                                                          Ti encam nehat dîtin ji bo '

                                                          " 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ê @@ -1515,8 +1532,10 @@ 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î +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Destûrên bikarhêner DocType: LDAP Group Mapping,LDAP Group Mapping,Nexşeya Koma LDAP DocType: Dashboard Chart,Chart Options,Vebijarkên Chart +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Kolona Untitled apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} ji {1} ji bo {2} li row # {3} DocType: Communication,Expired,kapê de apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Bersivên ku hûn tê bikaranîn ne çewt e! @@ -1526,6 +1545,7 @@ DocType: DocType,System,Sîstem DocType: Web Form,Max Attachment Size (in MB),Max Attachment Size (di MB) apps/frappe/frappe/www/login.html,Have an account? Login,Hesabê te heye? Login DocType: Workflow State,arrow-down,tîra-down +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Row {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Bikarhêner destûr ne bibî {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} ji {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Last Updated ser @@ -1542,6 +1562,7 @@ DocType: Custom Role,Custom Role,Role Custom apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Home / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,nasnavê xwe binivîsî DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Têketinê Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Bicî) 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. @@ -1614,6 +1635,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Dashboard apps/frappe/frappe/desk/form/assign_to.py,New Message,Peyama Nû DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-rapora +DocType: Data Import Beta,Template Warnings,Hişyariyên şablonê apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Parzûn xilas DocType: DocField,Percent,ji sedî apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Ji kerema xwe ve set filter @@ -1635,6 +1657,7 @@ DocType: Custom Field,Custom,Hûnbunî DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Heke çalak kirin, bikarhênerên ku ji navnîşana IP-IP-Nîsanê vekirî, dê ji bo Faktorê Du Faktorê neyê pejirandin" DocType: Auto Repeat,Get Contacts,Têkilî bibin apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Posts doz di bin {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Kolona Untitled hilandin DocType: Notification,Send alert if date matches this field's value,Send hişyar eger date matches nirxa vê qadê da DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} ji bo {2} @@ -1658,6 +1681,7 @@ DocType: Workflow State,step-backward,gav-bi paş ve apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Ji kerema xwe ve set keys access Dropbox li config-numreya te apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Vemirandina ev rekor bi rê şandina ji bo vê navnîşana email +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ger porta ne-standard (mînak POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Bi kurteçêkan vekirî apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Tenê zeviyên diyarkirî ji bo qeydên nû pêwîst in. Tu stûnên non-wêneke eger tu dixwazî jê bibî. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Morealakbûna Zêdetir @@ -1762,6 +1786,7 @@ apps/frappe/frappe/www/third_party_apps.html,Logged in,têketî apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Default Şandina û Inbox DocType: System Settings,OTP App,OTP App DocType: Google Drive,Send Email for Successful Backup,Ji bo Serkeftina Serkeftî ya Serkeftî bişînin +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Scheduler neçalak e. Danûstandin nekare. DocType: Print Settings,Letter,Name DocType: DocType,"Naming Options:
                                                          1. field:[fieldname] - By Field
                                                          2. naming_series: - By Naming Series (field called naming_series must be present
                                                          3. Prompt - Prompt user for a name
                                                          4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                          5. @@ -1775,6 +1800,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,Mîhengên Nîşana Enerjiyê DocType: Async Task,Succeeded,serkeftî apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},zeviyên wêneke pêwîst di {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                            No results found for '

                                                            ,"

                                                            Ti encam nehat dîtin ji bo '

                                                            " apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Permissions Reset ji bo {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Bikarhêner û Permissions DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1845,6 +1871,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Li DocType: Notification,Value Change,Change Nirx DocType: Google Contacts,Authorize Google Contacts Access,Destûrdayîna Têkiliyên Google Destûr bide apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Tenê zeviyên Numerîk ji raportê têne nîşandan +DocType: Data Import Beta,Import Type,Type Type DocType: Access Log,HTML Page,Rûpela HTML DocType: Address,Subsidiary,Şîrketa girêdayî apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Têkildarî girêdana bi QZ Tray re ... @@ -1854,7 +1881,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Invalid Se DocType: Custom DocPerm,Write,Nivîsîn apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Tenê Administrator destûr ji bo afirandina Query / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Rastvekirina -DocType: File,Preview,Pêşnerîn +DocType: Data Import Beta,Preview,Pêşnerîn apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "nirxê" bivênevê ye. Ji kerema xwe nirxê xwe diyar bike ji bo ve were DocType: Customize Form,Use this fieldname to generate title,Bi kar tînin ev fieldname ji bo bipêşxistina title apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import Email From @@ -1939,6 +1966,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser nayê DocType: Social Login Key,Client URLs,URLsên mişter apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Hinek agahî kêm apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} bi serkeftî çêkir +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Skipping {0} of {1}, {2}" DocType: Custom DocPerm,Cancel,Bişûndekirin apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Jêkirin apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,File {0} tune @@ -1966,7 +1994,6 @@ DocType: GCalendar Account,Session Token,Token DocType: Currency,Symbol,Nîşan apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Rakirina Daneyê piştrast bike -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,şîfreya xwe ya nû bi rêket apps/frappe/frappe/auth.py,Login not allowed at this time,Têketinê di vê demê de destûr ne DocType: Data Migration Run,Current Mapping Action,Çalakiya Mapping Current DocType: Dashboard Chart Source,Source Name,Navê Source @@ -2038,6 +2065,7 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Dokumentên çapkirinê apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Herin zeviyê DocType: Contact Us Settings,Forward To Email Address,Pêş To Email Address +DocType: Contact Phone,Is Primary Phone,Telefonê seretayî ye apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,E-nameyek ji {0} re bişînin da ku li vir werin girêdan. DocType: Auto Email Report,Weekdays,Rojan apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,warê Title divê fieldname derbasdar be @@ -2058,7 +2086,9 @@ eval:doc.age>18","Ev qada wê derkevin, wê bi tenê dikarî eger fieldname d DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Îro apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Îro +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.,Temablonê navnîşa xwerû nehat dîtin. Ji kerema xwe ji Setup> çapkirin û Berfirehkirina> Temablonê Navnîşan a nû çêbikin. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Piştî ku we ev ava kir, bikarhênerên bi tenê dikarî wê belgeyên ketina nikarin bibin (wek nimûne. Blog Post) li cihê ku link heye (wek nimûne. Blogger)." +DocType: Data Import Beta,Submit After Import,Piştî Importê bişînin DocType: Error Log,Log of Scheduler Errors,Têkeve ji Errors Tevlîhevker DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App Client Secret @@ -2076,10 +2106,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Disable link Signup Mişterî li rûpel Login apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Rêdan To / Xwedî DocType: Workflow State,arrow-left,tîra-hiştin +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Record 1 tomar bike DocType: Workflow State,fullscreen,dîmender tijî DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Chart damezrînin apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Import nakin DocType: Web Page,Center,Navîne DocType: Notification,Value To Be Set,Nirx ji bo danîna apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edit {0} @@ -2098,6 +2130,7 @@ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under DocType: Print Format,Show Section Headings,Show Beþ Headings DocType: Bulk Update,Limit,Sînorkirin apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Beşê nûve bike +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Pelên Filtered apps/frappe/frappe/www/printview.py,No template found at path: {0},No şablonê pêk hatiye dîtin li rêya: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,No Account Email DocType: Comment,Cancelled,Hilandin @@ -2182,10 +2215,13 @@ DocType: Communication Link,Communication Link,Girêdana ragihandinê apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Format çewt a derxistinê apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Nikare {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Apply vê qeydeyî, eger User xwediyę e" +DocType: Global Search Settings,Global Search Settings,Mîhengên Lêgerîna Gloverî apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Dê bibe ID te (login) +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Tipên Belgeya Lêgerîna Gloverî Reset. ,Lead Conversion Time,Demjimêrîna Rêberê Demjimêr apps/frappe/frappe/desk/page/activity/activity.js,Build Report,ava Report DocType: Note,Notify users with a popup when they log in,bikarhênerên Notify bi popup gava ku ew jî têkeve +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Modulên Core {0} di Lêgerîna Gerdûnî de nayête lêgerîn. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Chat-vekirî apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} does not exist, hedef ya nû hilbijêre ji bo merge" DocType: Data Migration Connector,Python Module,Modela Python @@ -2202,8 +2238,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Nêzîkî apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Can docstatus ji 0 heta 2 nayê guhertin DocType: File,Attached To Field,Têkilî Çevê -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Destûrên bikarhêner -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,update +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,update DocType: Transaction Log,Transaction Hash,Transaction Hash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Ji kerema xwe li Newsletter berî şandina xilas bike @@ -2230,7 +2265,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,Periodsîbûna Alloc DocType: SMS Settings,SMS Gateway URL,URL SMS Gateway apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} nikare were "{2}". Ev divê yek ji be "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} an {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Update Password DocType: Workflow State,trash,zibil DocType: System Settings,Older backups will be automatically deleted,unterstützt kevintir wê were jêbirin apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Nasnameya Key Key an Key Key Access. @@ -2258,6 +2292,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,Bika DocType: Address,Preferred Shipping Address,Tercîh Navnîşana Şandinê apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Bi serê Letter apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} tên afirandin ev {1} +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> Hesabê Email-ê hesabek e-nameyek nû çêkin DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Heke ku ev tête kontrolkirin, daneyên ku bi daneyên derbasdar ên derbasdar dê bêne veguhastin û rêzikên çewt dê dê ji bo ku hûn veguhestin pelê nû nabe." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentê tenê ji aliyê bikarhênerên rola editable e @@ -2284,6 +2319,7 @@ DocType: Custom Field,Is Mandatory Field,E Mandatory Field DocType: User,Website User,Website Bikarhêner apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Dibe ku hin stûnan di dema çapkirina PDFê de qut bibin. Biceribînin ku çend kolonan di bin 10 de bigirin. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,wekhev û bi +DocType: Data Import Beta,Don't Send Emails,E-nameyan neşînin DocType: Integration Request,Integration Request Service,Integration Service Daxwaza DocType: Access Log,Access Log,Têketin Têkeve DocType: Website Script,Script to attach to all web pages.,Script Zêdekirina pêvekê bi ser hemû rûpelên webê. @@ -2323,6 +2359,7 @@ DocType: Contact,Passive,Nejîr DocType: Auto Repeat,Accounts Manager,Manager bikarhênerên apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Ji bo {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,perê te betal e. +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 Rast Ji Bila Hesabê E-nameyê saz bike apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Hilbijêre File Type apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,View All DocType: Help Article,Knowledge Base Editor,Knowledge Nawy Base @@ -2354,6 +2391,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Jimare apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Rewş belge apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Pêdivîbûna pejirandinê ye +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Berî ku em dikarin pelê we bidin hev, qeydên jêrîn hatine afirandin." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Code Authorization apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,destûr ne ji bo derxe DocType: Deleted Document,Deleted DocType,DocType deleted @@ -2408,7 +2446,6 @@ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Dest Bi Daniş apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Dest Bi Danişîna bi ser neket apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ev email {0} re hat şandin û kopîkirin ji bo {1} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} sal (sal) berê DocType: Social Login Key,Provider Name,Navê Navekî apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Create a new {0} DocType: Contact,Google Contacts,Têkiliyên Google @@ -2416,6 +2453,7 @@ DocType: GCalendar Account,GCalendar Account,Account GCalendar DocType: Email Rule,Is Spam,e Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} +DocType: Data Import Beta,Import Warnings,Hişyariyên Import DocType: OAuth Client,Default Redirect URI,Default beralî bike URI DocType: Auto Repeat,Recipients,Kesên DocType: System Settings,Choose authentication method to be used by all users,Ji hêla hemî bikarhêneran ve tê bikaranîn rêbazek pejirandinê hilbijêre @@ -2547,6 +2585,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,nû biafirîne DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email to ne şand {0} (unsubscribed / seqet) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Zeviyên hilbijarkinê hilbijêrin DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Biçûk nirxa dirava Fraction apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Rapora amadekirinê @@ -2555,6 +2594,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,çalak Comments apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notes DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Teng bike user from tenê ev Adresa IP'yê. navnîşanên IP Multiple dikare veqetîne û bi hev biqetîne added. Jî qebûl adresên bi qismî wek (111.111.111) +DocType: Data Import Beta,Import Preview,Preview Import DocType: Communication,From,Ji apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,a node koma pêşîn hilbijêrî. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Find {0} li {1} @@ -2569,6 +2609,7 @@ DocType: Data Migration Mapping,Migration ID Field,Nasnameya ID ya Koçberiyê DocType: Dashboard Chart,Last Synced On,Last Synced On DocType: Comment,Comment Type,Raya Type DocType: OAuth Client,OAuth Client,OAuth Client +apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} criticized your work on {1} {2},{0} xebata xwe li ser {1} {2} rexne kir. DocType: Assignment Rule,Users,Bikarhêner li DocType: Address,Odisha,Odisha DocType: Report,Report Type,Report Type @@ -2650,6 +2691,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Navber DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,li hêvîya +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Forma Sêwiranê DocType: Braintree Settings,Use Sandbox,bikaranîna Ceriban apps/frappe/frappe/utils/goal.py,This month,Vê mehê apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Format Custom bo çapkirinê @@ -2664,6 +2706,7 @@ DocType: Session Default,Session Default,Session Default DocType: Chat Room,Last Message,Peyama Dawîn DocType: OAuth Bearer Token,Access Token,Têketinê Token DocType: About Us Settings,Org History,Dîroka org +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Nêzîkî {0} hûrdem maye DocType: Auto Repeat,Next Schedule Date,Dîroka Schedule ya din DocType: Workflow,Workflow Name,Navê Workflow DocType: DocShare,Notify by Email,Notify by Email @@ -2693,6 +2736,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Nivîskar apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Şandina apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,diket +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Warnings nîşan bide apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Buy Bikarhêner DocType: Data Migration Run,Push Failed,Pel @@ -2730,6 +2774,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Search apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Hûn nikarin ku nûçegihanê bibînin. DocType: User,Interests,berjewendiyên apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,talîmatên şîfreyeke nû ji bo email xwe şandin +DocType: Energy Point Rule,Allot Points To Assigned Users,Hemî Pûanan Bikaribin Bikarhênerên Nirxandî apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 e ji bo destûrên di asta document, \ asta bilind de ji bo destûrên di asta qadê." DocType: Contact Email,Is Primary,Destpêkî ye @@ -2751,6 +2796,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Key Publishable DocType: Stripe Settings,Publishable Key,Key Publishable apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Import Import +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Tîpa Exportê DocType: Workflow State,circle-arrow-left,circle-tîra-hiştin DocType: System Settings,Force User to Reset Password,Zencîre bikarhêner bikin ku şîfreyê Veşêrin apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis server cache dibezîn ne. Ji kerema xwe ve Administrator / piştgiriya Tech têkilî bi @@ -2765,11 +2811,13 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,Navê via Prompt set apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox Email DocType: Auto Email Report,Filters Display,Parzûn Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Di qada "amaded_from" de pêdivî ye ku guhastin were kirin. +DocType: Contact,Numbers,Hejmar apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} xebatên we yên li ser {1} {2} nirxand. apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Parzûnan hilînin DocType: Address,Plant,Karxane apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Bersiva hemiyan bide DocType: DocType,Setup,Damezirandin +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Hemî qeyd DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Navnîşana e-nameyê ya ku Têkiliyên Google-yê wê bên hevaheng kirin. DocType: Email Account,Initial Sync Count,View Syncê destpêkê DocType: Workflow State,glass,cam @@ -2794,7 +2842,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Pêşdîtina Popup nîşan bide apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ev a şîfreya hevpar top-100 e. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Ji kerema xwe ve pop-ups çalak -DocType: User,Mobile No,Mobile No +DocType: Contact,Mobile No,Mobile No DocType: Communication,Text Content,Content text DocType: Customize Form Field,Is Custom Field,E Custom Field DocType: Workflow,"If checked, all other workflows become inactive.","Eger kontrolkirin, hemû qelizandin din neçalak bibin." @@ -2840,6 +2888,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Lê z apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Name ji Format Print nû apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar DocType: Data Migration Run,Pull Insert,Bixweşîne +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Zêde xalên destûrkirî piştî xalên pirjimariyê bi nirxa pirjimar (Nîşe: Ji bo ti sînorê vê qadê vala nehêle an 0 veqetîne) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Ablonê nederbasdar apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Pirsgirêka SQL-ya neqanûnî apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Bicî: DocType: Chat Message,Mentions,Mentions @@ -2880,9 +2931,11 @@ DocType: Braintree Settings,Public Key,Key Key DocType: GSuite Settings,GSuite Settings,Settings GSuite DocType: Address,Links,Links DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Ji bo hemî e-nameyên ku bi karanîna vê hesabê têne şandin navê Navnîşana E-nameyê ya ku di vê Hesabê de tête nav kirin bikar tîne. +DocType: Energy Point Rule,Field To Check,Field To Kontrol bike apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Ji kerema xwe cureya Belgeyê hilbijêrin. apps/frappe/frappe/model/base_document.py,Value missing for,Nirx wenda bo apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,lê zêde bike Zarokan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Pêşkêşkirina Import DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",Heke şert têr dibe bikarhêner dê bi pûanan were xelat kirin. wek mînak doc.status == 'Girtî' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Record Submitted ne jêbirin. @@ -2919,6 +2972,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Destûrdayîna Salname apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Ew rûpel ku tu lê digerî bo winda ye. Ev dibe ku ji ber ku ev koçî an e şaşnivîsek di link hene. apps/frappe/frappe/www/404.html,Error Code: {0},Error Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Description ji bo lîsta rûpel, di nivîsa sade, bi tenê çend xetên. (Max 140 characters)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} zeviyên mecbûrî ne DocType: Workflow,Allow Self Approval,Destûrê Xweser bike DocType: Event,Event Category,Category Category apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3050,6 +3104,7 @@ DocType: Custom Field,Options Help,Vebijêrkên Alîkarî 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 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 @@ -3066,6 +3121,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Kodê Verfication DocType: Webhook,Webhook Request,Webhook Request apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Ser neket: {0} ji bo {1}: {2} DocType: Data Migration Mapping,Mapping Type,Tîpa Mapping +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Select Mandatory apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Browse apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Tu pêwîstî ji bo sembolên, malikên, an jî name peyiva." DocType: DocField,Currency,Diravcins @@ -3096,11 +3152,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Tête serê Serrast apps/frappe/frappe/utils/oauth.py,Token is missing,Token winda ye apps/frappe/frappe/www/update-password.html,Set Password,Passwordîfreyek danîn +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Danûstandinên {0} bi serfirazî têkildar kirin. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Nîşe: Guhertina Navê Page dê URL berê to this page bişkînin. apps/frappe/frappe/utils/file_manager.py,Removed {0},Rakirin {0} DocType: SMS Settings,SMS Settings,Settings SMS DocType: Company History,Highlight,highlight DocType: Dashboard Chart,Sum,Giş +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,bi Navgîniya Daneyê ve DocType: OAuth Provider Settings,Force,Cebir DocType: DocField,Fold,Pêçan apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,Standard Format Print ne kare bê rojanekirin @@ -3135,6 +3193,7 @@ DocType: Workflow State,Home,Xane DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Bikarhêner bikar anîn bikar anîn bikar anîn e-nameya email an an jî bikarhêner DocType: Workflow State,question-sign,pirs-sign +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} nexşe ye apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Mijarek "rêw" ye ku ji bo Web-nîqaşên pêwîst e apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Ji ber ku {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Bikarhêner ji vê qadê dê xalên xelat werin dayîn @@ -3168,6 +3227,7 @@ DocType: Website Settings,Top Bar Items,Nawy Top Bar DocType: Notification,Print Settings,Settings bo çapkirinê DocType: Page,Yes,Erê DocType: DocType,Max Attachments,Attachments Max +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,About {0} seconds mayî DocType: Calendar View,End Date Field,Dîroka Dîroka Dawîn apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Kurtikên Gloverî DocType: Desktop Icon,Page,Rûpel @@ -3279,6 +3339,7 @@ DocType: GSuite Settings,Allow GSuite access,Destûrê bide access GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Bidin apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Select All +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Column {0} apps/frappe/frappe/config/customization.py,Custom Translations,Wergerên Custom apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Pêşverûtî apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,destê Role @@ -3320,6 +3381,7 @@ DocType: Stripe Settings,Stripe Settings,Settings Stripe DocType: Stripe Settings,Stripe Settings,Settings Stripe DocType: Data Migration Mapping,Data Migration Mapping,Migration Mapping DocType: Auto Email Report,Period,Nixte +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Nêzîkî {0} deqîqe mayî apps/frappe/frappe/www/login.py,Invalid Login Token,Invalid Login Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Bikişînin apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 کاتژمێر لەمەوبەر @@ -3344,6 +3406,7 @@ DocType: Calendar View,Start Date Field,Dest Dîroka Destpêk DocType: Role,Role Name,Navê rola apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Switch To Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script an Query radigîhîne +DocType: Contact Phone,Is Primary Mobile,Destpêka Mîhrîcanê ye DocType: Workflow Document State,Workflow Document State,Workflow dokumênt Dewletê apps/frappe/frappe/public/js/frappe/request.js,File too big,File pir mezin apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Account Email added çend caran @@ -3439,6 +3502,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Lê zêde bik DocType: Comment,Published,Published apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Spas dikim ji bo email te DocType: DocField,Small Text,Nivîsar di small +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Hejmara {0} ji bo Telefon û her weha Nêzîkî Nimûne nikare wekî bingehîn were destnîşankirin. DocType: Workflow,Allow approval for creator of the document,Destûrê ji bo creatorê belgeyê erê bide pejirandin apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Raportê hilînin DocType: Webhook,on_cancel,on_cancel @@ -3495,6 +3559,7 @@ DocType: Print Settings,PDF Settings,Settings PDF DocType: Kanban Board Column,Column Name,Navê stûna DocType: Language,Based On,Çi qewimî DocType: Email Account,"For more information, click here.","Ji bo bêtir agahdarî, li vir bikirtînin ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Hejmara kolonan bi daneyê re nabe apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Make Default apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Dem dema darvekirinê: {0} sec apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Riya derewîn heye @@ -3582,7 +3647,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You,Th apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have atleast one recipient,Divê Nûçegihan li yek wergêr hebe DocType: Deleted Document,GCalendar Sync ID,Nasnameya GCalendar Sync DocType: Prepared Report,Report Start Time,Rapora Destpêk Destpêk -apps/frappe/frappe/config/settings.py,Export Data,Daneyên Danûstandinê +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Daneyên Danûstandinê 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. @@ -3599,7 +3664,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},Creating {0} DocType: Report,Disable Prepared Report,Rapora amadekirî asteng bike apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Neqanûnî Têketinê Token. Ji kerema xwe re dîsa biceribîne apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Sepanê ji bo guhertoya nû ghurrînikarî bi serda, ji kerema xwe ve vê rûpelê nû" -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.,Temablonê navnîşa xwerû nayê dîtin Ji kerema xwe ji Setup> çapkirin û Berfirehbûnê> Temablonê Navnîşan a nû çêbikin. DocType: Notification,Optional: The alert will be sent if this expression is true,"Bijarî: The hişyar dê were şandin, eger ev îfade rast e" DocType: Data Migration Plan,Plan Name,Plan Navê DocType: Print Settings,Print with letterhead,Print bi letterhead @@ -3639,6 +3703,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Can not set Qanûnên bê Cancel apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Page Full DocType: DocType,Is Child Table,E Table Zarokan +DocType: Data Import Beta,Template Options,Vebijarkên şablonê apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} de divê yek ji yên bê {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} niha viewing ev belge apps/frappe/frappe/config/core.py,Background Email Queue,Background Dorê Email @@ -3646,7 +3711,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Şîfreyê nû bike DocType: Communication,Opened,"vekirin," DocType: Workflow State,chevron-left,chevron-hiştin DocType: Communication,Sending,şandina -apps/frappe/frappe/auth.py,Not allowed from this IP Address,ji vê IP Address destûr ne DocType: Website Slideshow,This goes above the slideshow.,Ev diçe li ser slideshow. DocType: Contact,Last Name,Paşnav DocType: Event,Private,Taybet @@ -3660,7 +3724,6 @@ DocType: Workflow Action,Workflow Action,Action Workflow apps/frappe/frappe/utils/bot.py,I found these: ,Min ev dît: DocType: Event,Send an email reminder in the morning,Send an bîrxistineke email di sibê DocType: Blog Post,Published On,Published ser -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> Hesabê Email-ê hesabek e-nameyek nû biafirînin DocType: Contact,Gender,Regez apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Information wêneke missing: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Request Request URL @@ -3680,7 +3743,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,warning-sign DocType: Prepared Report,Prepared Report,Raporta amade kirin apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Tagên meta li ser rûpelên malperên xwe zêde bikin -DocType: Contact,Phone Nos,Telefonên Nûs 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 @@ -3705,7 +3767,7 @@ DocType: Custom Field,Insert After,Insert Piştî DocType: Event,Sync with Google Calendar,Bi Salnameya Google re hevrêz bibin DocType: Access Log,Report Name,Report Name DocType: Desktop Icon,Reverse Icon Color,Reverse Icon Color -DocType: Notification,Save,Rizgarkirin +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Rizgarkirin apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Dîroka Dîroka Duyemîn apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Li kesê / a ku kêmtirîn wezîfan bide hev apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Beþ Hawara @@ -3728,11 +3790,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Forma Sêwiranê 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 çû DocType: Desktop Icon,Category,Liq +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Nirx {0} ji bo {1} winda ye apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Têkilî zêde bike apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Dorhalî apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,niçikan bi script aliyê Client li Javascript @@ -3756,6 +3818,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Rojanebûna enerjiyê apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Tikaye din rêbaza dayina hilbijêre. PayPal nade muamele li currency piştgiriya ne '{0}' DocType: Chat Message,Room Type,Tenduristiyê +DocType: Data Import Beta,Import Log Preview,Pêşniyara têketinê ya Log apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,warê Search {0} ne derbasdar e apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,pelê hilandin DocType: Workflow State,ok-circle,ok-circle diff --git a/frappe/translations/lo.csv b/frappe/translations/lo.csv index 5f88366d46..3c5e856a1a 100644 --- a/frappe/translations/lo.csv +++ b/frappe/translations/lo.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,ການປ່ອຍໃຫມ່ {} ສໍາລັບແອັບຯຕໍ່ໄປນີ້ມີຢູ່ apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,ກະລຸນາເລືອກພາກສະຫນາມຈໍານວນ. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,ກຳ ລັງໂຫລດໄຟລ໌ ນຳ ເຂົ້າ ... DocType: Assignment Rule,Last User,ຜູ້ໃຊ້ສຸດທ້າຍ apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","A ວຽກງານໃຫມ່, {0}, ໄດ້ຮັບການມອບຫມາຍໃຫ້ທ່ານໂດຍ {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,ຄ່າເລີ່ມຕົ້ນຂອງເຊດຊັນ +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ໂຫລດໄຟລ໌ຄືນ DocType: Email Queue,Email Queue records.,ແຖວ Email ການບັນທຶກການ. DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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,ພາລາມິເຕີ @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,ປະຈໍາເດືອນ DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,ເຮັດໃຫ້ສາມາດເຂົ້າມາ apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ອັນຕະລາຍ -apps/frappe/frappe/www/login.py,Email Address,ທີ່ຢູ່ອີເມວ +DocType: Address,Email Address,ທີ່ຢູ່ອີເມວ DocType: Workflow State,th-large,th-ຂະຫນາດໃຫຍ່ DocType: Communication,Unread Notification Sent,ແຈ້ງຍັງບໍ່ໄດ້ສົ່ງ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ການສົ່ງອອກບໍ່ໄດ້ອະນຸຍາດໃຫ້. ທ່ານຈໍາເປັນຕ້ອງ {0} ບົດບາດໃນການສົ່ງອອກ. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ທາງເລືອກໃນການຕິດຕໍ່, ເຊັ່ນ: "ຂາຍແບບສອບຖາມ, ສະຫນັບສະຫນູນການສອບຖາມ" ແລະອື່ນໆແຕ່ລະຄົນກ່ຽວກັບການອອນໄລນ໌ໃຫມ່ຫຼືຂັ້ນດ້ວຍຈໍ້າຈຸດ." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,ເພີ່ມແທັກ ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ຮູບຄົນ -DocType: Data Migration Run,Insert,Insert +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insert apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,ອະນຸຍາດໃຫ້ເຂົ້າເຖິງ Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},ເລືອກ {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,ກະລຸນາໃສ່ URL ຖານ @@ -119,17 +122,17 @@ 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,ຕັ້ງຄ່າຫົວຂໍ້ DocType: Company History,Company History,ປະຫວັດສາດຂອງບໍລິສັດ -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,ປັບ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,ປັບ DocType: Workflow State,volume-up,ປະລິມານຂຶ້ນ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks ເອີ້ນຮ້ອງຂໍ API ໃນຫນ້າເວັບຕ່າງໆ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ສະແດງ Traceback DocType: DocType,Default Print Format,ຮູບແບບພິມມາດຕະຖານ DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ບໍ່ມີ: ໃນຕອນທ້າຍຂອງ Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} ພາກສະຫນາມບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ເປັນເອກະລັກໃນ {1}, ເນື່ອງຈາກວ່າມີຄຸນຄ່າທີ່ມີຢູ່ແລ້ວບໍ່ແມ່ນເປັນເອກະລັກ" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ປະເພດເອກະສານ +DocType: Global Search Settings,Document Types,ປະເພດເອກະສານ DocType: Address,Jammu and Kashmir,ຊໍາມູແລະກັດ DocType: Workflow,Workflow State Field,Workflow Field State -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ຕັ້ງຄ່າ> ຜູ້ໃຊ້ DocType: Language,Guest,ບຸກຄົນທົ່ວໄປ DocType: DocType,Title Field,ຫົວຂໍ້ພາກສະຫນາມ DocType: Error Log,Error Log,Error ເຂົ້າສູ່ລະບົບ @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",ຊ້ໍາເຊັ່ນ: "abcabcabc" ແມ່ນມີພຽງແຕ່ເລັກນ້ອຍ harder ກັບຮີດກ່ວາ "abc" DocType: Notification,Channel,Channel apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","ຖ້າຫາກວ່າທ່ານຄິດວ່ານີ້ແມ່ນຮັບອະນຸຍາດ, ກະລຸນາມີການປ່ຽນແປງລະຫັດຜ່ານບໍລິຫານ." +DocType: Data Import Beta,Data Import Beta,ຂໍ້ມູນການ ນຳ ເຂົ້າ Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} ເປັນການບັງຄັບ DocType: Assignment Rule,Assignment Rules,ກົດລະບຽບການມອບ ໝາຍ DocType: Workflow State,eject,ນໍາ @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,ຊື່ Workflow ປະ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ບໍ່ສາມາດລວມ DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ບໍ່ໄດ້ເປັນເອກະສານໄປສະນີ +DocType: Global Search DocType,Global Search DocType,ເອກະສານຄົ້ນຫາທົ່ວໂລກ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                            New {{ doc.doctype }} #{{ doc.name }}
                                                            ","ການເພີ່ມຫົວຂໍ້ແບບເຄື່ອນໄຫວ, ໃຫ້ໃຊ້ jinja tags ຄື
                                                             New {{ doc.doctype }} #{{ doc.name }} 
                                                            " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,ທ່ານ DocType: Braintree Settings,Braintree Settings,Braintree Settings +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,ສ້າງບັນທຶກ {0} ສຳ ເລັດແລ້ວ. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ບັນທຶກກັ່ນຕອງ DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},ບໍ່ສາມາດລຶບ {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,ກະລຸນາໃສ apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Auto Repeat ສ້າງຂື້ນ ສຳ ລັບເອກະສານນີ້ apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,ເບິ່ງບົດລາຍງານໃນຕົວທ່ອງເວັບຂອງທ່ານ apps/frappe/frappe/config/desk.py,Event and other calendars.,ກໍລະນີແລະປະຕິທິນອື່ນ. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (ຈຳ ເປັນ 1 ແຖວ) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,ຂົງເຂດທັງຫມົດແມ່ນມີຄວາມຈໍາເປັນທີ່ຈະສົ່ງຄໍາຄິດເຫັນໄດ້. DocType: Custom Script,Adds a client custom script to a DocType,ເພີ່ມສະຄິບທີ່ ກຳ ນົດເອງໃຫ້ກັບລູກຄ້າໄປທີ່ DocType DocType: Print Settings,Printer Name,ຊື່ເຄື່ອງພິມ @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,ປັບປຸງຫຼາຍ DocType: Workflow State,chevron-up,ວົງຢືມຊ້ອນຂຶ້ນ DocType: DocType,Allow Guest to View,ອະນຸຍາດໃຫ້ບຸກຄົນທົ່ວໄປທີ່ຈະເບິ່ງ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ບໍ່ຄວນຄືກັນກັບ {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,ລຶບ {0} ລາຍການຢ່າງຖາວອນ? apps/frappe/frappe/utils/oauth.py,Not Allowed,ບໍ່ອະນຸຍາດ @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,ການສະແດງ DocType: Email Group,Total Subscribers,ສະຫມາຊິກທັງຫມົດ apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},ທາງເທີງ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,ເລກແຖວ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ຖ້າຫາກວ່າພາລະບົດບາດບໍ່ມີການເຂົ້າໃນລະດັບ 0, ລະດັບຫຼັງຈາກນັ້ນສູງກວ່າມີຄວາມຫມາຍ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,ເຫັນ @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,ຍົກຕົວຢ່າງ: DocType: Workflow,Defines workflow states and rules for a document.,ໄດ້ກໍານົດປະເທດ workflow ແລະລະບຽບການສໍາລັບເອກະສານ. DocType: Workflow State,Filter,ການກັ່ນຕອງ @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,ປິດ DocType: Blog Settings,Blog Title,Blog Title apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,ພາລະບົດບາດມາດຕະຖານບໍ່ສາມາດໄດ້ຮັບການພິ apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Chat Type +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,ຖັນແຜນທີ່ DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,ຈົດຫມາຍຂ່າວ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ບໍ່ສາມາດໃຊ້ຍ່ອຍສອບຖາມໃນຄໍາສັ່ງໂດຍ @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,ເພີ່ມຄໍລໍາ apps/frappe/frappe/www/contact.html,Your email address,ທີ່ຢູ່ອີເມວຂອງເຈົ້າ DocType: Desktop Icon,Module,ໂມດູນ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,ອັບເດດບັນທຶກ {0} ອອກຈາກ {1}. DocType: Notification,Send Alert On,ສົ່ງ Alert ກ່ຽວກັບ DocType: Customize Form,"Customize Label, Print Hide, Default etc.","ປັບ Label, Print ເຊື່ອງ, ມາດຕະຖານແລະອື່ນໆ" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ກຳ ລັງຖອນໄຟລ໌ ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ຜູ DocType: System Settings,Currency Precision,Precision ສະກຸນເງິນ DocType: System Settings,Currency Precision,Precision ສະກຸນເງິນ apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,ເຮັດທຸລະກໍາອີກປະການຫນຶ່ງແມ່ນການສະກັດນີ້. ກະລຸນາພະຍາຍາມອີກເທື່ອຫນຶ່ງໃນບໍ່ພໍເທົ່າໃດວິນາທີ. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,ລ້າງຕົວກອງ DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,ເອກະສານແນບບໍ່ສາມາດຖືກເຊື່ອມໂຍງຢ່າງຖືກຕ້ອງກັບເອກະສານໃຫມ່ DocType: Chat Message Attachment,Attachment,Attachment @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,ບໍ່ສ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar - ບໍ່ສາມາດອັບເດດເຫດການ {0} ໃນ Google Calendar, ລະຫັດຜິດພາດ {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ຄົ້ນຫາຫລືພິມຄໍາສັ່ງ DocType: Activity Log,Timeline Name,ຊື່ກໍານົດເວລາ +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,ມີພຽງແຕ່ {0} ເທົ່ານັ້ນທີ່ສາມາດຕັ້ງຄ່າເປັນຫລັກ. DocType: Email Account,e.g. smtp.gmail.com,ຕົວຢ່າງ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,ເພີ່ມກົດລະບຽບໃຫມ່ DocType: Contact,Sales Master Manager,Manager Sales ລິນຍາໂທ @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,ທົ່ງນາຊື່ກາງ LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},ການ ນຳ ເຂົ້າ {0} ຂອງ {1} DocType: GCalendar Account,Allow GCalendar Access,ອະນຸຍາດໃຫ້ເຂົ້າ GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} ເປັນຂົງເຂດບັງຄັບ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ເປັນຂົງເຂດບັງຄັບ apps/frappe/frappe/templates/includes/login/login.js,Login token required,ເຂົ້າສູ່ລະບົບ token ຕ້ອງ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ອັນດັບປະ ຈຳ ເດືອນ: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ເລືອກລາຍການຫລາຍລາຍການ @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},ບໍ່ສາມາດ apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,A ຄໍາໂດຍຕົວຂອງມັນເອງແມ່ນງ່າຍທີ່ຈະເດົາ. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},ການມອບ ໝາຍ ອັດຕະໂນມັດລົ້ມເຫລວ: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,ຄົ້ນຫາ ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,ກະລຸນາເລືອກບໍລິສັດ apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,ການລວມເປັນໄປໄດ້ພຽງແຕ່ລະຫວ່າງກຸ່ມກັບກຸ່ມຫຼືໃບ Node ກັບໃບ Node apps/frappe/frappe/utils/file_manager.py,Added {0},ເພີ່ມ {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,No ໂຍບາຍຄວາມລັບບັນທຶກ. ຄົ້ນຫາບາງສິ່ງບາງຢ່າງໃຫມ່ @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,ID ຂອງລູກຄ້າ OAuth DocType: Auto Repeat,Subject,Subject apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ກັບໄປທີ່ໂຕ໊ະ DocType: Web Form,Amount Based On Field,ຈໍານວນທີ່ກ່ຽວກັບພາກສະຫນາມ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາຕັ້ງຄ່າບັນຊີອີເມວເລີ່ມຕົ້ນຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,ຜູ້ໃຊ້ເປັນການບັງຄັບສໍາລັບການແບ່ງປັນ DocType: DocField,Hidden,ເຊື່ອງໄວ້ DocType: Web Form,Allow Incomplete Forms,ອະນຸຍາດໃຫ້ຮູບແບບບໍ່ສົມບູນ @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ແລະ {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,ເລີ່ມຕົ້ນການສົນທະນາ. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ສະເຫມີເພີ່ມ "ຮ່າງ" ຫົວຂໍ້ສໍາລັບເອກະສານຮ່າງການພິມ apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},ຂໍ້ຜິດພາດໃນການແຈ້ງ: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ປີທີ່ຜ່ານມາ DocType: Data Migration Run,Current Mapping Start,Current Mapping Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email ໄດ້ຖືກຫມາຍວ່າເປັນສະແປມ DocType: Comment,Website Manager,ຜູ້ຈັດການເວັບໄຊທ໌ @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,ການນໍາໃຊ້ຄໍາຖາມຍ່ອຍຫຼືຫນ້າທີ່ຖືກຈໍາກັດ apps/frappe/frappe/config/customization.py,Add your own translations,ເພີ່ມການແປພາສາຂອງຕົນເອງ DocType: Country,Country Name,ປະເທດຊື່ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,ແມ່ແບບເປົ່າຫວ່າງ DocType: About Us Team Member,About Us Team Member,ກ່ຽວກັບພວກເຮົາທີມງານ Member apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","ການອະນຸຍາດໄດ້ຖືກກໍານົດກ່ຽວກັບບົດບາດແລະປະເພດເອກະສານ (ເອີ້ນວ່າ DOCTYPE) ໂດຍຕັ້ງຄ່າສິດຄືອ່ານ, ຂຽນ, ການສ້າງ, ລົບ, ຍື່ນສະເຫນີການ, ຍົກເລີກການ, ແກ້ໄຂ, ບົດລາຍງານ, ນໍາເຂົ້າ, ສົ່ງອອກ, Print, Email ແລະກໍານົດຜູ້ໃຊ້ການອະນຸຍາດ." DocType: Event,Wednesday,ວັນພຸດ @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,ເວັບໄຊທ໌ Link DocType: Web Form,Sidebar Items,ລາຍການ sidebar DocType: Web Form,Show as Grid,ສະແດງໃຫ້ເຫັນເປັນຕາຂ່າຍໄຟຟ້າ apps/frappe/frappe/installer.py,App {0} already installed,App {0} ຕິດຕັ້ງແລ້ວ +DocType: Energy Point Rule,Users assigned to the reference document will get points.,ຜູ້ໃຊ້ທີ່ຖືກມອບຫມາຍໃຫ້ກັບເອກະສານອ້າງອີງຈະໄດ້ຮັບຈຸດ. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,No Preview DocType: Workflow State,exclamation-sign,exclamation ເຊັນ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,ຍົກເລີກໄຟລ໌ {0} @@ -605,6 +620,7 @@ DocType: Notification,Days Before,ວັນກ່ອນ apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ເຫດການປະ ຈຳ ວັນຄວນ ສຳ ເລັດໃນວັນດຽວກັນ. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ແກ້ໄຂ ... DocType: Workflow State,volume-down,ປະລິມານລົງ +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ການເຂົ້າເຖິງບໍ່ໄດ້ຮັບອະນຸຍາດຈາກທີ່ຢູ່ IP ນີ້ apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,ສົ່ງແຈ້ງການ DocType: DocField,Collapsible,Collapsible @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,ການພັດທະນາ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,ສ້າງ 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,ພາສາການພິມແບບເລີ່ມຕົ້ນ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancestors Of apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ຮາກ {0} ບໍ່ສາມາດໄດ້ຮັບການລຶບ @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",ເປົ້າຫມາຍ = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,ການເປັນເຈົ້າພາບ +DocType: Data Import Beta,Import File,ເອກະສານ ນຳ ເຂົ້າ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,ຄໍລໍາ {0} ມີຢູ່ແລ້ວ. DocType: ToDo,High,ສູງ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,ເຫດການໃຫມ່ @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,ສົ່ງແຈ້ງກ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,ບໍ່ໄດ້ຢູ່ໃນຮູບແບບການພັດທະນາ apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,າຮອງໄຟລ໌ພ້ອມ -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",ຈຸດສູງສຸດທີ່ອະນຸຍາດໃຫ້ຫຼັງຈາກຄູນຈຸດທີ່ມີຄ່າຕົວຄູນ (ໝາຍ ເຫດ: ສຳ ລັບຂໍ້ມູນທີ່ບໍ່ມີ ກຳ ນົດເປັນ 0) DocType: DocField,In Global Search,ໃນການຊອກຫາ Global DocType: System Settings,Brute Force Security,Brute Force Force ຄວາມປອດໄພ DocType: Workflow State,indent-left,indent ຊ້າຍ @@ -775,6 +791,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',ຜູ້ໃຊ້ {0} 'ແລ້ວມີພາລະບົດບາດ' {1} ' DocType: System Settings,Two Factor Authentication method,ວິທີການສອງກວດສອບປັດໄຈ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ທໍາອິດກໍານົດຊື່ແລະບັນທຶກຂໍ້ມູນ. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ບັນທຶກ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ແບ່ງປັນກັບ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ຍົກເລີກ DocType: View Log,Reference Name,ຊື່ກະສານອ້າງອີງ @@ -825,6 +842,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,ຕິດຕາມສະຖານະອີເມວ DocType: Note,Notify Users On Every Login,ແຈ້ງຜູ້ໃຊ້ໃນທຸກລະບົບ DocType: Note,Notify Users On Every Login,ແຈ້ງຜູ້ໃຊ້ໃນທຸກລະບົບ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,ບໍ່ສາມາດກົງກັບຖັນ {0} ກັບຊ່ອງຂໍ້ມູນໃດໆ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,ບັນທຶກການບັນທຶກ {0} ສຳ ເລັດແລ້ວ. DocType: PayPal Settings,API Password,API ລະຫັດຜ່ານ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,ກະລຸນາໃສ່ໂມດູນ python ຫຼືເລືອກປະເພດການເຊື່ອມຕໍ່ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,fieldname ບໍ່ກໍານົດສໍາລັບພາກສະຫນາມ Custom @@ -853,9 +872,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,ມູນຄ່າການປ່ຽນແປງ apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},ຊ້ໍາຊື່ {0} {1} -DocType: Email Queue,Retry,ລອງອີກເທື່ອຫນຶ່ງ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,ລອງອີກເທື່ອຫນຶ່ງ +DocType: Contact Phone,Number,ຈໍານວນ DocType: Web Form Field,Web Form Field,ມືພາກສະຫນາມໃນແບບຟອມ Web apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,ທ່ານມີຂໍ້ຄວາມໃຫມ່ຈາກ: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,ດັດແກ້ HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,ກະລຸນາໃສ່ Redirect URL apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -881,7 +902,7 @@ DocType: Notification,View Properties (via Customize Form),ເບິ່ງຄຸ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ກົດທີ່ເອກະສານເພື່ອເລືອກມັນ. DocType: Note Seen By,Note Seen By,ຫມາຍເຫດເຫັນ apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,ພະຍາຍາມທີ່ຈະນໍາໃຊ້ຮູບແບບແປ້ນພິມຕໍ່ໄປອີກແລ້ວກັບເຮັດໃຫ້ຫຼາຍຂຶ້ນ -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,ກະດານ +,LeaderBoard,ກະດານ DocType: DocType,Default Sort Order,ການຈັດຮຽງແບບເລີ່ມຕົ້ນ DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Reply Help @@ -916,6 +937,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ຂຽນ Email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","ລັດອາເມລິກາສໍາລັບການສະແດງວຽກ (ຕົວຢ່າງ: ຮ່າງ, ອະນຸມັດ, ຖືກຍົກເລີກ)." DocType: Print Settings,Allow Print for Draft,ອະນຸຍາດໃຫ້ພິມສໍາລັບການຮ່າງ +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/link_selector.js,Set Quantity,ກໍານົດຈໍານວນ apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ສົ່ງເອກະສານເພື່ອຍືນຍັນ DocType: Contact,Unsubscribed,ຍົກເລີກ @@ -947,6 +969,7 @@ DocType: LDAP Settings,Organizational Unit for Users,ໜ່ວຍ ງານຈ ,Transaction Log Report,ລາຍງານການລາຍງານການເຮັດທຸລະກໍາ DocType: Custom DocPerm,Custom DocPerm,DocPerm Custom DocType: Newsletter,Send Unsubscribe Link,ສົ່ງຍົກເລີກການເຊື່ອມຕໍ່ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,ມີບາງບັນທຶກທີ່ເຊື່ອມໂຍງເຊິ່ງຕ້ອງໄດ້ສ້າງຂື້ນກ່ອນທີ່ພວກເຮົາຈະ ນຳ ເຂົ້າເອກະສານຂອງທ່ານ. ທ່ານຕ້ອງການສ້າງບັນທຶກທີ່ຂາດຫາຍໄປຕໍ່ໄປນີ້ໂດຍອັດຕະໂນມັດບໍ? DocType: Access Log,Method,ວິທີການ DocType: Report,Script Report,Report script DocType: OAuth Authorization Code,Scopes,ຂອບເຂດ @@ -988,6 +1011,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,ອັບໂຫລດແລ້ວ apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,ທ່ານໄດ້ເຊື່ອມຕໍ່ກັບອິນເຕີເນັດ. DocType: Social Login Key,Enable Social Login,ເປີດການເຂົ້າສູ່ລະບົບສັງຄົມ +DocType: Data Import Beta,Warnings,ຄຳ ເຕືອນ DocType: Communication,Event,ກໍລະນີ apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","ກ່ຽວກັບ {0}, {1} wrote:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,ບໍ່ສາມາດລົບພາກສະຫນາມມາດຕະຖານ. ທ່ານສາມາດຊ່ອນມັນຖ້າຫາກວ່າທ່ານຕ້ອງການ @@ -1043,6 +1067,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,ສະແ DocType: Kanban Board Column,Blue,blue apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,ລູກຄ້າທັງຫມົດຈະໄດ້ຮັບການໂຍກຍ້າຍອອກ. ກະລຸນາຢືນຢັນ. DocType: Page,Page HTML,ຫນ້າ HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,ສົ່ງອອກແຖວ Errored apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ຊື່ກຸ່ມບໍ່ສາມາດຫວ່າງໄດ້. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,ຂໍ້ເພີ່ມເຕີມສາມາດໄດ້ຮັບການສ້າງຕັ້ງພຽງແຕ່ພາຍໃຕ້ 'ຂອງກຸ່ມຂໍ້ປະເພດ DocType: SMS Parameter,Header,Header @@ -1082,13 +1107,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,ຮ້ອງຂໍໃຫ້ໃຊ້ເວລາອອກ apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Enable / Disable Domains DocType: Role Permission for Page and Report,Allow Roles,ອະນຸຍາດໃຫ້ພາລະບົດບາດ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,ສຳ ເລັດການ ນຳ ເຂົ້າບັນຊີ {0} ອອກຈາກ {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","ການສະແດງອອກ Python ແບບງ່າຍໆ, ຕົວຢ່າງ: ສະຖານະພາບໃນ ("ບໍ່ຖືກຕ້ອງ")" DocType: User,Last Active,ໃຊ້ວຽກຫຼ້າສຸດ DocType: Email Account,SMTP Settings for outgoing emails,ການຕັ້ງຄ່າ SMTP ສໍາລັບລາຍຈ່າຍອີ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ເລືອກເອົາ DocType: Data Export,Filter List,Filter list DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,ລະຫັດຜ່ານຂອງທ່ານໄດ້ຮັບການປັບປຸງ. ຕໍ່ໄປນີ້ແມ່ນລະຫັດລັບໃຫມ່ຂອງທ່ານ DocType: Email Account,Auto Reply Message,ອັດຕະໂນມັດ Reply ຂໍ້ຄວາມ DocType: Data Migration Mapping,Condition,ສະພາບ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ຊົ່ວໂມງກ່ອນຫນ້ານີ້ @@ -1097,7 +1122,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,User ID DocType: Communication,Sent,ສົ່ງ DocType: Address,Kerala,Kerala -DocType: File,Lft,ຊ້າຍ apps/frappe/frappe/public/js/frappe/desk.js,Administration,ການບໍລິຫານ DocType: User,Simultaneous Sessions,ກອງປະຊຸມພ້ອມກັນ DocType: Social Login Key,Client Credentials,ຫນັງສືຮັບຮອງລູກຄ້າ @@ -1129,7 +1153,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},ກາ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ໂທ DocType: DocType,User Cannot Create,ຜູ້ໃຊ້ບໍ່ສາມາດສ້າງ apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,ສຳ ເລັດແລ້ວ -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,ໂຟນເດີ {0} ບໍ່ມີ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ການເຂົ້າເຖິງ Dropbox ອະນຸມັດ! DocType: Customize Form,Enter Form Type,ກະລຸນາໃສ່ປະເພດແບບຟອມການ DocType: Google Drive,Authorize Google Drive Access,ອະນຸຍາດການເຂົ້າເຖິງ Google Drive @@ -1137,7 +1160,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,ບໍ່ມີການບັນທຶກການ tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ເອົາພາກສະຫນາມ apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,ທ່ານບໍ່ໄດ້ເຊື່ອມຕໍ່ອິນເຕີເນັດ. ລອງອີກເທື່ອຫນຶ່ງ. -DocType: User,Send Password Update Notification,ສົ່ງລະຫັດຜ່ານປັບປຸງແຈ້ງ apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","ໃຫ້ DocType, DocType. ລະມັດລະວັງ!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ຮູບແບບການລູກຄ້າສໍາລັບການພິມ, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},ຜົນລວມຂອງ {0} @@ -1223,6 +1245,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,ລະຫັດຢ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Contacts Integration ຖືກປິດໃຊ້ງານ. DocType: Assignment Rule,Description,ລາຍລະອຽດ DocType: Print Settings,Repeat Header and Footer in PDF,ເຮັດເລື້ມຄືນສ່ວນຫົວແລະທ້າຍໃນ PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,ຄວາມລົ້ມເຫຼວ DocType: Address Template,Is Default,ແມ່ນມາດຕະຖານ DocType: Data Migration Connector,Connector Type,Type Connector apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,ຊື່: ບໍ່ສາມາດຈະເປົ່າ @@ -1235,6 +1258,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,ໄປທີ່ {0} 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,ຄໍລໍາໂດຍອີງໃສ່ +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/model/document.py,Action Failed,ປະຕິບັດງານສົບຜົນສໍາເລັດ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,ສໍາລັບຜູ້ໃຊ້ @@ -1288,6 +1312,7 @@ DocType: Print Settings,Enable Raw Printing,ເປີດໃຊ້ງານກາ DocType: Website Route Redirect,Source,ແຫຼ່ງຂໍ້ມູນ apps/frappe/frappe/templates/includes/list/filters.html,clear,ຈະແຈ້ງ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,ສຳ ເລັດຮູບ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ຕັ້ງຄ່າ> ຜູ້ໃຊ້ DocType: Prepared Report,Filter Values,Value Values DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,ລົ້ມເຫລວ @@ -1344,6 +1369,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,ປ ,Activity,ກິດຈະກໍາ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","ການຊ່ວຍເຫຼືອ: ການເຊື່ອມຕໍ່ກັບບັນທຶກຄົນອື່ນຢູ່ໃນລະບົບ, ການນໍາໃຊ້ "ແບບຟອມ # / Note / [ຫມາຍເຫດຊື່]" ເປັນ URL Link ໄດ້. (ບໍ່ໄດ້ນໍາໃຊ້ "http: //")" DocType: User Permission,Allow,ອະນຸຍາດໃຫ້ +DocType: Data Import Beta,Update Existing Records,ປັບປຸງບັນທຶກທີ່ມີຢູ່ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,ໃຫ້ຫຼີກເວັ້ນການຄໍາຊ້ໍາແລະລັກສະນະ DocType: Energy Point Rule,Energy Point Rule,ກົດລະບຽບຈຸດພະລັງງານ DocType: Communication,Delayed,ຊັກຊ້າ @@ -1356,9 +1382,7 @@ DocType: Milestone,Track Field,ຕິດຕາມສະ ໜາມ DocType: Notification,Set Property After Alert,ຕັ້ງຄ່າ Property ຫຼັງຈາກ Alert ການຂົນ apps/frappe/frappe/config/customization.py,Add fields to forms.,ຕື່ມການຂົງເຂດທີ່ຮູບແບບ. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ເບິ່ງຄືວ່າບາງສິ່ງບາງຢ່າງຜິດພາດກັບການຕັ້ງຄ່າ Paypal ຂອງເວັບໄຊນີ້. -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/sidebar/review.js,Add Review,ຕື່ມການທົບທວນຄືນ -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ຂະ ໜາດ ຕົວອັກສອນ (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,ພຽງແຕ່ DocTypes ມາດຕະຖານເທົ່ານັ້ນທີ່ຖືກອະນຸຍາດໃຫ້ຖືກປັບແຕ່ງຈາກແບບຟອມປັບແຕ່ງ. DocType: Email Account,Sendgrid,Sendgrid @@ -1395,6 +1419,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ກ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ຂໍໂທດ! ທ່ານບໍ່ສາມາດລົບຄວາມຄິດເຫັນອັດຕະໂນມັດສ້າງ DocType: Google Settings,Used For Google Maps Integration.,ໃຊ້ ສຳ ລັບການລວມ Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DocType ກະສານອ້າງອີງ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,ບໍ່ມີບັນທຶກໃດໆຈະຖືກສົ່ງອອກ DocType: User,System User,ຜູ້ໃຊ້ລະບົບ DocType: Report,Is Standard,ແມ່ນມາດຕະຖານ DocType: Desktop Icon,_report,_report @@ -1410,6 +1435,7 @@ DocType: Workflow State,minus-sign,"ເຄື່ອງຫມາຍລົບ, ອ apps/frappe/frappe/public/js/frappe/request.js,Not Found,ບໍ່ພົບ apps/frappe/frappe/www/printview.py,No {0} permission,ບໍ່ມີ {0} ການອະນຸຍາດ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ສົ່ງອອກການອະນຸຍາດ Custom +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ບໍ່ພົບລາຍການ. DocType: Data Export,Fields Multicheck,Fields Multicheck DocType: Activity Log,Login,ເຂົ້າສູ່ລະບົບ DocType: Web Form,Payments,ການຊໍາລະເງິນ @@ -1470,8 +1496,9 @@ DocType: Address,Postal,ໄປສະນີ DocType: Email Account,Default Incoming,ມາດຕະຖານເຂົ້າມາ DocType: Workflow State,repeat,ຊ້ໍາ DocType: Website Settings,Banner,ປ້າຍໂຄສະນາ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},ຄຸນຄ່າຕ້ອງແມ່ນ ໜຶ່ງ ໃນ {0} DocType: Role,"If disabled, this role will be removed from all users.","ຖ້າຫາກວ່າເປັນຄົນພິການ, ພາລະບົດບາດນີ້ຈະໄດ້ຮັບການໂຍກຍ້າຍອອກຈາກຜູ້ໃຊ້ທັງຫມົດ." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,ໄປທີ່ {0} ລາຍຊື່ +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,ຊ່ວຍເຫຼືອໃນການຄົ້ນຫາ DocType: Milestone,Milestone Tracker,ຕິດຕາມ Milestone apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ທະບຽນແລ້ວແຕ່ຄົນພິການ @@ -1485,6 +1512,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Localnamename DocType: DocType,Track Changes,ການປ່ຽນແປງການຕິດຕາມ DocType: Workflow State,Check,ການກວດສອບ DocType: Chat Profile,Offline,ອອຟໄລ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},ການ ນຳ ເຂົ້າຢ່າງ ສຳ ເລັດແລ້ວ {0} DocType: User,API Key,Key API DocType: Email Account,Send unsubscribe message in email,ສົ່ງຂໍ້ຄວາມຍົກເລີກໃນອີເມລ໌ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,ດັດແກ້ຫົວຂໍ້ @@ -1511,11 +1539,11 @@ 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/form/footer/timeline.js,changed value of {0} {1},ມູນຄ່າການປ່ຽນແປງຂອງ {0} {1} 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,ຫນ້າທັງຫມົດ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} ໄດ້ ກຳ ນົດຄ່າເລີ່ມຕົ້ນ ສຳ ລັບ {1} ແລ້ວ. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                            No results found for '

                                                            ,

                                                            ບໍ່ພົບຜົນລັບ ສຳ ລັບ '

                                                            DocType: DocField,Attach Image,ຄັດຕິດຮູບພາບ DocType: Workflow State,list-alt,"ບັນຊີລາຍຊື່, alt" apps/frappe/frappe/www/update-password.html,Password Updated,ລະຫັດຜ່ານ Updated @@ -1536,8 +1564,10 @@ apps/frappe/frappe/permissions.py,Not allowed 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 ບໍ່ແມ່ນຮູບແບບບົດລາຍງານທີ່ຖືກຕ້ອງ. ຮູບແບບບົດລາຍງານຄວນ \ ຫນຶ່ງໃນ% s ຕໍ່ໄປນີ້ DocType: Chat Message,Chat,ສົນທະນາ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ຕັ້ງຄ່າ> ການອະນຸຍາດຂອງຜູ້ໃຊ້ DocType: LDAP Group Mapping,LDAP Group Mapping,ແຜນທີ່ກຸ່ມ LDAP DocType: Dashboard Chart,Chart Options,ຕົວເລືອກຕາຕະລາງ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,ຖັນບໍ່ມີຊື່ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},"{0} ຈາກ {1} ກັບ {2} ໃນຕິດຕໍ່ກັນ, {3}" DocType: Communication,Expired,ຫມົດອາຍຸແລ້ວ apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,ເບິ່ງຄືວ່າລະຫັດຜ່ານທີ່ທ່ານໃຊ້ແມ່ນບໍ່ຖືກຕ້ອງ! @@ -1547,6 +1577,7 @@ DocType: DocType,System,ລະບົບ DocType: Web Form,Max Attachment Size (in MB),ນ້ໍາຂະຫນາດ Attachment (ໃນ MB) apps/frappe/frappe/www/login.html,Have an account? Login,ມີບັນຊີ? ເຂົ້າສູ່ລະບົບ DocType: Workflow State,arrow-down,ລູກສອນລົງ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},ແຖວ {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ຜູ້ໃຊ້ບໍ່ອະນຸຍາດໃຫ້ລົບ {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} ຂອງ {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,ແກ້ໄຂຫຼ້າສຸດ @@ -1564,6 +1595,7 @@ DocType: Custom Role,Custom Role,ພາລະບົດບາດ Custom apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,ຫນ້າທໍາອິດ / ການທົດສອບ Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ກະລຸນາໃສ່ລະຫັດຜ່ານຂອງທ່ານ DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ເຂົ້າ Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ບັງຄັບ) 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.,ບໍ່ພົບຂໍ້ມູນໃນໄຟລ໌. ກະລຸນາແນບໄຟລ໌ໃຫມ່ດ້ວຍຂໍ້ມູນ. @@ -1638,6 +1670,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ສະແ apps/frappe/frappe/desk/form/assign_to.py,New Message,ຂໍ້ຄວາມໃຫມ່ DocType: File,Preview HTML,ສະແດງ HTML DocType: Desktop Icon,query-report,"ແບບສອບຖາມ, ລາຍງານ" +DocType: Data Import Beta,Template Warnings,ຄຳ ເຕືອນກ່ຽວກັບແມ່ແບບ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ການກັ່ນຕອງບັນທຶກໄວ້ DocType: DocField,Percent,ເປີເຊັນ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,ກະລຸນາຕັ້ງຄ່າການກອງ @@ -1659,6 +1692,7 @@ DocType: Custom Field,Custom,Custom DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","ຖ້າເປີດໃຊ້, ຜູ້ທີ່ເຂົ້າສູ່ລະບົບຈາກທີ່ຢູ່ IP ທີ່ຈໍາກັດ, ຈະບໍ່ໄດ້ຮັບການແຈ້ງເຕືອນສໍາລັບ Two Factor Auth" DocType: Auto Repeat,Get Contacts,Get Contacts apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ກະທູ້ຍື່ນພາຍໃຕ້ການ {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ຂ້າມຄໍ ລຳ ທີ່ບໍ່ມີຊື່ DocType: Notification,Send alert if date matches this field's value,ສົ່ງການແຈ້ງເຕືອນຖ້າຫາກວ່າວັນທີກັບຄ່າພາກສະຫນາມນີ້ຂອງ DocType: Workflow,Transitions,ຕຣາການປ່ຽນແປງ apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} ກັບ {2} @@ -1682,6 +1716,7 @@ DocType: Workflow State,step-backward,ຂັ້ນຕອນທີກັບຄື apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,ກະລຸນາຕັ້ງຕົວທີ່ໃຊ້ໃນການເຂົ້າເຖິງ Dropbox ໃນ config ເວັບໄຊຂອງທ່ານ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,ລຶບບັນທຶກນີ້ຈະອະນຸຍາດໃຫ້ສົ່ງໄປຫາທີ່ຢູ່ອີເມວນີ້ +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","ຖ້າທ່າເຮືອທີ່ບໍ່ແມ່ນມາດຕະຖານ (ຕົວຢ່າງ POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,ປັບແຕ່ງທາງລັດ apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ພຽງແຕ່ຕ້ອງໃສ່ຂໍ້ມູນທີ່ຈໍາເປັນສໍາລັບການບັນທຶກໃຫມ່. ທ່ານສາມາດລຶບຖັນທີ່ບໍ່ແມ່ນການບັງຄັບຖ້າຫາກວ່າທ່ານຕ້ອງການ. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,ສະແດງກິດຈະ ກຳ ເພີ່ມເຕີມ @@ -1789,7 +1824,9 @@ 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,ມາດຕະຖານການສົ່ງແລະ Inbox DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,ອັບເດດແລ້ວ {0} ບັນທຶກອອກຈາກ {1}. 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,ຈົດຫມາຍສະບັບ DocType: DocType,"Naming Options:
                                                            1. field:[fieldname] - By Field
                                                            2. naming_series: - By Naming Series (field called naming_series must be present
                                                            3. Prompt - Prompt user for a name
                                                            4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                            5. @@ -1803,6 +1840,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,ການຕັ້ງຄ່າຈຸດພະລັງງານ DocType: Async Task,Succeeded,ສົບຄວາມສໍາເລັດ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},ໃສ່ຂໍ້ມູນທີ່ຕ້ອງການໃນ {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                              No results found for '

                                                              ,

                                                              ບໍ່ພົບຜົນລັບ ສຳ ລັບ '

                                                              apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,ການອະນຸຍາດປັບ {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,ຜູ້ຊົມໃຊ້ແລະການອະນຸຍາດ DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1873,6 +1911,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ໃນ DocType: Notification,Value Change,ການປ່ຽນແປງມູນຄ່າ DocType: Google Contacts,Authorize Google Contacts Access,ອະນຸຍາດການເຂົ້າເຖິງລາຍຊື່ຜູ້ຕິດຕໍ່ Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,ສະແດງໃຫ້ເຫັນພຽງແຕ່ທົ່ງພຽງ Numeric ຈາກລາຍງານ +DocType: Data Import Beta,Import Type,ປະເພດການ ນຳ ເຂົ້າ DocType: Access Log,HTML Page,ໜ້າ HTML DocType: Address,Subsidiary,ບໍລິສັດຍ່ອຍ apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,ພະຍາຍາມເຊື່ອມຕໍ່ກັບ QZ Tray ... @@ -1883,7 +1922,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,ບໍ່ DocType: Custom DocPerm,Write,ຂຽນ apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,ພຽງແຕ່ຜູ້ບໍລິຫານອະນຸຍາດໃຫ້ສ້າງ Query Reports / Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,ການປັບປຸງ -DocType: File,Preview,Preview +DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ພາກສະຫນາມ "value" ເປັນການບັງຄັບ. ກະລຸນາລະບຸຄ່າທີ່ຈະໄດ້ຮັບການປັບປຸງ DocType: Customize Form,Use this fieldname to generate title,ການນໍາໃຊ້ fieldname ນີ້ເພື່ອສ້າງຫົວຂໍ້ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import Email ຈາກ @@ -1968,6 +2007,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,ຕົວທ DocType: Social Login Key,Client URLs,URL ຂອງລູກຄ້າ apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,ຂໍ້ມູນບາງຢ່າງທີ່ຂາດຫາຍໄປ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} ສ້າງສົບຜົນສໍາເລັດ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","ຂ້າມ {0} ຂອງ {1}, {2}" DocType: Custom DocPerm,Cancel,ຍົກເລີກການ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,ຍົກເລີກ ຈຳ ນວນຫລາຍ apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,ຍື່ນ {0} ບໍ່ມີ @@ -1995,7 +2035,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,ສັນຍາລັກ apps/frappe/frappe/model/base_document.py,Row #{0}:,"ຕິດຕໍ່ກັນ, {0}:" apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,ຢືນຢັນການລຶບຂໍ້ມູນ -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,ລະຫັດຜ່ານໃຫມ່ໄດ້ສົ່ງອີເມວ apps/frappe/frappe/auth.py,Login not allowed at this time,ເຂົ້າສູ່ລະບົບບໍ່ອະນຸຍາດໃຫ້ຢູ່ໃນເວລານີ້ DocType: Data Migration Run,Current Mapping Action,Action Mapping ປັດຈຸບັນ DocType: Dashboard Chart Source,Source Name,ແຫຼ່ງຊື່ @@ -2008,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ຕິດຕາມດ້ວຍ DocType: LDAP Settings,LDAP Email Field,ມືພາກສະຫນາມ Email LDAP apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} ຊີ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,ສົ່ງອອກບັນທຶກ {0} apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ແລ້ວໃນສະມາຊິກຂອງສິ່ງທີ່ຕ້ອງເຮັດ DocType: User Email,Enable Outgoing,ເຮັດໃຫ້ລາຍຈ່າຍ DocType: Address,Fax,ແຟໍກ @@ -2067,8 +2107,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Print Documents apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ໄປຫາສະ ໜາມ DocType: Contact Us Settings,Forward To Email Address,ຕໍ່ໄປທີ່ຢູ່ອີເມວ +DocType: Contact Phone,Is Primary Phone,ແມ່ນໂທລະສັບຫລັກ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ສົ່ງອີເມວຫາ {0} ເພື່ອເຊື່ອມຕໍ່ກັບມັນຢູ່ບ່ອນນີ້. DocType: Auto Email Report,Weekdays,ວັນອາທິດ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} ບັນທຶກຈະຖືກສົ່ງອອກ apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,ພາກສະຫນາມຫົວຂໍ້ຈະຕ້ອງເປັນ fieldname ຖືກຕ້ອງ DocType: Post Comment,Post Comment,Post Comment apps/frappe/frappe/config/core.py,Documents,ເອກະສານ @@ -2087,7 +2129,9 @@ eval:doc.age>18",ພາກສະຫນາມນີ້ຈະໄປປາກົ DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ໃນມື້ນີ້ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ໃນມື້ນີ້ +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ເມື່ອໃດທີ່ທ່ານໄດ້ກໍານົດໄວ້ນີ້, ຜູ້ໃຊ້ພຽງແຕ່ຈະເປັນເອກະສານການເຂົ້າເຖິງສາມາດ (ຕົວຢ່າງ:. Blog Post) ທີ່ເຊື່ອມຕໍ່ຢູ່ (ຕົວຢ່າງ:. Blogger)." +DocType: Data Import Beta,Submit After Import,ສົ່ງຫຼັງຈາກ ນຳ ເຂົ້າ DocType: Error Log,Log of Scheduler Errors,ເຂົ້າສູ່ລະບົບຂອງຄວາມຜິດພາດທີ່ Scheduler DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,ລັບລູກຄ້າ App @@ -2106,10 +2150,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,ການເຊື່ອມຕໍ່ລູກຄ້າລົງທະບຽນປິດການໃຊ້ງານໃນຫນ້າເຂົ້າສູ່ລະບົບ apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,ມອບຫມາຍໄປ / ເຈົ້າຂອງ DocType: Workflow State,arrow-left,ລູກສອນຊ້າຍ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,ສົ່ງອອກ 1 ສະບັບ DocType: Workflow State,fullscreen,ເຕັມຈໍ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ສ້າງຕາຕະລາງ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john @ doecom +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ຢ່າ ນຳ ເຂົ້າ DocType: Web Page,Center,Center DocType: Notification,Value To Be Set,ມູນຄ່າທີ່ຕ້ອງການກໍານົດ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},ແກ້ໄຂ {0} @@ -2129,6 +2175,7 @@ DocType: Print Format,Show Section Headings,ສະແດງໃຫ້ເຫັນ DocType: Bulk Update,Limit,ຂອບເຂດຈໍາກັດ apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},ພວກເຮົາໄດ້ຮັບ ຄຳ ຮ້ອງຂໍການລຶບ {0} ຂໍ້ມູນທີ່ກ່ຽວຂ້ອງກັບ: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,ເພີ່ມສ່ວນໃຫມ່ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,ບັນທຶກການກັ່ນຕອງ apps/frappe/frappe/www/printview.py,No template found at path: {0},ບໍ່ມີພົບເຫັນຢູ່ໃນເສັ້ນທາງແມ່ແບບ: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,No ບັນຊີອີເມວ DocType: Comment,Cancelled,ຍົກເລີກ @@ -2216,10 +2263,13 @@ 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} 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 ເຂົ້າສູ່ລະບົບຂອງທ່ານ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,ປະເພດເອກະສານຄົ້ນຫາທົ່ວໂລກ ກຳ ນົດ. ,Lead Conversion Time,ເວລາປ່ຽນໃຈເຫລື້ອມໃສ apps/frappe/frappe/desk/page/activity/activity.js,Build Report,ການກໍ່ສ້າງ Report DocType: Note,Notify users with a popup when they log in,ແຈ້ງໃຫ້ຜູ້ໃຊ້ທີ່ມີນິຍົມໃນເວລາທີ່ພວກເຂົາເຈົ້າເຂົ້າສູ່ລະບົບ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,ໂມດູນຫຼັກ {0} ບໍ່ສາມາດຄົ້ນຫາໃນ Global Search. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,ເປີດ Chat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ບໍ່ມີ, ເລືອກເປົ້າຫມາຍໃຫມ່ໃນການຜະສານ" DocType: Data Migration Connector,Python Module,Python Module @@ -2236,8 +2286,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,ປິດ 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ຕັ້ງຄ່າ> ການອະນຸຍາດຂອງຜູ້ໃຊ້ -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,ການປັບປຸງ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,ການປັບປຸງ DocType: Transaction Log,Transaction Hash,Transaction Hash DocType: Error Snapshot,Snapshot View,ພາບບັນທຶກເບິ່ງ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,ກະລຸນາຊ່ວຍປະຢັດ Newsletter ກ່ອນທີ່ຈະສົ່ງ @@ -2253,6 +2302,7 @@ DocType: Data Import,In Progress,ໃນຄວາມຄືບຫນ້າ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,ຄິວສໍາລັບການສໍາຮອງຂໍ້ມູນ. ມັນອາດຈະໃຊ້ເວລາສອງສາມນາທີເພື່ອຊົ່ວໂມງ. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,ອະນຸຍາດໃຫ້ຜູ້ໃຊ້ມີຢູ່ແລ້ວ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},ການສ້າງແຜນທີ່ຖັນ {0} ໄປຫາພາກສະ ໜາມ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},ເບິ່ງ {0} DocType: User,Hourly,ທຸກໆຊົ່ວໂມງ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ລົງທະບຽນ OAuth App Client @@ -2265,7 +2315,6 @@ DocType: SMS Settings,SMS Gateway URL,URL SMS Gateway apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ບໍ່ສາມາດຈະ "{2}". ມັນຄວນຈະເປັນຫນຶ່ງຂອງການ "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ໄດ້ຮັບຈາກ {0} ຜ່ານກົດລະບຽບອັດຕະໂນມັດ {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ຫຼື {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,ປັບປຸງລະຫັດຜ່ານ DocType: Workflow State,trash,ກະຕ່າຂີ້ເຫຍື້ອ DocType: System Settings,Older backups will be automatically deleted,ສໍາຮອງຂໍ້ມູນຂຶ້ນໄປຈະໄດ້ຮັບການລຶບອັດຕະໂນມັດ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID ການເຂົ້າເຖິງບໍ່ຖືກຕ້ອງຫລື Key Access Key. @@ -2294,6 +2343,7 @@ DocType: Address,Preferred Shipping Address,ທີ່ແນະນໍາທີ່ apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,ມີຫົວຈົດຫມາຍ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} ສ້າງນີ້ {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},ບໍ່ອະນຸຍາດ ສຳ ລັບ {0}: {1} ໃນແຖວ {2}. ເຂດຂໍ້ ຈຳ ກັດ: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ໄດ້ຕິດຕັ້ງ. ກະລຸນາສ້າງບັນຊີອີເມວ ໃໝ່ ຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","ຖ້າສິ່ງນີ້ຖືກກວດເບິ່ງ, ແຖວທີ່ມີຂໍ້ມູນທີ່ຖືກຕ້ອງຈະຖືກນໍາເຂົ້າແລະແຖວທີ່ບໍ່ຖືກຕ້ອງຈະຖືກຖິ້ມລົງໃນໄຟລ໌ໃຫມ່ສໍາລັບທ່ານທີ່ຈະນໍາເຂົ້າຕໍ່ມາ." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ເອກະສານແມ່ນສາມາດແກ້ໄຂໂດຍຜູ້ໃຊ້ຂອງພາລະບົດບາດພຽງແຕ່ @@ -2320,6 +2370,7 @@ DocType: Custom Field,Is Mandatory Field,ແມ່ນພາກສະຫນາມ DocType: User,Website User,ຜູ້ໃຊ້ເວັບໄຊທ໌ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,ບາງຖັນອາດຈະຖືກຕັດອອກເມື່ອພິມເປັນ PDF. ພະຍາຍາມຮັກສາ ຈຳ ນວນຖັນຕ່ ຳ ກວ່າ 10 ປີ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,ບໍ່ເທົ່າທຽມກັນ +DocType: Data Import Beta,Don't Send Emails,ຢ່າສົ່ງອີເມວ DocType: Integration Request,Integration Request Service,ການເຊື່ອມໂຍງການຮ້ອງຂໍການບໍລິການ DocType: Access Log,Access Log,ເຂົ້າໃຊ້ Log Log DocType: Website Script,Script to attach to all web pages.,Script ຈະຕິດກັບຫນ້າເວັບທັງຫມົດ. @@ -2360,6 +2411,7 @@ DocType: Contact,Passive,ຕົວຕັ້ງຕົວຕີ DocType: Auto Repeat,Accounts Manager,ຄຸ້ມຄອງບັນຊີ apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},ການມອບຫມາຍສໍາລັບ {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,ການຊໍາລະເງິນຂອງທ່ານໄດ້ຖືກຍົກເລີກ. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາຕັ້ງຄ່າບັນຊີອີເມວເລີ່ມຕົ້ນຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,ເລືອກປະເພດເອກະສານ apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,ເບິ່ງທັງຫມົດ DocType: Help Article,Knowledge Base Editor,ຄວາມຮູ້ບັນນາທິການຖານ @@ -2392,6 +2444,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,ຂໍ້ມູນ apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,ສະຖານະເອກະສານ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,ຕ້ອງມີການອະນຸມັດ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,ຕ້ອງມີການບັນທຶກຂໍ້ມູນຕໍ່ໄປນີ້ກ່ອນທີ່ພວກເຮົາຈະ ນຳ ເຂົ້າເອກະສານຂອງທ່ານ. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth ລະຫັດອະນຸຍາດ apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,ບໍ່ອະນຸຍາດໃຫ້ນໍາເຂົ້າ DocType: Deleted Document,Deleted DocType,DocType ລຶບ @@ -2446,8 +2499,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API Credentials apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ກອງປະຊຸມເລີ່ມຕົ້ນລົ້ມເຫລວ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ກອງປະຊຸມເລີ່ມຕົ້ນລົ້ມເຫລວ apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ອີເມວນີ້ຖືກສົ່ງໄປທີ່ {0} ແລະຄັດລອກໄປທີ່ {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ຍື່ນເອກະສານນີ້ {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ປີທີ່ຜ່ານມາ DocType: Social Login Key,Provider Name,ຊື່ຜູ້ໃຫ້ບໍລິການ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ສ້າງໃຫມ່ {0} DocType: Contact,Google Contacts,Google Contacts @@ -2455,6 +2508,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar Account DocType: Email Rule,Is Spam,ແມ່ນ Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},ບົດລາຍງານ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ເປີດ {0} +DocType: Data Import Beta,Import Warnings,ຄຳ ເຕືອນກ່ຽວກັບການ ນຳ ເຂົ້າ DocType: OAuth Client,Default Redirect URI,ມາດຕະຖານການໂອນຫນ້າ URI DocType: Auto Repeat,Recipients,ຜູ້ຮັບ DocType: System Settings,Choose authentication method to be used by all users,ເລືອກວິທີການກວດສອບທີ່ຈະໄດ້ຮັບການນໍາໃຊ້ໂດຍຜູ້ໃຊ້ທັງຫມົດ @@ -2573,6 +2627,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,ການລ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook Error DocType: Email Flag Queue,Unread,ຍັງບໍ່ໄດ້ອ່ານ DocType: Bulk Update,Desk,desk +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},ຂ້າມຖັນ {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),ການກັ່ນຕອງຕ້ອງເປັນ tuple ຫຼືບັນຊີລາຍຊື່ (ໃນບັນຊີລາຍການ) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,ຂຽນແບບສອບຖາມ SELECT. ຜົນຫມາຍເຫດບໍ່ໄດ້ pagedate (ຂໍ້ມູນທັງຫມົດຈະຖືກສົ່ງໃນຫນຶ່ງໄປ). DocType: Email Account,Attachment Limit (MB),ຕິດຈໍາກັດ (MB) @@ -2587,6 +2642,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,ສ້າງໃຫມ່ DocType: Workflow State,chevron-down,ວົງຢືມຊ້ອນລົງ apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email ບໍ່ໄດ້ສົ່ງໄປທີ່ {0} (ຍົກເລີກ / ຄົນພິການ) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,ເລືອກທົ່ງນາທີ່ຈະສົ່ງອອກ DocType: Async Task,Traceback,traceback DocType: Currency,Smallest Currency Fraction Value,ຂະຫນາດນ້ອຍສຸດມູນຄ່າເສດສ່ວນສະກຸນເງິນ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,ການກະກຽມບົດລາຍງານ @@ -2595,6 +2651,7 @@ DocType: Workflow State,th-list,th ບັນຊີລາຍຊື່ DocType: Web Page,Enable Comments,ເຮັດໃຫ້ຄວາມຄິດເຫັນ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ອ່ືນ DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),ຈໍາກັດຜູ້ໃຊ້ຈາກທີ່ຢູ່ IP ນີ້ເທົ່ານັ້ນ. ທີ່ຢູ່ IP ຫຼາຍສາມາດໄດ້ຮັບການເພີ່ມໂດຍການແຍກດ້ວຍຈຸລະພາກ. ນອກຈາກນີ້ຍັງໄດ້ຮັບທີ່ຢູ່ IP ເປັນບາງສ່ວນເຊັ່ນ: (111.111.111) +DocType: Data Import Beta,Import Preview,ສະແດງຕົວຢ່າງການ ນຳ ເຂົ້າ DocType: Communication,From,ຈາກ apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,ເລືອກ node ກຸ່ມທໍາອິດ. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},ຊອກຫາ {0} ໃນ {1} @@ -2694,6 +2751,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,ລະຫວ່າງ DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,ຄິວ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ຕັ້ງຄ່າ> ປັບແຕ່ງແບບຟອມ DocType: Braintree Settings,Use Sandbox,ການນໍາໃຊ້ Sandbox apps/frappe/frappe/utils/goal.py,This month,ເດືອນນີ້ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,ຮູບແບບການລູກຄ້າພິມໃຫມ່ @@ -2709,6 +2767,7 @@ DocType: Session Default,Session Default,Default Default DocType: Chat Room,Last Message,Last message DocType: OAuth Bearer Token,Access Token,ການເຂົ້າເຖິງ Token DocType: About Us Settings,Org History,ປະຫວັດ org +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,ປະມານ {0} ນາທີ DocType: Auto Repeat,Next Schedule Date,Next Schedule Date DocType: Workflow,Workflow Name,ຊື່ workflow DocType: DocShare,Notify by Email,ແຈ້ງໂດຍ Email @@ -2738,6 +2797,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Author apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,ສືບຕໍ່ສົ່ງ apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,ດໍາເນີນການ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,ສະແດງ ຄຳ ເຕືອນ apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,User ຊື້ DocType: Data Migration Run,Push Failed,Push Failed @@ -2776,6 +2836,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ກາ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເບິ່ງຫນັງສືພິມ. DocType: User,Interests,ຜົນປະໂຫຍດ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,ຄໍາແນະນໍາການປ່ຽນລະຫັດຜ່ານໄດ້ຖືກສົ່ງໄປຫາອີເມວຂອງທ່ານ +DocType: Energy Point Rule,Allot Points To Assigned Users,ຈຸດແຈກຈ່າຍໃຫ້ຜູ້ໃຊ້ທີ່ຖືກມອບ ໝາຍ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 ເປັນສໍາລັບການອະນຸຍາດໃນລະດັບເອກະສານ, \ ຂັ້ນເທິງເພື່ອອະນຸຍາດໃນລະດັບພາກສະຫນາມ." DocType: Contact Email,Is Primary,ແມ່ນປະຖົມ @@ -2799,6 +2860,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Key ຈັດພິມໄດ້ DocType: Stripe Settings,Publishable Key,Key ຈັດພິມໄດ້ apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,ເລີ່ມຕົ້ນການນໍາເຂົ້າ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,ປະເພດການສົ່ງອອກ DocType: Workflow State,circle-arrow-left,"ແຜ່ນປ້າຍວົງກົມ, ລູກສອນຊ້າຍ" DocType: System Settings,Force User to Reset Password,ບັງຄັບໃຫ້ຜູ້ໃຊ້ຕັ້ງລະຫັດຜ່ານຄືນ ໃໝ່ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","ເພື່ອໃຫ້ໄດ້ຮັບບົດລາຍງານທີ່ຖືກປັບປຸງ, ໃຫ້ກົດທີ່ {0}." @@ -2812,13 +2874,16 @@ DocType: Contact,Middle Name,ຊື່ກາງ DocType: Custom Field,Field Description,ພາກສະຫນາມລາຍລະອຽດ apps/frappe/frappe/model/naming.py,Name not set via Prompt,ຊື່ບໍ່ກໍານົດໂດຍຜ່ານການກະຕຸ້ນເຕືອນ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox Email +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","ການປັບປຸງ {0} ຂອງ {1}, {2}" DocType: Auto Email Report,Filters Display,ການກັ່ນຕອງສະແດງ apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","ສະບັບປັບປຸງ _ ຂ້າງເທິງ" ພາກສະຫນາມຕ້ອງມີຢູ່ເພື່ອ ດຳ ເນີນການດັດແກ້. +DocType: Contact,Numbers,ຕົວເລກ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ຕີລາຄາສູງຕໍ່ຜົນງານຂອງທ່ານໃນ {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ບັນທຶກຕົວກອງ DocType: Address,Plant,ພືດ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ຕອບກັບທັງຫມົດ DocType: DocType,Setup,ຕັ້ງຄ່າ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,ບັນທຶກທັງ ໝົດ DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ທີ່ຢູ່ອີເມວທີ່ມີລາຍຊື່ຜູ້ຕິດຕໍ່ Google ຈະຖືກຊິ້ງຂໍ້ມູນ. DocType: Email Account,Initial Sync Count,ນັບ Sync ທໍາອິດ DocType: Workflow State,glass,ແກ້ວ @@ -2843,7 +2908,7 @@ DocType: Workflow State,font,ຕົວອັກສອນ DocType: DocType,Show Preview Popup,ສະແດງ Preview Popup apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ນີ້ເປັນລະຫັດຜ່ານທົ່ວໄປເທິງ 100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,ກະລຸນາເຮັດໃຫ້ສາມາດ POP-Ups -DocType: User,Mobile No,ໂທລະສັບມືຖືທີ່ບໍ່ມີ +DocType: Contact,Mobile No,ໂທລະສັບມືຖືທີ່ບໍ່ມີ DocType: Communication,Text Content,ເນື້ອໃນຂໍ້ຄວາມ DocType: Customize Form Field,Is Custom Field,ແມ່ນພາກສະຫນາມ Custom DocType: Workflow,"If checked, all other workflows become inactive.","ຖ້າຫາກວ່າການກວດກາ, workflows ອື່ນໆທັງຫມົດກາຍເປັນ inactive." @@ -2889,6 +2954,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ເ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,ຊື່ຂອງຮູບແບບພິມໃຫມ່ apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar DocType: Data Migration Run,Pull Insert,Pull Insert +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",ຈຸດສູງສຸດທີ່ອະນຸຍາດໃຫ້ຫຼັງຈາກຄູນຫຼາຍຈຸດດ້ວຍມູນຄ່າຕົວຄູນ (ໝາຍ ເຫດ: ສຳ ລັບຂອບເຂດທີ່ບໍ່ມີຂໍ້ ຈຳ ກັດຈະປ່ອຍໃຫ້ພາກສະ ໜາມ ນີ້ຫວ່າງຫລືຕັ້ງຄ່າ 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,ແມ່ແບບບໍ່ຖືກຕ້ອງ apps/frappe/frappe/model/db_query.py,Illegal SQL Query,ການສອບຖາມ SQL ທີ່ບໍ່ຖືກຕ້ອງ apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,ບັງຄັບ: DocType: Chat Message,Mentions,Mentions @@ -2903,6 +2971,7 @@ DocType: User Permission,User Permission,ການອະນຸຍາດຜູ້ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ບໍ່ໄດ້ຕິດຕັ້ງ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ດາວນ໌ໂຫລດທີ່ມີຂໍ້ມູນ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ປ່ຽນຄຸນຄ່າ ສຳ ລັບ {0} {1} DocType: Workflow State,hand-right,ມືຂວາ DocType: Website Settings,Subdomain,subdomain DocType: S3 Backup Settings,Region,ພູມິພາກ @@ -2930,10 +2999,12 @@ DocType: Braintree Settings,Public Key,Public Key DocType: GSuite Settings,GSuite Settings,Settings GSuite DocType: Address,Links,ການເຊື່ອມຕໍ່ DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,ໃຊ້ຊື່ອີເມວທີ່ຢູ່ໃນບັນຊີນີ້ເປັນຊື່ຜູ້ສົ່ງ ສຳ ລັບອີເມວທັງ ໝົດ ທີ່ຖືກສົ່ງໂດຍໃຊ້ບັນຊີນີ້. +DocType: Energy Point Rule,Field To Check,ພາກສະຫນາມເພື່ອກວດກາ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Contacts - ບໍ່ສາມາດອັບເດດລາຍຊື່ຜູ້ຕິດຕໍ່ໃນ Google Contacts {0}, ລະຫັດຜິດພາດ {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,ກະລຸນາເລືອກປະເພດເອກະສານ. apps/frappe/frappe/model/base_document.py,Value missing for,ຄ່າທີ່ຂາດຫາຍໄປສໍາລັບການ apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,ເພີ່ມເດັກ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,ຄວາມຄືບ ໜ້າ ການ ນຳ ເຂົ້າ DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",ຖ້າເງື່ອນໄຂທີ່ຜູ້ໃຊ້ພໍໃຈຈະໄດ້ຮັບລາງວັນຕາມຈຸດຕ່າງໆ. ຕົວຢ່າງ. doc.status == 'ປິດ' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ບັນທຶກສະບໍ່ສາມາດໄດ້ຮັບການລຶບ. @@ -2970,6 +3041,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,ອະນຸຍາດ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,ຫນ້າທີ່ທ່ານກໍາລັງຊອກຫາສໍາລັບທີ່ຂາດຫາຍໄປ. ນີ້ອາດຈະເປັນເພາະວ່າມັນໄດ້ຖືກຍ້າຍຫຼືມີການ typo ໃນການເຊື່ອມຕໍ່. apps/frappe/frappe/www/404.html,Error Code: {0},Error Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","ລາຍລະອຽດສໍາລັບ listing ຫນ້າ, ໃນຄວາມທົ່ງພຽງ, ມີພຽງແຕ່ຄູ່ນ່ຶຂອງສາຍ. (ສູງສຸດ 140 ລັກສະນະ)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ແມ່ນທົ່ງນາທີ່ ຈຳ ເປັນ DocType: Workflow,Allow Self Approval,ອະນຸຍາດໃຫ້ອະນຸມັດຕົນເອງ DocType: Event,Event Category,ປະເພດເຫດການ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3017,8 +3089,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ຍ້າຍໄປ DocType: Address,Preferred Billing Address,ທີ່ແນະນໍາທີ່ຢູ່ໃບບິນ apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,ຈໍານວນຫຼາຍເກີນໄປຂຽນໃນການຮ້ອງຂໍ. ກະລຸນາສົ່ງຄໍາຂໍຂະຫນາດນ້ອຍກວ່າ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive ໄດ້ຖືກຕັ້ງຄ່າແລ້ວ. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,ປະເພດເອກະສານ {0} ໄດ້ຖືກເຮັດຊ້ ຳ ແລ້ວ. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ຄຸນຄ່າການປ່ຽນແປງ DocType: Workflow State,arrow-up,ລູກສອນຂຶ້ນ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,ຄວນຈະມີແຖວຢ່າງ ໜ້ອຍ ໜຶ່ງ ແຖວ ສຳ ລັບຕາຕະລາງ {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","ເພື່ອ ກຳ ຫນົດຄ່າການເຮັດຊ້ ຳ ຄືນແບບອັດຕະໂນມັດ, ເປີດໃຊ້ "ອະນຸຍາດໃຫ້ເຮັດຊ້ ຳ ຄືນໂດຍອັດຕະໂນມັດ" ຈາກ {0}." DocType: OAuth Bearer Token,Expires In,ຫມົດອາຍຸໃນ DocType: DocField,Allow on Submit,ອະນຸຍາດໃຫ້ຢູ່ໃນຍື່ນສະເຫນີການ @@ -3105,6 +3179,7 @@ DocType: Custom Field,Options Help,ທາງເລືອກໃນການຊ່ 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 ບັນທຶກຈະຖືກສົ່ງອອກ 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 @@ -3122,6 +3197,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,ລະຫັດ Verfication DocType: Webhook,Webhook Request,Webhook Request apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** ບໍ່: {0} ກັບ {1}: {2} DocType: Data Migration Mapping,Mapping Type,Mapping Type +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,ເລືອກບັງຄັບ apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,ເອີ້ນເບິ່ງ apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","ບໍ່ຈໍາເປັນຕ້ອງສໍາລັບສັນຍາລັກ, ຕົວເລກ, ຕົວອັກສອນຫລືຕົວພິມໃຫຍ່." DocType: DocField,Currency,ສະກຸນເງິນ @@ -3152,11 +3228,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,ຈົດ ໝາຍ ອີງໃສ່ apps/frappe/frappe/utils/oauth.py,Token is missing,Token ທີ່ຂາດຫາຍໄປ apps/frappe/frappe/www/update-password.html,Set Password,ຕັ້ງລະຫັດຜ່ານ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,ບັນທຶກການບັນທຶກ {0} ສຳ ເລັດແລ້ວ. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,ຫມາຍເຫດ: ເມື່ອເວົ້າເຖິງການຫນ້າຊື່ຈະທໍາລາຍ URL ທີ່ຜ່ານມາທີ່ຫນ້ານີ້. apps/frappe/frappe/utils/file_manager.py,Removed {0},ການໂຍກຍ້າຍອອກ {0} DocType: SMS Settings,SMS Settings,ການຕັ້ງຄ່າ SMS DocType: Company History,Highlight,ຈຸດເດັ່ນ DocType: Dashboard Chart,Sum,ລວມ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,ຜ່ານຂໍ້ມູນການ ນຳ ເຂົ້າ DocType: OAuth Provider Settings,Force,ຜົນບັງຄັບໃຊ້ apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},ຊິ້ງຂໍ້ມູນຫຼ້າສຸດ {0} DocType: DocField,Fold,ເທົ່າ @@ -3193,6 +3271,7 @@ DocType: Workflow State,Home,ຫນ້າທໍາອິດ DocType: OAuth Provider Settings,Auto,ອັດຕະໂນມັດ DocType: System Settings,User can login using Email id or User Name,ຜູ້ໃຊ້ສາມາດເຂົ້າສູ່ລະບົບໂດຍໃຊ້ຊື່ອີເມວຫຼືຊື່ຜູ້ໃຊ້ DocType: Workflow State,question-sign,ຄໍາຖາມອາການ +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ຖືກປິດໃຊ້ງານ apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ເສັ້ນທາງ "ເສັ້ນທາງ" ແມ່ນບັງຄັບໃຊ້ສໍາລັບການເບິ່ງເວັບ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},ໃສ່ຄໍລໍາກ່ອນ {0} DocType: Energy Point Rule,The user from this field will be rewarded points,ຜູ້ໃຊ້ຈາກພາກສະຫນາມນີ້ຈະໄດ້ຮັບລາງວັນ @@ -3226,6 +3305,7 @@ DocType: Website Settings,Top Bar Items,ລາຍະການ Top Bar DocType: Notification,Print Settings,ການຕັ້ງຄ່າການພິມ DocType: Page,Yes,Yes DocType: DocType,Max Attachments,Attachments Max +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,ປະມານ {0} ວິນາທີ DocType: Calendar View,End Date Field,End Date Field apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ທາງລັດທົ່ວໂລກ DocType: Desktop Icon,Page,ຫນ້າ @@ -3338,6 +3418,7 @@ DocType: GSuite Settings,Allow GSuite access,ອະນຸຍາດໃຫ້ເ DocType: DocType,DESC,DESC DocType: DocType,Naming,ການຕັ້ງຊື່ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,ເລືອກທັງຫມົດ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},ຖັນ {0} apps/frappe/frappe/config/customization.py,Custom Translations,ການແປ Custom apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,ຄວາມຄືບຫນ້າ apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,ໂດຍພາລະບົດບາດ @@ -3380,11 +3461,13 @@ DocType: Stripe Settings,Stripe Settings,ການຕັ້ງຄ່າເສັ DocType: Stripe Settings,Stripe Settings,ການຕັ້ງຄ່າເສັ້ນດ່າງ DocType: Data Migration Mapping,Data Migration Mapping,Mapping Migration Data DocType: Auto Email Report,Period,ໄລຍະເວລາ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,ປະມານ {0} ນາທີ apps/frappe/frappe/www/login.py,Invalid Login Token,ເຂົ້າລະບົບ Token ທີ່ບໍ່ຖືກຕ້ອງ 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,Snapshot Error ພໍ່ແມ່ +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} @@ -3404,6 +3487,7 @@ DocType: Calendar View,Start Date Field,Start Date Field DocType: Role,Role Name,ຊື່ພາລະບົດບາດ apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,ສະຫຼັບກັບລະ Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script ຫຼືສອບຖາມລາຍງານ +DocType: Contact Phone,Is Primary Mobile,ແມ່ນໂທລະສັບມືຖືຊັ້ນຕົ້ນ DocType: Workflow Document State,Workflow Document State,State Document Workflow apps/frappe/frappe/public/js/frappe/request.js,File too big,ໄຟຂະຫນາດໃຫຍ່ເກີນໄປ apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ບັນຊີອີເມວເພີ່ມຫຼາຍຄັ້ງ @@ -3449,6 +3533,7 @@ DocType: DocField,Float,ເລື່ອນ DocType: Print Settings,Page Settings,ຕັ້ງຄ່າຫນ້າ apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,ການປະຢັດ ... apps/frappe/frappe/www/update-password.html,Invalid Password,ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,ສຳ ເລັດການ ນຳ ເຂົ້າ {0} ບັນທຶກອອກຈາກ {1}. DocType: Contact,Purchase Master Manager,ການຊື້ Manager ລິນຍາໂທ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,ກົດທີ່ໄອຄອນລັອກເພື່ອສະຫຼັບສາທາລະນະ / ສ່ວນຕົວ DocType: Module Def,Module Name,ຊື່ Module @@ -3483,6 +3568,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,ບາງສ່ວນຂອງຄຸນນະສົມບັດອາດຈະບໍ່ໄດ້ເຮັດວຽກໃນຕົວທ່ອງເວັບຂອງທ່ານ. ກະລຸນາປັບປຸງຕົວທ່ອງເວັບຂອງທ່ານເພື່ອສະບັບຫລ້າສຸດ. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,ບາງສ່ວນຂອງຄຸນນະສົມບັດອາດຈະບໍ່ໄດ້ເຮັດວຽກໃນຕົວທ່ອງເວັບຂອງທ່ານ. ກະລຸນາປັບປຸງຕົວທ່ອງເວັບຂອງທ່ານເພື່ອສະບັບຫລ້າສຸດ. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","ບໍ່ຮູ້ວ່າ, ຂໍໃຫ້ການຊ່ວຍເຫຼືອຂອງ" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ຍົກເລີກເອກະສານນີ້ {0} DocType: DocType,Comments and Communications will be associated with this linked document,ຄໍາເຫັນແລະການສື່ສານຈະໄດ້ຮັບການກ່ຽວຂ້ອງກັບເອກະສານການເຊື່ອມຕໍ່ນີ້ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,ການກັ່ນຕອງ ... DocType: Workflow State,bold,ກ້າຫານ @@ -3501,6 +3587,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,ຕື່ມ DocType: Comment,Published,ຈັດພີມມາ apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,ຂໍຂອບໃຈທ່ານສໍາລັບການອີເມວຂອງທ່ານ DocType: DocField,Small Text,ຂໍ້ຄວາມຂະຫນາດນ້ອຍ +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,ໝາຍ ເລກ {0} ບໍ່ສາມາດ ກຳ ນົດເປັນຫລັກ ສຳ ລັບໂທລະສັບພ້ອມທັງເບີໂທລະສັບມືຖື. DocType: Workflow,Allow approval for creator of the document,ອະນຸຍາດໃຫ້ອະນຸມັດສໍາລັບຜູ້ສ້າງເອກະສານ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,ບັນທຶກລາຍງານ DocType: Webhook,on_cancel,on_cancel @@ -3558,6 +3645,7 @@ DocType: Print Settings,PDF Settings,ການຕັ້ງຄ່າ PDF DocType: Kanban Board Column,Column Name,ຊື່: DocType: Language,Based On,ອີງຕາມ DocType: Email Account,"For more information, click here.","ສຳ ລັບຂໍ້ມູນເພີ່ມເຕີມ, ກົດທີ່ນີ້ ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,ຈຳ ນວນຖັນບໍ່ກົງກັບຂໍ້ມູນ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,ເຮັດໃຫ້ມາດຕະຖານ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,ເວລາປະຕິບັດ: {0} ວິນາທີ apps/frappe/frappe/model/utils/__init__.py,Invalid include path,ບໍ່ຖືກຕ້ອງປະກອບມີເສັ້ນທາງ @@ -3648,7 +3736,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Report Start Time -apps/frappe/frappe/config/settings.py,Export Data,Export Data +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Export Data 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.,ນີ້ແມ່ນບົດລາຍງານຄວາມເປັນມາ. ກະລຸນາຕັ້ງຕົວກອງທີ່ ເໝາະ ສົມແລະຈາກນັ້ນສ້າງເຄື່ອງ ໃໝ່. @@ -3666,7 +3754,6 @@ DocType: Report,Disable Prepared Report,ປິດການລາຍງານກ apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,ຜູ້ໃຊ້ {0} ໄດ້ຮ້ອງຂໍການລຶບຂໍ້ມູນ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,ທີ່ຜິດກົດຫມາຍການເຂົ້າ Token. ກະລຸນາພະຍາຍາມອີກເທື່ອຫນຶ່ງ apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","ຄໍາຮ້ອງສະຫມັກທີ່ໄດ້ຮັບການປັບປຸງເພື່ອສະບັບໃຫມ່, ກະລຸນາໂຫຼດຫນ້າຈໍຄືນຫນ້ານີ້" -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.,ບໍ່ພົບແມ່ແບບທີ່ຢູ່ເລີ່ມຕົ້ນ. ກະລຸນາສ້າງແບບ ໃໝ່ ຈາກການຕິດຕັ້ງ> ການພິມແລະການສ້າງຍີ່ຫໍ້> ແມ່ແບບທີ່ຢູ່. DocType: Notification,Optional: The alert will be sent if this expression is true,ທາງເລືອກ: ການແຈ້ງເຕືອນຈະສົ່ງຖ້າຫາກວ່າການສະແດງອອກນີ້ແມ່ນເປັນຄວາມຈິງ DocType: Data Migration Plan,Plan Name,ຊື່ແຜນການ DocType: Print Settings,Print with letterhead,ພິມດ້ວຍຈົດຫມາຍ @@ -3707,6 +3794,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: ບໍ່ສາມາດກໍານົດການແກ້ໄຂໂດຍບໍ່ມີການຍົກເລີກການ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,ຫນ້າຢ່າງເຕັມທີ່ DocType: DocType,Is Child Table,ເປັນຕາຕະລາງເດັກນ້ອຍ +DocType: Data Import Beta,Template Options,ຕົວເລືອກແມ່ແບບ apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} ຕ້ອງເປັນຫນຶ່ງໃນ {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} ຂະນະນີ້ການເບິ່ງເອກະສານນີ້ apps/frappe/frappe/config/core.py,Background Email Queue,ແຖວ Email ຄວາມເປັນມາ @@ -3714,7 +3802,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,ຕັ້ງຄ່ DocType: Communication,Opened,ເປີດ DocType: Workflow State,chevron-left,ວົງຢືມຊ້ອນຊ້າຍ DocType: Communication,Sending,ສົ່ງ -apps/frappe/frappe/auth.py,Not allowed from this IP Address,ບໍ່ອະນຸຍາດຈາກທີ່ຢູ່ IP ນີ້ DocType: Website Slideshow,This goes above the slideshow.,ນີ້ໄປຂ້າງເທິງການ slideshow ໄດ້. DocType: Contact,Last Name,ນາມສະກຸນ DocType: Event,Private,ສ່ວນຕົວ @@ -3728,7 +3815,6 @@ DocType: Workflow Action,Workflow Action,ປະຕິບັດ workflow apps/frappe/frappe/utils/bot.py,I found these: ,ຂ້າພະເຈົ້າພົບເຫັນເຫຼົ່ານີ້: DocType: Event,Send an email reminder in the morning,ສົ່ງການເຕືອນອີເມວໃນຕອນເຊົ້າ DocType: Blog Post,Published On,ຈັດພີມມາກ່ຽວກັບ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ໄດ້ຕິດຕັ້ງ. ກະລຸນາສ້າງບັນຊີອີເມວ ໃໝ່ ຈາກການຕັ້ງຄ່າ> ອີເມວ> ບັນຊີອີເມວ 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} @@ -3749,7 +3835,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,ການເຕືອນໄພອາການ DocType: Prepared Report,Prepared Report,ບົດລາຍງານການກະກຽມ apps/frappe/frappe/config/website.py,Add meta tags to your web pages,ເພີ່ມແທັກ meta ໃສ່ ໜ້າ ເວັບຂອງທ່ານ -DocType: Contact,Phone Nos,ໂທລະສັບ Nos DocType: Workflow State,User,ຜູ້ໃຊ້ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ສະແດງໃຫ້ເຫັນຫົວຂໍ້ຢູ່ໃນປ່ອງຢ້ຽມຂອງຕົວທ່ອງເວັບເປັນ "ຄໍານໍາຫນ້າ - ຫົວຂໍ້" DocType: Payment Gateway,Gateway Settings,ການຕັ້ງຄ່າ Gateway @@ -3767,6 +3852,7 @@ DocType: Data Migration Connector,Data Migration,ການຍ້າຍຖິ່ DocType: User,API Key cannot be regenerated,ຫຼັກ API ບໍ່ສາມາດຟື້ນຕົວໄດ້ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,ບາງສິ່ງບາງຢ່າງໄດ້ຜິດພາດ DocType: System Settings,Number Format,ຮູບແບບຕົວເລກ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,ບັນທຶກການບັນທຶກ {0} ສຳ ເລັດແລ້ວ. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Summary DocType: Event,Event Participants,ຜູ້ເຂົ້າຮ່ວມເຫດການ DocType: Auto Repeat,Frequency,ຄວາມຖີ່ຂອງການ @@ -3774,7 +3860,7 @@ DocType: Custom Field,Insert After,ສະແດງກິ່ງງ່າຫຼັ DocType: Event,Sync with Google Calendar,ຊິ້ງກັບ Google Calendar DocType: Access Log,Report Name,ຊື່ລາຍວຽກ DocType: Desktop Icon,Reverse Icon Color,ດ້ານ Icon ສີ -DocType: Notification,Save,ບັນທຶກ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,ບັນທຶກ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,ວັນທີ່ກໍານົດເວລາຕໍ່ໄປ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,ມອບ ໝາຍ ໃຫ້ຜູ້ທີ່ມີວຽກ ໜ້ອຍ ທີ່ສຸດ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,ສ່ວນຫົວ @@ -3797,11 +3883,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ຕັ້ງຄ່າ> ປັບແຕ່ງແບບຟອມ 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! ບາງສິ່ງບາງຢ່າງໄດ້ຜິດພາດ DocType: Desktop Icon,Category,ປະເພດ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},ມູນຄ່າ {0} ຫາຍ ສຳ ລັບ {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Add Contacts apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ພູມສັນຖານ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,ການຂະຫຍາຍ script ຂ້າງລູກຄ້າໃນ Javascript @@ -3825,6 +3911,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ການປັບປຸງຈຸດພະລັງງານ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',ກະລຸນາເລືອກວິທີການຊໍາລະເງິນອື່ນ. PayPal ບໍ່ສະຫນັບສະຫນູນທຸລະກໍາໃນສະກຸນເງິນ '{0}' DocType: Chat Message,Room Type,ປະເພດຫ້ອງພັກ +DocType: Data Import Beta,Import Log Preview,ການ ນຳ ເຂົ້າບັນທຶກການ ນຳ ເຂົ້າ apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,ພາກສະຫນາມຄົ້ນຫາ {0} ບໍ່ຖືກຕ້ອງ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,ໄຟລ໌ທີ່ອັບໂຫລດແລ້ວ DocType: Workflow State,ok-circle,"ok, ແຜ່ນປ້າຍວົງກົມ" @@ -3893,6 +3980,7 @@ DocType: DocType,Allow Auto Repeat,ອະນຸຍາດໃຫ້ເຮັດເ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ບໍ່ມີຄ່າຫຍັງທີ່ຈະສະແດງ DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ແບບອີເມວ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,ການອັບເດດບັນທຶກ {0} ສຳ ເລັດແລ້ວ. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},ຜູ້ໃຊ້ {0} ບໍ່ມີສິດເຂົ້າເຖິງ doctype ໂດຍຜ່ານການອະນຸຍາດບົດບາດ ສຳ ລັບເອກະສານ {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ທັງສອງເຂົ້າສູ່ລະບົບແລະລະຫັດຜ່ານທີ່ກໍານົດໄວ້ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,ກະລຸນາໂຫຼດຫນ້າຈໍຄືນເພື່ອໃຫ້ໄດ້ຮັບເອກະສານຫລ້າສຸດ. diff --git a/frappe/translations/lt.csv b/frappe/translations/lt.csv index cd972698ed..c4251234e3 100644 --- a/frappe/translations/lt.csv +++ b/frappe/translations/lt.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Nauji {} išleidimai šioms programoms yra prieinami apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Prašome pasirinkti laukelyje Kiekis. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Įkeliamas importo failas ... DocType: Assignment Rule,Last User,Paskutinis vartotojas apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nauja užduotis, {0}, buvo priskirtas jums {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sesijos numatytosios vertės išsaugotos +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Iš naujo įkelti failą DocType: Email Queue,Email Queue records.,Paštas Queue įrašus. DocType: Post,Post,paštas DocType: Address,Punjab,Pendžabo @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,kas mėnesį DocType: Address,Uttarakhand,Utarakhandas DocType: Email Account,Enable Incoming,Įjungti Sąlygos straipsnį apps/frappe/frappe/core/doctype/version/version_view.html,Danger,pavojus -apps/frappe/frappe/www/login.py,Email Address,Elektroninio pašto adresas +DocType: Address,Email Address,Elektroninio pašto adresas DocType: Workflow State,th-large,TH-didelis DocType: Communication,Unread Notification Sent,Neperskaityta išsiųstą pranešimą apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksportas neleidžiama. Jums reikia {0} vaidmenį eksportui. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktai variantai, pavyzdžiui, "Pardavimų užklausos Pagalba užklausos" ir tt kiekvienas į naują eilutę ar atskirdami juos kableliais." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Pridėti žymą ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portretas -DocType: Data Migration Run,Insert,Įdėti +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Įdėti apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Leisti „Google“ disko prieigą apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Pasirinkite {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Įveskite pagrindinį URL @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,prieš 1 m 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ą DocType: Company History,Company History,Įmonės istorija -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Atstatyti +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Atstatyti DocType: Workflow State,volume-up,pagarsink apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,"Webhoks, skambinantys API užklausas į žiniatinklio programas" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Rodyti „Traceback“ DocType: DocType,Default Print Format,Numatytoji spausdinimo formatas DocType: Workflow State,Tags,Žymos apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nėra: pabaiga Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} laukelis negali būti nustatyti kaip unikalus {1}, nes yra ne unikalus esamos gamtos vertybės" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentų tipai +DocType: Global Search Settings,Document Types,Dokumentų tipai DocType: Address,Jammu and Kashmir,Džamu ir Kašmyras DocType: Workflow,Workflow State Field,Eigos būseną laukas -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sąranka> vartotojas DocType: Language,Guest,Svečias DocType: DocType,Title Field,Pavadinimas laukas DocType: Error Log,Error Log,klaida Prisijungti @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Pakartoja, pavyzdžiui, "abcabcabc" yra tik šiek tiek sunkiau atspėti nei "ABC"" DocType: Notification,Channel,Kanalas apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Jei manote, kad tai yra neleistinas, prašome pakeisti administratoriaus slaptažodį." +DocType: Data Import Beta,Data Import Beta,Duomenų importavimo beta versija apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} yra privalomi DocType: Assignment Rule,Assignment Rules,Paskyrimo taisyklės DocType: Workflow State,eject,kraustyti @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Darbo eigos Veiksmo pavadin apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE negali būti sujungtos DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ne zip failą +DocType: Global Search DocType,Global Search DocType,Visuotinės paieškos „DocType“ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                              New {{ doc.doctype }} #{{ doc.name }}
                                                              ","Norėdami pridėti dinaminį temą, naudokite jinja žymes kaip
                                                               New {{ doc.doctype }} #{{ doc.name }} 
                                                              " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc renginys apps/frappe/frappe/public/js/frappe/utils/user.js,You,Tu DocType: Braintree Settings,Braintree Settings,"Braintree" nustatymai +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Sėkmingai sukurti {0} įrašai. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Išsaugoti filtrą DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Negalima ištrinti {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Įveskite URL parametrą p apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Šiam dokumentui sukurtas automatinis pakartojimas apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Peržiūrėkite ataskaitą savo naršyklėje apps/frappe/frappe/config/desk.py,Event and other calendars.,Renginių ir kiti kalendoriai. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 eilutė privaloma) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Visi laukai yra būtini pateikti komentarą. DocType: Custom Script,Adds a client custom script to a DocType,Prideda kliento pasirinktinį scenarijų „DocType“ DocType: Print Settings,Printer Name,Spausdintuvo pavadinimas @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Masiniai Atnaujinti DocType: Workflow State,chevron-up,"Chevron viršų DocType: DocType,Allow Guest to View,Leiskite Svečių to Peržiūrėti apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} neturėtų būti tas pats kaip {1} -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. Diapazonams naudokite 5:10 (vertėms nuo 5 iki 10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Ištrinti {0} elementus visam laikui? apps/frappe/frappe/utils/oauth.py,Not Allowed,Neleidžiama @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,displėjus DocType: Email Group,Total Subscribers,Iš viso žiūrovai apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Populiariausia {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Eilutės numeris apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jei vaidmuo neturi prieigos 0 lygio, tada didesnis lygis yra beprasmiška." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Išsaugoti kaip DocType: Comment,Seen,Žiūrint @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Apibrėžia darbo eigos būsenas ir taisykles dokumentu. DocType: Workflow State,Filter,Filtras @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Uždaryta DocType: Blog Settings,Blog Title,Dienoraštis Pavadinimas apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standartiniai vaidmenys negali būti išjungtas apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Pokalbio tipas +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Žemėlapio stulpeliai DocType: Address,Mizoram,Mizoramas DocType: Newsletter,Newsletter,Naujienlaiškis apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Negalite naudoti sub-užklausą tvarka pagal @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Pridėti stulpelį apps/frappe/frappe/www/contact.html,Your email address,Jūsų elektroninio pašto adresas DocType: Desktop Icon,Module,modulis +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Sėkmingai atnaujinti {0} įrašai iš {1}. DocType: Notification,Send Alert On,Siųsti pasiruošęs DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Tinkinti etiketės, spausdinimo Slėpti, pagal nutylėjimą ir tt" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Atidaromi failai ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Vartotoj DocType: System Settings,Currency Precision,valiuta Tikslios DocType: System Settings,Currency Precision,valiuta Tikslios apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Kitas sandoris blokuoja šį vieną. Bandykite dar kartą per kelias sekundes. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Išvalyti filtrus DocType: Test Runner,App,Programos apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Priedai negalėjo būti teisingai susieti su nauju dokumentu DocType: Chat Message Attachment,Attachment,areštas @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nepavyko iš apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","„Google“ kalendorius - Nepavyko atnaujinti {0} įvykio „Google“ kalendoriuje, klaidos kodas {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Paieška arba įveskite komandą DocType: Activity Log,Timeline Name,Chronologija Vardas +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Tik vienas {0} gali būti nustatytas kaip pagrindinis. DocType: Email Account,e.g. smtp.gmail.com,pvz smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Įdėti naują taisyklę DocType: Contact,Sales Master Manager,Pardavimų magistras direktorius @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP vidurinio vardo laukas apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importuojama {0} iš {1} DocType: GCalendar Account,Allow GCalendar Access,Leisti "GCalendar" prieigą -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} yra privalomas laukas +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} yra privalomas laukas apps/frappe/frappe/templates/includes/login/login.js,Login token required,Reikalingas prisijungimo raktas apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mėnesio reitingas: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Pasirinkite kelis sąrašo elementus @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Nepavyko prisijungti: {0 apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Žodį vieną patį yra lengva atspėti. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automatinis priskyrimas nepavyko: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Paieška... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Prašome pasirinkti kompaniją apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Sujungimas yra galimas tik tarp grupės iki grupės arba lapų mazgas iki Leaf mazgo apps/frappe/frappe/utils/file_manager.py,Added {0},Pridėta {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Nėra atitinkančių įrašų. Paieška kažką naujo @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,„OAuth“ kliento ID DocType: Auto Repeat,Subject,tema apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Atgal į stalą DocType: Web Form,Amount Based On Field,Suma pagal lauko -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Vartotojas yra privalomas Share DocType: DocField,Hidden,Paslėptas DocType: Web Form,Allow Incomplete Forms,Leiskite neišsami Forms @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ir {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Pradėkite pokalbį. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Visada pridėti "Juodraštis" kategorija spausdinimo dokumentų projektų apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Pranešimo klaida: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Prieš {0} metus (-ių) DocType: Data Migration Run,Current Mapping Start,Dabartinė žemėlapių pradžia apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Laiškas buvo pažymėtas kaip šlamštas DocType: Comment,Website Manager,Interneto svetainė direktorius @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,brūkšninis kodas apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Sub-užklausos ar funkcijos naudojimas yra ribojamas apps/frappe/frappe/config/customization.py,Add your own translations,Pridėti savo vertimo DocType: Country,Country Name,šalies pavadinimas +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Tuščias šablonas DocType: About Us Team Member,About Us Team Member,Apie mus komandos narys apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Leidimai yra nustatyti vaidmenis ir dokumentų tipai (vadinami DocTypes) Nustatydami teises kaip skaityti, rašyti, kurti, ištrinti, teikia, atšaukti pakeisti, ataskaita, importas, eksportas, Spausdinti, elektroninio pašto adresą ir nustatyti vartotojo Permissions." DocType: Event,Wednesday,trečiadienis @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,Interneto svetainė Tema nuor DocType: Web Form,Sidebar Items,Sidebar daiktai DocType: Web Form,Show as Grid,Rodyti kaip tinklelis apps/frappe/frappe/installer.py,App {0} already installed,Programa {0} jau įdiegta +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Naudotojai, priskirti referenciniam dokumentui, gaus taškus." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Nėra peržiūros DocType: Workflow State,exclamation-sign,šauktukas-ženklas apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Neišpakuoti {0} failai @@ -605,6 +620,7 @@ DocType: Notification,Days Before,dienų iki apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dienos įvykiai turėtų būti baigti tą pačią dieną. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redaguoti... DocType: Workflow State,volume-down,Kiekis apačią +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Prieiga neleidžiama iš šio IP adreso 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 @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Programuotojas apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Sukurta apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} iš eilės {1} negali turėti abiejų URL ir vaiko daiktus +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Šiose lentelėse turėtų būti bent viena eilutė: {0} DocType: Print Format,Default Print Language,Numatytoji spausdinimo kalba apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Protėviai apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Šaknis {0} ištrinti negalima @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_ blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,kariuomenė +DocType: Data Import Beta,Import File,Importuoti failą apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Skiltis {0} jau egzistuoja. DocType: ToDo,High,aukštas apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Naujas įvykis @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,Siųsti pranešimus apie el. apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne kūrėjo režimu apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Failo atsarginė kopija paruošta -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maksimalūs leidžiami taškai padauginus taškus iš daugiklio vertės (pastaba: neribotai vertei nustatykite 0) DocType: DocField,In Global Search,Global paieška DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,įtrauka kairiajame @@ -775,6 +791,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Vartotojo {0} "jau turi vaidmenį" {1} " DocType: System Settings,Two Factor Authentication method,Du faktoriaus autentifikavimo metodai apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Pirmiausia nustatykite vardą ir įrašykite įrašą. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 įrašai apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Dalijamasi su {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Atsisakyti DocType: View Log,Reference Name,Nuorodoje @@ -825,6 +842,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Stebėti el. Pašto būseną DocType: Note,Notify Users On Every Login,Praneškite Vartotojai kiekvieno prisijungimo metu DocType: Note,Notify Users On Every Login,Praneškite Vartotojai kiekvieno prisijungimo metu +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,{0} stulpelio negalima sutapti su jokiu lauku +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Sėkmingai atnaujinti {0} įrašai. DocType: PayPal Settings,API Password,API Slaptažodžių apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Įveskite "python" modulį arba pasirinkite jungties tipą apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Nazwapola nenustatyti Custom Field @@ -853,9 +872,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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ė apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplicate vardas {0} {1} -DocType: Email Queue,Retry,Dar kartą pabandyti +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Dar kartą pabandyti +DocType: Contact Phone,Number,Numeris DocType: Web Form Field,Web Form Field,Interneto formos laukas apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Jūs turite naują pranešimą 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).","Palyginimui naudokite> 5, <10 arba = 324. Diapazonams naudokite 5:10 (vertėms nuo 5 iki 10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Redaguoti HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Įveskite nukreipimo URL apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -881,7 +902,7 @@ DocType: Notification,View Properties (via Customize Form),Peržiūrėti objektu apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Spustelėkite failą, kad jį pasirinktumėte." DocType: Note Seen By,Note Seen By,Pastaba matyti apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Stenkitės naudoti ilgesnį klaviatūros modelį su daugiau vijų -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Lyderių +,LeaderBoard,Lyderių DocType: DocType,Default Sort Order,Numatytoji rūšiavimo tvarka DocType: Address,Rajasthan,Radžastano DocType: Email Template,Email Reply Help,Siųsti el. Atsakymą Pagalba @@ -916,6 +937,7 @@ apps/frappe/frappe/utils/data.py,Cent,centas apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,rašyti laišką apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Narių eigos (pvz projektas, patvirtintas, atšaukta)." DocType: Print Settings,Allow Print for Draft,Leiskite Spausdinti projekto +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/link_selector.js,Set Quantity,nustatytas kiekis apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Pateikti šį dokumentą patvirtinti DocType: Contact,Unsubscribed,neišplatintos @@ -947,6 +969,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organizacinis vienetas vart ,Transaction Log Report,Sandorių žurnalo ataskaita DocType: Custom DocPerm,Custom DocPerm,Pasirinktinis DocPerm DocType: Newsletter,Send Unsubscribe Link,Siųsti Atsisakyti Link +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Yra keletas susietų įrašų, kuriuos reikia sukurti, kad galėtume importuoti jūsų failą. Ar norite automatiškai sukurti šiuos trūkstamus įrašus?" DocType: Access Log,Method,metodas DocType: Report,Script Report,scenarijaus ataskaita DocType: OAuth Authorization Code,Scopes,Monokliai @@ -988,6 +1011,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Įkelta sėkmingai apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Jūs esate prisijungę prie interneto. DocType: Social Login Key,Enable Social Login,Įgalinti socialinį prisijungimą +DocType: Data Import Beta,Warnings,Įspėjimai DocType: Communication,Event,renginys apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Apie {0}, {1} rašė:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Negalite ištrinti standartinis lauką. Galite paslėpti jį, jei norite" @@ -1043,6 +1067,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Įdėkite DocType: Kanban Board Column,Blue,mėlynas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Visi tinkinimo bus pašalintas. Prašome patvirtinti. DocType: Page,Page HTML,HTML puslapyje +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Eksportuoti sugadintas eiles apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Grupės pavadinimas negali būti tuščias. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Daugiau mazgai gali būti kuriamos tik pagal "grupė" tipo mazgų DocType: SMS Parameter,Header,antraštė @@ -1082,13 +1107,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Užklausos laikas baigėsi apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Įgalinti / išjungti domenus DocType: Role Permission for Page and Report,Allow Roles,Leiskite Vaidmenys +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Sėkmingai importuoti {0} įrašai iš {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Paprastas Python išraiška, pavyzdys: būsena („Neteisinga“)" DocType: User,Last Active,Lankėsi DocType: Email Account,SMTP Settings for outgoing emails,SMTP parametrai išeinančių laiškų apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,pasirinkti DocType: Data Export,Filter List,Filtrų sąrašas DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Jūsų slaptažodis buvo atnaujintas. Čia yra jūsų naują slaptažodį 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 @@ -1097,7 +1122,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Vartotojo ID DocType: Communication,Sent,siunčiami DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administracija DocType: User,Simultaneous Sessions,Sinchroninio posėdžiai DocType: Social Login Key,Client Credentials,klientų kvalifikaciniai @@ -1129,7 +1153,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Atnauji apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,meistras DocType: DocType,User Cannot Create,Vartotojas negali Sukurti apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Sėkmingai padaryta -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Aplankas {0} neegzistuoja apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ZMI prieiga yra patvirtintas! DocType: Customize Form,Enter Form Type,Įveskite formos tipas DocType: Google Drive,Authorize Google Drive Access,Įgalioti „Google“ disko prieigą @@ -1137,7 +1160,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Nėra įrašų pažymėti. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,pašalinti laukas apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Jūs nesate prisijungę prie interneto. Pakartotinai pabandykite. -DocType: User,Send Password Update Notification,Siųsti slaptažodį Pranešimas Update apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Leidimas dokumentų tipas, tipas. Būk atsargus!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Individualus formatai Spausdinimas, elektroninio pašto" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} suma @@ -1223,6 +1245,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Neteisingas patvirti apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,„Google“ kontaktų integracija neleidžiama. DocType: Assignment Rule,Description,Prekės ir paslaugos pavadinimas DocType: Print Settings,Repeat Header and Footer in PDF,Pakartokite parašą PDF formate +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Nesėkmė DocType: Address Template,Is Default,numatytoji DocType: Data Migration Connector,Connector Type,Jungties tipas apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Stulpelio pavadinimas gali būti netuščias @@ -1235,6 +1258,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Eikite į {0} puslap DocType: LDAP Settings,Password for Base DN,Slaptažodis Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,stalo laukas 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/model/document.py,Action Failed,veiksmas Nepavyko apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,vartotojui @@ -1288,6 +1312,7 @@ DocType: Print Settings,Enable Raw Printing,Įgalinti neapdorotą spausdinimą DocType: Website Route Redirect,Source,šaltinis apps/frappe/frappe/templates/includes/list/filters.html,clear,aiškus apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Baigta +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sąranka> vartotojas DocType: Prepared Report,Filter Values,Filtro vertės DocType: Communication,User Tags,Vartotojo Žymos DocType: Data Migration Run,Fail,Nepavyko @@ -1344,6 +1369,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Seki ,Activity,veikla DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Pagalba: nukreipti į kitą įrašą į sistemą, naudokite "# Forma / pastaba / [Pastaba pavadinimas]", kaip Link URL. (Nenaudokite "http: //")" DocType: User Permission,Allow,Leiskite +DocType: Data Import Beta,Update Existing Records,Atnaujinkite esamus įrašus apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Leiskite išvengti pakartotinių žodžius ir simbolius DocType: Energy Point Rule,Energy Point Rule,Energijos taško taisyklė DocType: Communication,Delayed,atidėtas @@ -1356,9 +1382,7 @@ DocType: Milestone,Track Field,Bėgių laukas DocType: Notification,Set Property After Alert,Nustatyti Turto Po Uždaryti apps/frappe/frappe/config/customization.py,Add fields to forms.,Pridėti laukus formas. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Atrodo, kad kažkas yra negerai su šiuo svetainės Paypal konfigūracijos." -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/sidebar/review.js,Add Review,Pridėti apžvalgą -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Šrifto dydis (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Iš tinkinimo formos leidžiama tinkinti tik standartinius „DocTypes“. DocType: Email Account,Sendgrid,Sendgrid @@ -1395,6 +1419,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Atsiprašau! Jūs negalite trinti automatiškai sugeneruotus komentarų DocType: Google Settings,Used For Google Maps Integration.,Naudojama „Google Maps“ integracijai. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,nuoroda dokumentų tipas +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Įrašai nebus eksportuojami DocType: User,System User,sistemos dalyvis DocType: Report,Is Standard,Ar Standartinė DocType: Desktop Icon,_report,_report @@ -1410,6 +1435,7 @@ DocType: Workflow State,minus-sign,minus ženklas apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nerastas apps/frappe/frappe/www/printview.py,No {0} permission,Nėra {0} leidimas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksporto Custom leidimai +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nerasta daiktų. DocType: Data Export,Fields Multicheck,Laukai Multicheck DocType: Activity Log,Login,Prisijungti DocType: Web Form,Payments,Mokėjimai @@ -1470,8 +1496,9 @@ DocType: Address,Postal,pašto DocType: Email Account,Default Incoming,numatytasis Priimamojo DocType: Workflow State,repeat,pakartoti DocType: Website Settings,Banner,vėliava +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vertė turi būti viena iš {0} DocType: Role,"If disabled, this role will be removed from all users.","Jei išjungta, šis vaidmuo bus pašalintos iš visų vartotojų." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Eikite į {0} sąrašą +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Eikite į {0} sąrašą 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" @@ -1485,6 +1512,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Vietinis lauko pavadinima DocType: DocType,Track Changes,Kurso pakeitimai DocType: Workflow State,Check,Tikrinti DocType: Chat Profile,Offline,Atsijungęs +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Sėkmingai importuota {0} DocType: User,API Key,"API raktas DocType: Email Account,Send unsubscribe message in email,Siųsti Atsisakyti pranešimą elektroniniu paštu apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Redaguoti Pavadinimas @@ -1511,11 +1539,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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ų apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} jau priskyrė numatytąją vertę {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                              No results found for '

                                                              ,

                                                              Paieškos rezultatų nerasta

                                                              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 @@ -1536,8 +1564,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sąranka> Vartotojo leidimai DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP grupės žemėlapis DocType: Dashboard Chart,Chart Options,Diagramos parinktys +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Stulpelis be pavadinimo apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} iš {1} ir {2} į eilutėse # {3} DocType: Communication,Expired,baigėsi apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Atrodo, kad naudojamas tokenas yra neteisingas!" @@ -1547,6 +1577,7 @@ DocType: DocType,System,sistema DocType: Web Form,Max Attachment Size (in MB),Maksimalus priedo dydis (MB) apps/frappe/frappe/www/login.html,Have an account? Login,Turite sąskaitą? Prisijungti DocType: Workflow State,arrow-down,rodyklė žemyn +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0} eilutė apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Vartotojas neleidžiama ištrinti {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} iš {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Atnaujinta @@ -1564,6 +1595,7 @@ DocType: Custom Role,Custom Role,Pasirinktinis vaidmuo apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Pagrindinis / Testas Aplankas 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Įveskite savo slaptažodį DocType: Dropbox Settings,Dropbox Access Secret,ZMI Prieiga paslaptis +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Privaloma) 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. @@ -1638,6 +1670,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Rodyti inf apps/frappe/frappe/desk/form/assign_to.py,New Message,Nauja žinutė DocType: File,Preview HTML,Peržiūrėti HTML DocType: Desktop Icon,query-report,Užklausa-ataskaita +DocType: Data Import Beta,Template Warnings,Šablono įspėjimai apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtrai išsaugotas DocType: DocField,Percent,procentai apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Prašome nustatyti filtrai @@ -1659,6 +1692,7 @@ DocType: Custom Field,Custom,paprotys DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jei įjungta, vartotojai, kurie prisijungs iš riboto IP adreso, nebus paraginti "Two Factor Auth"" DocType: Auto Repeat,Get Contacts,Gaukite kontaktus apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},"Postus, filed under {0}" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Praleidžiant stulpelį be pavadinimo DocType: Notification,Send alert if date matches this field's value,"Siųsti perspėjimą, jei data atitinka šioje srityje vertę" DocType: Workflow,Transitions,perėjimai apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} ir {2} @@ -1682,6 +1716,7 @@ DocType: Workflow State,step-backward,žingsnis atgal apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Prašome nustatyti Dropbox prieigos raktus į savo svetainę config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,"Ištrinti šį įrašą, kad būtų galima siųsti į šį elektroninio pašto adresą" +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Jei nestandartinis prievadas (pvz., POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Tinkinkite sparčiuosius klavišus apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tik privalomi laukai yra būtini naujų įrašų. Jūs galite ištrinti neprivalomi stulpelius, jei norite." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Rodyti daugiau veiklos @@ -1789,7 +1824,9 @@ DocType: Note,Seen By Table,Matyti lentelėje apps/frappe/frappe/www/third_party_apps.html,Logged in,Prisijungęs apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Numatytasis siuntimas ir Gautieji DocType: System Settings,OTP App,OTP programa +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Sėkmingai atnaujintas {0} įrašas iš {1}. DocType: Google Drive,Send Email for Successful Backup,Siųsti sėkmingo atsarginio kopijavimo el. Laišką +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Tvarkaraštis neaktyvus. Neįmanoma importuoti duomenų. DocType: Print Settings,Letter,laiškas DocType: DocType,"Naming Options:
                                                              1. field:[fieldname] - By Field
                                                              2. naming_series: - By Naming Series (field called naming_series must be present
                                                              3. Prompt - Prompt user for a name
                                                              4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                              5. @@ -1803,6 +1840,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,Energijos taško nustatymai DocType: Async Task,Succeeded,pavyko apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Privalomi laukeliai reikalingi {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                No results found for '

                                                                ,

                                                                Paieškos rezultatų nerasta

                                                                apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Atstatyti Leidimai {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Vartotojai ir leidimai DocType: S3 Backup Settings,S3 Backup Settings,S3 atsarginių kopijų nustatymai @@ -1873,6 +1911,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,į DocType: Notification,Value Change,Reikšmė pokytis DocType: Google Contacts,Authorize Google Contacts Access,Įgalioti „Google“ kontaktų prieigą apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Rodomi tik skaitiniai laukai iš ataskaitos +DocType: Data Import Beta,Import Type,Importo tipas DocType: Access Log,HTML Page,HTML puslapis DocType: Address,Subsidiary,filialas apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Bandoma prisijungti prie QZ dėklo ... @@ -1883,7 +1922,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Neteisinga DocType: Custom DocPerm,Write,rašyti apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Tik administratorius gali sukurti užklausa / script ataskaitos apps/frappe/frappe/public/js/frappe/form/save.js,Updating,atnaujinimas -DocType: File,Preview,Peržiūrėti +DocType: Data Import Beta,Preview,Peržiūrėti apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Laukas "vertė" yra privalomas. Prašome nurodyti vertę turi būti atnaujintas DocType: Customize Form,Use this fieldname to generate title,Naudokite šį nazwapola generuoti titulą apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importas laišką iš @@ -1968,6 +2007,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Naršyklė nep DocType: Social Login Key,Client URLs,Kliento URL apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Kai trūksta informacijos apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} sėkmingai sukurtas +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Praleidžiamas {0} iš {1}, {2}" DocType: Custom DocPerm,Cancel,Atšaukti apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Masinis ištrynimas apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Failo {0} neegzistuoja @@ -1995,7 +2035,6 @@ DocType: GCalendar Account,Session Token,Sesijos ženklais DocType: Currency,Symbol,simbolis apps/frappe/frappe/model/base_document.py,Row #{0}:,Eilutės # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Patvirtinkite duomenų ištrynimą -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Naujas slaptažodis išsiųstas apps/frappe/frappe/auth.py,Login not allowed at this time,Prisijungti neleidžiama šiuo metu DocType: Data Migration Run,Current Mapping Action,Dabartinis kartografavimo veiksmas DocType: Dashboard Chart Source,Source Name,šaltinis Vardas @@ -2008,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pris apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Paskui DocType: LDAP Settings,LDAP Email Field,LDAP paštas laukas apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Sąrašas +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Eksportuoti {0} įrašus apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Jau vartotojo Darbų sąrašas DocType: User Email,Enable Outgoing,Įjungti išeinantis DocType: Address,Fax,faksas @@ -2067,8 +2107,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Spausdinti dokumentus apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Peršok į lauką DocType: Contact Us Settings,Forward To Email Address,Perduoti pašto adresas +DocType: Contact Phone,Is Primary Phone,Yra pagrindinis telefonas apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Siųskite el. Laišką adresu {0}, kad susietumėte jį čia." DocType: Auto Email Report,Weekdays,Darbo dienomis +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} įrašai bus eksportuoti apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Pavadinimas laukas turi būti galiojantis nazwapola DocType: Post Comment,Post Comment,Paskelbti komentarą apps/frappe/frappe/config/core.py,Documents,Dokumentai @@ -2087,7 +2129,9 @@ eval:doc.age>18","Šis laukas bus rodomas tik tada, jei čia apibrėžta nazw DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,šiandien apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,šiandien +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kai jūs turite nustatyti tai, vartotojai bus galima tik prieigos dokumentus (pvz., Bloge), kur nuoroda egzistuoja (pvz., Blogger ")." +DocType: Data Import Beta,Submit After Import,Pateikti po importavimo DocType: Error Log,Log of Scheduler Errors,Prisijungti nuo Scheduler klaidos DocType: User,Bio,Biografija DocType: OAuth Client,App Client Secret,Programos Klientas paslaptis @@ -2106,10 +2150,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Išjungti Klientų registracija nurodo Prisijungti puslapyje apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Priskirta / savininkas DocType: Workflow State,arrow-left,rodyklė kairę +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Eksportuoti 1 įrašą DocType: Workflow State,fullscreen,per visą ekraną DocType: Chat Token,Chat Token,Pokalbio ženklas apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Kurti diagramą apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Neimportuoti DocType: Web Page,Center,centras DocType: Notification,Value To Be Set,Vertė turi būti nustatyta apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Redaguoti {0} @@ -2129,6 +2175,7 @@ DocType: Print Format,Show Section Headings,Rodyti skirsnis Veiklos sritys DocType: Bulk Update,Limit,riba apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},"Gavome prašymą ištrinti {0} duomenis, susijusius su: {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Pridėti naują skyrių +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtruoti įrašai apps/frappe/frappe/www/printview.py,No template found at path: {0},Ne šablonas rasti kelią: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nėra paštas paskyra DocType: Comment,Cancelled,Atšauktas @@ -2216,10 +2263,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Visuotinės paieškos dokumentų tipų atstatymas. ,Lead Conversion Time,Pagrindinis konversijos laikas apps/frappe/frappe/desk/page/activity/activity.js,Build Report,sukurti ataskaitą DocType: Note,Notify users with a popup when they log in,Praneškite vartotojams iššokantį kai jie prisijungti +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Pagrindinių modulių {0} negalima ieškoti visuotinėje paieškoje. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Atidaryti pokalbį apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} neegzistuoja, pasirinkite naują taikinį sujungti" DocType: Data Migration Connector,Python Module,Python modulis @@ -2236,8 +2286,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Uždaryti 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sąranka> Vartotojo leidimai -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,atnaujinimas +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,atnaujinimas DocType: Transaction Log,Transaction Hash,Sandorio hipisas DocType: Error Snapshot,Snapshot View,Fotografavimo Peržiūrėti apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Prašome įrašyti naujienlaiškį prieš siunčiant @@ -2253,6 +2302,7 @@ DocType: Data Import,In Progress,"Progress" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Eilėje atsarginę kopiją. Tai gali užtrukti keletą minučių iki valandos. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Vartotojo leidimas jau egzistuoja +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},{0} stulpelio atvaizdavimas į {1} lauką apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Peržiūrėti {0} DocType: User,Hourly,Kas valandą apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registruotis OAuth klientų App @@ -2265,7 +2315,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Vartai adresas apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} negali būti "{2}". Ji turėtų būti vienas iš "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},įgyta {0} naudojant automatinę taisyklę {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} arba {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Slaptažodis Atnaujinti DocType: Workflow State,trash,šiukšlės DocType: System Settings,Older backups will be automatically deleted,Senesni kopijavimas bus automatiškai ištrintas apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Neteisingas prieigos raktas ar slapta prieigos raktas. @@ -2294,6 +2343,7 @@ DocType: Address,Preferred Shipping Address,Pageidautina Pristatymas Adresas apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Raide galvos apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} sukurtas šis {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Neleidžiama {0}: {1} {2} eilutėje. Ribotas laukas: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-vakarai-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jei tai bus pažymėta, bus importuotos eilutės su galiojančiais duomenimis, o netinkamos eilutės bus nukreiptos į naują failą, kurį vėliau galėsite importuoti." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentas yra redaguojamas tik vartotojų vaidmenį @@ -2320,6 +2370,7 @@ DocType: Custom Field,Is Mandatory Field,Ar Privalomas laukas DocType: User,Website User,Interneto svetainė Vartotojas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,"Kai kurie stulpeliai gali būti nukirpti spausdinant į PDF. Stenkitės, kad stulpelių skaičius būtų mažesnis nei 10." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,ne lygu +DocType: Data Import Beta,Don't Send Emails,Nesiųskite el. Laiškų DocType: Integration Request,Integration Request Service,Integracija Prašymas Paslaugos DocType: Access Log,Access Log,Prieigos žurnalas DocType: Website Script,Script to attach to all web pages.,Scenarijaus pridėti prie visų tinklalapių. @@ -2360,6 +2411,7 @@ DocType: Contact,Passive,pasyvus DocType: Auto Repeat,Accounts Manager,sąskaitos direktorius apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Paskirtis už {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Jūsų mokėjimas bus atšauktas. +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/views/reports/report_view.js,Select File Type,Pasirinkite Failo tipas apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Peržiūrėti visus DocType: Help Article,Knowledge Base Editor,Žinių bazės redaktorius @@ -2392,6 +2444,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,duomenys apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumento statusas apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Reikalingas patvirtinimas +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Kad galėtume importuoti jūsų failą, reikia sukurti šiuos įrašus." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth autorizavimo kodas apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Neleidžiama importuoti DocType: Deleted Document,Deleted DocType,ištrintas dokumentų tipas @@ -2446,8 +2499,8 @@ DocType: GCalendar Settings,Google API Credentials,"Google" API įgali apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesijos pradžioje Nepavyko apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesijos pradžioje Nepavyko apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Šis el.pašto išsiųstas {0} ir nukopijuoti į {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},pateikė šį dokumentą {0} DocType: Workflow State,th,-oji -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Prieš {0} metus (-ių) DocType: Social Login Key,Provider Name,Tiekėjo pavadinimas apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Sukurti naują {0} DocType: Contact,Google Contacts,„Google“ kontaktai @@ -2455,6 +2508,7 @@ DocType: GCalendar Account,GCalendar Account,"GCalendar" sąskaita DocType: Email Rule,Is Spam,Ar Šlamštas apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Ataskaita {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Atidaryti {0} +DocType: Data Import Beta,Import Warnings,Įspėjimai importuoti DocType: OAuth Client,Default Redirect URI,Numatytasis Nukreipimo URI DocType: Auto Repeat,Recipients,gavėjai DocType: System Settings,Choose authentication method to be used by all users,"Pasirinkite autentifikavimo metodą, kurį naudos visi naudotojai" @@ -2573,6 +2627,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Ataskaita s apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Trumpas "Webhook" klaida DocType: Email Flag Queue,Unread,neskaitytas DocType: Bulk Update,Desk,rašomasis stalas +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Praleidžiantis stulpelis {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtras turi būti kortežas ar sąrašą (A sąrašą) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Rašyti SELECT užklausą. Pastaba rezultatas nėra gaviklį (visi duomenys siunčiami vienu ypu). DocType: Email Account,Attachment Limit (MB),Priedas riba (MB) @@ -2587,6 +2642,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Sukurk naują DocType: Workflow State,chevron-down,"Chevron apačią apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Paštu nesiunčiamas {0} (neišplatintos / išjungta) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,"Pasirinkite laukus, kuriuos norite eksportuoti" DocType: Async Task,Traceback,Atsekti DocType: Currency,Smallest Currency Fraction Value,Mažiausias Valiuta frakcija Vertė apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Rengiame ataskaitą @@ -2595,6 +2651,7 @@ DocType: Workflow State,th-list,TH-sąrašas DocType: Web Page,Enable Comments,Įgalinti komentarus apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Pastabos DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Apriboti vartotoją tik iš šio IP adreso. Keli IP adresai gali būti pridėta atskiriant kableliais. Taip pat priima dalinius IP adresus kaip (111.111.111) +DocType: Data Import Beta,Import Preview,Importuoti peržiūrą DocType: Communication,From,nuo apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Pirmasis Pasirinkite grupę mazgas. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Ieškoti {0} iš {1} @@ -2694,6 +2751,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,tarp DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,eilėje +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sąranka> Tinkinti formą DocType: Braintree Settings,Use Sandbox,Naudokite Smėlio apps/frappe/frappe/utils/goal.py,This month,Šį mėnesį apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nauja Individualizuotos Spausdinti Formatas @@ -2709,6 +2767,7 @@ DocType: Session Default,Session Default,Numatytasis seansas DocType: Chat Room,Last Message,Paskutinė žinutė DocType: OAuth Bearer Token,Access Token,Prieigos raktas DocType: About Us Settings,Org History,org istorija +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Liko apie {0} minučių DocType: Auto Repeat,Next Schedule Date,Kitas tvarkaraščio data DocType: Workflow,Workflow Name,Darbo eigos pavadinimas DocType: DocShare,Notify by Email,Praneškite elektroniniu paštu @@ -2738,6 +2797,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,autorius apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,atnaujinti siuntimas apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,atnaujinti +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Rodyti įspėjimus apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,pirkimo Vartotojas DocType: Data Migration Run,Push Failed,Paspauskite nepavyko @@ -2776,6 +2836,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Išpl apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Jums neleidžiama peržiūrėti naujienų. DocType: User,Interests,Pomėgiai apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,buvo slaptažodžio instrukcijos išsiųstas į jūsų elektroninio pašto +DocType: Energy Point Rule,Allot Points To Assigned Users,Skiria taškus paskirtiems vartotojams apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",0 lygis yra dokumentas lygio leidimus \ aukštesnio lygio lauko lygio leidimus. DocType: Contact Email,Is Primary,Yra pirminis @@ -2799,6 +2860,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,skelbtinas raktas DocType: Stripe Settings,Publishable Key,skelbtinas raktas apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Pradėti importuoti +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Eksporto tipas DocType: Workflow State,circle-arrow-left,apskritimo rodyklės į kairę DocType: System Settings,Force User to Reset Password,Priversti vartotoją iš naujo nustatyti slaptažodį apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Norėdami gauti atnaujintą ataskaitą, spustelėkite {0}." @@ -2812,13 +2874,16 @@ DocType: Contact,Middle Name,Antras vardas DocType: Custom Field,Field Description,Laukelio aprašymas apps/frappe/frappe/model/naming.py,Name not set via Prompt,Vardas nenustatytas per Klausti apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,pašto dėžutę +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Atnaujinamas {0} iš {1}, {2}" DocType: Auto Email Report,Filters Display,Filtrai Rodyti apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Norint atlikti pakeitimą, turi būti laukas „Grozīta iš fronto“." +DocType: Contact,Numbers,Skaičiai apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} įvertino jūsų darbą {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Išsaugoti filtrus DocType: Address,Plant,augalas apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Atsakyti visiems DocType: DocType,Setup,Sąranka +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Visi įrašai DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"El. Pašto adresas, kurio „Google“ kontaktai turi būti sinchronizuojami." DocType: Email Account,Initial Sync Count,Pradinis Sync "Grafas DocType: Workflow State,glass,stiklas @@ -2843,7 +2908,7 @@ DocType: Workflow State,font,šriftas DocType: DocType,Show Preview Popup,Rodyti peržiūros iššokantįjį langą apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Tai yra iš viršaus į 100 bendras slaptažodį. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Prašome įjungti iššokančių langų -DocType: User,Mobile No,Mobilus Nėra +DocType: Contact,Mobile No,Mobilus Nėra DocType: Communication,Text Content,tekstas turinys DocType: Customize Form Field,Is Custom Field,Ar įprastinį lauką DocType: Workflow,"If checked, all other workflows become inactive.","Jei pažymėta, visi kiti darbo eigas tampa neaktyvūs." @@ -2889,6 +2954,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Prid apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Pavadinimas naują spausdinimo formatą apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Įjunkite šoninę juostą DocType: Data Migration Run,Pull Insert,Ištraukite įdėklą +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Maksimalus leistinas taškų skaičius padauginus taškus iš daugiklio vertės (pastaba: neribokite šio lauko, palikite jį tuščią arba nustatykite 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Netinkamas šablonas apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Neteisėta SQL užklausa apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,privalomas: DocType: Chat Message,Mentions,Minima @@ -2903,6 +2971,7 @@ DocType: User Permission,User Permission,Vartotojo leidimas apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Dienoraštis apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Ne Instaliuota apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Parsisiųsti duomenis +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},pakeistos {0} {1} vertės DocType: Workflow State,hand-right,rankų darbo teisė DocType: Website Settings,Subdomain,subdomenas DocType: S3 Backup Settings,Region,regionas @@ -2930,10 +2999,12 @@ DocType: Braintree Settings,Public Key,Viešasis raktas DocType: GSuite Settings,GSuite Settings,GSuite Nustatymai DocType: Address,Links,saitai DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,"Visuose el. Laiškuose, išsiųstuose naudojant šią sąskaitą, šioje sąskaitoje nurodytas el. Pašto adreso vardas naudojamas kaip siuntėjo vardas." +DocType: Energy Point Rule,Field To Check,"Laukas, kurį reikia patikrinti" apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","„Google“ kontaktai - nepavyko atnaujinti kontakto „Google“ kontaktuose {0}, klaidos kodas {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Pasirinkite dokumento tipą. apps/frappe/frappe/model/base_document.py,Value missing for,Vertė trūksta apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Pridėti vaikas +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Importo progresas DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Jei sąlyga bus įvykdyta, vartotojas bus apdovanotas taškais. pvz. doc.status == „Uždaryta“" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Pateikė įrašas negali būti išbrauktas. @@ -2970,6 +3041,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Įgalioti „Google“ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Puslapis ieškote trūksta. Tai gali būti, kad jį perkelti ar ten yra nuorodą klaidos." apps/frappe/frappe/www/404.html,Error Code: {0},Klaidos kodas: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Aprašymas išvardijami puslapį, paprastu tekstu, tik kelias eilutes. (max 140 simbolių)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} yra privalomi laukai DocType: Workflow,Allow Self Approval,Leisti savęs patvirtinimą DocType: Event,Event Category,Įvykio kategorija apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3017,8 +3089,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Pereiti prie DocType: Address,Preferred Billing Address,Pageidautina Atsiskaitymo Adresas apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Per daug rašo viename prašyme. Prašome siųsti mažesnius prašymus apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,„Google“ diskas sukonfigūruotas. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,{0} dokumento tipas buvo pakartotas. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vertybės Pakeitė DocType: Workflow State,arrow-up,rodyklė viršų +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} lentelės eilutėje turėtų būti bent viena eilutė apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Norėdami sukonfigūruoti automatinį kartojimą, įjunkite „Leisti automatinį pakartojimą“ iš {0}." DocType: OAuth Bearer Token,Expires In,galiojimas baigiasi DocType: DocField,Allow on Submit,Leisti Pateikti @@ -3105,6 +3179,7 @@ DocType: Custom Field,Options Help,Nustatymai Pagalba 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 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ų @@ -3122,6 +3197,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verifikacijos kodas DocType: Webhook,Webhook Request,Webhook užklausa apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Nepavyko: {0} ir {1} {2} DocType: Data Migration Mapping,Mapping Type,Žemėlapio tipas +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Pasirinkite Privalomas apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Naršyti apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Nereikia simbolių, skaitmenų ar didžiosiomis raidėmis." DocType: DocField,Currency,valiuta @@ -3152,11 +3228,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Laiško galva paremta apps/frappe/frappe/utils/oauth.py,Token is missing,Ženklas nėra apps/frappe/frappe/www/update-password.html,Set Password,Nustatyti slaptažodį +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Sėkmingai importuoti {0} įrašai. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Pastaba: keitimas Puslapio pavadinimas bus pertrauka ankstesnę URL į šį puslapį. apps/frappe/frappe/utils/file_manager.py,Removed {0},Pašalinta {0} DocType: SMS Settings,SMS Settings,SMS nustatymai DocType: Company History,Highlight,pabrėžti DocType: Dashboard Chart,Sum,Suma +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,per duomenų importavimą DocType: OAuth Provider Settings,Force,jėga apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Paskutinį kartą sinchronizuotas {0} DocType: DocField,Fold,sulankstyti @@ -3193,6 +3271,7 @@ DocType: Workflow State,Home,Namai DocType: OAuth Provider Settings,Auto,Automatinis DocType: System Settings,User can login using Email id or User Name,Vartotojas gali prisijungti naudojant el. Pašto adresą arba vartotojo vardą DocType: Workflow State,question-sign,klausimas-ženklas +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} neleidžiamas apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Lauko "maršrutas" yra privalomas "Web Views" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Įterpti stulpelį prieš {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Šio lauko vartotojui bus suteikiami taškai @@ -3226,6 +3305,7 @@ DocType: Website Settings,Top Bar Items,Viršutinėje juostoje daiktai DocType: Notification,Print Settings,Print Settings DocType: Page,Yes,Taip DocType: DocType,Max Attachments,max Įrangos +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Liko apie {0} sekundžių DocType: Calendar View,End Date Field,Pabaigos data laukas apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Visuotiniai spartieji klavišai DocType: Desktop Icon,Page,puslapis @@ -3338,6 +3418,7 @@ DocType: GSuite Settings,Allow GSuite access,Leiskite GSuite priėjimą DocType: DocType,DESC,mažėjimo DocType: DocType,Naming,Pavadinimų apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Pasirinkti viską +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},{0} stulpelis apps/frappe/frappe/config/customization.py,Custom Translations,Individualizuotos Vertimai apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Progresas apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,pagal Pareigas @@ -3380,11 +3461,13 @@ DocType: Stripe Settings,Stripe Settings,juostele Nustatymai DocType: Stripe Settings,Stripe Settings,juostele Nustatymai DocType: Data Migration Mapping,Data Migration Mapping,Duomenų perkėlimo atvaizdavimas DocType: Auto Email Report,Period,laikotarpis +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Liko apie {0} minučių apps/frappe/frappe/www/login.py,Invalid Login Token,Neteisingas Vartotojas ženklas apps/frappe/frappe/public/js/frappe/chat.js,Discard,Atmesti apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,prieš 1 val DocType: Website Settings,Home Page,Titulinis puslapis DocType: Error Snapshot,Parent Error Snapshot,Tėvų klaidos fotografiją +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Žemėlapių stulpeliai nuo {0} į laukus {1} DocType: Access Log,Filters,Filtrai DocType: Workflow State,share-alt,dalis-Alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Eilėje turėtų būti vienas iš {0} @@ -3404,6 +3487,7 @@ DocType: Calendar View,Start Date Field,Pradžios data laukas DocType: Role,Role Name,vaidmuo Vardas apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Perjungti į Desk apps/frappe/frappe/config/core.py,Script or Query reports,Scenarijaus arba užklausa ataskaitos +DocType: Contact Phone,Is Primary Mobile,Yra pagrindinis mobilusis DocType: Workflow Document State,Workflow Document State,Darbo eigos Dokumento valstybė apps/frappe/frappe/public/js/frappe/request.js,File too big,Failas per didelis apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Pašto paskyros pridėjo kelis kartus @@ -3449,6 +3533,7 @@ DocType: DocField,Float,plūdė DocType: Print Settings,Page Settings,Puslapio nustatymai apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Išsaugoma ... apps/frappe/frappe/www/update-password.html,Invalid Password,Neteisingas slaptažodis +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Sėkmingai importuotas {0} įrašas iš {1}. DocType: Contact,Purchase Master Manager,Pirkimo magistras direktorius apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,"Spustelėkite užrakto piktogramą, kad perjungtumėte viešą / privačią" DocType: Module Def,Module Name,Modulio pavadinimas @@ -3483,6 +3568,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Kai kurios funkcijos gali neveikti jūsų naršyklėje. Atnaujinkite savo naršyklę į naujausią versiją. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Kai kurios funkcijos gali neveikti jūsų naršyklėje. Atnaujinkite savo naršyklę į naujausią versiją. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Nežinau, kreipkitės į "Pagalba"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},atšaukė šį dokumentą {0} DocType: DocType,Comments and Communications will be associated with this linked document,Komentarai ir Ryšių bus susijęs su šiuo susietą dokumentą apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtras... DocType: Workflow State,bold,drąsus @@ -3501,6 +3587,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Įdėti / Val DocType: Comment,Published,paskelbta apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Ačiu už tavo elektroninį laišką DocType: DocField,Small Text,Smulkus šriftas +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Numerio {0} negalima nustatyti kaip pagrindinio telefono, taip pat ir mobiliojo telefono Nr." DocType: Workflow,Allow approval for creator of the document,Leisti patvirtinti dokumento kūrėją apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Išsaugoti ataskaitą DocType: Webhook,on_cancel,on_cancel @@ -3558,6 +3645,7 @@ DocType: Print Settings,PDF Settings,PDF Nustatymai DocType: Kanban Board Column,Column Name,stulpelio pavadinimo DocType: Language,Based On,remiantis DocType: Email Account,"For more information, click here.","Norėdami gauti daugiau informacijos, spustelėkite čia ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Stulpelių skaičius nesutampa su duomenimis apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Nustatyti kaip numatytąjį apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Vykdymo laikas: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Netinkamas įtraukimo kelias @@ -3648,7 +3736,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Įkelkite {0} failų DocType: Deleted Document,GCalendar Sync ID,"GCalendar" sinchronizavimo ID DocType: Prepared Report,Report Start Time,Ataskaitos pradžios laikas -apps/frappe/frappe/config/settings.py,Export Data,Eksporto duomenys +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Eksporto duomenys 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ą. @@ -3666,7 +3754,6 @@ DocType: Report,Disable Prepared Report,Išjungti parengtą ataskaitą apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Naudotojas {0} paprašė ištrinti duomenis apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,"Neteisėta prieiga ženklas. Prašau, pabandykite dar kartą" apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Paraiška buvo atnaujinta į naują versiją, prašome perkraukite šį puslapį" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,"Neprivaloma: Įspėjimo bus siunčiama, jei ši išraiška yra teisinga" DocType: Data Migration Plan,Plan Name,Plano pavadinimas DocType: Print Settings,Print with letterhead,Spausdinti su blanko @@ -3707,6 +3794,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Negalima nustatyti Iš dalies pakeisti be Atšaukti apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Visas puslapis DocType: DocType,Is Child Table,Ar vaikas lentelė +DocType: Data Import Beta,Template Options,Šablono parinktys apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} turi būti vienas iš {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} šiuo metu žiūri šią dokumentą apps/frappe/frappe/config/core.py,Background Email Queue,Fono paštas eilės @@ -3714,7 +3802,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,slaptažodžio DocType: Communication,Opened,atidarytas DocType: Workflow State,chevron-left,"Chevron kairę DocType: Communication,Sending,siuntimas -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Neleidžiama iš šio IP adreso DocType: Website Slideshow,This goes above the slideshow.,Tai eina virš skaidrių peržiūrą. DocType: Contact,Last Name,Pavardė DocType: Event,Private,privatus @@ -3728,7 +3815,6 @@ DocType: Workflow Action,Workflow Action,darbo eigos veiksmas apps/frappe/frappe/utils/bot.py,I found these: ,Radau tai: DocType: Event,Send an email reminder in the morning,Siųsti el priminimą ryte DocType: Blog Post,Published On,paskelbta -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 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} @@ -3749,7 +3835,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,įspėjamasis ženklas DocType: Prepared Report,Prepared Report,Parengta ataskaita apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Įtraukite metažymas į savo tinklalapius -DocType: Contact,Phone Nos,Telefono Nr 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 @@ -3767,6 +3852,7 @@ DocType: Data Migration Connector,Data Migration,Duomenų perkėlimas DocType: User,API Key cannot be regenerated,API raktas negali būti atkurtas apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Kažkas negerai DocType: System Settings,Number Format,Taškų Formatas +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Sėkmingai importuotas {0} įrašas. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Santrauka DocType: Event,Event Participants,Renginio dalyviai DocType: Auto Repeat,Frequency,dažnis @@ -3774,7 +3860,7 @@ DocType: Custom Field,Insert After,Įdėkite Po DocType: Event,Sync with Google Calendar,Sinchronizuoti su „Google“ kalendoriumi DocType: Access Log,Report Name,Ataskaitos pavadinimas DocType: Desktop Icon,Reverse Icon Color,Atvirkštinė Icon spalva -DocType: Notification,Save,Išsaugoti +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Išsaugoti apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Kitas numatytas data apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Priskirkite tam, kuris turi mažiausiai užduočių" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,pozicijoje skyrius @@ -3797,11 +3883,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sąranka> Tinkinti formą 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 DocType: Desktop Icon,Category,Kategorija +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Trūksta {0} vertės {0} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Pridėti kontaktus apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Peizažas apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Kliento pusėje scenarijus plėtiniai JavaScript @@ -3825,6 +3911,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energijos taško atnaujinimas apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Prašome pasirinkti kitą mokėjimo būdą. "PayPal" nepalaiko sandoriams valiuta "{0} ' DocType: Chat Message,Room Type,Kambario tipas +DocType: Data Import Beta,Import Log Preview,Importuoti žurnalo peržiūrą apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Paieška laukas {0} negalioja apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,įkeltas failas DocType: Workflow State,ok-circle,OK-ratas @@ -3893,6 +3980,7 @@ DocType: DocType,Allow Auto Repeat,Leisti automatinį pakartojimą apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Jokių vertybių parodyti DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Elektroninio pašto šablonas +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Sėkmingai atnaujintas {0} įrašas. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Naudotojas {0} neturi prieigos prie doktipo tipo per {1} dokumento vaidmens leidimą apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Tiek prisijungimo vardą ir slaptažodį reikia apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Prašome atnaujinti gauti naujausią dokumentą. diff --git a/frappe/translations/lv.csv b/frappe/translations/lv.csv index 7848ff2a81..9ec55316ab 100644 --- a/frappe/translations/lv.csv +++ b/frappe/translations/lv.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Ir pieejamas jaunas {} izlaidumi šādām lietotnēm apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Lūdzu, izvēlieties laukam." +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Notiek importa faila ielāde ... DocType: Assignment Rule,Last User,Pēdējais lietotājs apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Jaunais uzdevums, {0}, ir piešķirts jums ar {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sesijas noklusējumi ir saglabāti +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Atkārtoti ielādēt failu DocType: Email Queue,Email Queue records.,Email Rindas ieraksti. DocType: Post,Post,Amats DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Ikmēneša DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Ieslēgt Ienākošie apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Briesmas -apps/frappe/frappe/www/login.py,Email Address,E-pasta adrese +DocType: Address,Email Address,E-pasta adrese DocType: Workflow State,th-large,th-liela DocType: Communication,Unread Notification Sent,Nelasītu adresējis apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,"Eksporta nav atļauta. Jums ir nepieciešams, {0} lomu eksportu." @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktlēcas iespējas, piemēram, ""Pārdošanas vaicājumu, Support vaicājumu"" uc katra jaunā rindā vai atdalīti ar komatiem." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Pievienojiet tagu ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrets -DocType: Data Migration Run,Insert,Ievietot +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Ievietot apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Atļaut Google Drive Access apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Izvēlieties {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,"Lūdzu, ievadiet pamata URL" @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 stunda p 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 DocType: Company History,Company History,Uzņēmuma vēsture -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Reset +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Reset DocType: Workflow State,volume-up,tilpums-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,"Webhooks, kas izsauc API pieprasījumus tīmekļa lietotnēs" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Rādīt izsekošanu DocType: DocType,Default Print Format,Default Print Format DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Neviens: End of Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} lauks nevar iestatīt kā unikāla {1}, jo ir neunikālu esošās vērtības" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumentu veidi +DocType: Global Search Settings,Document Types,Dokumentu veidi DocType: Address,Jammu and Kashmir,Džammu un Kašmira DocType: Workflow,Workflow State Field,Workflow Valsts Field -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Iestatīšana> Lietotājs DocType: Language,Guest,Viesis DocType: DocType,Title Field,Nosaukums Field DocType: Error Log,Error Log,kļūda Log @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Atkārtojas, piemēram, "abcabcabc" ir tikai nedaudz grūtāk uzminēt kā "ABC"" DocType: Notification,Channel,Kanāls apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ja jūs domājat, ka tas ir nesankcionēta, lūdzu mainītu administratora paroli." +DocType: Data Import Beta,Data Import Beta,Datu importēšanas beta versija apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} ir obligāta DocType: Assignment Rule,Assignment Rules,Piešķiršanas noteikumi DocType: Workflow State,eject,izgrūst @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Workflow Action Name apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE nevar tikt apvienots DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nav zip fails +DocType: Global Search DocType,Global Search DocType,Globālā meklēšana DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                New {{ doc.doctype }} #{{ doc.name }}
                                                                ","Lai pievienotu dinamisko tēmu, izmantojiet jinja tagus, piemēram,
                                                                 New {{ doc.doctype }} #{{ doc.name }} 
                                                                " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc notikums apps/frappe/frappe/public/js/frappe/utils/user.js,You,Tu DocType: Braintree Settings,Braintree Settings,Braintree iestatījumi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Veiksmīgi izveidoti {0} ieraksti. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Saglabāt filtru DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Nevar izdzēst {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Ievadiet url parametrs zi apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Automātiska atkārtošana izveidota šim dokumentam apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Apskatiet pārskatu savā pārlūkprogrammā apps/frappe/frappe/config/desk.py,Event and other calendars.,Pasākumu un citi kalendāri. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 rinda obligāta) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Visi lauki ir jāiesniedz komentāru. DocType: Custom Script,Adds a client custom script to a DocType,Dokumenta tipam pievieno klienta pielāgotu skriptu DocType: Print Settings,Printer Name,Printera nosaukums @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Bulk Update DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Ļauj Guest View apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} nedrīkst būt tāds pats kā {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Dzēst {0} priekšmetus pastāvīgi? apps/frappe/frappe/utils/oauth.py,Not Allowed,Nav atļauts @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Displejs DocType: Email Group,Total Subscribers,Kopā Reģistrētiem apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Populārākais {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Rindas numurs apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ja loma nav piekļuves pie 0 līmenī, tad augstāks līmenis ir bezjēdzīgas." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Saglabāt kā DocType: Comment,Seen,Seen @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Definē darbplūsmas valstis un noteikumus attiecībā uz dokumentu. DocType: Workflow State,Filter,Filtrs @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Slēgts DocType: Blog Settings,Blog Title,Blog sadaļa apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standarta lomas nevar atspējot apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Tērzēšanas veids +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Karšu kolonnas DocType: Address,Mizoram,Mizorama DocType: Newsletter,Newsletter,Biļetens apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"Nevar izmantot sub-vaicājumu, lai ar" @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Pievienot kolonnu apps/frappe/frappe/www/contact.html,Your email address,Jūsu e-pasta adrese DocType: Desktop Icon,Module,Modulis +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Veiksmīgi atjaunināti {0} ieraksti no {1}. DocType: Notification,Send Alert On,Nosūtīt brīdinājums par DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Pielāgot Label, Print Slēpt, Default uc" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Notiek failu izkraušana ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Lietotā DocType: System Settings,Currency Precision,Valūtu Precizitāte DocType: System Settings,Currency Precision,Valūtu Precizitāte apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,"Vēl viens darījums bloķē šo vienu. Lūdzu, mēģiniet vēlreiz pēc dažām sekundēm." +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Notīrīt filtrus DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Pielikumus nevarēja pareizi saistīt ar jauno dokumentu DocType: Chat Message Attachment,Attachment,Pieķeršanās @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nevar nosūt apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google kalendārs - nevarēja atjaunināt notikumu {0} Google kalendārā, kļūdas kods {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Meklēt vai ierakstiet komandu DocType: Activity Log,Timeline Name,Timeline Name +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Tikai vienu {0} var iestatīt kā galveno. DocType: Email Account,e.g. smtp.gmail.com,piemēram smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Pievienot jaunu noteikumu DocType: Contact,Sales Master Manager,Sales Master vadītājs @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP vidējā nosaukuma lauks apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Tiek importēts {0} no {1} DocType: GCalendar Account,Allow GCalendar Access,Atļaut GCalendar piekļuvi -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} ir obligāts lauks +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ir obligāts lauks apps/frappe/frappe/templates/includes/login/login.js,Login token required,Nepieciešams ieejas atgādinājums apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mēneša rangs: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Atlasiet vairākus saraksta vienumus @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Nevar izveidot savienoju apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Vārds pats par sevi ir viegli uzminēt. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automātiskā piešķiršana neizdevās: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Meklēt... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Lūdzu, izvēlieties Uzņēmums" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Apvienošana ir iespējama tikai starp Group-to-grupai vai Leaf Mezgls-to-Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Pievienots {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Nav atbilstošu ierakstu. Meklēt kaut ko jaunu @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,OAuth klienta ID DocType: Auto Repeat,Subject,Pakļauts apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Atpakaļ pie galda DocType: Web Form,Amount Based On Field,"Summa, pamatojoties uz lauka" -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Lietotājs ir obligāta Share DocType: DocField,Hidden,Apslēpts DocType: Web Form,Allow Incomplete Forms,Atļaut Nepilnīga Veidlapas @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} un {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Sāciet sarunu. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Vienmēr pievienot "projektu" Pozīcija drukāšanas dokumentu projektiem apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Kļūda paziņojumā: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pirms {0} gada (-iem) DocType: Data Migration Run,Current Mapping Start,Pašreizējais kartēšanas sākums apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-pasts ir atzīmēts kā nevēlams DocType: Comment,Website Manager,Mājas lapa vadītājs @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,svītrkoda apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Apakšprasījuma vai funkcijas izmantošana ir ierobežota apps/frappe/frappe/config/customization.py,Add your own translations,Pievienojiet savu tulkojumu DocType: Country,Country Name,Valsts nosaukums +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Tukša veidne DocType: About Us Team Member,About Us Team Member,Par mums komandas biedrs apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Atļaujas ir iestatīts uz Lomas un dokumentu veidi (sauktas DocTypes) Nosakot tiesības, piemēram, lasīt, rakstīt, izveidot un dzēst, Iesniegt, Atcelt, Grozīt, ziņojums, imports, eksports, Print, e-pasta un Set lietotāju atļauju." DocType: Event,Wednesday,Trešdiena @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,Mājas lapa Tēma Image Link DocType: Web Form,Sidebar Items,Sidebar Items DocType: Web Form,Show as Grid,Parādīt kā režģi apps/frappe/frappe/installer.py,App {0} already installed,App {0} jau ir instalēta +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Lietotāji, kas norīkoti atsauces dokumentam, iegūs punktus." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Nav priekšskatījuma DocType: Workflow State,exclamation-sign,izsaukuma-zīme apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Neiesaiņoti {0} faili @@ -605,6 +620,7 @@ DocType: Notification,Days Before,Dienas Pirms apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dienas notikumiem vajadzētu būt pabeigtiem tajā pašā dienā. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Rediģēt ... DocType: Workflow State,volume-down,tilpums uz leju +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Piekļuve nav atļauta no šīs IP adreses 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 @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Attīstītājs apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Izveidots apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} rindā {1} nevar būt gan URL un bērnu preces +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Šīm tabulām vajadzētu būt vismaz vienai rindai: {0} DocType: Print Format,Default Print Language,Noklusējuma drukas valoda apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Priekšņi no apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} nevar izdzēst @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,saimnieks +DocType: Data Import Beta,Import File,Importēt failu apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolonna {0} jau eksistē. DocType: ToDo,High,Augsts apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Jauns notikums @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,Sūtīt paziņojumus par e-pa apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ne izstrādātāja Mode apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Failu dublēšana ir gatava -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maksimālais pieļaujamais punktu skaits pēc punktu reizināšanas ar reizinātāja vērtību (piezīme: ja robeža nav noteikta kā 0) DocType: DocField,In Global Search,In Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,ievilkums kreisajā @@ -775,6 +791,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Lietotājs '{0}' jau ir nozīme '{1}' DocType: System Settings,Two Factor Authentication method,Divu faktoru autentifikācijas metode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Vispirms iestatiet nosaukumu un saglabājiet ierakstu. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ieraksti apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Kopīgi ar {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Atteikties DocType: View Log,Reference Name,Atsauce Name @@ -825,6 +842,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Izsekot e-pasta statusu DocType: Note,Notify Users On Every Login,Informēt lietotāju par katru pieslēgšanās DocType: Note,Notify Users On Every Login,Informēt lietotāju par katru pieslēgšanās +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Kolonnu {0} nevar sakrīt ar nevienu lauku +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Veiksmīgi atjaunināti {0} ieraksti. DocType: PayPal Settings,API Password,API Paroles apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Ievadiet Python moduli vai izvēlieties savienojuma tipu apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,"Fieldname nav noteikts, Custom Field" @@ -853,9 +872,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Dublēt nosaukums {0}{1} -DocType: Email Queue,Retry,Mēģiniet vēlreiz +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Mēģiniet vēlreiz +DocType: Contact Phone,Number,Numurs DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Jums ir jauns ziņojums no: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Rediģēt HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,"Lūdzu, ievadiet novirzīšanas URL" apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -881,7 +902,7 @@ DocType: Notification,View Properties (via Customize Form),View Properties (caur apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Noklikšķiniet uz faila, lai to atlasītu." DocType: Note Seen By,Note Seen By,Piezīme redzams apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Mēģiniet izmantot ilgāku tastatūras modelis ar vairākiem pagriezieniem -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Līderu saraksts +,LeaderBoard,Līderu saraksts DocType: DocType,Default Sort Order,Noklusējuma kārtošanas kārtība DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-pasts Atbildēt Palīdzība @@ -916,6 +937,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cents apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Rakstīt e-pasta apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Valstīm par darbplūsmas (piemēram projekts, Apstiprināts, anulēts)." DocType: Print Settings,Allow Print for Draft,Ļauj Print projektu +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/link_selector.js,Set Quantity,Komplektu skaits apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,"Iesniegt šo dokumentu, lai apstiprinātu" DocType: Contact,Unsubscribed,Atrakstīts @@ -947,6 +969,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Lietotāju organizatoriskā ,Transaction Log Report,Darījumu žurnāla atskaite DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Nosūtīt Atrakstīties saiti +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Lai varētu importēt jūsu failu, ir jāizveido daži saistīti ieraksti. Vai vēlaties automātiski izveidot šādus trūkstošos ierakstus?" DocType: Access Log,Method,Metode DocType: Report,Script Report,Skripts ziņojums DocType: OAuth Authorization Code,Scopes,jomu @@ -988,6 +1011,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Augšupielāde veiksmīgi apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Jūs esat savienots ar internetu. DocType: Social Login Key,Enable Social Login,Iespējot sociālo pieteikšanos +DocType: Data Import Beta,Warnings,Brīdinājumi DocType: Communication,Event,Notikums apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",Par {0}{1} rakstīja: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Nevar izdzēst standarta lauku. Jūs varat paslēpt to, ja jūs vēlaties" @@ -1043,6 +1067,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Ievietot DocType: Kanban Board Column,Blue,Zils apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,"Visi pielāgojumi tiks noņemts. Lūdzu, apstipriniet." DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Eksportēt bojātas rindas apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Grupas nosaukums nevar būt tukšs. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,"Turpmākas mezglus var izveidot tikai ar ""grupa"" tipa mezgliem" DocType: SMS Parameter,Header,Galvene @@ -1082,13 +1107,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Pieprasīt noildze apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Iespējot / atspējot domēnu DocType: Role Permission for Page and Report,Allow Roles,Atļaut lomas +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Veiksmīgi importēti {0} ieraksti no {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Vienkāršs Python izteiciens, piemērs: statuss (“nederīgs”)" DocType: User,Last Active,Last Active DocType: Email Account,SMTP Settings for outgoing emails,SMTP uzstādījumi izejošo e-pastiem apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izvēlēties DocType: Data Export,Filter List,Filtra saraksts DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Jūsu parole ir atjaunināts. Te ir tava jaunā parole 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 @@ -1097,7 +1122,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Lietotāja ID DocType: Communication,Sent,Nosūtīts DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administrācija DocType: User,Simultaneous Sessions,Sinhronā Sessions DocType: Social Login Key,Client Credentials,klientu Kvalifikācijas dati @@ -1129,7 +1153,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Atjauno apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Meistars DocType: DocType,User Cannot Create,Lietotājs nevar izveidot apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Veiksmīgi pabeigts -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Mape {0} neeksistē apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox piekļuve ir apstiprināts! DocType: Customize Form,Enter Form Type,Ievadiet veidlapu veids DocType: Google Drive,Authorize Google Drive Access,Autorizējiet piekļuvi Google diskam @@ -1137,7 +1160,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Nav ierakstu tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,noņemt lauks apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Jums nav savienojuma ar internetu. Vēlreiz mēģiniet vēlreiz. -DocType: User,Send Password Update Notification,Nosūtīt Password atjaunināšanas paziņojumu apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Ļaujot DOCTYPE, DOCTYPE. Esiet uzmanīgi!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Nestandarta formāti drukāšanai, E-pasts" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} summa @@ -1222,6 +1244,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Nepareizs verifikāc apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google kontaktpersonu integrācija ir atspējota. DocType: Assignment Rule,Description,Apraksts DocType: Print Settings,Repeat Header and Footer in PDF,Atkārtojiet Galvene un kājene PDF formātā +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Neveiksme DocType: Address Template,Is Default,Vai Default DocType: Data Migration Connector,Connector Type,Savienotāju tips apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Kolonnas nosaukums nedrīkst būt tukšs @@ -1234,6 +1257,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Dodieties uz {0} lap DocType: LDAP Settings,Password for Base DN,Parole Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,galda Field 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/model/document.py,Action Failed,darbība neizdevās apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,lietotājam @@ -1287,6 +1311,7 @@ DocType: Print Settings,Enable Raw Printing,Iespējot neapstrādātu drukāšanu DocType: Website Route Redirect,Source,Avots apps/frappe/frappe/templates/includes/list/filters.html,clear,skaidrs apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Gatavs +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Iestatīšana> Lietotājs DocType: Prepared Report,Filter Values,Filtra vērtības DocType: Communication,User Tags,Lietotāja birkas DocType: Data Migration Run,Fail,Neveiksme @@ -1343,6 +1368,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Seko ,Activity,Aktivitāte DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Palīdzība: Lai saistīt ar citu ierakstu sistēmā, izmantojiet ""# Form / Note / [Piezīme nosaukums]"", kā Link URL. (Neizmantojiet ""http: //"")" DocType: User Permission,Allow,Atļaut +DocType: Data Import Beta,Update Existing Records,Atjauniniet esošos ierakstus apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Pieņemsim izvairīties atkārtotos vārdus un rakstzīmes DocType: Energy Point Rule,Energy Point Rule,Enerģijas punkta noteikums DocType: Communication,Delayed,Kavējas @@ -1355,9 +1381,7 @@ DocType: Milestone,Track Field,Trases lauks DocType: Notification,Set Property After Alert,Uzstādīt īpašuma Pēc Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Pievienot laukus uz veidlapām. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Izskatās, ka kaut kas nav kārtībā ar šī portāla Paypal konfigurāciju." -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/sidebar/review.js,Add Review,Pievienot pārskatu -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Fonta lielums (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,No Customize Form ir atļauts pielāgot tikai standarta DocTypes. DocType: Email Account,Sendgrid,Sendgrid @@ -1394,6 +1418,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Atvaino! Jūs nevarat izdzēst auto radīto komentārus DocType: Google Settings,Used For Google Maps Integration.,Izmanto Google Maps integrācijai. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Atsauce DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Neviens ieraksts netiks eksportēts DocType: User,System User,System User DocType: Report,Is Standard,Vai Standard DocType: Desktop Icon,_report,_report @@ -1408,6 +1433,7 @@ DocType: Workflow State,minus-sign,mīnus-zīme apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not Found apps/frappe/frappe/www/printview.py,No {0} permission,{0} nav atļaujas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksporta Custom atļaujas +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nav atrasts neviens vienums. DocType: Data Export,Fields Multicheck,Lauki Multicheck DocType: Activity Log,Login,Lietotāja vārds DocType: Web Form,Payments,Maksājumi @@ -1468,8 +1494,9 @@ DocType: Address,Postal,Pasta DocType: Email Account,Default Incoming,Default Ienākošais DocType: Workflow State,repeat,atkārtot DocType: Website Settings,Banner,Karogs +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vērtībai jābūt vienai no {0} DocType: Role,"If disabled, this role will be removed from all users.","Ja izslēgta, šis uzdevums tiks noņemts no visiem lietotājiem." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Dodieties uz {0} sarakstu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Dodieties uz {0} sarakstu 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 @@ -1483,6 +1510,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Vietējais lauka nosaukum DocType: DocType,Track Changes,Track Izmaiņas DocType: Workflow State,Check,Pārbaude DocType: Chat Profile,Offline,Bezsaistē +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} ir veiksmīgi importēts DocType: User,API Key,API atslēga DocType: Email Account,Send unsubscribe message in email,Nosūtīt atrakstīties ziņu e-pastā apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edit Nosaukums @@ -1509,11 +1537,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} jau ir piešķīris noklusējuma vērtību {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                No results found for '

                                                                ,

                                                                Meklēšanas rezultāti netika atrasti

                                                                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 @@ -1534,8 +1562,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Iestatīšana> Lietotāja atļaujas DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP grupas kartēšana DocType: Dashboard Chart,Chart Options,Diagrammas opcijas +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Kolonna bez nosaukuma apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} no {1} līdz {2} rindā # {3} DocType: Communication,Expired,Beidzies apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Šķiet, ka žetons, kuru izmantojat, ir nederīgs!" @@ -1545,6 +1575,7 @@ DocType: DocType,System,Sistēma DocType: Web Form,Max Attachment Size (in MB),Max Pielikums Izmērs (MB) apps/frappe/frappe/www/login.html,Have an account? Login,Ir konts? Pieslēgties DocType: Workflow State,arrow-down,arrow-down +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0}. Rinda apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Lietotājs nav atļauts dzēst {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} no {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Pēdējās izmaiņas: @@ -1562,6 +1593,7 @@ DocType: Custom Role,Custom Role,Custom loma apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Home / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ievadiet paroli DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligāts) 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." @@ -1636,6 +1668,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Rādīt in apps/frappe/frappe/desk/form/assign_to.py,New Message,Jauns ziņojums DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,vaicājumu-pārskats +DocType: Data Import Beta,Template Warnings,Brīdinājumi par veidni apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,saglabāts filtri DocType: DocField,Percent,Procents apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Lūdzu iestatīt filtrus @@ -1657,6 +1690,7 @@ DocType: Custom Field,Custom,Paraža DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ja tas ir iespējots, lietotāji, kuri piesakās no ierobežotas IP adreses, netiks uzaicināti uz divu faktors autoritāti" DocType: Auto Repeat,Get Contacts,Saņemiet kontaktpersonas apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Amatiem iesniegts saskaņā ar {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Izlaižot kolonnu bez nosaukuma DocType: Notification,Send alert if date matches this field's value,"Nosūtīt brīdinājumu, ja diena atbilst šajā jomā vērtību" DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} līdz {2} @@ -1680,6 +1714,7 @@ DocType: Workflow State,step-backward,soli atpakaļ apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Lūdzu noteikt Dropbox piekļuves atslēgas vietnes config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,"Dzēst šo ierakstu, kas ļauj sūtīt uz šo e-pasta adresi" +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ja nestandarta ports (piemēram, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Pielāgot saīsnes apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tikai obligāti lauki ir vajadzīgs jaunām ierakstiem. Jūs varat dzēst neobligātiem kolonnas, ja vēlaties." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Rādīt vairāk aktivitāšu @@ -1787,7 +1822,9 @@ DocType: Note,Seen By Table,Redzams tabulā apps/frappe/frappe/www/third_party_apps.html,Logged in,Pieteicies apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Default sūtīšana un Inbox DocType: System Settings,OTP App,OTP lietotne +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Veiksmīgi atjaunināts {0} ieraksts no {1}. DocType: Google Drive,Send Email for Successful Backup,Sūtīt e-pastu veiksmīgai dublēšanai +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Plānotājs ir neaktīvs. Nevar importēt datus. DocType: Print Settings,Letter,Vēstule DocType: DocType,"Naming Options:
                                                                1. field:[fieldname] - By Field
                                                                2. naming_series: - By Naming Series (field called naming_series must be present
                                                                3. Prompt - Prompt user for a name
                                                                4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                5. @@ -1801,6 +1838,7 @@ DocType: GCalendar Account,Next Sync Token,Nākamais sinhronizācijas lodziņš DocType: Energy Point Settings,Energy Point Settings,Enerģijas punkta iestatījumi DocType: Async Task,Succeeded,Izdevās apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obligāti lauki vajadzīgas {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                  No results found for '

                                                                  ,

                                                                  Meklēšanas rezultāti netika atrasti

                                                                  apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset atļaujas {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Lietotāji un atļaujas DocType: S3 Backup Settings,S3 Backup Settings,S3 dublēšanas iestatījumi @@ -1871,6 +1909,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Uz DocType: Notification,Value Change,Vērtību maiņa DocType: Google Contacts,Authorize Google Contacts Access,Autorizēt piekļuvi Google kontaktpersonām apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Rāda tikai ziņojuma ciparu laukus +DocType: Data Import Beta,Import Type,Importēšanas veids DocType: Access Log,HTML Page,HTML lapa DocType: Address,Subsidiary,Filiāle apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Mēģinājums izveidot savienojumu ar QZ tekni ... @@ -1881,7 +1920,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Nederīga DocType: Custom DocPerm,Write,Rakstīt apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Tikai administrators atļauts izveidot vaicājumu / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Atjaunināšana -DocType: File,Preview,Preview +DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Lauks "vērtība" ir obligāts. Lūdzu, norādiet vērtību jāatjaunina" DocType: Customize Form,Use this fieldname to generate title,Izmantojiet šo fieldname radīt titulu apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importēt e-pastu no @@ -1966,6 +2005,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Pārlūkprogra DocType: Social Login Key,Client URLs,Klientu vietrāži URL apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Daži trūkst informācijas apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} Veiksmīgi izveidots +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Tiek izlaists {0} no {1}, {2}" DocType: Custom DocPerm,Cancel,Atcelt apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Lielapjoma dzēšana apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Failu {0} neeksistē @@ -1993,7 +2033,6 @@ DocType: GCalendar Account,Session Token,Sesijas simbols DocType: Currency,Symbol,Simbols apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Apstipriniet datu dzēšanu -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Jaunā parole pa e-pastu apps/frappe/frappe/auth.py,Login not allowed at this time,Ienākt nav atļauts šajā laikā DocType: Data Migration Run,Current Mapping Action,Pašreizējā kartēšanas darbība DocType: Dashboard Chart Source,Source Name,Source Name @@ -2006,6 +2045,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pies apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Sekoja DocType: LDAP Settings,LDAP Email Field,LDAP Email Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} List +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Eksportēt {0} ierakstus apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Jau lietotāja Lai Do saraksts DocType: User Email,Enable Outgoing,Ieslēgt Izejošie DocType: Address,Fax,Fakss @@ -2065,8 +2105,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Drukas dokumenti apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Pāriet uz lauku DocType: Contact Us Settings,Forward To Email Address,Pāriet uz e-pasta adresi +DocType: Contact Phone,Is Primary Phone,Ir primārais tālrunis apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Nosūtiet e-pastu uz adresi {0}, lai to saistītu šeit." DocType: Auto Email Report,Weekdays,Nedēļas dienas +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} ieraksti tiks eksportēti apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Nosaukums zonai jābūt derīgs fieldname DocType: Post Comment,Post Comment,publicēt komentāru apps/frappe/frappe/config/core.py,Documents,Dokumenti @@ -2085,7 +2127,9 @@ eval:doc.age>18","Šis lauks parādīsies tikai tad, ja šeit noteikts fieldn DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,šodien apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,šodien +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kad esat noteikt šo, lietotāji varēs tikai piekļūt dokumentiem (piem. Blogs Post), kur saikne (piem., Blogger)." +DocType: Data Import Beta,Submit After Import,Iesniegt pēc importēšanas DocType: Error Log,Log of Scheduler Errors,Log plānotājs kļūdas DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App Client Secret @@ -2104,10 +2148,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Atslēgt Klientu Reģistrācija saite Login lapā apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Norīkoti / Owner DocType: Workflow State,arrow-left,arrow-pa kreisi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Eksportēt 1 ierakstu DocType: Workflow State,fullscreen,pilnekrāna DocType: Chat Token,Chat Token,Tērzēšanas zīme apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Izveidot diagrammu apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Neimportēt DocType: Web Page,Center,Centrs DocType: Notification,Value To Be Set,"Vērtība, kas jānosaka" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Rediģēt {0} @@ -2127,6 +2173,7 @@ DocType: Print Format,Show Section Headings,Rādīt sadaļu virsraksti DocType: Bulk Update,Limit,limits apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},"Esam saņēmuši pieprasījumu dzēst {0} datus, kas saistīti ar: {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Pievienot jaunu sadaļu +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrēti ieraksti apps/frappe/frappe/www/printview.py,No template found at path: {0},Nē veidne atrodams ceļš: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nav e-pasta kontu DocType: Comment,Cancelled,Atcelts @@ -2214,10 +2261,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globālās meklēšanas dokumentu tipu atiestatīšana. ,Lead Conversion Time,Vadošais reklāmguvumu laiks apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Veidot ziņojumu DocType: Note,Notify users with a popup when they log in,Paziņot lietotājus ar uznirstošo kad viņi ieiet +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Galvenos moduļus {0} nevar meklēt globālajā meklēšanā. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Atvērt tērzēšanu apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} nepastāv {1}, izvēlieties jaunu mērķi apvienot" DocType: Data Migration Connector,Python Module,Python modulis @@ -2234,8 +2284,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Aizvērt 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Iestatīšana> Lietotāja atļaujas -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Atjaunināt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Atjaunināt DocType: Transaction Log,Transaction Hash,Darījuma maiņa DocType: Error Snapshot,Snapshot View,Momentuzņēmums View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Lūdzu, saglabājiet Izdevumu pirms nosūtīšanas" @@ -2251,6 +2300,7 @@ DocType: Data Import,In Progress,Gaitā apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Rindā backup. Tas var ilgt dažas minūtes līdz stundai. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Lietotāja atļauja jau pastāv +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kartes {0} kartēšana laukā {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Skatīt {0} DocType: User,Hourly,Stundu apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Reģistrēties OAuth Client App @@ -2263,7 +2313,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0}{1} nevar būt ""{2}"". Vajadzētu būt vienam no ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},"ieguvis {0}, izmantojot automātisko noteikumu {1}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} vai {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Paroles Update DocType: Workflow State,trash,atkritumi DocType: System Settings,Older backups will be automatically deleted,Vecāki backups tiks automātiski dzēsts apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Nederīgs piekļuves atslēgas ID vai slepenās piekļuves atslēga. @@ -2292,6 +2341,7 @@ DocType: Address,Preferred Shipping Address,Vēlamā Piegādes adrese apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Ar vēstuli galvu apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} izveidoja šo {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Nav atļauts {0}: {1} rindā {2}. Ierobežots lauks: {3} +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" DocType: S3 Backup Settings,eu-west-1,eu-rietumi-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ja tas ir atzīmēts, tiks importētas rindas ar derīgiem datiem, un nederīgās rindas tiks izmesti jaunā failā, lai jūs varētu importēt vēlāk." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentu var rediģēt tikai lietotājiem lomu @@ -2318,6 +2368,7 @@ DocType: Custom Field,Is Mandatory Field,Ir obligāts lauks DocType: User,Website User,Website User apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,"Dažas kolonnas var tikt nogrieztas, drukājot uz PDF. Centieties, lai kolonnu skaits nepārsniegtu 10." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Ne Vienāds +DocType: Data Import Beta,Don't Send Emails,Nesūtīt e-pastus DocType: Integration Request,Integration Request Service,Integrācija pieprasījums Service DocType: Access Log,Access Log,Piekļuves žurnāls DocType: Website Script,Script to attach to all web pages.,Script pievienot visiem tīmekļa lapām. @@ -2358,6 +2409,7 @@ DocType: Contact,Passive,Pasīvs DocType: Auto Repeat,Accounts Manager,Accounts Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Uzdevums {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Jūsu maksājums tiek atcelts. +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/views/reports/report_view.js,Select File Type,Select File Type apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Apskati visus DocType: Help Article,Knowledge Base Editor,Knowledge Base redaktors @@ -2390,6 +2442,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Dati apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumenta statuss apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Nepieciešams apstiprinājums +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Lai mēs varētu importēt jūsu failu, jāizveido šādi ieraksti." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Autorizācijas kods apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Nav atļauts importēt DocType: Deleted Document,Deleted DocType,svītrots DOCTYPE @@ -2444,8 +2497,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API pilnvaras apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesija Start neizdevās apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesija Start neizdevās apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Šis e-pasts tika nosūtīts uz {0} un kopēti {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},iesniedza šo dokumentu {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pirms {0} gada (-iem) DocType: Social Login Key,Provider Name,Pakalpojuma sniedzēja vārds apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Izveidot jaunu {0} DocType: Contact,Google Contacts,Google kontaktpersonas @@ -2453,6 +2506,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar konts DocType: Email Rule,Is Spam,Vai Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Ziņojums {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Atvērt {0} +DocType: Data Import Beta,Import Warnings,Importa brīdinājumi DocType: OAuth Client,Default Redirect URI,Default Novirzīt URI DocType: Auto Repeat,Recipients,Saņēmēji DocType: System Settings,Choose authentication method to be used by all users,"Izvēlieties autentificēšanas metodi, kas jāizmanto visiem lietotājiem" @@ -2571,6 +2625,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Pārskats ir apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Viegla Webhok kļūda DocType: Email Flag Queue,Unread,neizlasīts DocType: Bulk Update,Desk,Rakstāmgalds +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Izlaižamā kolonna {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtrs ir būt Tuple vai sarakstu (sarakstā) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Uzrakstiet SELECT vaicājumu. Piezīme rezultāts netiek paged (visi dati tiek nosūtīti vienā piegājienā). DocType: Email Account,Attachment Limit (MB),Pielikums Limit (MB) @@ -2585,6 +2640,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Izveidot Jauns DocType: Workflow State,chevron-down,Chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-pasts nav nosūtīts uz {0} (atrakstījies / invalīdi) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,"Atlasiet laukus, kurus eksportēt" DocType: Async Task,Traceback,Izsekot DocType: Currency,Smallest Currency Fraction Value,Mazākais Valūtas Frakcija Value apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Ziņojuma sagatavošana @@ -2593,6 +2649,7 @@ DocType: Workflow State,th-list,th sarakstu DocType: Web Page,Enable Comments,Ieslēgt Komentāri apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Piezīmes DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Ierobežot lietotāju no tikai ar šo IP adresi. Vairākas IP adreses var pievienot, atdalot ar komatiem. Pieņem arī daļējas IP adreses, piemēram, (111.111.111)" +DocType: Data Import Beta,Import Preview,Importēt priekšskatījumu DocType: Communication,From,No apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Izvēlieties grupas mezglu pirmās. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Atrast {0} ir {1} @@ -2692,6 +2749,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Starp DocType: Social Login Key,fairlogin,Fairlogin DocType: Async Task,Queued,Rindā +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Iestatīšana> Pielāgot veidlapu DocType: Braintree Settings,Use Sandbox,Izmantot Sandbox apps/frappe/frappe/utils/goal.py,This month,Šis mēnesis apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format @@ -2707,6 +2765,7 @@ DocType: Session Default,Session Default,Sesijas noklusējums DocType: Chat Room,Last Message,Pēdējais ziņojums DocType: OAuth Bearer Token,Access Token,Access Token DocType: About Us Settings,Org History,Org Vēsture +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Atlikušas apmēram {0} minūtes DocType: Auto Repeat,Next Schedule Date,Nākamā grafika datums DocType: Workflow,Workflow Name,Workflow Name DocType: DocShare,Notify by Email,Paziņot pa e-pastu @@ -2736,6 +2795,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,autors apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,atsākt sūtīšana apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Atjaunot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Rādīt brīdinājumus apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Iegādāties lietotāju DocType: Data Migration Run,Push Failed,Piespiediet neizdevās @@ -2774,6 +2834,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Izvēr apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Jums nav atļauts apskatīt biļetenu. DocType: User,Interests,intereses apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Password Reset instrukcijas nosūtītas uz jūsu e-pastu +DocType: Energy Point Rule,Allot Points To Assigned Users,Piešķirtie punkti piešķirtajiem lietotājiem apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","0. līmenis ir dokuments līmeņa atļaujas, \ augstākiem līmeņiem lauka līmeņa atļaujām." DocType: Contact Email,Is Primary,Ir primārais @@ -2797,6 +2858,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,publicējamā Key DocType: Stripe Settings,Publishable Key,publicējamā Key apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Sākt importēšanu +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Eksporta veids DocType: Workflow State,circle-arrow-left,aplis-arrow-pa kreisi DocType: System Settings,Force User to Reset Password,Piespiest lietotāju atiestatīt paroli apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Lai iegūtu atjauninātu pārskatu, noklikšķiniet uz {0}." @@ -2810,13 +2872,16 @@ DocType: Contact,Middle Name,Otrais vārds DocType: Custom Field,Field Description,Lauka apraksts apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nosaukums nav uzdots ar Prasīt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-pastā +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Notiek {0} no {1}, {2} atjaunināšana" DocType: Auto Email Report,Filters Display,Filtri Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Lai izdarītu labojumu, jābūt klāt laukam “Grozīts_no”." +DocType: Contact,Numbers,Cipari apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} novērtēja jūsu darbu {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Saglabājiet filtrus DocType: Address,Plant,Augs apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Atbildēt visiem DocType: DocType,Setup,Setup +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Visi ieraksti DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-pasta adrese, kuras Google kontakti ir jāsinhronizē." DocType: Email Account,Initial Sync Count,Sākotnējā Sync skaits DocType: Workflow State,glass,stikls @@ -2841,7 +2906,7 @@ DocType: Workflow State,font,fonts DocType: DocType,Show Preview Popup,Rādīt priekšskatījuma uznirstošo logu apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Tas ir top-100 kopējā paroli. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Lūdzu, aktivizējiet pop-ups" -DocType: User,Mobile No,Mobile Nr +DocType: Contact,Mobile No,Mobile Nr DocType: Communication,Text Content,teksta saturs DocType: Customize Form Field,Is Custom Field,Vai Custom Field DocType: Workflow,"If checked, all other workflows become inactive.","Ja ieslēgts, visi pārējie darbplūsmas kļūst neaktīvi." @@ -2887,6 +2952,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Pievi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nosaukums par jauno drukas formātu apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Pārslēgt sānu joslu DocType: Data Migration Run,Pull Insert,Izvelciet Ievieto +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maksimālais pieļaujamais punktu skaits pēc punktu reizināšanas ar reizinātāja vērtību (piezīme: bez ierobežojuma atstājiet šo lauku tukšu vai iestatiet 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Nederīga veidne apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Nelegāls SQL vaicājums apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obligāti: DocType: Chat Message,Mentions,Pieminē @@ -2901,6 +2969,7 @@ DocType: User Permission,User Permission,Lietotāja atļauja apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nav instalēta apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Lejupielādēt ar datiem +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},mainītas vērtības {0} {1} DocType: Workflow State,hand-right,rokas pa labi DocType: Website Settings,Subdomain,Apakšdomēns DocType: S3 Backup Settings,Region,Apgabals @@ -2928,10 +2997,12 @@ DocType: Braintree Settings,Public Key,Publiskā atslēga DocType: GSuite Settings,GSuite Settings,GSuite iestatījumi DocType: Address,Links,Saites DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,"Visiem e-pasta ziņojumiem, kas nosūtīti, izmantojot šo kontu, šajā kontā minētais e-pasta adreses nosaukums tiek izmantots kā Sūtītāja vārds." +DocType: Energy Point Rule,Field To Check,Pārbaudāmais lauks apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google kontaktpersonas - nevarēja atjaunināt kontaktpersonu pakalpojumā Google kontakti {0}, kļūdas kods {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,"Lūdzu, atlasiet dokumenta tipu." apps/frappe/frappe/model/base_document.py,Value missing for,Vērtība pazudis apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Pievienot Child +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Importēšanas progress DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Ja nosacījums ir izpildīts, lietotājs tiks apbalvots ar saņemtajiem punktiem. piem. doc.status == 'Slēgts'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0}{1}: Iesniegtie Record nevar izdzēst. @@ -2968,6 +3039,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizēt piekļuvi G apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Lapā jūs meklējat ir pazudis. Tas varētu būt tāpēc, ka tas ir pārvietots vai ir typo saitē." apps/frappe/frappe/www/404.html,Error Code: {0},Kļūdas kods: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Apraksts sarakstā lapu, vienkāršā tekstā, tikai pāris līnijas. (max 140 zīmes)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ir obligāti aizpildāmie lauki DocType: Workflow,Allow Self Approval,Ļaut pašpārliecinātību DocType: Event,Event Category,Pasākumu kategorija apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3015,8 +3087,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Pārvietot uz DocType: Address,Preferred Billing Address,Vēlamā Norēķinu adrese apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Pārāk daudz raksta vienu pieprasījumu. Lūdzu, sūtiet mazākas pieprasījumus" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google disks ir konfigurēts. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Dokumenta tips {0} ir atkārtots. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vērtības Mainīts DocType: Workflow State,arrow-up,arrow-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Tabulā {0} jābūt vismaz vienai rindai apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Lai konfigurētu automātisko atkārtošanu, no {0} iespējojiet “Atļaut automātisko atkārtošanu”." DocType: OAuth Bearer Token,Expires In,beidzas pēc DocType: DocField,Allow on Submit,Atļaut apstiprināšanas @@ -3103,6 +3177,7 @@ DocType: Custom Field,Options Help,Opcijas Palīdzība 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 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 @@ -3120,6 +3195,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verificēšanas kods DocType: Webhook,Webhook Request,Webhoku pieprasījums apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Neizdevās: {0} uz {1} {2} DocType: Data Migration Mapping,Mapping Type,Kartēšanas veids +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Izvēlieties Obligāti apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Pārlūkot apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Nav nepieciešams simboliem, cipari, vai lielajiem burtiem." DocType: DocField,Currency,Valūta @@ -3150,11 +3226,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,"Vēstules galva, pamatojoties uz" apps/frappe/frappe/utils/oauth.py,Token is missing,Token trūkst apps/frappe/frappe/www/update-password.html,Set Password,Set Password +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} ieraksti ir veiksmīgi importēti. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Piezīme: Mainot lapas nosaukums būs pārtraukums iepriekšējo URL uz šo lapu. apps/frappe/frappe/utils/file_manager.py,Removed {0},Noņemts {0} DocType: SMS Settings,SMS Settings,SMS iestatījumi DocType: Company History,Highlight,Izcelt DocType: Dashboard Chart,Sum,Summa +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,izmantojot datu importēšanu DocType: OAuth Provider Settings,Force,spēks apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Pēdējoreiz sinhronizēts {0} DocType: DocField,Fold,Salocīt @@ -3191,6 +3269,7 @@ DocType: Workflow State,Home,Mājas DocType: OAuth Provider Settings,Auto,auto DocType: System Settings,User can login using Email id or User Name,"Lietotājs var pieteikties, izmantojot e-pasta id vai lietotāja vārdu" DocType: Workflow State,question-sign,Jautājums-zīme +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ir atspējots apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Lauku "maršruts" ir obligāts Web skatījumiem apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Ievietot kolonnu pirms {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Lietotājam no šī lauka tiks piešķirti punkti @@ -3224,6 +3303,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Items DocType: Notification,Print Settings,Drukas iestatījumi DocType: Page,Yes,Jā DocType: DocType,Max Attachments,Max Pielikumi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Atlikušas apmēram {0} sekundes DocType: Calendar View,End Date Field,Beigu datuma lauks apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globālie saīsnes DocType: Desktop Icon,Page,Lappuse @@ -3336,6 +3416,7 @@ DocType: GSuite Settings,Allow GSuite access,Atļaut GSuite piekļuve DocType: DocType,DESC,DESC DocType: DocType,Naming,Nosaucot apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Izvēlēties visu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},{0} kolonna apps/frappe/frappe/config/customization.py,Custom Translations,Custom Translations apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,progress apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,pēc lomas @@ -3378,11 +3459,13 @@ DocType: Stripe Settings,Stripe Settings,svītra iestatījumi DocType: Stripe Settings,Stripe Settings,svītra iestatījumi DocType: Data Migration Mapping,Data Migration Mapping,Datu migrācijas kartēšana DocType: Auto Email Report,Period,Periods +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Atlikušas apmēram {0} minūtes apps/frappe/frappe/www/login.py,Invalid Login Token,Invalid Login Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Izmetiet apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,pirms 1 stundas DocType: Website Settings,Home Page,Mājas lapa DocType: Error Snapshot,Parent Error Snapshot,Parent Kļūda Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Kartes kolonnas no {0} līdz laukiem {1} DocType: Access Log,Filters,Filtri DocType: Workflow State,share-alt,akciju alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Rinda vajadzētu būt viens no {0} @@ -3402,6 +3485,7 @@ DocType: Calendar View,Start Date Field,Sākuma datums lauks DocType: Role,Role Name,Loma Name apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Pārslēgt uz Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script vai vaicājuma ziņojumus +DocType: Contact Phone,Is Primary Mobile,Ir galvenais mobilais DocType: Workflow Document State,Workflow Document State,Workflow Dokumentu Valsts apps/frappe/frappe/public/js/frappe/request.js,File too big,Fails ir pārāk liels apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-pasta konts pievienotas vairākas reizes @@ -3447,6 +3531,7 @@ DocType: DocField,Float,Peldēt DocType: Print Settings,Page Settings,Lapas iestatījumi apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Saglabājot ... apps/frappe/frappe/www/update-password.html,Invalid Password,Nepareiza parole +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} ieraksts ir veiksmīgi importēts no {1}. DocType: Contact,Purchase Master Manager,Pirkuma Master vadītājs apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,"Noklikšķiniet uz bloķēšanas ikonas, lai pārslēgtu publisko / privāto" DocType: Module Def,Module Name,Module Name @@ -3481,6 +3566,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,"Dažas funkcijas var nedarboties jūsu pārlūkprogrammā. Lūdzu, atjauniniet savu pārlūkprogrammu uz jaunāko versiju." apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,"Dažas funkcijas var nedarboties jūsu pārlūkprogrammā. Lūdzu, atjauniniet savu pārlūkprogrammu uz jaunāko versiju." apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Nezinu, jautājiet "palīdzība"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},atcēla šo dokumentu {0} DocType: DocType,Comments and Communications will be associated with this linked document,Komentāri un Communications būs saistīta ar šo saistītā dokumentā apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,drosmīgs @@ -3499,6 +3585,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Add / Pārval DocType: Comment,Published,Izdots apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Paldies par jūsu e-pastu DocType: DocField,Small Text,Small Teksta +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Numuru {0} nevar iestatīt kā galveno tālrunim, kā arī mobilajam nr." DocType: Workflow,Allow approval for creator of the document,Atļaut apstiprināt dokumenta radītāju apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Saglabāt ziņojumu DocType: Webhook,on_cancel,oncancel @@ -3556,6 +3643,7 @@ DocType: Print Settings,PDF Settings,PDF iestatījumi DocType: Kanban Board Column,Column Name,Kolonna Name DocType: Language,Based On,Pamatojoties uz DocType: Email Account,"For more information, click here.","Lai iegūtu papildinformāciju, noklikšķiniet šeit ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Kolonnu skaits neatbilst datiem apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Izveidot pēc noklusējuma apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Izpildes laiks: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Nederīgs iekļaušanas ceļš @@ -3646,7 +3734,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Augšupielādējiet {0} failus DocType: Deleted Document,GCalendar Sync ID,GCalendar sinhronizācijas ID DocType: Prepared Report,Report Start Time,Ziņojuma sākuma laiks -apps/frappe/frappe/config/settings.py,Export Data,Eksportēt datus +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Eksportēt datus 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." @@ -3664,7 +3752,6 @@ DocType: Report,Disable Prepared Report,Atspējot sagatavoto pārskatu apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Lietotājs {0} ir pieprasījis datu dzēšanu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Nelegālā Access Token. Lūdzu mēģiniet vēlreiz apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Pieteikums ir atjaunināta uz jaunu versiju, lūdzu atsvaidzināt šo lapu" -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." DocType: Notification,Optional: The alert will be sent if this expression is true,"Pēc izvēles: brīdinājums tiks nosūtīts, ja šis izteikums ir taisnība" DocType: Data Migration Plan,Plan Name,Plāna nosaukums DocType: Print Settings,Print with letterhead,Drukāt ar veidlapas @@ -3705,6 +3792,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Nevar iestatīt Amend bez Atcelt apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Page DocType: DocType,Is Child Table,Vai Child tabula +DocType: Data Import Beta,Template Options,Veidņu opcijas apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} ir jābūt vienam no {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} šobrīd apskatei šo dokumentu apps/frappe/frappe/config/core.py,Background Email Queue,Fons Email Queue @@ -3712,7 +3800,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Password Reset DocType: Communication,Opened,Atvērts DocType: Workflow State,chevron-left,Chevron-pa kreisi DocType: Communication,Sending,Sūtīšana -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Nav atļauts no šīs IP adrese DocType: Website Slideshow,This goes above the slideshow.,Tas iet virs slaidrādi. DocType: Contact,Last Name,Uzvārds DocType: Event,Private,Privāts @@ -3726,7 +3813,6 @@ DocType: Workflow Action,Workflow Action,Workflow Action apps/frappe/frappe/utils/bot.py,I found these: ,Es atklāju šo: DocType: Event,Send an email reminder in the morning,Sūtīt e-pasta atgādinājumu no rīta DocType: Blog Post,Published On,Publicēts On -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" 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} @@ -3747,7 +3833,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,brīdinājuma-zīme DocType: Prepared Report,Prepared Report,Sagatavots ziņojums apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Pievienojiet savām tīmekļa lapām meta tagus -DocType: Contact,Phone Nos,Tālruņa nr 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 @@ -3765,6 +3850,7 @@ DocType: Data Migration Connector,Data Migration,Datu migrācija DocType: User,API Key cannot be regenerated,API atslēgu nevar atjaunot apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Kaut kas nogāja greizi DocType: System Settings,Number Format,Number Format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} ieraksts ir veiksmīgi importēts. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Kopsavilkums DocType: Event,Event Participants,Pasākumu dalībnieki DocType: Auto Repeat,Frequency,frekvence @@ -3772,7 +3858,7 @@ DocType: Custom Field,Insert After,Ievietot Pēc DocType: Event,Sync with Google Calendar,Sinhronizēt ar Google kalendāru DocType: Access Log,Report Name,Ziņojums Name DocType: Desktop Icon,Reverse Icon Color,Reverse Icon Color -DocType: Notification,Save,Saglabāt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Saglabāt apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Nākamais plānotais datums apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Piešķiriet tam, kuram ir vismazāk uzdevumu" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Pozīcijā nodaļa @@ -3795,11 +3881,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Iestatīšana> Pielāgot veidlapu 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 DocType: Desktop Icon,Category,Kategorija +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Vērtībai {0} trūkst vērtības {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Pievienot kontaktus apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Ainava apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Klienta puses skriptu paplašinājumi Javascript @@ -3823,6 +3909,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Enerģijas punkta atjaunināšana apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Lūdzu, izvēlieties citu maksājuma veidu. PayPal neatbalsta darījumus valūtā '{0}'" DocType: Chat Message,Room Type,Istabas tips +DocType: Data Import Beta,Import Log Preview,Importēt žurnāla priekšskatījumu apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Meklēt lauks {0} nav derīgs apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,augšupielādēts fails DocType: Workflow State,ok-circle,ok-aplis @@ -3891,6 +3978,7 @@ DocType: DocType,Allow Auto Repeat,Atļaut automātisko atkārtošanos apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,"Nav vērtību, ko parādīt" DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-pasta veidne +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Veiksmīgi atjaunināts {0} ieraksts. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},"Lietotājam {0} nav piekļuves doctype, izmantojot dokumenta {1} lomu atļauju" apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,"Gan login un paroli, kas nepieciešama" apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Lūdzu, atsvaidzināt, lai saņemtu jaunāko dokumentu." diff --git a/frappe/translations/mk.csv b/frappe/translations/mk.csv index a52c73e82d..dd55e93d17 100644 --- a/frappe/translations/mk.csv +++ b/frappe/translations/mk.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Достапни се нови изданија за следните апликации apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Ве молиме одберете Големина на поле. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Се вчитува датотека за увоз ... DocType: Assignment Rule,Last User,Последен корисник apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Нова задача, {0}, е назначен за вас од {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Зачувана е стандардната сесија +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Вчитај ја датотеката DocType: Email Queue,Email Queue records.,Е-Задача записи. DocType: Post,Post,Пост DocType: Address,Punjab,Пенџаб @@ -44,6 +46,7 @@ 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,Параметар @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Месечен DocType: Address,Uttarakhand,Утаранчал DocType: Email Account,Enable Incoming,Овозможи Дојдовни apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Опасност -apps/frappe/frappe/www/login.py,Email Address,E-mail адреса +DocType: Address,Email Address,E-mail адреса DocType: Workflow State,th-large,та-големи DocType: Communication,Unread Notification Sent,Непрочитани известување испратено apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Извоз не се дозволени. Ви треба {0} функции за извоз. @@ -97,7 +100,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Админ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Контакт опции, како што се ""Продажби Query, Поддршка Query"" итн., секое во нов ред или разделени со запирки." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Додајте ознака ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет -DocType: Data Migration Run,Insert,Вметнете +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Вметнете apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Им овозможи на Google Drive пристап apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Изберете {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Ве молиме внесете база на URL @@ -117,17 +120,17 @@ 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,Конфигурирајте ја темата DocType: Company History,Company History,Историја на претпријатието -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Ресетирај +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Ресетирај DocType: Workflow State,volume-up,волумен-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks повикувајќи API барања во веб-апликации +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Покажи пребарување DocType: DocType,Default Print Format,Стандардно печатење формат DocType: Workflow State,Tags,Тагови apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Никој: Крај на Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} поле не може да се постави како единствен во {1}, како што постојат не-уникатен постоечките вредности" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Видови документ +DocType: Global Search Settings,Document Types,Видови документ DocType: Address,Jammu and Kashmir,Џаму и Кашмир DocType: Workflow,Workflow State Field,Работното држава Теренски -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Поставување> Корисник DocType: Language,Guest,Гостин DocType: DocType,Title Field,Наслов на поле DocType: Error Log,Error Log,грешка Пријавете @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Се повторува како "abcabcabc" се само малку потешко да се погоди од "ABC" DocType: Notification,Channel,Канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ако мислите дека ова е неовластено, ве молиме да ја смени лозинката Администратор." +DocType: Data Import Beta,Data Import Beta,Бета увоз на податоци apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} е задолжително DocType: Assignment Rule,Assignment Rules,Правила за доделување DocType: Workflow State,eject,исфрлиш @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Име акција раб apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE не можат да се спојат DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Не е спакувана датотека +DocType: Global Search DocType,Global Search DocType,Глобален документ за пребарување DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                  New {{ doc.doctype }} #{{ doc.name }}
                                                                  ","За да додадете динамичен предмет, користете ги џинските ознаки како
                                                                   New {{ doc.doctype }} #{{ doc.name }} 
                                                                  " @@ -209,6 +214,7 @@ DocType: SMS Settings,Enter url parameter for message,Внесете URL пар apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Автоматско повторување создадено за овој документ apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Погледнете го извештајот во вашиот прелистувач apps/frappe/frappe/config/desk.py,Event and other calendars.,Настан и други календари. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (задолжителен 1 ред) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Сите полиња се потребни за да се достави коментар. DocType: Custom Script,Adds a client custom script to a DocType,Додава прилагодена скрипта на клиентот на DocType DocType: Print Settings,Printer Name,Име на печатачот @@ -249,7 +255,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Го DocType: Bulk Update,Bulk Update,рефус ажурирање DocType: Workflow State,chevron-up,Шеврон-up DocType: DocType,Allow Guest to View,Дозволете гостот да ги -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Избриши {0} предмети засекогаш? apps/frappe/frappe/utils/oauth.py,Not Allowed,Не е дозволено @@ -264,6 +269,7 @@ DocType: Data Import,Update records,Ажурирај записи apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Invalid module path,Невалидна патека на модулот DocType: DocField,Display,Покажи DocType: Email Group,Total Subscribers,Вкупно Претплатници +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Ред број apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ако Улогата нема пристап на ниво 0, тогаш повисоки нивоа се бесмислени." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Зачувај како DocType: Comment,Seen,Види @@ -324,6 +330,7 @@ DocType: Activity Log,Closed,Затвори DocType: Blog Settings,Blog Title,Наслов блог apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Стандардна улоги не може да биде исклучен apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Тип за разговор +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Колумни со мапи DocType: Address,Mizoram,Мизорам DocType: Newsletter,Newsletter,Билтен apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"не може да се користи под-прашање, со цел од страна на" @@ -391,6 +398,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Кори DocType: System Settings,Currency Precision,валута Прецизност DocType: System Settings,Currency Precision,валута Прецизност apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Друга трансакција е блокирање на оваа. Ве молиме обидете се повторно за неколку секунди. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Исчистете филтри DocType: Test Runner,App,стан apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Прилозите не можеа правилно да се поврзат со новиот документ DocType: Chat Message Attachment,Attachment,Прилог @@ -415,6 +423,7 @@ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,семафорот apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Не може да се испраќаат електронски пораки во овој момент apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Пребарај или да напишете командата DocType: Activity Log,Timeline Name,Хронологија Име +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Само еден {0} може да се постави како примарен. DocType: Email Account,e.g. smtp.gmail.com,на пр smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Додади ново правило DocType: Contact,Sales Master Manager,Продажбата мајстор менаџер @@ -432,7 +441,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Полето за средно име на LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Увезување {0} од {1} DocType: GCalendar Account,Allow GCalendar Access,Дозволи пристап за GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} е задолжително поле +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} е задолжително поле apps/frappe/frappe/templates/includes/login/login.js,Login token required,Потребен е токен за најавување apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Месечен ранг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Изберете повеќе елементи со список @@ -461,6 +470,7 @@ DocType: Domain Settings,Domain Settings,Подесувања на домени apps/frappe/frappe/email/receive.py,Cannot connect: {0},Не може да се поврзе: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,А зборот е само по себе е лесно да се погоди. apps/frappe/frappe/templates/includes/search_box.html,Search...,Барај ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Ве молиме изберете ја компанијата apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Спојувањето е можно само помеѓу група-to-група или лист јазол-до-лист јазол apps/frappe/frappe/utils/file_manager.py,Added {0},Додадено {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Нема соодветни записи. Барај нешто ново @@ -473,7 +483,6 @@ DocType: Google Settings,OAuth Client ID,ИД на клиент на OAuth DocType: Auto Repeat,Subject,Предмет apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Назад кон Биро DocType: Web Form,Amount Based On Field,Износот Врз основа на полето -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Ве молиме, поставете ја стандардната сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта" apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Корисникот е задолжително за Сподели DocType: DocField,Hidden,Скриени DocType: Web Form,Allow Incomplete Forms,Дозволете Некомплетните форми @@ -548,6 +557,7 @@ DocType: Workflow State,barcode,баркод apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Употребата на под-прашање или функција е ограничена apps/frappe/frappe/config/customization.py,Add your own translations,Додади свои преводи DocType: Country,Country Name,Земја Име +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Образец DocType: About Us Team Member,About Us Team Member,За нас член на тимот apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Дозволи се поставени на улоги и видови на документи (наречен DocTypes) со поставување права, како што читате, пишувате, да креираат, Избриши, поднесете Откажи, измени, извештај, увоз, извоз, печатење, Email и Поставете кориснички права." DocType: Event,Wednesday,Среда @@ -559,6 +569,7 @@ DocType: Website Settings,Website Theme Image Link,Веб-сајт Тема Imag DocType: Web Form,Sidebar Items,Странична лента Теми DocType: Web Form,Show as Grid,Прикажи како мрежа apps/frappe/frappe/installer.py,App {0} already installed,App {0} веќе инсталиран +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Корисниците доделени на референтниот документ ќе добијат поени. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Нема преглед DocType: Workflow State,exclamation-sign,фантастичен знак- apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Отпакувани {0} датотеки @@ -594,6 +605,7 @@ DocType: Notification,Days Before,Неколку дена пред apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Дневните настани треба да завршат во ист ден. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Уредување... DocType: Workflow State,volume-down,волумен надолу +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Не е дозволен пристап од оваа IP адреса apps/frappe/frappe/desk/reportview.py,No Tags,Не Тагови DocType: Email Account,Send Notification to,Испрати известување до DocType: DocField,Collapsible,Склопувачки @@ -692,6 +704,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",целни = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,домаќинот +DocType: Data Import Beta,Import File,Датотека за увоз apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Колона {0} веќе постои. DocType: ToDo,High,Високо apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Нов настан @@ -720,8 +733,6 @@ DocType: User,Send Notifications for Email threads,Испратете извес apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,проф apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не во режим на програмери apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Резервната датотека е подготвена -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Максимални дозволени бодови по множење на поени со множителна вредност (Белешка: без гранична поставена вредност како 0) DocType: DocField,In Global Search,Во глобалната пребарување DocType: System Settings,Brute Force Security,Брута сила за безбедност DocType: Workflow State,indent-left,алинеја-лево @@ -764,6 +775,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Корисникот '{0}' веќе има улога "{1}" DocType: System Settings,Two Factor Authentication method,Два фактори за проверка на автентичност apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Прво поставете го името и зачувајте го рекордот. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 рекорди apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Муабет со {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Одјава DocType: View Log,Reference Name,Референца @@ -813,6 +825,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Следете статус на е-пошта DocType: Note,Notify Users On Every Login,Ги извести корисниците на секој Најава DocType: Note,Notify Users On Every Login,Ги извести корисниците на секој Најава +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Не може да се совпаѓа со колоната {0} со кое било поле DocType: PayPal Settings,API Password,API Лозинка apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Внесете го модулот за питон или изберете тип на конектор apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname не е поставена за сопствено поле @@ -841,9 +854,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,Променети вредност apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},СТРОГО име {0} {1} -DocType: Email Queue,Retry,Повтори +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Повтори +DocType: Contact Phone,Number,Број DocType: Web Form Field,Web Form Field,Веб образец Теренски apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Имате нова порака од: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Уредување на HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Ве молиме внесете URL за пренасочување apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -869,7 +884,7 @@ DocType: Notification,View Properties (via Customize Form),За преглед apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Кликнете на датотека за да ја изберете. DocType: Note Seen By,Note Seen By,Забелешка гледа од страна на apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Обидете се да користите подолго тастатура модел со повеќе врти -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,табла +,LeaderBoard,табла DocType: DocType,Default Sort Order,Стандарден ред DocType: Address,Rajasthan,Раџастан DocType: Email Template,Email Reply Help,Испратете помош за е-пошта @@ -904,6 +919,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Состави Е-пошта apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Состојба на работниот тек (на пр., Предлог, Одобрено, Откажано)." DocType: Print Settings,Allow Print for Draft,Дозволи за печатење за Предлог +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/form/link_selector.js,Set Quantity,Намести Кол apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Го достави овој документ кој ја потврдува DocType: Contact,Unsubscribed,Отпишавте @@ -934,6 +950,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Организациска ,Transaction Log Report,Извештај за пријавување трансакции DocType: Custom DocPerm,Custom DocPerm,Прилагодено DocPerm DocType: Newsletter,Send Unsubscribe Link,Испрати отпишување линк +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Постојат неколку поврзани записи што треба да се создадат пред да можеме да ја увеземе вашата датотека. Дали сакате автоматски да ги создадете следниве записи што недостасуваат? DocType: Access Log,Method,Метод DocType: Report,Script Report,Скрипта Извештај DocType: OAuth Authorization Code,Scopes,домет @@ -975,6 +992,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Поставено успешно apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Вие сте поврзани на интернет. DocType: Social Login Key,Enable Social Login,Овозможи социјална најава +DocType: Data Import Beta,Warnings,Предупредувања DocType: Communication,Event,Настан apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","На {0}, {1} напиша:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Не може да избришете стандардна област. Можете да го сокрие ако сакате @@ -1030,6 +1048,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Вмет DocType: Kanban Board Column,Blue,Blue apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Сите персонализации ќе бидат отстранети. Ве молиме да потврдите. DocType: Page,Page HTML,HTML страница +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Изнесете погрешни редови apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Името на групата не може да биде празно. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Понатаму јазли може да се создаде само под тип јазли "група" DocType: SMS Parameter,Header,Header @@ -1075,7 +1094,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,Settings SMTP за по apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,изберете еден DocType: Data Export,Filter List,Листа на филтри DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Вашата лозинка е обновено. Тука е вашата нова лозинка DocType: Email Account,Auto Reply Message,Авто Одговор порака DocType: Data Migration Mapping,Condition,Состојба apps/frappe/frappe/utils/data.py,{0} hours ago,Пред {0} часа @@ -1084,7 +1102,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID на корисникот DocType: Communication,Sent,Испрати DocType: Address,Kerala,Керала -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Администрација DocType: User,Simultaneous Sessions,симултани сесии DocType: Social Login Key,Client Credentials,клиент Сертификати @@ -1116,7 +1133,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Ажу apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Господар DocType: DocType,User Cannot Create,Корисникот не може да се создаде apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно е готово -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Папка {0} не постои apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,пристап Dropbox е одобрено! DocType: Customize Form,Enter Form Type,Внесете Образец Тип DocType: Google Drive,Authorize Google Drive Access,Овластете пристап на Google Drive @@ -1124,7 +1140,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Означени нема евиденција. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Отстранете поле apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Вие не сте поврзани на интернет. Се обидувам по некое време. -DocType: User,Send Password Update Notification,Испрати Ажурирање Известување Лозинка apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Дозволувајќи им на DOCTYPE, DOCTYPE. Бидете внимателни!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Кориснички формати за печатење, и-мејл" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Збир од {0} @@ -1205,6 +1220,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Неточен ко apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Интеграцијата на контакти на Google е оневозможена. DocType: Assignment Rule,Description,Опис DocType: Print Settings,Repeat Header and Footer in PDF,Повторете го заглавјето и подножјето во PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Неуспех DocType: Address Template,Is Default,Е стандардно DocType: Data Migration Connector,Connector Type,Тип на конектор apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Колона име не може да биде празна @@ -1217,6 +1233,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Одете на {0} 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,Столбови врз основа на +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/model/document.py,Action Failed,акција не успеа apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,за пристап @@ -1269,6 +1286,7 @@ DocType: Print Settings,Enable Raw Printing,Овозможи сурово печ DocType: Website Route Redirect,Source,Извор apps/frappe/frappe/templates/includes/list/filters.html,clear,јасно apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Завршено +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Поставување> Корисник DocType: Prepared Report,Filter Values,Вредности на филтри DocType: Communication,User Tags,Корисникот Тагови DocType: Data Migration Run,Fail,Не успеа @@ -1325,6 +1343,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Сл ,Activity,Активност DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Помош: За да водат до уште еден рекорд во системот, користете "# Форма / Забелешка / [Забелешка Име]", како URL линк. (Не користи "http: //")" DocType: User Permission,Allow,Дозволи +DocType: Data Import Beta,Update Existing Records,Ажурирајте ги постојните записи apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Ајде да се избегне повторен зборови и знаци DocType: Energy Point Rule,Energy Point Rule,Правило за енергетска точка DocType: Communication,Delayed,Одложен @@ -1337,9 +1356,7 @@ DocType: Milestone,Track Field,Поле поле DocType: Notification,Set Property After Alert,Поставете сопственост По сигнализација apps/frappe/frappe/config/customization.py,Add fields to forms.,Да додадете полиња на форми. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Изгледа дека нешто не е во ред со Paypal конфигурација овој сајт. -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/form/sidebar/review.js,Add Review,Додадете преглед -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Големина на фонт (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Само стандардните DocTypes дозволено е да се прилагодат од формулари за прилагодување. DocType: Email Account,Sendgrid,Sendgrid @@ -1375,6 +1392,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Ф apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Жал ми е! Не може да избришете авто-генерирани коментари DocType: Google Settings,Used For Google Maps Integration.,Се користи за интеграција на „Карти на Google“. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Референтен DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Нема записи ќе бидат извезени DocType: User,System User,Систем на корисник DocType: Report,Is Standard,Е стандард DocType: Desktop Icon,_report,_report @@ -1390,6 +1408,7 @@ DocType: Workflow State,minus-sign,Знакот минус- apps/frappe/frappe/public/js/frappe/request.js,Not Found,Не е пронајдено apps/frappe/frappe/www/printview.py,No {0} permission,Нема {0} дозвола apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Извоз Прилагодено дозволи +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Нема пронајдени предмети. DocType: Data Export,Fields Multicheck,Полиња Multicheck DocType: Activity Log,Login,Влези DocType: Web Form,Payments,Плаќања @@ -1492,7 +1511,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ 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,Вкупно страници -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                  No results found for '

                                                                  ,

                                                                  Не се пронајдени резултати за „

                                                                  DocType: DocField,Attach Image,Прикачи слика DocType: Workflow State,list-alt,Листата-алт apps/frappe/frappe/www/update-password.html,Password Updated,Лозинка освежено @@ -1512,8 +1530,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Поставување> Кориснички дозволи DocType: LDAP Group Mapping,LDAP Group Mapping,Мапирање на групите LDAP DocType: Dashboard Chart,Chart Options,Опции на графикони +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Насловна колона apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} од {1} до {2} во ред # {3} DocType: Communication,Expired,Истечен apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Изгледа дека токен што го користите е неважечки! @@ -1539,6 +1559,7 @@ DocType: Custom Role,Custom Role,Прилагодено Улогата apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Почетна / Тест Папка 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Внесете ја вашата лозинка DocType: Dropbox Settings,Dropbox Access Secret,Dropbox пристап Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Задолжително) 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.,Не се пронајдени податоци во датотеката. Ве молиме повторно внесете ја новата датотека со податоци. @@ -1611,6 +1632,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Покаж apps/frappe/frappe/desk/form/assign_to.py,New Message,Нова порака DocType: File,Preview HTML,Преглед на HTML DocType: Desktop Icon,query-report,пребарување-извештај +DocType: Data Import Beta,Template Warnings,Предупредувања за шаблони apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,филтри спаси DocType: DocField,Percent,Проценти apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Ве молиме да се постави филтри @@ -1632,6 +1654,7 @@ DocType: Custom Field,Custom,Прилагодено DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ако е овозможено, корисниците кои се најавуваат од ограничена IP адреса, нема да бидат повикани за Two Factor Auth" DocType: Auto Repeat,Get Contacts,Добијте контакти apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Мислења поднесе под {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Прескокнувајќи ја насловната колона DocType: Notification,Send alert if date matches this field's value,Испрати алармирање доколку датумот одговара на вредноста оваа област е DocType: Workflow,Transitions,Транзиции apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} до {2} @@ -1655,6 +1678,7 @@ DocType: Workflow State,step-backward,чекор назад apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Ве молиме да се постави Dropbox копчиња за пристап на вашиот сајт config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Избришете оваа евиденција за да се овозможи испраќање на оваа е-маил адреса +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ако нестандардна порта (на пр. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Прилагодете ги кратенките apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Само задолжителни полиња се неопходни за нови рекорди. Можете да ги избришете незадолжителни колони ако сакате. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Покажете поголема активност @@ -1758,6 +1782,7 @@ 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,Стандардно Испраќање и Inbox DocType: System Settings,OTP App,App OTP 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,Писмо DocType: DocType,"Naming Options:
                                                                  1. field:[fieldname] - By Field
                                                                  2. naming_series: - By Naming Series (field called naming_series must be present
                                                                  3. Prompt - Prompt user for a name
                                                                  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                  5. @@ -1771,6 +1796,7 @@ DocType: GCalendar Account,Next Sync Token,Следен синхронизира DocType: Energy Point Settings,Energy Point Settings,Поставки за енергетска точка DocType: Async Task,Succeeded,Успеал apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Задолжителни полиња се бара во {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                    No results found for '

                                                                    ,

                                                                    Не се пронајдени резултати за „

                                                                    apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Ресетирање на дозволи за {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Корисници и дозволи DocType: S3 Backup Settings,S3 Backup Settings,S3 Резервни копии @@ -1841,6 +1867,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Во DocType: Notification,Value Change,Вредност промени DocType: Google Contacts,Authorize Google Contacts Access,Овластете пристап на контакти на Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Прикажани се само Нумерички полиња од Извештај +DocType: Data Import Beta,Import Type,Тип на увоз DocType: Access Log,HTML Page,HTML страница DocType: Address,Subsidiary,Подружница apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Обид за поврзување со фиоката QZ ... @@ -1850,7 +1877,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Невал DocType: Custom DocPerm,Write,Напиши apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Само администратор е дозволено да креирате пребарување / Script извештаи apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ажурирање -DocType: File,Preview,Преглед +DocType: Data Import Beta,Preview,Преглед apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Поле "вредност" е задолжително. Ве молиме наведете вредност да се ажурира DocType: Customize Form,Use this fieldname to generate title,Користете го ова за да се генерираат fieldname титула apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Увоз-маил од @@ -1935,6 +1962,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Пребару DocType: Social Login Key,Client URLs,Клиентни URL адреси apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Некои информации недостасуваат apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} успешно креиран +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Прескокнувајќи {0} од {1}, {2}" DocType: Custom DocPerm,Cancel,Откажи apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Избриши масовно apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Поднесе {0} не постои @@ -1962,7 +1990,6 @@ DocType: GCalendar Account,Session Token,Сесија на сесија DocType: Currency,Symbol,Симбол apps/frappe/frappe/model/base_document.py,Row #{0}:,Ред # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Потврдете го бришењето на податоците -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Нова лозинка преку е-маил apps/frappe/frappe/auth.py,Login not allowed at this time,Пријавата не е дозволено во овој момент DocType: Data Migration Run,Current Mapping Action,Тековна акција за мапирање DocType: Dashboard Chart Source,Source Name,извор Име @@ -2034,6 +2061,7 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Печатете документи apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Скокни на поле DocType: Contact Us Settings,Forward To Email Address,Напред е-мејл адреса +DocType: Contact Phone,Is Primary Phone,Е примарен телефон apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Испратете е-пошта на {0} за да ја поврзете тука. DocType: Auto Email Report,Weekdays,Работни дена apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Наслов поле мора да биде валидна fieldname @@ -2054,7 +2082,9 @@ eval:doc.age>18",Ова поле ќе се појави само ако field DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,денес apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,денес +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Откако ќе го поставите ова, корисниците ќе бидат во можност документи пристап (на пр. Блог пост) кога постои врска (на пр. Blogger)." +DocType: Data Import Beta,Submit After Import,Поднесете по увозот DocType: Error Log,Log of Scheduler Errors,Дневник на грешки Распоред DocType: User,Bio,Био DocType: OAuth Client,App Client Secret,Стан клиентот тајна @@ -2072,10 +2102,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Оневозможи Регистрирај клиентите врската во страната за логирање apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Доделени / сопственикот DocType: Workflow State,arrow-left,стрелка лево- +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Извези 1 рекорд DocType: Workflow State,fullscreen,цел екран DocType: Chat Token,Chat Token,Точка за разговор apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Креирај табела apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не увезувај DocType: Web Page,Center,Центар DocType: Notification,Value To Be Set,Вредност да се постави apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Уредете {0} @@ -2094,6 +2126,7 @@ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under DocType: Print Format,Show Section Headings,Прикажи Тема Наслови DocType: Bulk Update,Limit,Граница apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Додај нов дел +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Филтрирани записи apps/frappe/frappe/www/printview.py,No template found at path: {0},Не се пронајдени на патот шаблон: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Нема е-мејл сметка DocType: Comment,Cancelled,Откажано @@ -2179,10 +2212,13 @@ 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} 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,Ќе биде вашиот логин проект +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Ресетирање на типови на документи за глобално пребарување ,Lead Conversion Time,Водечко време за конверзија apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Изгради извештај DocType: Note,Notify users with a popup when they log in,Ги извести корисниците со скокачки прозорец кога ќе се логирате во +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Основните модули {0} не можат да се пребаруваат во Глобалното пребарување. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Отворете разговор apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не постои, изберете нова цел да се логирате" DocType: Data Migration Connector,Python Module,Модул Пајтон @@ -2198,8 +2234,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Затвори 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Поставување> Кориснички дозволи -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Ажурирање +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Ажурирање DocType: Transaction Log,Transaction Hash,Трансакција Hash DocType: Error Snapshot,Snapshot View,Слика Види apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Ве молиме да се спаси Билтен пред да ја испратите @@ -2226,7 +2261,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,Периодично DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} не може да биде "{2}". Тоа треба да биде еден од "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} или {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Лозинка Ажурирање DocType: Workflow State,trash,ѓубре DocType: System Settings,Older backups will be automatically deleted,Постарите копии ќе бидат автоматски избришани apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Невалиден пристапен клуч за пристап или таен клуч за пристап. @@ -2254,6 +2288,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,Не DocType: Address,Preferred Shipping Address,Најпосакувана Адреса за Испорака apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Со писмо главата apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} создал овој {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не е поставена сметка за е-пошта. Создадете нова сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта DocType: S3 Backup Settings,eu-west-1,еу-запад-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ако ова е проверено, ќе бидат внесени редови со валидни податоци и неважечки редови ќе бидат фрлени во нова датотека за да ги внесете подоцна." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ е едитирање само од страна на корисниците на улога @@ -2280,6 +2315,7 @@ DocType: Custom Field,Is Mandatory Field,Е задолжително поле DocType: User,Website User,Веб-сајт пристап apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Некои колони може да се отсечат при печатење на PDF. Обидете се да задржите број на колони под 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Не е еднаква на +DocType: Data Import Beta,Don't Send Emails,Не испраќајте е-пошта DocType: Integration Request,Integration Request Service,Интеграција Барање Користење DocType: Access Log,Access Log,Дневник за пристап DocType: Website Script,Script to attach to all web pages.,Скрипта да се закачите на сите веб страни. @@ -2319,6 +2355,7 @@ DocType: Contact,Passive,Пасивни DocType: Auto Repeat,Accounts Manager,Менаџер сметки apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Доделување за {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,вашата исплата е откажано. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Ве молиме, поставете ја стандардната сметка за е-пошта од Поставување> Е-пошта> сметка за е-пошта" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Изберете тип на датотека apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Види се DocType: Help Article,Knowledge Base Editor,База на знаење на уредникот @@ -2350,6 +2387,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Податоци apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Статус документ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Потребно е одобрување +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Следниве записи треба да се создадат пред да можеме да ја увеземе вашата датотека. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth код за авторизација apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Не е дозволено да увезам DocType: Deleted Document,Deleted DocType,избришани DOCTYPE @@ -2412,6 +2450,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar сметка DocType: Email Rule,Is Spam,е спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Извештај {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Отвори {0} +DocType: Data Import Beta,Import Warnings,Предупредувања за увоз DocType: OAuth Client,Default Redirect URI,Аватарот на пренасочување URI DocType: Auto Repeat,Recipients,Примателите DocType: System Settings,Choose authentication method to be used by all users,Изберете метод на автентикација кој ќе го користат сите корисници @@ -2542,6 +2581,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Креирај нова DocType: Workflow State,chevron-down,Шеврон надолу apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Е-пошта нема испратено до {0} (отпишавте / инвалиди) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Изберете полиња за извоз DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Најмалата Фракција валутна вредност apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Изготвување извештај @@ -2550,6 +2590,7 @@ DocType: Workflow State,th-list,та-листа DocType: Web Page,Enable Comments,Овозможи Коментари apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Белешки DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Ограничување на корисникот само од оваа IP адреса. Повеќе IP адреси може да се додаде со одделување со запирки. Исто така прифаќа делумна IP адреси како (111.111.111) +DocType: Data Import Beta,Import Preview,Преглед на увоз DocType: Communication,From,Од apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Изберете група јазол во прв план. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Најди {0} во {1} @@ -2646,6 +2687,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,меѓу DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Чекаат на ред +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Поставување> Персонализирајте форма DocType: Braintree Settings,Use Sandbox,Користете Sandbox apps/frappe/frappe/utils/goal.py,This month,Овој месец apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Нов прилагодено Печатење формат @@ -2689,6 +2731,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,автор apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,продолжите со испраќање на apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Повторно отворање +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Прикажи предупредувања apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Одг: {0} DocType: Address,Purchase User,Набавка пристап DocType: Data Migration Run,Push Failed,Притисни не успеа @@ -2726,6 +2769,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Нап apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Не Ви е дозволено да го гледате билтенот. DocType: User,Interests,Интереси apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Инструкции за ресетирање на лозинката биле пратени на вашата e-mail +DocType: Energy Point Rule,Allot Points To Assigned Users,Доделување на поени на доделени корисници apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Ниво 0 е за дозволи ниво документ, \ повисоко ниво за дозволи на ниво на поле." DocType: Contact Email,Is Primary,Е основно @@ -2749,6 +2793,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Клучни publishable DocType: Stripe Settings,Publishable Key,Клучни publishable apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Започни увоз +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Тип на извоз DocType: Workflow State,circle-arrow-left,круг стрелка лево- DocType: System Settings,Force User to Reset Password,Принудете го корисникот да ја постави лозинката apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis кеш серверот не работи. Ве молиме контактирајте го Администраторот / Техничката поддршка @@ -2763,10 +2808,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,Името не е п apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-mail сандаче DocType: Auto Email Report,Filters Display,филтри Покажи apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Полето "изменето_ од" мора да биде присутно за да се направи амандман. +DocType: Contact,Numbers,Броеви apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Зачувајте филтри DocType: Address,Plant,Растителни apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Одговори на сите DocType: DocType,Setup,Подесување +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Сите записи DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Адреса на е-пошта чии контакти на Google треба да се синхронизираат. DocType: Email Account,Initial Sync Count,Почетна синхронизација Грофот DocType: Workflow State,glass,стакло @@ -2791,7 +2838,7 @@ DocType: Workflow State,font,фонт DocType: DocType,Show Preview Popup,Прикажи преглед apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ова е топ-100 заеднички лозинка. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Ве молиме да им овозможи на pop-up прозорци -DocType: User,Mobile No,Мобилни Не +DocType: Contact,Mobile No,Мобилни Не DocType: Communication,Text Content,текст содржина DocType: Customize Form Field,Is Custom Field,Е сопствено поле DocType: Workflow,"If checked, all other workflows become inactive.","Ако е избрано, сите други workflows стане неактивен." @@ -2837,6 +2884,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,До apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Името на новиот формат за печатење apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Вклучи ја лентата DocType: Data Migration Run,Pull Insert,Повлечете Вметни +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Максимални дозволени бодови по размножување на точките со множечката вредност (Белешка: Без ограничување, оставете го ова поле празно или поставено 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Невалидна образец apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Незаконско пребарување SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Задолжително: DocType: Chat Message,Mentions,Менции @@ -2877,9 +2927,11 @@ DocType: Braintree Settings,Public Key,Јавен клуч DocType: GSuite Settings,GSuite Settings,GSuite Settings DocType: Address,Links,Линкови DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Го користи Името на адреса за е-пошта споменато на оваа сметка како Име на испраќачот за сите е-пошта испратени со оваа сметка. +DocType: Energy Point Rule,Field To Check,Поле за проверка apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Ве молиме изберете Тип на документ. apps/frappe/frappe/model/base_document.py,Value missing for,Недостасува вредност за apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Додади детето +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Напредок во увозот DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Доколку состојбата е задоволена, корисникот ќе биде награден со бодовите. на пр. doc.status == 'Затворено'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Поднесени рекорд не може да се избрише. @@ -2916,6 +2968,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Овластете п apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"На страницата што ја барате се водат за исчезнати. Ова би можело да биде, бидејќи тоа е преместена или постои грешка во врската." apps/frappe/frappe/www/404.html,Error Code: {0},Грешка на кодот: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Опис за котација страница, во обичен текст, само неколку линии. (Максимум 140 карактери)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} се задолжителни полиња DocType: Workflow,Allow Self Approval,Дозволи автоматско одобрување DocType: Event,Event Category,Категорија на настани apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,Џон До @@ -2963,6 +3016,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Преминете DocType: Address,Preferred Billing Address,Најпосакувана платежна адреса apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Премногу пишува во едно барање. Ве молиме испратете помали барања apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive е конфигурирано. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Тип на документ {0} се повтори. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,променети вредности DocType: Workflow State,arrow-up,стрелка нагоре DocType: OAuth Bearer Token,Expires In,истекува @@ -3047,6 +3101,7 @@ DocType: Custom Field,Options Help,Опции Помош 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 рекорд ќе биде извезен 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,Ограничување на домен @@ -3063,6 +3118,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Код за проверка DocType: Webhook,Webhook Request,Барање за Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Не успеа: {0} до {1}: {2} DocType: Data Migration Mapping,Mapping Type,Тип на мапирање +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,изберете Задолжителна apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Преглед на apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Нема потреба од симболи, броеви, или големи букви." DocType: DocField,Currency,Валута @@ -3098,6 +3154,7 @@ apps/frappe/frappe/utils/file_manager.py,Removed {0},Отстранет {0} DocType: SMS Settings,SMS Settings,SMS Settings DocType: Company History,Highlight,Селектирај DocType: Dashboard Chart,Sum,Сума +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,Стандард за печатење формат не може да се ажурира @@ -3131,6 +3188,7 @@ DocType: Workflow State,Home,Почетна DocType: OAuth Provider Settings,Auto,Автоматски DocType: System Settings,User can login using Email id or User Name,Корисникот може да се најавите со користење на Email id или User Name DocType: Workflow State,question-sign,Прашањето-знак +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} е оневозможено apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Полето "рута" е задолжително за веб-прегледи apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Вметни ја колоната пред {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Корисникот од ова поле ќе биде награден со поени @@ -3337,6 +3395,7 @@ DocType: Calendar View,Start Date Field,Почетно поле за датум DocType: Role,Role Name,Улогата Име apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Префрли се на маса apps/frappe/frappe/config/core.py,Script or Query reports,Скрипта или Пребарување извештаи +DocType: Contact Phone,Is Primary Mobile,Е основно мобилен DocType: Workflow Document State,Workflow Document State,Работното документ држава apps/frappe/frappe/public/js/frappe/request.js,File too big,Датотеката е премногу голема apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Е-пошта профил додаде повеќе пати @@ -3431,6 +3490,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Додаде DocType: Comment,Published,Објавено apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Ви благодариме за вашата e-mail DocType: DocField,Small Text,Мал текст +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Бројот {0} не може да се постави како примарен за телефонот, како и за мобилниот бр." DocType: Workflow,Allow approval for creator of the document,Дозволи одобрување за креаторот на документот apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Зачувај извештај DocType: Webhook,on_cancel,on_cancel @@ -3487,6 +3547,7 @@ DocType: Print Settings,PDF Settings,PDF Settings DocType: Kanban Board Column,Column Name,Колона Име DocType: Language,Based On,Врз основа на DocType: Email Account,"For more information, click here.","За повеќе информации, кликнете овде ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Број на колони не се совпаѓа со податоците apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Направи Default apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Време на извршување: {0} сек apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Неважечки вклучуваат патека @@ -3575,7 +3636,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You,П apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have atleast one recipient,Билтен треба да има барем еден примател DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Пријавете го времето на започнување -apps/frappe/frappe/config/settings.py,Export Data,Извозни податоци +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Извозни податоци 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.,Ова е позадински извештај. Поставете соодветни филтри и потоа генерирајте нов. @@ -3593,7 +3654,6 @@ DocType: Report,Disable Prepared Report,Оневозможи го подготв apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Корисникот {0} побара бришење податоци apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Незаконски пристап токен. Ве молиме обидете се повторно apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Апликацијата е надграден за нова верзија, Ве молиме да се освежи оваа страница" -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.,"Не е пронајдена стандардна образец за адреса. Ве молиме, создадете нова од Поставување> Печатење и брендирање> Шаблон за адреси." DocType: Notification,Optional: The alert will be sent if this expression is true,"Изборно: На алармирање ќе бидат испратени, ако овој израз е точен" DocType: Data Migration Plan,Plan Name,Име на планот DocType: Print Settings,Print with letterhead,Печатење со меморандуми @@ -3633,6 +3693,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Не може да се постави измени без Откажи apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Цела страна DocType: DocType,Is Child Table,Е табела на децата +DocType: Data Import Beta,Template Options,Опции на шаблони apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} мора да биде еден од {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} е моментално гледате овој документ apps/frappe/frappe/config/core.py,Background Email Queue,Позадина-пошта редицата @@ -3640,7 +3701,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Лозинка Ре DocType: Communication,Opened,Отворена DocType: Workflow State,chevron-left,Шеврон-левичарската DocType: Communication,Sending,Испраќање на -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Не е дозволено од оваа IP адреса DocType: Website Slideshow,This goes above the slideshow.,Ова оди над слајдшоу. DocType: Contact,Last Name,Презиме DocType: Event,Private,Приватен @@ -3654,7 +3714,6 @@ DocType: Workflow Action,Workflow Action,Работното акција apps/frappe/frappe/utils/bot.py,I found these: ,Го најдов овие: DocType: Event,Send an email reminder in the morning,Испрати е-потсетник е-мејл во утринските часови DocType: Blog Post,Published On,Објавено на -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не е поставена сметка за е-пошта. Создадете нова сметка за е-пошта од Поставување> Е-пошта> Сметка за е-пошта DocType: Contact,Gender,Пол apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Задолжителна информации недостасува: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,Проверете УРЛ-адреса @@ -3674,7 +3733,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,предупредување знакот DocType: Prepared Report,Prepared Report,Подготвен извештај apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Додадете мета-ознаки на вашите веб-страници -DocType: Contact,Phone Nos,Телефонски број DocType: Workflow State,User,Корисникот DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Прикажи титула во прозорецот на прелистувачот како "Префикс - назив" DocType: Payment Gateway,Gateway Settings,Поставувања за портата @@ -3699,7 +3757,7 @@ DocType: Custom Field,Insert After,Вметнете По DocType: Event,Sync with Google Calendar,Синхронизирајте со Google Calendar DocType: Access Log,Report Name,Име на отчет DocType: Desktop Icon,Reverse Icon Color,Обратна икони во боја -DocType: Notification,Save,Зачувај +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Зачувај apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Следен датум на закажаното apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Доделете му на оној што има најмалку задачи apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Дел Наслов @@ -3722,7 +3780,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Поставување> Персонализирајте форма DocType: Google Contacts,Last Sync On,Последно синхронизирање е вклучено DocType: Deleted Document,Deleted Document,избришани документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Упс! Нешто не беше во ред @@ -3750,6 +3807,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ажурирање на енергетската точка apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Ве молам изберете друг начин на плаќање. PayPal не поддржува трансакции во валута '{0}' DocType: Chat Message,Room Type,Вид на соба +DocType: Data Import Beta,Import Log Preview,Внесете преглед преглед apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,полето за пребарување {0} не е валиден apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,поставена датотека DocType: Workflow State,ok-circle,OK-круг diff --git a/frappe/translations/ml.csv b/frappe/translations/ml.csv index a12ffda13a..323f1030d0 100644 --- a/frappe/translations/ml.csv +++ b/frappe/translations/ml.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,ഇനിപ്പറയുന്ന അപ്ലിക്കേഷനുകൾക്കുള്ള പുതിയ {@} റിലീസുകൾ ലഭ്യമാണ് apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,ദയവായി ഒരു തുക ഫീൽഡ് തിരഞ്ഞെടുക്കുക. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,ഇറക്കുമതി ഫയൽ ലോഡുചെയ്യുന്നു ... DocType: Assignment Rule,Last User,അവസാന ഉപയോക്താവ് apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ഒരു പുതിയ ചുമതല, {0}, {1} സജ്ജമാക്കിയ ചെയ്തു. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,സെഷൻ സ്ഥിരസ്ഥിതികൾ സംരക്ഷിച്ചു +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ഫയൽ വീണ്ടും ലോഡുചെയ്യുക DocType: Email Queue,Email Queue records.,ഇമെയിൽ ക്യൂ രേഖകള്. DocType: Post,Post,പോസ്റ്റുകൾ DocType: Address,Punjab,പഞ്ചാബ് @@ -44,6 +46,7 @@ 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,പാരാമീറ്റർ @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,പ്രതിമാസം DocType: Address,Uttarakhand,ഉത്തരാഖണ്ഡ് DocType: Email Account,Enable Incoming,ഇൻകമിംഗ് പ്രാപ്തമാക്കുക apps/frappe/frappe/core/doctype/version/version_view.html,Danger,അപായം -apps/frappe/frappe/www/login.py,Email Address,ഈ - മെയില് വിലാസം +DocType: Address,Email Address,ഈ - മെയില് വിലാസം DocType: Workflow State,th-large,ാം-വലിയ DocType: Communication,Unread Notification Sent,വായിക്കാത്ത അറിയിപ്പ് അയച്ചു apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,കയറ്റുമതി ചെയ്യുക അനുവദനീയമല്ല. നിങ്ങൾക്ക് കയറ്റുമതി {0} പങ്ക് ആവശ്യമാണ്. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,അഡ് DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""സെയിൽസ് ക്വറി, പിന്തുണ ക്വറി 'തുടങ്ങിയ കോൺടാക്റ്റ് ഓപ്ഷനുകൾ, ഒരു പുതിയ വരിയിൽ ഓരോ അല്ലെങ്കിൽ കോമ ഉപയോഗിച്ച് വേർതിരിച്ച്." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,ഒരു ടാഗ് ചേർക്കുക ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ഛായാചിത്രം -DocType: Data Migration Run,Insert,ഇടയ്ക്കു്ചേര്ക്കുക +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,ഇടയ്ക്കു്ചേര്ക്കുക apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google ഡ്രൈവ് ആക്‌സസ്സ് അനുവദിക്കുക apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} തിരഞ്ഞെടുക്കുക apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,ദയവായി അടിസ്ഥാന URL നൽകുക @@ -117,17 +120,17 @@ 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,തീം കോൺഫിഗർ ചെയ്യുക DocType: Company History,Company History,കമ്പനി ചരിത്രം -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,റീസെറ്റ് +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,റീസെറ്റ് DocType: Workflow State,volume-up,വോള്യം-അപ്പ് apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,വെബ് അപ്ലിക്കേഷനുകളിലേക്ക് Webhooks കോളിംഗ് API അഭ്യർത്ഥനകൾ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ട്രേസ്ബാക്ക് കാണിക്കുക DocType: DocType,Default Print Format,സ്ഥിരസ്ഥിതി പ്രിന്റ് ഫോർമാറ്റ് DocType: Workflow State,Tags,ടാഗുകൾ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ഒന്നുമില്ല: വർക്ക്ഫ്ലോ അന്ത്യം apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","നോൺ-അതുല്യമായ നിലവിലുള്ള മൂല്യങ്ങൾ അവിടെയുണ്ട് പോലെ {0} ഫീൽഡ്, {1} അതുല്യമായ ആയി സജ്ജമാക്കാൻ കഴിയില്ല" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ഡോക്യുമെന്റ് രീതികൾ +DocType: Global Search Settings,Document Types,ഡോക്യുമെന്റ് രീതികൾ DocType: Address,Jammu and Kashmir,ജമ്മു കശ്മീർ DocType: Workflow,Workflow State Field,വർക്ക്ഫ്ലോ സ്റ്റേറ്റ് ഫീൽഡ് -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,സജ്ജീകരണം> ഉപയോക്താവ് DocType: Language,Guest,അതിഥി DocType: DocType,Title Field,ടൈറ്റിൽ ഫീൽഡ് DocType: Error Log,Error Log,പിശക് ലോഗ് @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" മാത്രം ചെറുതായി "എ.ബി.സി" അധികം ഊഹിക്കാൻ പ്രയാസമാകും പോലെ ആവർത്തനങ്ങൾ DocType: Notification,Channel,ചാനൽ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","നിങ്ങൾ ഈ അംഗീകാരമില്ലാത്ത കരുതുന്നെങ്കിൽ, അഡ്മിനിസ്ട്രേറ്റർ രഹസ്യവാക്ക് മാറ്റാൻ ദയവായി." +DocType: Data Import Beta,Data Import Beta,ഡാറ്റ ഇറക്കുമതി ബീറ്റ apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} നിർബന്ധമായും DocType: Assignment Rule,Assignment Rules,അസൈൻ‌മെന്റ് നിയമങ്ങൾ‌ DocType: Workflow State,eject,പുറത്തെടുക്കുക @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,വർക്ക്ഫ്ല apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ലയിപ്പിക്കാൻ കഴിയില്ല DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ഒരു സിപ്പ് ഫയൽ +DocType: Global Search DocType,Global Search DocType,ആഗോള തിരയൽ ഡോക് ടൈപ്പ് DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                    New {{ doc.doctype }} #{{ doc.name }}
                                                                    ","ഡൈനാമിക് വിഷയം ചേർക്കാൻ, like jinja tags ഉപയോഗിക്കുക
                                                                     New {{ doc.doctype }} #{{ doc.name }} 
                                                                    " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,ഡോക് ഇവന്റ് apps/frappe/frappe/public/js/frappe/utils/user.js,You,നിങ്ങൾ DocType: Braintree Settings,Braintree Settings,ബ്രെയിൻട്രീ ക്രമീകരണം +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} റെക്കോർഡുകൾ വിജയകരമായി സൃഷ്ടിച്ചു. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ഫിൽട്ടർ സംരക്ഷിക്കുക DocType: Print Format,Helvetica,സിയൂട്ട apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} ഇല്ലാതാക്കാൻ കഴിയില്ല @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,സന്ദേശം വ apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,ഈ പ്രമാണത്തിനായി യാന്ത്രിക ആവർത്തനം സൃഷ്ടിച്ചു apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,നിങ്ങളുടെ ബ്രൗസറിൽ റിപ്പോർട്ട് കാണുക apps/frappe/frappe/config/desk.py,Event and other calendars.,ഇവന്റ് മറ്റ് കലണ്ടറുകൾ. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 വരി നിർബന്ധമാണ്) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,എല്ലാ ഫീൽഡുകളും അഭിപ്രായം സമർപ്പിക്കാൻ ആവശ്യമാണ്. DocType: Custom Script,Adds a client custom script to a DocType,ഒരു ഡോക്‍ടൈപ്പിലേക്ക് ഒരു ക്ലയൻറ് ഇഷ്‌ടാനുസൃത സ്ക്രിപ്റ്റ് ചേർക്കുന്നു DocType: Print Settings,Printer Name,പ്രിൻറർ നാമം @@ -249,7 +256,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ജ DocType: Bulk Update,Bulk Update,ബൾക്ക് അപ്ഡേറ്റ് DocType: Workflow State,chevron-up,ഷെവ്റോൺ-അപ്പ് DocType: DocType,Allow Guest to View,അതിഥി കാണൂ അനുവദിക്കുക -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,ശാശ്വതമായി {0} ഇനങ്ങൾ ഇല്ലാതാക്കുക apps/frappe/frappe/utils/oauth.py,Not Allowed,അനുവദനീയമല്ല @@ -265,6 +271,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,പ്രദർശിപ്പിക്കുക DocType: Email Group,Total Subscribers,ആകെ സബ്സ്ക്രൈബുചെയ്തവർ apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},മുകളിൽ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,വരി നമ്പർ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ഒരു റോൾ ലെവൽ 0 ന് ആക്സസ് ഇല്ല, എങ്കിൽ, പൊണ്ണത്തടിക്ക് അർത്ഥമില്ലാത്തവയാണ്." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ഇതായി സംരക്ഷിക്കുക DocType: Comment,Seen,കണ്ടതാണ് @@ -305,6 +312,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,ഉദാഹരണം: DocType: Workflow,Defines workflow states and rules for a document.,ഒരു പ്രമാണം വേണ്ടി വർക്ക്ഫ്ലോ സംസ്ഥാനങ്ങളും നിയമങ്ങൾ നിഷ്കർഷിക്കുന്നു. DocType: Workflow State,Filter,ഫിൽറ്റർ @@ -327,6 +335,7 @@ DocType: Activity Log,Closed,അടച്ചു DocType: Blog Settings,Blog Title,ബ്ലോഗ് ശീർഷകം apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,സ്റ്റാൻഡേർഡ് വേഷങ്ങൾ പ്രവർത്തനരഹിതമാക്കാനാകില്ല apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,ചാറ്റ് തരം +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,മാപ്പ് നിരകൾ DocType: Address,Mizoram,മിസോറം DocType: Newsletter,Newsletter,വാർത്താക്കുറിപ്പ് apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ഉത്തരവ് സബ് അന്വേഷണം ഉപയോഗിക്കാനാകില്ല @@ -393,6 +402,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ഉപ DocType: System Settings,Currency Precision,കറൻസി കൃത്യത DocType: System Settings,Currency Precision,കറൻസി കൃത്യത apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,മറ്റൊരു ഇടപാട് ഈ ഒരു തടയുന്നതായോ. കുറച്ച് നിമിഷങ്ങൾക്കുള്ളിൽ വീണ്ടും ശ്രമിക്കുക. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,ഫിൽട്ടറുകൾ മായ്‌ക്കുക DocType: Test Runner,App,അപ്ലിക്കേഷൻ apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,അറ്റാച്ചുമെന്റുകൾ പുതിയ പ്രമാണവുമായി ശരിയായി ലിങ്ക് ചെയ്യാനായില്ല DocType: Chat Message Attachment,Attachment,അറ്റാച്ചുമെൻറ് @@ -433,7 +443,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html,"Your query has been receive apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ഇൻകമിംഗ് പ്രവർത്തനക്ഷമമാക്കിയിട്ടുണ്ടെങ്കിൽ മാത്രമേ യാന്ത്രിക ലിങ്കിംഗ് സജീവമാക്കാനാകൂ. DocType: LDAP Settings,LDAP Middle Name Field,LDAP മിഡിൽ നെയിം ഫീൽഡ് DocType: GCalendar Account,Allow GCalendar Access,GCalendar ആക്സസ്സ് അനുവദിക്കുക -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} നിർബന്ധിത ഫീൽഡ് ആണ് +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} നിർബന്ധിത ഫീൽഡ് ആണ് apps/frappe/frappe/templates/includes/login/login.js,Login token required,ലോഗിൻ ടോക്കൺ ആവശ്യമാണ് apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,പ്രതിമാസ റാങ്ക്: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ഒന്നിലധികം ലിസ്റ്റ് ഇനങ്ങൾ തിരഞ്ഞെടുക്കുക @@ -463,6 +473,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},ബന്ധിപ്പ apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,സ്വയം ഒരു പദം ഊഹിക്കാൻ എളുപ്പമാണ്. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},യാന്ത്രിക അസൈൻമെന്റ് പരാജയപ്പെട്ടു: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,തിരയൽ ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,കമ്പനി തിരഞ്ഞെടുക്കുക apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,സംയോജിപ്പിച്ചുകൊണ്ട് ടു-ഗ്രൂപ്പ് ഗ്രൂപ്പ്-അല്ലെങ്കിൽ ലീഫ് നോഡ്-ടു-ലീഫ് നോഡ് തമ്മിലുള്ള മാത്രമേ സാധിക്കുകയുള്ളൂ apps/frappe/frappe/utils/file_manager.py,Added {0},ചേർത്തു {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,പൊരുത്തപ്പെടുന്ന റെക്കോർഡുകളൊന്നും. പുതിയ എന്തെങ്കിലും തിരയുക @@ -475,7 +486,6 @@ DocType: Google Settings,OAuth Client ID,OAuth ക്ലയൻറ് ID DocType: Auto Repeat,Subject,വിഷയം apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ഡെസ്കിലേക്ക് മടങ്ങുക DocType: Web Form,Amount Based On Field,ഫീൽഡ് അടിസ്ഥാനമാക്കി തുക -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് സ്ഥിരസ്ഥിതി ഇമെയിൽ അക്കൗണ്ട് സജ്ജമാക്കുക apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,ഉപയോക്താവ് പങ്കിടുക നിര്ബന്ധമാണ് DocType: DocField,Hidden,മറച്ചത് DocType: Web Form,Allow Incomplete Forms,അപൂർണം ഫോം അനുവദിക്കുക @@ -512,6 +522,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},"{0}, {1}" apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,ഒരു സംഭാഷണം ആരംഭിക്കുക. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",എല്ലായ്പ്പോഴും "ഡ്രാഫ്റ്റ്" പ്രിന്റിംഗ് ഡ്രാഫ്റ്റ് രേഖകൾ വേണ്ടി തലക്കെട്ട് ചേർക്കാൻ apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},അറിയിപ്പിൽ പിശക്: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ് DocType: Data Migration Run,Current Mapping Start,നിലവിലെ മാപ്പിംഗ് ആരംഭിക്കുക apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ഇമെയിൽ സ്പാം അടയാളപ്പെടുത്തി DocType: Comment,Website Manager,വെബ്സൈറ്റ് മാനേജർ @@ -549,6 +560,7 @@ DocType: Workflow State,barcode,ബാർകോഡ് apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,ഉപ-അന്വേഷണത്തിന്റെയോ ഫംഗ്ഷന്റെയോ ഉപയോഗം നിയന്ത്രിതമാണ് apps/frappe/frappe/config/customization.py,Add your own translations,നിങ്ങളുടെ സ്വന്തം വിവർത്തനങ്ങൾ ചേർക്കുക DocType: Country,Country Name,രാജ്യം പേര് +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,ശൂന്യമായ ടെംപ്ലേറ്റ് DocType: About Us Team Member,About Us Team Member,അമേരിക്ക അംഗം കുറിച്ച് apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","അനുമതികൾ, വായിക്കുക പോലുള്ള അവകാശങ്ങൾ ക്രമീകരിച്ച് റോളുകളും ഡോക്യുമെന്റ് ഇനങ്ങൾ (DocTypes വിളിച്ചു) ന് സജ്ജമാക്കാൻ എഴുതുക, സൃഷ്ടിക്കുക, ഇല്ലാതാക്കുക, സമർപ്പിക്കുക, റദ്ദാക്കുക, നന്നാക്കുവിൻ റിപ്പോർട്ട്, ഇംപോർട്ട്, എക്സ്പോർട്ട്, പ്രിന്റ്, ഇമെയിലും സെറ്റ് ഉപയോക്തൃ അനുമതികൾ ചെയ്യുന്നു." DocType: Event,Wednesday,ബുധനാഴ്ച @@ -559,6 +571,7 @@ DocType: Website Settings,Website Theme Image Link,വെബ്സൈറ്റ DocType: Web Form,Sidebar Items,സൈഡ്ബാർ ഇനങ്ങൾ DocType: Web Form,Show as Grid,ഗ്രിഡ് ആയി കാണിക്കുക apps/frappe/frappe/installer.py,App {0} already installed,അപ്ലിക്കേഷൻ {0} ഇതിനകം ഇൻസ്റ്റാൾ +DocType: Energy Point Rule,Users assigned to the reference document will get points.,റഫറൻസ് പ്രമാണത്തിലേക്ക് നിയോഗിച്ചിട്ടുള്ള ഉപയോക്താക്കൾക്ക് പോയിന്റുകൾ ലഭിക്കും. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,പ്രിവ്യൂ ഇല്ല DocType: Workflow State,exclamation-sign,ഉദ്ഘോഷം-അടയാളം apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,അൺസിപ്പ് ചെയ്ത {0} ഫയലുകൾ @@ -594,6 +607,7 @@ DocType: Notification,Days Before,മുമ്പുള്ള ദിവസങ് apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ദൈനംദിന ഇവന്റുകൾ ഒരേ ദിവസം തന്നെ പൂർത്തിയാക്കണം. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,എഡിറ്റുചെയ്യുക ... DocType: Workflow State,volume-down,വോള്യം-ഡൗൺ +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ഈ ഐപി വിലാസത്തിൽ നിന്ന് ആക്സസ് അനുവദനീയമല്ല apps/frappe/frappe/desk/reportview.py,No Tags,ടാഗുകൾ ഇല്ല DocType: Email Account,Send Notification to,ഇതിനായി വിജ്ഞാപനം അയയ്ക്കുക DocType: DocField,Collapsible,സൌകര്യങ്ങളൊക്കെ @@ -650,6 +664,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,ഡെവലപ്പർ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,സൃഷ്ടിച്ചത് 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,സ്ഥിര അച്ചടി ഭാഷ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,പൂർവ്വികർ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,റൂട്ട് {0} ഇല്ലാതാക്കാൻ കഴിയില്ല @@ -691,6 +706,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",ലക്ഷ്യം = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,ഹോസ്റ്റ് +DocType: Data Import Beta,Import File,ഫയൽ ഇമ്പോർട്ടുചെയ്യുക apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,നിരയുടെ {0} ഇതിനകം നിലവിലുണ്ട്. DocType: ToDo,High,ഹൈ apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,പുതിയ ഇവന്റ് @@ -719,8 +735,6 @@ DocType: User,Send Notifications for Email threads,ഇമെയിൽ ത്ര apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,പ്രൊഫ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,"എന്നല്ല, ഡവലപ്പർ മോഡിൽ" apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ഫയൽ ബാക്കപ്പ് തയ്യാറാണ് -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",ഗുണിത മൂല്യത്തിനൊപ്പം പോയിന്റുകൾ ഗുണിച്ചതിനുശേഷം പരമാവധി പോയിന്റുകൾ അനുവദനീയമാണ് (കുറിപ്പ്: പരിധി 0 ആയി സജ്ജമാക്കിയിട്ടില്ല) DocType: DocField,In Global Search,ആഗോള തിരയലിൽ DocType: System Settings,Brute Force Security,ബ്രൂട്ട് ഫോഴ്സ് സെക്യൂരിറ്റി DocType: Workflow State,indent-left,ഇൻഡന്റ്-ഇടത് @@ -760,6 +774,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',ഉപയോക്താവ് '{0}' ഇതിനകം പങ്ക് '{1}' ഉണ്ട് DocType: System Settings,Two Factor Authentication method,രണ്ട് ഫാക്ടർ പ്രാമാണീകരണ രീതി apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ആദ്യം പേര് സജ്ജമാക്കി റെക്കോർഡ് സംരക്ഷിക്കുക. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 റെക്കോർഡുകൾ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} ഇവരുമായി apps/frappe/frappe/email/queue.py,Unsubscribe,അൺസബ്സ്ക്രൈബ് DocType: View Log,Reference Name,റഫറൻസ് പേര് @@ -837,9 +852,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,മൂല്യം മാറ്റി apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},{0} {1} പേര് തനിപ്പകർപ്പാണ് -DocType: Email Queue,Retry,വീണ്ടും ശ്രമിക്കുക +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,വീണ്ടും ശ്രമിക്കുക +DocType: Contact Phone,Number,സംഖ്യ DocType: Web Form Field,Web Form Field,വെബ് ഫോം ഫീൽഡ് apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,നിങ്ങൾക്ക് ഒരു പുതിയ സന്ദേശം ഉണ്ട്: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML എഡിറ്റ് apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,ദയവായി റീഡയറക്റ്റ് യുആർഎൽ നൽകുക apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Restore Original Permissions,യഥാർത്ഥ അനുമതികൾ പുനഃസ്ഥാപിക്കുക @@ -863,7 +880,7 @@ DocType: Notification,View Properties (via Customize Form),(കസ്റ്റ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,അത് തിരഞ്ഞെടുക്കാൻ ഒരു ഫയലിൽ ക്ലിക്കുചെയ്യുക. DocType: Note Seen By,Note Seen By,കണ്ട കുറിപ്പ് apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,കൂടുതൽ വളവുകൾ ഒരു ഇനി കീബോർഡ് പാറ്റേൺ ഉപയോഗിക്കാൻ ശ്രമിക്കുക -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,ലീഡർബോർഡ് +,LeaderBoard,ലീഡർബോർഡ് DocType: DocType,Default Sort Order,സ്ഥിരസ്ഥിതി അടുക്കൽ ഓർഡർ DocType: Address,Rajasthan,രാജസ്ഥാൻ DocType: Email Template,Email Reply Help,ഇമെയിൽ മറുപടി സഹായം @@ -898,6 +915,7 @@ apps/frappe/frappe/utils/data.py,Cent,സെന്റ് apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ഇമെയിൽ രചിക്കുക apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","വർക്ക്ഫ്ലോ വേണ്ടി സ്റ്റേറ്റ്സ് (ഉദാ കരട്, അംഗീകാരം, റദ്ദാക്കി)." DocType: Print Settings,Allow Print for Draft,ഡ്രാഫ്റ്റ് പ്രിന്റ് അനുവദിക്കുക +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/link_selector.js,Set Quantity,സജ്ജമാക്കുക ക്വാണ്ടിറ്റി apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,സ്ഥിരീകരിക്കുന്നതിന് ഈ പ്രമാണം സമർപ്പിക്കുക DocType: Contact,Unsubscribed,അൺസബ്സ്ക്രൈബുചെയ്ത @@ -929,6 +947,7 @@ DocType: LDAP Settings,Organizational Unit for Users,ഉപയോക്താക ,Transaction Log Report,ഇടപാട് ലോഗ് റിപ്പോർട്ട് DocType: Custom DocPerm,Custom DocPerm,കസ്റ്റം DocPerm DocType: Newsletter,Send Unsubscribe Link,അയയ്ക്കുക അൺസബ്സ്ക്രൈബ് ലിങ്ക് +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,നിങ്ങളുടെ ഫയൽ ഇറക്കുമതി ചെയ്യുന്നതിന് മുമ്പ് ചില ലിങ്കുചെയ്ത റെക്കോർഡുകൾ സൃഷ്ടിക്കേണ്ടതുണ്ട്. കാണാതായ ഇനിപ്പറയുന്ന റെക്കോർഡുകൾ സ്വയമേവ സൃഷ്ടിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നുണ്ടോ? DocType: Access Log,Method,രീതിയുടെ DocType: Report,Script Report,സ്ക്രിപ്റ്റ് റിപ്പോർട്ട് DocType: OAuth Authorization Code,Scopes,സ്കോപ്പുകൾ @@ -970,6 +989,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,വിജയകരമായി അപ്‌ലോഡുചെയ്‌തു apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,നിങ്ങൾ ഇന്റർനെറ്റുമായി ബന്ധിപ്പിച്ചിരിക്കുന്നു. DocType: Social Login Key,Enable Social Login,സോഷ്യൽ ലോഗിൻ പ്രാപ്തമാക്കുക +DocType: Data Import Beta,Warnings,മുന്നറിയിപ്പുകൾ DocType: Communication,Event,ഇവന്റ് apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",{0} ന് {1} എഴുതി: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,സ്റ്റാൻഡേർഡ് ഫീൽഡ് ഇല്ലാതാക്കാൻ കഴിയില്ല. ആവശ്യമെങ്കിൽ അത് മറയ്ക്കാം @@ -1025,6 +1045,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,താഴ DocType: Kanban Board Column,Blue,ബ്ലൂ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,എല്ലാ ഇച്ഛാനുസൃതമാക്കലുകൾ നീക്കം ചെയ്യും. ദയവായി ഉറപ്പിക്കു. DocType: Page,Page HTML,പേജ് എച്ച്ടിഎംഎൽ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,തെറ്റായ വരികൾ കയറ്റുമതി ചെയ്യുക apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ഗ്രൂപ്പ് നാമം ശൂന്യമായിരിക്കരുത്. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,കൂടുതലായ നോഡുകൾ മാത്രം 'ഗ്രൂപ്പ്' ടൈപ്പ് നോഡുകൾ പ്രകാരം സൃഷ്ടിക്കാൻ കഴിയും DocType: SMS Parameter,Header,തലക്കുറി @@ -1070,7 +1091,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,ഔട്ട്ഗേ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ഒരു തിരഞ്ഞെടുക്കുക DocType: Data Export,Filter List,ഫിൽട്ടർ ലിസ്റ്റ് DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,നിങ്ങളുടെ പാസ്വേഡ് അപ്ഡേറ്റ് ചെയ്തു. ഇവിടെ പുതിയ പാസ്വേഡ് ആണ് DocType: Email Account,Auto Reply Message,ഓട്ടോ മറുപടി സന്ദേശം DocType: Data Migration Mapping,Condition,കണ്ടീഷൻ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} മണിക്കൂർ മുമ്പ് @@ -1079,7 +1099,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,യൂസർ ഐഡി DocType: Communication,Sent,അയച്ചവ DocType: Address,Kerala,കേരളം -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,ഭരണകൂടം DocType: User,Simultaneous Sessions,ഒരേസമയത്ത് സെഷനുകൾ DocType: Social Login Key,Client Credentials,ക്ലയന്റ് ക്രഡൻഷ്യലുകൾ @@ -1111,7 +1130,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},അപ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,യജമാനന് DocType: DocType,User Cannot Create,ഉപയോക്താവ് സൃഷ്ടിക്കാൻ കഴിയില്ല apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,പൂർത്തിയായി -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,ഫോൾഡർ {0} നിലവിലില്ല apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ഡ്രോപ്പ്ബോക്സ് ആക്സസ് അംഗീകാരം ലഭിച്ചു! DocType: Customize Form,Enter Form Type,ഫോം ടൈപ്പ് നൽകുക DocType: Google Drive,Authorize Google Drive Access,Google ഡ്രൈവ് ആക്‌സസ്സ് അംഗീകരിക്കുക @@ -1119,7 +1137,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,ഇല്ല റെക്കോഡുകൾ ടാഗ് ചെയ്തു. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ഫീൽഡ് നീക്കംചെയ്യുക apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,നിങ്ങൾ ഇന്റർനെറ്റിൽ കണക്റ്റുചെയ്തിട്ടില്ല. കുറച്ച് സമയത്തിനുശേഷം വീണ്ടും ശ്രമിക്കുക. -DocType: User,Send Password Update Notification,പാസ്വേഡ് അപ്ഡേറ്റ് അറിയിപ്പ് അയയ്ക്കുക apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType അനുവദിച്ചത്. ശ്രദ്ധാലുവായിരിക്കുക!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","അച്ചടി, ഇമെയിൽ ഇച്ഛാനുസൃതമാക്കിയിട്ടുള്ള ഫോർമാറ്റുകൾ" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},തുക {0} @@ -1202,6 +1219,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,തെറ്റാ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google കോൺടാക്റ്റുകളുടെ സംയോജനം പ്രവർത്തനരഹിതമാക്കി. DocType: Assignment Rule,Description,വിവരണം DocType: Print Settings,Repeat Header and Footer in PDF,പീഡിയെഫ് തലക്കെട്ട് പാദലേഖവും ആവർത്തിക്കുക +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,പരാജയം DocType: Address Template,Is Default,സ്വതവേ DocType: Data Migration Connector,Connector Type,കണക്റ്റർ തരം apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,നിരയുടെ പേര് ശൂന്യമായിരിക്കരുത് @@ -1265,6 +1283,7 @@ DocType: Print Settings,Enable Raw Printing,അസംസ്കൃത അച് DocType: Website Route Redirect,Source,ഉറവിടം apps/frappe/frappe/templates/includes/list/filters.html,clear,വ്യക്തമായ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,പൂർത്തിയായി +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,സജ്ജീകരണം> ഉപയോക്താവ് DocType: Prepared Report,Filter Values,മൂല്യങ്ങൾ ഫിൽട്ടർ ചെയ്യുക DocType: Communication,User Tags,ഉപയോക്താവിന്റെ ടാഗുകൾ DocType: Data Migration Run,Fail,പരാജയം @@ -1321,6 +1340,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,പ ,Activity,പ്രവർത്തനം DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","സഹായം: ലിങ്ക്യുആര്എല് പോലെ "[പേര് കുറിപ്പ്] # ഫോം / നോട്ട് /", സിസ്റ്റം മറ്റൊരു റെക്കോർഡ് താളിലേക്ക് ഉപയോഗിക്കുന്നതിനായി. ("http: //" ഉപയോഗിക്കരുത്)" DocType: User Permission,Allow,അനുവദിക്കുക +DocType: Data Import Beta,Update Existing Records,നിലവിലുള്ള റെക്കോർഡുകൾ അപ്‌ഡേറ്റുചെയ്യുക apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,യുടെ ആവർത്തിച്ചുള്ള പദങ്ങളും പ്രതീകങ്ങളും വിട്ടകന്നു DocType: Energy Point Rule,Energy Point Rule,എനർജി പോയിന്റ് റൂൾ DocType: Communication,Delayed,വൈകിയ @@ -1333,9 +1353,7 @@ DocType: Milestone,Track Field,ഫീൽഡ് ട്രാക്കുചെയ DocType: Notification,Set Property After Alert,അലേർട്ട് ശേഷം പ്രോപ്പർട്ടി സജ്ജീകരിക്കുക apps/frappe/frappe/config/customization.py,Add fields to forms.,ഫോമുകൾ വയലിൽ ചേർക്കുക. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,എന്തെങ്കിലും ഈ സൈറ്റിന്റെ പേപാൽ കോൺഫിഗറേഷൻ തെറ്റ് തോന്നുന്നു. -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/sidebar/review.js,Add Review,അവലോകനം ചേർക്കുക -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ഫോണ്ട് വലുപ്പം (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,ഇഷ്‌ടാനുസൃത ഫോമിൽ നിന്ന് ഇഷ്‌ടാനുസൃതമാക്കാൻ സാധാരണ ഡോക്‌ടൈപ്പുകൾ മാത്രമേ അനുവദിക്കൂ. DocType: Email Account,Sendgrid,Sendgrid @@ -1371,6 +1389,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ഫ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ക്ഷമിക്കണം! നിങ്ങൾ സ്വയം സൃഷ്ടിക്കപ്പെടുന്ന അഭിപ്രായങ്ങൾ ഇല്ലാതാക്കാൻ കഴിയില്ല DocType: Google Settings,Used For Google Maps Integration.,Google മാപ്‌സ് സംയോജനത്തിനായി ഉപയോഗിക്കുന്നു. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,റഫറൻസ് DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,റെക്കോർഡുകളൊന്നും എക്‌സ്‌പോർട്ടുചെയ്യില്ല DocType: User,System User,സിസ്റ്റം ഉപയോക്താവ് DocType: Report,Is Standard,സ്റ്റാൻഡേർഡ് Is DocType: Desktop Icon,_report,_രെപൊര്ത് @@ -1385,6 +1404,7 @@ DocType: Workflow State,minus-sign,മൈനസ്-അടയാളം apps/frappe/frappe/public/js/frappe/request.js,Not Found,കാണ്മാനില്ല apps/frappe/frappe/www/printview.py,No {0} permission,ഇല്ല {0} അനുമതി apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,കയറ്റുമതി കസ്റ്റം അനുമതികൾ +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ഇനങ്ങളൊന്നും കണ്ടെത്തിയില്ല. DocType: Data Export,Fields Multicheck,ഫീൽഡുകൾ മൾട്ടിചാക്ക് DocType: Activity Log,Login,ലോഗിൻ DocType: Web Form,Payments,പേയ്മെൻറുകൾ @@ -1445,7 +1465,7 @@ DocType: Email Account,Default Incoming,സ്വതേ ഇൻകമിംഗ് DocType: Workflow State,repeat,ആവർത്തിച്ച് DocType: Website Settings,Banner,ബാനർ DocType: Role,"If disabled, this role will be removed from all users.","അപ്രാപ്തമാക്കിയിട്ടുണ്ടെങ്കിൽ, ഈ പങ്ക് എല്ലാ ഉപയോക്താക്കൾക്കും നിന്നും നീക്കം ചെയ്യും." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} ലിസ്റ്റിലേക്ക് പോകുക +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,തിരച്ചിൽ ന് സഹായം DocType: Milestone,Milestone Tracker,നാഴികക്കല്ല് ട്രാക്കർ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,രജിസ്ട്രേഡ് പ്രവർത്തനരഹിതമാക്കി @@ -1459,6 +1479,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,പ്രാദേശി DocType: DocType,Track Changes,ട്രാക്ക് മാറ്റങ്ങൾ DocType: Workflow State,Check,ചെക്ക് DocType: Chat Profile,Offline,ഓഫ്ലൈൻ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},ഇമ്പോർട്ടുചെയ്‌തത് {0} DocType: User,API Key,API കീ DocType: Email Account,Send unsubscribe message in email,ഇമെയിലിൽ അൺസബ്സ്ക്രൈബ് സന്ദേശം അയയ്ക്കുക apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,എഡിറ്റ് ശീർഷകം @@ -1488,7 +1509,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ 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,ആകെ പേജുകൾ -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                    No results found for '

                                                                    ,

                                                                    'എന്നതിനായി ഫലങ്ങളൊന്നും കണ്ടെത്തിയില്ല

                                                                    DocType: DocField,Attach Image,ചിത്രം അറ്റാച്ച് DocType: Workflow State,list-alt,പട്ടിക-Alt apps/frappe/frappe/www/update-password.html,Password Updated,പാസ്വേഡ് അപ്ഡേറ്റ് @@ -1508,8 +1528,10 @@ 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,ചാറ്റ് +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,സജ്ജീകരണം> ഉപയോക്തൃ അനുമതികൾ DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP ഗ്രൂപ്പ് മാപ്പിംഗ് DocType: Dashboard Chart,Chart Options,ചാർട്ട് ഓപ്ഷനുകൾ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,ശീർഷകമില്ലാത്ത നിര apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} {1} നിന്ന് {2} വരി # ലെ {3} DocType: Communication,Expired,കാലഹരണപ്പെട്ടു apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,നിങ്ങൾ ഉപയോഗിക്കുന്ന ടോക്കൺ കാണുന്നത് അസാധുവാണ്! @@ -1519,6 +1541,7 @@ DocType: DocType,System,സിസ്റ്റം DocType: Web Form,Max Attachment Size (in MB),മാക്സ് അറ്റാച്ചുമെന്റ് വ്യാപ്തി (MB) apps/frappe/frappe/www/login.html,Have an account? Login,ഒരു അക്കൗണ്ട് ഉണ്ടോ? ലോഗിൻ DocType: Workflow State,arrow-down,അമ്പ്-ഡൗൺ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},വരി {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},{1}: ഉപയോക്താവ് {0} ഇല്ലാതാക്കാൻ അനുവദിച്ചിട്ടില്ല apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} ല്‍ {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,അവസാനം അപ്ഡേറ്റ് @@ -1536,6 +1559,7 @@ DocType: Custom Role,Custom Role,കസ്റ്റം റോൾ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,ഹോം / ടെസ്റ്റ് ഫോൾഡർ 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,നിങ്ങളുടെ പാസ്വേഡ് നൽകുക DocType: Dropbox Settings,Dropbox Access Secret,ഡ്രോപ്പ്ബോക്സ് അക്സസ് രഹസ്യം +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(നിർബന്ധിതം) 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.,ഫയലിൽ ഡാറ്റയൊന്നും കണ്ടെത്തിയില്ല. പുതിയ ഫയൽ ഡാറ്റ ഉപയോഗിച്ച് വീണ്ടും അറ്റാച്ചുചെയ്യുക. @@ -1606,6 +1630,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ഡാഷ apps/frappe/frappe/desk/form/assign_to.py,New Message,പുതിയ സന്ദേശം DocType: File,Preview HTML,പ്രിവ്യൂ എച്ച്ടിഎംഎൽ DocType: Desktop Icon,query-report,അന്വേഷണവുമായി-റിപ്പോര്ട്ട് +DocType: Data Import Beta,Template Warnings,ടെംപ്ലേറ്റ് മുന്നറിയിപ്പുകൾ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,സംരക്ഷിച്ച ഫിൽട്ടറുകൾ DocType: DocField,Percent,ശതമാനം apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,ഫിൽട്ടറുകൾ സജ്ജമാക്കുക @@ -1627,6 +1652,7 @@ DocType: Custom Field,Custom,കസ്റ്റം DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","പ്രാപ്തമാക്കിയിട്ടുണ്ടെങ്കിൽ, നിയന്ത്രിത IP വിലാസത്തിൽ നിന്ന് ലോഗിൻ ചെയ്യുന്ന ഉപയോക്താക്കൾക്ക് രണ്ട് ഫാക്ടർ Auth ആവശ്യപ്പെടുന്നതല്ല" DocType: Auto Repeat,Get Contacts,കോൺടാക്റ്റുകൾ നേടുക apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} പ്രകാരം സമർപ്പിച്ച പോസ്റ്റുകൾ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ശീർഷകമില്ലാത്ത നിര ഒഴിവാക്കുന്നു DocType: Notification,Send alert if date matches this field's value,തീയതി ഈ ഫീൽഡ് മൂല്യം പൊരുത്തപ്പെടുന്നുണ്ടോയെന്ന കാര്യം അലേർട്ട് അയയ്ക്കുക DocType: Workflow,Transitions,സംക്രമണങ്ങളും apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} {2} ലേക്ക് @@ -1650,6 +1676,7 @@ DocType: Workflow State,step-backward,ഘട്ടം പിന്നാക് apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,നിങ്ങളുടെ സൈറ്റ് ക്രമീകരണ ലെ ഡ്രോപ്പ്ബോക്സ് പ്രവേശനം സജ്ജീകരിക്കുക apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,ഈ ഇമെയിൽ വിലാസത്തിലേക്ക് അയയ്ക്കുന്നത് അനുവദിക്കുന്നതിന് ഈ റെക്കോർഡ് ഇല്ലാതാക്കുക +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","നിലവാരമില്ലാത്ത പോർട്ട് ആണെങ്കിൽ (ഉദാ. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,കുറുക്കുവഴികൾ ഇഷ്‌ടാനുസൃതമാക്കുക apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,മാത്രം നിർബന്ധമായി ഫീൽഡുകളിൽ പുതിയ റെക്കോഡുകൾ അനിവാര്യവുമാണ്. നിങ്ങൾ ആഗ്രഹിക്കുന്നെങ്കിൽ-അല്ലാത്ത നിർബന്ധമായി നിരകൾ ഇല്ലാതാക്കാൻ കഴിയും. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,കൂടുതൽ പ്രവർത്തനം കാണിക്കുക @@ -1754,6 +1781,7 @@ 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 അപ്ലിക്കേഷൻ 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,കത്ത് DocType: DocType,"Naming Options:
                                                                    1. field:[fieldname] - By Field
                                                                    2. naming_series: - By Naming Series (field called naming_series must be present
                                                                    3. Prompt - Prompt user for a name
                                                                    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                    5. @@ -1767,6 +1795,7 @@ DocType: GCalendar Account,Next Sync Token,അടുത്ത സമന്വയ DocType: Energy Point Settings,Energy Point Settings,എനർജി പോയിന്റ് ക്രമീകരണങ്ങൾ DocType: Async Task,Succeeded,പിൻഗാമി apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} ആവശ്യമായ നിർബന്ധിതം ഫീൽഡുകൾ +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                      No results found for '

                                                                      ,

                                                                      'എന്നതിനായി ഫലങ്ങളൊന്നും കണ്ടെത്തിയില്ല

                                                                      apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} വേണ്ടി പുനഃസജ്ജമാക്കുക അനുമതികൾ? apps/frappe/frappe/config/desktop.py,Users and Permissions,ഉപയോക്താക്കൾ അനുമതികളും DocType: S3 Backup Settings,S3 Backup Settings,S3 ബാക്കപ്പ് ക്രമീകരണങ്ങൾ @@ -1837,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ൽ DocType: Notification,Value Change,മൂല്യം മാറ്റുക DocType: Google Contacts,Authorize Google Contacts Access,Google കോൺ‌ടാക്റ്റ് ആക്സസ് അംഗീകരിക്കുക apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,റിപ്പോർട്ടിനിൽ നിന്ന് സംഖ്യാശാസ്ത്ര ഫീൽഡുകൾ മാത്രം കാണിക്കുന്നു +DocType: Data Import Beta,Import Type,ഇറക്കുമതി തരം DocType: Access Log,HTML Page,HTML പേജ് DocType: Address,Subsidiary,സഹായകന് apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ ട്രേയിലേക്കുള്ള കണക്ഷൻ ശ്രമിക്കുന്നു ... @@ -1847,7 +1877,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,അസാ DocType: Custom DocPerm,Write,എഴുതുക apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,മാത്രം അഡ്മിനിസ്ട്രേറ്റർ അന്വേഷണം / സ്ക്രിപ്റ്റ് റിപ്പോർട്ടുകൾ സൃഷ്ടിക്കുക അനുവദിച്ചു apps/frappe/frappe/public/js/frappe/form/save.js,Updating,പുതുക്കുന്നു -DocType: File,Preview,പ്രിവ്യൂ +DocType: Data Import Beta,Preview,പ്രിവ്യൂ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ഫീൽഡ് "മൂല്യം" നിർബന്ധമാണ്. അപ്ഡേറ്റ് ചെയ്യാൻ മൂല്യം ദയവായി വ്യക്തമാക്കുക DocType: Customize Form,Use this fieldname to generate title,ശീർഷകം ഉണ്ടാക്കുന്നതിനു് ഈ FIELDNAME ഉപയോഗിക്കുക apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,നിന്നും ഇറക്കുമതി ഇമെയിൽ @@ -1958,7 +1988,6 @@ DocType: GCalendar Account,Session Token,സെഷൻ ടോക്കൺ DocType: Currency,Symbol,ചിഹ്നം apps/frappe/frappe/model/base_document.py,Row #{0}:,വരി # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,ഡാറ്റ ഇല്ലാതാക്കുന്നത് സ്ഥിരീകരിക്കുക -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,പുതിയ പാസ്വേഡ് ഇമെയിൽ ചെയ്തു apps/frappe/frappe/auth.py,Login not allowed at this time,ലോഗ് ഈ സമയം അനുവദിച്ചിട്ടില്ല DocType: Data Migration Run,Current Mapping Action,നിലവിലെ മാപ്പിംഗ് ആക്ഷൻ DocType: Dashboard Chart Source,Source Name,ഉറവിട പേര് @@ -1971,6 +2000,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ആ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,പിന്തുടരുന്നു DocType: LDAP Settings,LDAP Email Field,എൽഡാപ്പ് ഇമെയിൽ ഫീൽഡ് apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} പട്ടിക +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} റെക്കോർഡുകൾ എക്‌സ്‌പോർട്ടുചെയ്യുക apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ഇതിനകം ചെയ്യാനുള്ളത് ഉപയോക്താവിന്റെ ലിസ്റ്റിൽ DocType: User Email,Enable Outgoing,അയയ്ക്കുന്ന പ്രവർത്തനക്ഷമമാക്കുക DocType: Address,Fax,ഫാക്സ് @@ -2030,7 +2060,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,അച്ചടി രേഖകൾ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ഫീൽഡിലേക്ക് പോകുക DocType: Contact Us Settings,Forward To Email Address,ഫോർവേഡ് ഇമെയിൽ വിലാസത്തിലേക്ക് +DocType: Contact Phone,Is Primary Phone,പ്രാഥമിക ഫോൺ ആണ് DocType: Auto Email Report,Weekdays,ആഴ്ച ദിനങ്ങൾ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} റെക്കോർഡുകൾ എക്‌സ്‌പോർട്ടുചെയ്യും apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,തലക്കെട്ട് ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം DocType: Post Comment,Post Comment,അഭിപ്രായം പോസ്റ്റുചെയ്യുക apps/frappe/frappe/config/core.py,Documents,പ്രമാണങ്ങൾ @@ -2049,7 +2081,9 @@ eval:doc.age>18",myfield .പൗരോഹിത്യം: doc.myfield == & DocType: Social Login Key,Office 365,ഓഫീസ് 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ഇന്ന് apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ഇന്ന് +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","നിങ്ങൾ ഈ വെച്ചിരിക്കുന്നു ഒരിക്കൽ, ഉപയോക്താക്കൾക്ക് സാധിച്ചിരുന്നു ആക്സസ് രേഖകൾ (ഉദാ. പോസ്റ്റിന്റെ ബ്ലോഗ്) ലിങ്ക് നിലനിൽക്കുന്ന ആയിരിക്കും (ഉദാ. ബ്ലോഗർ)." +DocType: Data Import Beta,Submit After Import,ഇറക്കുമതിക്ക് ശേഷം സമർപ്പിക്കുക DocType: Error Log,Log of Scheduler Errors,ഷെഡ്യൂളുകൾ അബദ്ധങ്ങൾ പ്രവേശിക്കുക DocType: User,Bio,ബയോ DocType: OAuth Client,App Client Secret,അപ്ലിക്കേഷൻ ക്ലയന്റ് രഹസ്യം @@ -2068,10 +2102,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,ലോഗ് പേജിലെ കസ്റ്റമർ സൈൻഅപ്പ് ലിങ്ക് പ്രവർത്തനരഹിതമാക്കുക apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ ഉടമ നിയോഗിച്ചിട്ടുള്ള DocType: Workflow State,arrow-left,അമ്പ്-ഇടത് +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,എക്‌സ്‌പോർട്ട് 1 റെക്കോർഡ് DocType: Workflow State,fullscreen,പൂർണ്ണ സ്ക്രീൻ DocType: Chat Token,Chat Token,ചാറ്റ് ടോക്കൺ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ചാർട്ട് സൃഷ്ടിക്കുക apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ഇറക്കുമതി ചെയ്യരുത് DocType: Web Page,Center,കേന്ദ്രം DocType: Notification,Value To Be Set,മൂല്യം സജ്ജമാക്കാൻ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} എഡിറ്റുചെയ്യുക @@ -2091,6 +2127,7 @@ DocType: Print Format,Show Section Headings,വിഭാഗം തലക്ക DocType: Bulk Update,Limit,പരിധി apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},ഇതുമായി ബന്ധപ്പെട്ട {0} ഡാറ്റ ഇല്ലാതാക്കുന്നതിനുള്ള അഭ്യർത്ഥന ഞങ്ങൾക്ക് ലഭിച്ചു: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,ഒരു പുതിയ വിഭാഗം ചേർക്കുക +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,ഫിൽട്ടർ ചെയ്ത റെക്കോർഡുകൾ apps/frappe/frappe/www/printview.py,No template found at path: {0},പാത ചെയ്തത് കണ്ടെത്തിയില്ല ഫലകം: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ഇമെയിൽ അക്കൗണ്ട് ഇല്ല DocType: Comment,Cancelled,റദ്ദാക്കി @@ -2176,7 +2213,9 @@ 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} 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,നിങ്ങളുടെ ലോഗിൻ ഐഡി ആയിരിക്കും +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,ആഗോള തിരയൽ പ്രമാണ തരങ്ങൾ പുന .സജ്ജമാക്കുക. ,Lead Conversion Time,പരിവർത്തന സമയം ലീഡ് ചെയ്യുക apps/frappe/frappe/desk/page/activity/activity.js,Build Report,റിപ്പോർട്ട് ബിൽഡ് DocType: Note,Notify users with a popup when they log in,അവർ പ്രവേശിക്കുന്ന സമയത്ത് പോപപ്പ് ഉപയോക്താക്കൾക്ക് അറിയിക്കുക @@ -2196,8 +2235,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,അടയ്ക്കുക 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,സജ്ജീകരണം> ഉപയോക്തൃ അനുമതികൾ -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,പുതുക്കിയ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,പുതുക്കിയ DocType: Transaction Log,Transaction Hash,ഇടപാട് ഹാഷ് DocType: Error Snapshot,Snapshot View,സ്നാപ്ഷോട്ട് കാണുക apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,അയക്കുന്നതിന് മുമ്പ് വാർത്താക്കുറിപ്പ് ദയവായി സംരക്ഷിക്കുക @@ -2224,7 +2262,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,പോയിന് DocType: SMS Settings,SMS Gateway URL,എസ്എംഎസ് ഗേറ്റ്വേ യുആർഎൽ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" പാടില്ല. ഇത് "{3}" ഒരെണ്ണം ആയിരിക്കണം apps/frappe/frappe/utils/data.py,{0} or {1},{0} അല്ലെങ്കിൽ {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,പാസ്വേഡ് അപ്ഡേറ്റ് DocType: Workflow State,trash,നിസ്സാരവസ്തു DocType: System Settings,Older backups will be automatically deleted,പഴയ ബാക്കപ്പുകൾ സ്വയം ഇല്ലാതാക്കും apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,അസാധുവായ ആക്സസ് കീ ഐഡി അല്ലെങ്കിൽ രഹസ്യ ആക്സസ് കീ. @@ -2252,6 +2289,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,ഒ DocType: Address,Preferred Shipping Address,തിരഞ്ഞെടുത്ത ഷിപ്പിംഗ് വിലാസം apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,കത്ത് തല apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} {1} ഈ സൃഷ്ടിച്ചു +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരിക്കുന്നില്ല. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് ഒരു പുതിയ ഇമെയിൽ അക്ക create ണ്ട് സൃഷ്ടിക്കുക DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","ഇത് പരിശോധിച്ചെങ്കിൽ, സാധുവായ ഡാറ്റയുള്ള വരികൾ ഇറക്കുമതി ചെയ്യപ്പെടും, പിന്നീട് നിങ്ങൾ ഇറക്കുമതിചെയ്യാനുള്ള ഒരു പുതിയ ഫയലിലേക്ക് അസാധുവായ വരികളെ ഡ്രോപ്പുചെയ്യും." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ഡോക്യുമെന്റ് പങ്കിനെ ഉപയോക്താക്കൾ മാത്രം എഡിറ്റുചെയ്യാൻ @@ -2278,6 +2316,7 @@ DocType: Custom Field,Is Mandatory Field,നിർബന്ധിതം ഫീ DocType: User,Website User,വെബ്സൈറ്റ് ഉപയോക്താവ് apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,PDF- ലേക്ക് പ്രിന്റുചെയ്യുമ്പോൾ ചില നിരകൾ മുറിച്ചേക്കാം. നിരകളുടെ എണ്ണം 10 ന് താഴെ സൂക്ഷിക്കാൻ ശ്രമിക്കുക. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,ഒരിക്കലും പാടില്ല സമമായവ +DocType: Data Import Beta,Don't Send Emails,ഇമെയിലുകൾ അയയ്‌ക്കരുത് DocType: Integration Request,Integration Request Service,ഇന്റഗ്രേഷൻ അഭ്യർത്ഥന സേവനം DocType: Access Log,Access Log,പ്രവേശന ലോഗ് DocType: Website Script,Script to attach to all web pages.,എല്ലാ വെബ് പേജുകളും അറ്റാച്ചുചെയ്യുന്നതിന് സ്ക്രിപ്റ്റ്. @@ -2317,6 +2356,7 @@ DocType: Contact,Passive,നിഷ്കിയമായ DocType: Auto Repeat,Accounts Manager,അക്കൗണ്ടുകൾ മാനേജർ apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} എന്നതിനുള്ള അസൈൻമെന്റ് apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,നിങ്ങളുടെ പേയ്മെന്റ് റദ്ദാക്കി. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് സ്ഥിരസ്ഥിതി ഇമെയിൽ അക്കൗണ്ട് സജ്ജമാക്കുക apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,ഫയൽ തെരഞ്ഞെടുക്കു apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,എല്ലാം കാണുക DocType: Help Article,Knowledge Base Editor,ബേസ് എഡിറ്റർ @@ -2349,6 +2389,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,ഡാറ്റാ apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,ഡോക്യുമെന്റ് അവസ്ഥ apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,അംഗീകാരം ആവശ്യമാണ് +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,നിങ്ങളുടെ ഫയൽ ഞങ്ങൾക്ക് ഇറക്കുമതി ചെയ്യുന്നതിന് മുമ്പ് ഇനിപ്പറയുന്ന റെക്കോർഡുകൾ സൃഷ്ടിക്കേണ്ടതുണ്ട്. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth അംഗീകാരമുള്ള കോഡ് apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,ഇംപോർട്ട് അനുവദിച്ചിട്ടില്ല DocType: Deleted Document,Deleted DocType,ഇല്ലാതാക്കി DocType @@ -2402,8 +2443,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API ക്രെഡെ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,സെഷൻ ആരംഭിക്കുക പരാജയപ്പെട്ടു apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,സെഷൻ ആരംഭിക്കുക പരാജയപ്പെട്ടു apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ഈ ഇമെയിൽ {0} അയയ്ക്കുന്ന {1} പകർത്തിയിട്ടുണ്ട് +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ഈ പ്രമാണം സമർപ്പിച്ചു {0} DocType: Workflow State,th,ആം -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ് DocType: Social Login Key,Provider Name,ദാതാവിന്റെ പേര് apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ഒരു പുതിയ {0} സൃഷ്ടിക്കുക DocType: Contact,Google Contacts,Google കോൺടാക്റ്റുകൾ @@ -2411,6 +2452,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar അക്കൗണ്ട DocType: Email Rule,Is Spam,സ്പാം ആണ് apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},റിപ്പോർട്ട് {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},തുറക്കുക {0} +DocType: Data Import Beta,Import Warnings,ഇമ്പോർട്ടുചെയ്യൽ മുന്നറിയിപ്പുകൾ DocType: OAuth Client,Default Redirect URI,സ്വതേ റീഡയറക്റ്റ് യൂആര്ഐ DocType: Auto Repeat,Recipients,സ്വീകർത്താക്കൾ DocType: System Settings,Choose authentication method to be used by all users,എല്ലാ ഉപയോക്താക്കൾക്കും ഉപയോഗിക്കാനുള്ള പ്രാമാണീകരണ രീതി തിരഞ്ഞെടുക്കുക @@ -2541,6 +2583,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,പുതിയ സൃഷ്ടിക്കുക DocType: Workflow State,chevron-down,ഷെവ്റോൺ-ഡൗൺ apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),ഇമെയിൽ {0} (അപ്രാപ്തമാക്കി / സബ്സ്ക്രൈബുചെയ്യാത്ത) അയച്ചില്ല +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,എക്‌സ്‌പോർട്ടുചെയ്യാൻ ഫീൽഡുകൾ തിരഞ്ഞെടുക്കുക DocType: Async Task,Traceback,തിരഞ്ഞു നോക്കുക DocType: Currency,Smallest Currency Fraction Value,ചെറിയ നാണയ വിഭജനപ്രവര്ത്തി മൂല്യം apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,റിപ്പോർട്ട് തയ്യാറാക്കുന്നു @@ -2549,6 +2592,7 @@ DocType: Workflow State,th-list,ാം-പട്ടിക DocType: Web Page,Enable Comments,അഭിപ്രായങ്ങൾ പ്രാപ്തമാക്കുക apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,കുറിപ്പുകൾ DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),മാത്രം ഈ ഐപി നിന്നും ഉപയോക്താവിനെ നിയന്ത്രിക്കുക. അനവധി ഐപി വിലാസങ്ങൾ കോമ കൊണ്ട് വേർതിരിച്ചുകൊണ്ട് ചേർത്തു കഴിയും. എതിരെ (111.111.111) പോലുള്ള ഭാഗിക ഐപി വിലാസങ്ങൾ സ്വീകരിക്കുകയുള്ളൂ +DocType: Data Import Beta,Import Preview,പ്രിവ്യൂ ഇറക്കുമതി ചെയ്യുക DocType: Communication,From,നിന്നും apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,ആദ്യം ഒരു ഗ്രൂപ്പ് നോഡ് തിരഞ്ഞെടുക്കുക. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} {1} കണ്ടെത്താം @@ -2646,6 +2690,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,ഇടയില് DocType: Social Login Key,fairlogin,ഉദ്ഘാടനം DocType: Async Task,Queued,ക്യൂവിലാക്കി +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,സജ്ജീകരണം> ഫോം ഇച്ഛാനുസൃതമാക്കുക DocType: Braintree Settings,Use Sandbox,താങ്കളെ apps/frappe/frappe/utils/goal.py,This month,ഈ മാസം apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,പുതിയ കസ്റ്റം പ്രിന്റ് ഫോർമാറ്റ് @@ -2660,6 +2705,7 @@ DocType: Session Default,Session Default,സെഷൻ സ്ഥിരസ്ഥ DocType: Chat Room,Last Message,അവസാന സന്ദേശം DocType: OAuth Bearer Token,Access Token,അക്സസ് ടോക്കൺ DocType: About Us Settings,Org History,ORG ചരിത്രം +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,ഏകദേശം {0} മിനിറ്റ് ശേഷിക്കുന്നു DocType: Auto Repeat,Next Schedule Date,അടുത്ത ഷെഡ്യൂൾ തീയതി DocType: Workflow,Workflow Name,വർക്ക്ഫ്ലോ പേര് DocType: DocShare,Notify by Email,ഇമെയിൽ വഴി അറിയിക്കുക @@ -2689,6 +2735,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,സ്രഷ്ടാവ് apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,അയയ്ക്കുന്നു പുനരാരംഭിക്കുക apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,വീണ്ടും തുറക്കുക +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,മുന്നറിയിപ്പുകൾ കാണിക്കുക apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},മറു: {0} DocType: Address,Purchase User,വാങ്ങൽ ഉപയോക്താവ് DocType: Data Migration Run,Push Failed,പുഷ് പരാജയപ്പെട്ടു @@ -2726,6 +2773,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,വി apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,വാർത്താക്കുറിപ്പ് കാണുന്നതിന് നിങ്ങളെ അനുവദിച്ചിട്ടില്ല. DocType: User,Interests,താൽപ്പര്യങ്ങൾ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,പാസ്വേഡ് പുനഃക്രമീകരിക്കാനുള്ള നിർദ്ദേശങ്ങൾ നിങ്ങളുടെ ഇമെയിൽ അയച്ചിട്ടുണ്ട് +DocType: Energy Point Rule,Allot Points To Assigned Users,നിയുക്ത ഉപയോക്താക്കൾക്ക് പോയിന്റുകൾ അനുവദിക്കുക apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","ലെവൽ 0 ഫീൽഡ് നില അനുമതികൾ വേണ്ടി ഉയർന്ന \, പ്രമാണം നില അനുമതികൾ വേണ്ടി ആണ്." DocType: Contact Email,Is Primary,പ്രാഥമികമാണ് @@ -2749,6 +2797,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,പുബ്ലിശബ്ലെ കീ DocType: Stripe Settings,Publishable Key,പുബ്ലിശബ്ലെ കീ apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,ഇറക്കുമതി ആരംഭിക്കുക +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,എക്സ്പോർട്ട് തരം DocType: Workflow State,circle-arrow-left,സർക്കിൾ-അമ്പ്-ഇടത് DocType: System Settings,Force User to Reset Password,പാസ്‌വേഡ് പുന reset സജ്ജമാക്കാൻ ഉപയോക്താവിനെ നിർബന്ധിക്കുക apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,പ്രവർത്തിക്കുന്നില്ല Redis കാഷെ സെർവർ. അഡ്മിനിസ്ട്രേറ്റർ / ടെക് പിന്തുണ ബന്ധപ്പെടുക @@ -2763,10 +2812,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,പേര് പ് apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ഇമെയിൽ ഇൻബോക്സ് DocType: Auto Email Report,Filters Display,ഫിൽട്ടറുകൾ പ്രദർശിപ്പിക്കുക apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ഒരു ഭേദഗതി വരുത്താൻ "amend_from" ഫീൽഡ് ഉണ്ടായിരിക്കണം. +DocType: Contact,Numbers,നമ്പറുകൾ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ഫിൽട്ടറുകൾ സംരക്ഷിക്കുക DocType: Address,Plant,പ്ലാന്റ് apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,എല്ലാവർക്കും മറുപടി DocType: DocType,Setup,സജ്ജമാക്കുക +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,എല്ലാ റെക്കോർഡുകളും DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google കോൺ‌ടാക്റ്റുകൾ സമന്വയിപ്പിക്കേണ്ട ഇമെയിൽ വിലാസം. DocType: Email Account,Initial Sync Count,പ്രാരംഭ സമന്വയ എണ്ണം DocType: Workflow State,glass,ഗ്ലാസ് @@ -2791,7 +2842,7 @@ DocType: Workflow State,font,ഫോണ്ട് DocType: DocType,Show Preview Popup,പ്രിവ്യൂ പോപ്പ്അപ്പ് കാണിക്കുക apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ഇത് ഒരു ടോപ്-100 സാധാരണ പാസ്വേഡ്. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,പോപ്പ്-അപ്പുകൾ ദയവായി -DocType: User,Mobile No,മൊബൈൽ ഇല്ല +DocType: Contact,Mobile No,മൊബൈൽ ഇല്ല DocType: Communication,Text Content,വാചക ഉള്ളടക്കം DocType: Customize Form Field,Is Custom Field,കസ്റ്റം ഫീൽഡ് Is DocType: Workflow,"If checked, all other workflows become inactive.","പരിശോധിച്ചാൽ, മറ്റെല്ലാ വർക്ക്ഫ്ലോകൾ നിര്ജീവ തീർന്നിരിക്കുന്നു." @@ -2837,6 +2888,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ഫ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,പുതിയ പ്രിന്റ് ഫോർമാറ്റ് പേര് apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,സൈഡ്ബാർ ടോഗിൾ ചെയ്യുക DocType: Data Migration Run,Pull Insert,ഇൻസേർട്ട് ചെയ്യുക +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",ഗുണിത മൂല്യത്തിനൊപ്പം പോയിന്റുകൾ ഗുണിച്ചതിനുശേഷം അനുവദനീയമായ പരമാവധി പോയിന്റുകൾ (കുറിപ്പ്: പരിധിയില്ലാതെ ഈ ഫീൽഡ് ശൂന്യമാക്കുക അല്ലെങ്കിൽ 0 സജ്ജമാക്കുക) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,അസാധുവായ ടെംപ്ലേറ്റ് apps/frappe/frappe/model/db_query.py,Illegal SQL Query,നിയമവിരുദ്ധമായ SQL അന്വേഷണം apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,നിർബന്ധിതം: DocType: Chat Message,Mentions,പരാമർശങ്ങൾ @@ -2877,9 +2931,11 @@ DocType: Braintree Settings,Public Key,പൊതു കീ DocType: GSuite Settings,GSuite Settings,ഗ്സുഇതെ ക്രമീകരണങ്ങൾ DocType: Address,Links,ലിങ്കുകൾ DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,ഈ അക്കൗണ്ട് ഉപയോഗിച്ച് അയച്ച എല്ലാ ഇമെയിലുകൾക്കും അയച്ചയാളുടെ പേരായി ഈ അക്കൗണ്ടിൽ പരാമർശിച്ചിരിക്കുന്ന ഇമെയിൽ വിലാസ നാമം ഉപയോഗിക്കുന്നു. +DocType: Energy Point Rule,Field To Check,പരിശോധിക്കാനുള്ള ഫീൽഡ് apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,ദയവായി പ്രമാണം തരം തിരഞ്ഞെടുക്കുക. apps/frappe/frappe/model/base_document.py,Value missing for,നഷ്ടമായി മൂല്യം apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,ശിശു ചേർക്കുക +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,ഇറക്കുമതി പുരോഗതി DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",നിബന്ധന തൃപ്‌തികരമാണെങ്കിൽ ഉപയോക്താവിന് പോയിന്റുകൾ നൽകും. ഉദാ. doc.status == 'അടച്ചു' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: സമർപ്പിച്ചു റിക്കോർഡ് ഇല്ലാതാക്കാൻ കഴിയില്ല. @@ -2916,6 +2972,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google കലണ്ട apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,നിങ്ങൾ തിരയുന്ന പേജ് കാണുന്നില്ല. കാരണം അതു നീക്കി അല്ലെങ്കിൽ കണ്ണി ഒരു ഭാഷാസ്നേഹി ഇല്ല ഇതിനുള്ള കാരണമാകാം. apps/frappe/frappe/www/404.html,Error Code: {0},പിശക് കോഡ്: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","പ്ലെയിൻ ടെക്സ്റ്റ്, വരികൾ മാത്രം ഏതാനും, പേജ് ലിസ്റ്റിംഗ് വിവരണം. (പരമാവധി 140 പ്രതീകങ്ങൾ)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,നിർബന്ധിത ഫീൽഡുകളാണ് {0} DocType: Workflow,Allow Self Approval,സ്വയം അംഗീകാരം നൽകുക DocType: Event,Event Category,ഇവന്റ് വിഭാഗം apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,ജോൺ ഡോ @@ -2965,6 +3022,7 @@ apps/frappe/frappe/database/database.py,Too many writes in one request. Please s apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google ഡ്രൈവ് ക്രമീകരിച്ചു. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,മൂല്യങ്ങള് മാറിയിരിക്കുന്നു DocType: Workflow State,arrow-up,അമ്പ്-അപ്പ് +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} പട്ടികയ്‌ക്ക് കുറഞ്ഞത് ഒരു വരി ഉണ്ടായിരിക്കണം DocType: OAuth Bearer Token,Expires In,കാലഹരണപ്പെടുന്നു DocType: DocField,Allow on Submit,സമർപ്പിക്കുക അനുവദിക്കുക DocType: DocField,HTML,എച്ച്ടിഎംഎൽ @@ -3049,6 +3107,7 @@ DocType: Custom Field,Options Help,ഓപ്ഷനുകൾ സഹായം 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 റെക്കോർഡ് എക്‌സ്‌പോർട്ടുചെയ്യും 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,ഡൊമൈൻ എന്നതിലേക്ക് പരിമിതപ്പെടുത്തുക @@ -3065,6 +3124,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verification Code DocType: Webhook,Webhook Request,Webhook അഭ്യർത്ഥന apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** പരാജയപ്പെട്ടു: {2}: {0} {1} വരെ DocType: Data Migration Mapping,Mapping Type,മാപ്പിംഗ് തരം +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,നിർബന്ധിതം തിരഞ്ഞെടുക്കുക apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,ബ്രൗസ് apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","ചിഹ്നങ്ങൾ, അക്കങ്ങൾ, അല്ലെങ്കിൽ വലിയക്ഷരങ്ങളെങ്കിലും ആവശ്യമില്ല." DocType: DocField,Currency,കറൻസി @@ -3095,11 +3155,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,ലെറ്റർ ഹെഡ് അടിസ്ഥാനമാക്കി apps/frappe/frappe/utils/oauth.py,Token is missing,ടോക്കൺ കാണാനില്ല apps/frappe/frappe/www/update-password.html,Set Password,പാസ്‌വേഡ് സജ്ജമാക്കുക +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} റെക്കോർഡുകൾ വിജയകരമായി ഇറക്കുമതി ചെയ്തു. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,കുറിപ്പ്: പേജിന്റെ പേര് മാറ്റുന്നത് ഈ പേജിലേക്ക് മുമ്പത്തെ URL ഒടിച്ചുകളയും. apps/frappe/frappe/utils/file_manager.py,Removed {0},നീക്കംചെയ്തു {0} DocType: SMS Settings,SMS Settings,എസ്എംഎസ് ക്രമീകരണങ്ങൾ DocType: Company History,Highlight,ഹൈലൈറ്റ് DocType: Dashboard Chart,Sum,തുക +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,ഡാറ്റ ഇറക്കുമതി വഴി DocType: OAuth Provider Settings,Force,ശക്തിയാണ് apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},അവസാനം സമന്വയിപ്പിച്ചത് {0} DocType: DocField,Fold,മടങ്ങാണ് @@ -3135,6 +3197,7 @@ DocType: Workflow State,Home,ഹോം DocType: OAuth Provider Settings,Auto,ഓട്ടോ DocType: System Settings,User can login using Email id or User Name,ഇമെയിൽ ഐഡി അല്ലെങ്കിൽ ഉപയോക്തൃ നാമം ഉപയോഗിച്ച് ഉപയോക്താവിന് ലോഗിൻ ചെയ്യാൻ കഴിയും DocType: Workflow State,question-sign,ചോദ്യം-അടയാളം +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} പ്രവർത്തനരഹിതമാക്കി apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",വെബ് കാഴ്ചയ്ക്കായി ഫീൽഡ് "റൂട്ട്" നിർബന്ധമാണ് apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} DocType: Energy Point Rule,The user from this field will be rewarded points,ഈ ഫീൽഡിൽ നിന്നുള്ള ഉപയോക്താവിന് റിവാർഡ് പോയിന്റുകൾ ലഭിക്കും @@ -3168,6 +3231,7 @@ DocType: Website Settings,Top Bar Items,ടോപ്പ് ബാർ ഇന DocType: Notification,Print Settings,അച്ചടി ക്രമീകരണങ്ങൾ DocType: Page,Yes,അതെ DocType: DocType,Max Attachments,പരമാവധി അറ്റാച്മെന്റ് +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,ഏകദേശം {0} സെക്കൻഡ് ശേഷിക്കുന്നു DocType: Calendar View,End Date Field,അവസാന തീയതി ഫീൽഡ് apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ആഗോള കുറുക്കുവഴികൾ DocType: Desktop Icon,Page,പേജ് @@ -3277,6 +3341,7 @@ DocType: GSuite Settings,Allow GSuite access,ഗ്സുഇതെ ആക്സ DocType: DocType,DESC,DESC DocType: DocType,Naming,പേരിടൽ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,എല്ലാം തിരഞ്ഞെടുക്കുക +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},നിര {0} apps/frappe/frappe/config/customization.py,Custom Translations,കസ്റ്റം പരിഭാഷകൾ apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,പുരോഗതി apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,റോൾ എന്നയാളുടെ @@ -3319,6 +3384,7 @@ DocType: Stripe Settings,Stripe Settings,വര ക്രമീകരണങ് DocType: Stripe Settings,Stripe Settings,വര ക്രമീകരണങ്ങൾ DocType: Data Migration Mapping,Data Migration Mapping,ഡാറ്റ മൈഗ്രേഷൻ മാപ്പിംഗ് DocType: Auto Email Report,Period,കാലാവധി +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,ഏകദേശം {0} മിനിറ്റ് ശേഷിക്കുന്നു apps/frappe/frappe/www/login.py,Invalid Login Token,അസാധുവായ ലോഗിൻ ടോക്കൺ apps/frappe/frappe/public/js/frappe/chat.js,Discard,നിരാകരിക്കുക apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 മണിക്കൂർ മുമ്പ് @@ -3343,6 +3409,7 @@ DocType: Calendar View,Start Date Field,ആരംഭിക്കുന്ന ഫ DocType: Role,Role Name,റോൾ പേര് apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,പഴകിയ മാറുക apps/frappe/frappe/config/core.py,Script or Query reports,സ്ക്രിപ്റ്റ് അഥവാ ക്വയറി റിപ്പോർട്ടുകൾ +DocType: Contact Phone,Is Primary Mobile,പ്രാഥമിക മൊബൈൽ ആണ് DocType: Workflow Document State,Workflow Document State,വർക്ക്ഫ്ലോ ഡോക്യുമെന്റ് സ്റ്റേറ്റ് apps/frappe/frappe/public/js/frappe/request.js,File too big,ഫയൽ വളരെ വലുതാണ് apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ഇമെയിൽ അക്കൗണ്ട് ഒന്നിലധികം തവണ ചേർത്തു @@ -3420,6 +3487,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,ചില സവിശേഷതകൾ നിങ്ങളുടെ ബ്രൗസറിൽ പ്രവർത്തിച്ചേക്കില്ല. പുതിയ പതിപ്പിലേക്ക് നിങ്ങളുടെ ബ്രൗസർ അപ്ഡേറ്റ് ചെയ്യുക. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,ചില സവിശേഷതകൾ നിങ്ങളുടെ ബ്രൗസറിൽ പ്രവർത്തിച്ചേക്കില്ല. പുതിയ പതിപ്പിലേക്ക് നിങ്ങളുടെ ബ്രൗസർ അപ്ഡേറ്റ് ചെയ്യുക. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","അറിയില്ല, ചോദിക്കുന്നു 'സഹായം'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ഈ പ്രമാണം റദ്ദാക്കി {0} DocType: DocType,Comments and Communications will be associated with this linked document,അഭിപ്രായങ്ങള് ആശയവിനിമയവും ഈ ലിങ്കുചെയ്ത പ്രമാണം സഹകരിക്കുകയും ചെയ്യും apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,ഫിൽറ്റർ ... DocType: Workflow State,bold,ധീരമായ @@ -3494,6 +3562,7 @@ DocType: Print Settings,PDF Settings,പി.ഡി.എഫ് ക്രമീക DocType: Kanban Board Column,Column Name,നിരയുടെ പേര് DocType: Language,Based On,അടിസ്ഥാനപെടുത്തി DocType: Email Account,"For more information, click here.","കൂടുതൽ വിവരങ്ങൾക്ക്, ഇവിടെ ക്ലിക്കുചെയ്യുക ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,നിരകളുടെ എണ്ണം ഡാറ്റയുമായി പൊരുത്തപ്പെടുന്നില്ല apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,സ്ഥിരസ്ഥിതി നിർമ്മിക്കുക apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,നിർവ്വഹണ സമയം: {0} സെ apps/frappe/frappe/model/utils/__init__.py,Invalid include path,പാത്ത് ഉൾപ്പെടുത്തുന്നത് അസാധുവാണ് @@ -3581,7 +3650,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar സമന്വയ ID DocType: Prepared Report,Report Start Time,ആരംഭ സമയം റിപ്പോർട്ട് ചെയ്യുക -apps/frappe/frappe/config/settings.py,Export Data,ഡാറ്റ എക്സ്പോർട്ട് ചെയ്യുക +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ഡാറ്റ എക്സ്പോർട്ട് ചെയ്യുക 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.,ഇതൊരു പശ്ചാത്തല റിപ്പോർട്ടാണ്. ഉചിതമായ ഫിൽ‌റ്ററുകൾ‌ സജ്ജമാക്കി പുതിയതൊന്ന് സൃഷ്‌ടിക്കുക. @@ -3598,7 +3667,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},{0} സൃഷ DocType: Report,Disable Prepared Report,തയ്യാറാക്കിയ റിപ്പോർട്ട് അപ്രാപ്‌തമാക്കുക apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,നിയമവിരുദ്ധ ആക്സസ് ടോക്കൺ. വീണ്ടും ശ്രമിക്കുക apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","അപേക്ഷ ഒരു പുതിയ പതിപ്പ് പരിഷ്കരിച്ചിരിയ്ക്കുന്നു, ഈ പേജ് പുതുക്കുക" -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.,"സ്ഥിരസ്ഥിതി വിലാസ ടെംപ്ലേറ്റൊന്നും കണ്ടെത്തിയില്ല. സജ്ജീകരണം> അച്ചടി, ബ്രാൻഡിംഗ്> വിലാസ ടെംപ്ലേറ്റിൽ നിന്ന് പുതിയൊരെണ്ണം സൃഷ്ടിക്കുക." DocType: Notification,Optional: The alert will be sent if this expression is true,ഓപ്ഷണൽ: ഈ പദപ്രയോഗം ശരിയാണെങ്കിൽ ജാഗ്രതാ അയയ്ക്കും DocType: Data Migration Plan,Plan Name,പ്ലാൻ പേര് DocType: Print Settings,Print with letterhead,ലെറ്റർ ഉപയോഗിച്ച് അച്ചടിക്കുക @@ -3637,6 +3705,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: റദ്ദാക്കുക ഇല്ലാതെ നന്നാക്കുവിൻ സജ്ജീകരിക്കാൻ കഴിയില്ല apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,പൂർണ്ണ പേജ് DocType: DocType,Is Child Table,ശിശു മേശ +DocType: Data Import Beta,Template Options,ടെംപ്ലേറ്റ് ഓപ്ഷനുകൾ apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} {1} ഒന്നാണ് ആയിരിക്കണം apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} നിലവിൽ ഈ പ്രമാണം കാണുന്നു ആണ് apps/frappe/frappe/config/core.py,Background Email Queue,പശ്ചാത്തല ഇമെയിൽ ക്യൂ @@ -3644,7 +3713,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,പാസ്വേ DocType: Communication,Opened,തുറന്നത് DocType: Workflow State,chevron-left,ഷെവ്റോൺ-ഇടത് DocType: Communication,Sending,അയയ്ക്കുന്നു -apps/frappe/frappe/auth.py,Not allowed from this IP Address,ഈ ഐപി വിലാസം നിന്നും അനുവദനീയമല്ല DocType: Website Slideshow,This goes above the slideshow.,ഈ സ്ലൈഡ് മുകളിൽ പോകുന്നു. DocType: Contact,Last Name,പേരിന്റെ അവസാന ഭാഗം DocType: Event,Private,സ്വകാര്യ @@ -3658,7 +3726,6 @@ DocType: Workflow Action,Workflow Action,വർക്ക്ഫ്ലോ ആ apps/frappe/frappe/utils/bot.py,I found these: ,ഞാൻ ഈ കണ്ടെത്തി: DocType: Event,Send an email reminder in the morning,രാവിലെ ഒരു ഇമെയിൽ ഓർമ്മപ്പെടുത്തൽ അയയ്ക്കുക DocType: Blog Post,Published On,ന് പ്രസിദ്ധീകരിച്ചു -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരിക്കുന്നില്ല. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് ഒരു പുതിയ ഇമെയിൽ അക്ക create ണ്ട് സൃഷ്ടിക്കുക DocType: Contact,Gender,സ്ത്രീ apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,നിർബന്ധിതം വിവരം കാണാനില്ല: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,അഭ്യർത്ഥന URL ചെക്ക് ചെയ്യുക @@ -3678,7 +3745,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,മുന്നറിയിപ്പ്-അടയാളം DocType: Prepared Report,Prepared Report,തയ്യാറായ റിപ്പോർട്ട് apps/frappe/frappe/config/website.py,Add meta tags to your web pages,നിങ്ങളുടെ വെബ് പേജുകളിലേക്ക് മെറ്റാ ടാഗുകൾ ചേർക്കുക -DocType: Contact,Phone Nos,ഫോൺ നമ്പർ DocType: Workflow State,User,ഉപയോക്താവ് DocType: Website Settings,"Show title in browser window as ""Prefix - title""","- തലക്കെട്ടിന്റെ ഘടന" ബ്രൗസർ വിൻഡോയിൽ കാണിക്കുക ശീർഷകം DocType: Payment Gateway,Gateway Settings,ഗേറ്റ്വേ ക്രമീകരണങ്ങൾ @@ -3696,6 +3762,7 @@ DocType: Data Migration Connector,Data Migration,ഡാറ്റ മൈഗ്ര DocType: User,API Key cannot be regenerated,API കീ വീണ്ടും സൃഷ്ടിക്കാൻ കഴിയില്ല apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,എന്തോ കുഴപ്പം സംഭവിച്ചു DocType: System Settings,Number Format,നമ്പർ ഫോർമാറ്റ് +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} റെക്കോർഡ് വിജയകരമായി ഇറക്കുമതി ചെയ്തു. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,സംഗ്രഹം DocType: Event,Event Participants,ഇവന്റ് പങ്കാളികൾ DocType: Auto Repeat,Frequency,ഫ്രീക്വൻസി @@ -3703,7 +3770,7 @@ DocType: Custom Field,Insert After,ശേഷം തിരുകുക DocType: Event,Sync with Google Calendar,Google കലണ്ടറുമായി സമന്വയിപ്പിക്കുക DocType: Access Log,Report Name,റിപ്പോർട്ട് പേര് DocType: Desktop Icon,Reverse Icon Color,ഐക്കൺ വർണ്ണ വിപരീത -DocType: Notification,Save,സംരക്ഷിക്കുക +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,സംരക്ഷിക്കുക apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,അടുത്ത ഷെഡ്യൂൾ ചെയ്ത തീയതി apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,ഏറ്റവും കുറഞ്ഞ അസൈൻമെന്റുകൾ ഉള്ളയാൾക്ക് നൽകുക apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,വിഭാഗത്തിന്റെ തലക്കെട്ടിനു @@ -3726,7 +3793,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,സജ്ജീകരണം> ഫോം ഇച്ഛാനുസൃതമാക്കുക DocType: Google Contacts,Last Sync On,അവസാനമായി സമന്വയിപ്പിക്കുക ഓണാണ് DocType: Deleted Document,Deleted Document,ഇല്ലാതാക്കി പ്രമാണം apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,ശ്ശോ! എന്തോ കുഴപ്പം സംഭവിച്ചു @@ -3754,6 +3820,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,എനർജി പോയിന്റ് അപ്‌ഡേറ്റ് apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',മറ്റൊരു പെയ്മെന്റ് രീതി തിരഞ്ഞെടുക്കുക. പേപാൽ കറൻസി ഇടപാടുകളും പിന്തുണയ്ക്കുന്നില്ല '{0}' DocType: Chat Message,Room Type,റൂം തരം +DocType: Data Import Beta,Import Log Preview,ലോഗ് പ്രിവ്യൂ ഇറക്കുമതി ചെയ്യുക apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,തിരയൽ ഫീൽഡ് {0} സാധുവല്ല apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,അപ്‌ലോഡ് ചെയ്ത ഫയൽ DocType: Workflow State,ok-circle,OK-സർക്കിൾ diff --git a/frappe/translations/mr.csv b/frappe/translations/mr.csv index dd662a9475..aa53f66f58 100644 --- a/frappe/translations/mr.csv +++ b/frappe/translations/mr.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,खालील अॅप्ससाठी नवीन {} रिलीझ उपलब्ध आहेत apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,कृपया एक रक्कम फील्ड निवडा. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,आयात फाइल लोड करीत आहे ... DocType: Assignment Rule,Last User,अंतिम वापरकर्ता apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","नवीन कार्य, {0}, तुम्हांला {1} {2} ने नियुक्त केले गेले आहे" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,सत्र डीफॉल्ट जतन केले +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,फाईल रीलोड करा DocType: Email Queue,Email Queue records.,ई-मेल रांग रेकॉर्ड. DocType: Post,Post,पोस्ट DocType: Address,Punjab,पंजाब @@ -44,6 +46,7 @@ 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,मापदंड @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,मासिक DocType: Address,Uttarakhand,उत्तराखंड DocType: Email Account,Enable Incoming,येणार्या सक्षम apps/frappe/frappe/core/doctype/version/version_view.html,Danger,धोका -apps/frappe/frappe/www/login.py,Email Address,ई-मेल पत्ता +DocType: Address,Email Address,ई-मेल पत्ता DocType: Workflow State,th-large,व्या-मोठ्या DocType: Communication,Unread Notification Sent,न वाचलेली सूचना पाठविलेला apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,निर्यातीला परवानगी दिली नाही. आपण निर्यात {0} भूमिका आवश्यक आहे. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,प्र DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","""विक्री क्वेरी, समर्थन क्वेरी"" इत्यादी सारखे संपर्क पर्याय, प्रत्येक एका नवीन ओळीवर किंवा स्वल्पविरामाने विभक्त केले ." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,एक टॅग जोडा ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,पोर्ट्रेट -DocType: Data Migration Run,Insert,घाला +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,घाला apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google ड्राइव्ह प्रवेश परवानगी द्या apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},निवडा {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,कृपया मूळ URL प्रविष्ट करा @@ -117,17 +120,17 @@ 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,थीम कॉन्फिगर करा DocType: Company History,Company History,कंपनी इतिहास -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,रीसेट करा +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,रीसेट करा DocType: Workflow State,volume-up,खंड-अप apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,WebHooks वेब अनुप्रयोगांमध्ये कॉलिंग API विनंत्या +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ट्रेसबॅक दर्शवा DocType: DocType,Default Print Format,डीफॉल्ट मुद्रण स्वरूप DocType: Workflow State,Tags,टॅग्ज apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,काहीही नाही: कार्यप्रवाहाच्या शेवटी apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} क्षेत्रात बिगर अद्वितीय विद्यमान मूल्ये आहेत , म्हणून {1} मधे अद्वितीय सेट केले जाऊ शकत नाही" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,दस्तऐवज प्रकार +DocType: Global Search Settings,Document Types,दस्तऐवज प्रकार DocType: Address,Jammu and Kashmir,जम्मू आणि काश्मीर DocType: Workflow,Workflow State Field,कार्यपद्धत राज्य फील्ड -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> वापरकर्ता DocType: Language,Guest,अतिथी DocType: DocType,Title Field,शीर्षक फील्ड DocType: Error Log,Error Log,त्रुटी लॉग @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" "abc" पेक्षा अंदाज फक्त किंचित अजून आहेत जसे पुनरावृत्ती DocType: Notification,Channel,चॅनेल apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",आपण या अनधिकृत आहे असे वाटत असेल तर प्रशासक पासवर्ड बदला. +DocType: Data Import Beta,Data Import Beta,डेटा आयात बीटा apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} अनिवार्य आहे DocType: Assignment Rule,Assignment Rules,असाइनमेंट नियम DocType: Workflow State,eject,जागा @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,कार्यपद्ध apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType विलीन करणे शक्य नाही DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,नाही एक zip फाइल +DocType: Global Search DocType,Global Search DocType,ग्लोबल सर्च डॉकटाइप DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                      New {{ doc.doctype }} #{{ doc.name }}
                                                                      ","डायनॅमिक विषय जोडण्यासाठी, जेंजा टॅग्जचा वापर करा
                                                                       New {{ doc.doctype }} #{{ doc.name }} 
                                                                      " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,डॉक इव्हेंट apps/frappe/frappe/public/js/frappe/utils/user.js,You,आपण DocType: Braintree Settings,Braintree Settings,ब्रेनट्री सेटिंग्ज +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,यशस्वीरित्या {0} रेकॉर्ड तयार केले. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,फिल्टर जतन करा DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} हटवू शकत नाही @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,संदेश साठ apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,या दस्तऐवजासाठी स्वयं पुनरावृत्ती तयार केली apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,आपल्या ब्राउझरमध्ये अहवाल पहा apps/frappe/frappe/config/desk.py,Event and other calendars.,कार्यक्रम आणि इतर कॅलेंडर +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 पंक्ती अनिवार्य) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,सर्व फील्ड टिप्पणी सादर करणे आवश्यक आहे. DocType: Custom Script,Adds a client custom script to a DocType,डॉकटाइपवर क्लायंट सानुकूल स्क्रिप्ट जोडते DocType: Print Settings,Printer Name,प्रिंटरचे नाव @@ -249,7 +256,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ज DocType: Bulk Update,Bulk Update,मोठ्या प्रमाणात अद्यतन DocType: Workflow State,chevron-up,शेवरॉन -वर DocType: DocType,Allow Guest to View,अतिथी पहा परवानगी द्या -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,कायमचे {0} आयटम हटवायचे? apps/frappe/frappe/utils/oauth.py,Not Allowed,परवानगी नाही @@ -265,6 +271,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,प्रदर्शन DocType: Email Group,Total Subscribers,एकूण सदस्य apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},शीर्ष {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,पंक्ती क्रमांक apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","एक भूमिका लेव्हल 0 प्रवेश नाही, तर उच्च पातळी निरर्थक आहेत." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,म्हणून जतन करा DocType: Comment,Seen,पाहिले @@ -327,6 +334,7 @@ DocType: Activity Log,Closed,बंद DocType: Blog Settings,Blog Title,ब्लॉग शीर्षक apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,मानक भूमिका अक्षम करणे शक्य नाही apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,गप्पा प्रकार +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,नकाशा स्तंभ DocType: Address,Mizoram,मिझोराम DocType: Newsletter,Newsletter,वृत्तपत्र apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,आदेश उप-क्वेरी वापरू शकत नाही @@ -361,6 +369,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,New Value,नवीन apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,एक स्तंभ जोडा apps/frappe/frappe/www/contact.html,Your email address,आपला ई-मेल पत्ता DocType: Desktop Icon,Module,विभाग +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{1} मधील {0} रेकॉर्ड यशस्वीरित्या अद्यतनित केले. DocType: Notification,Send Alert On,इशारा पाठवा DocType: Customize Form,"Customize Label, Print Hide, Default etc.","लेबल, प्रिंट लपवा सानुकूलित, डिफॉल्ट इ" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,फायली अनझिप करत आहे ... @@ -394,6 +403,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} व DocType: System Settings,Currency Precision,चलन प्रिसिजन DocType: System Settings,Currency Precision,चलन प्रिसिजन apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,आणखी व्यवहार हे एक अवरोधित करत आहे. काही सेकंदात पुन्हा प्रयत्न करा. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,फिल्टर साफ करा DocType: Test Runner,App,अनुप्रयोग apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,नवीन कागदजत्रांशी संलग्नके योग्यरित्या जोडल्या जाऊ शकत नाहीत DocType: Chat Message Attachment,Attachment,संलग्नक @@ -418,6 +428,7 @@ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,डॅशबोर apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,या वेळी ई-मेल पाठवण्यास अक्षम apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,शोधा किंवा आदेश टाइप करा DocType: Activity Log,Timeline Name,टाइमलाइन नाव +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,केवळ एक {0} प्राथमिक म्हणून सेट केले जाऊ शकते. DocType: Email Account,e.g. smtp.gmail.com,उदा smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,एक नवीन नियम जोडा DocType: Contact,Sales Master Manager,विक्री मास्टर व्यवस्थापक @@ -435,7 +446,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,एलडीएपी मध्यम नाव फील्ड apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} पैकी {0} आयात करीत आहे DocType: GCalendar Account,Allow GCalendar Access,GCalendar प्रवेशाची अनुमती द्या -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} एक अनिवार्य फील्ड आहे +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} एक अनिवार्य फील्ड आहे apps/frappe/frappe/templates/includes/login/login.js,Login token required,लॉगिन टोकन आवश्यक apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,मासिक क्रमवारी: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,एकाधिक सूची आयटम निवडा @@ -465,6 +476,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},कनेक्ट क apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,स्वतःहून एक शब्द अंदाज करणे सोपे आहे. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},वाहन असाइनमेंट अयशस्वी: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,शोध ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,कृपया कंपनी निवडा apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,गट -टू- गट किंवा Node-to-Leaf Node मधे फक्त एकत्र करणे शक्य आहे apps/frappe/frappe/utils/file_manager.py,Added {0},जोडले {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,कोणतेही जुळणारे रेकॉर्ड. काहीतरी नवीन शोधा @@ -477,7 +489,6 @@ DocType: Google Settings,OAuth Client ID,OAuth क्लायंट आयड DocType: Auto Repeat,Subject,विषय apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,डेस्क वर परत DocType: Web Form,Amount Based On Field,फील्ड आधारित रक्कम -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते वरून डीफॉल्ट ईमेल खाते सेट करा apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,सदस्य सामायिक करण्यासाठी अनिवार्य आहे DocType: DocField,Hidden,लपलेली DocType: Web Form,Allow Incomplete Forms,अपूर्ण फॉर्म परवानगी द्या @@ -514,6 +525,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} आणि {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,संभाषण सुरू करा DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",छपाई मसुदा मथळ्याची नेहमी "मसुदा" जोडा apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},सूचनांमध्ये त्रुटी::} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} वर्षापूर्वी DocType: Data Migration Run,Current Mapping Start,वर्तमान मॅपिंग प्रारंभ apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ईमेल स्पॅम म्हणून चिन्हांकित केले आहे DocType: Comment,Website Manager,वेबसाइट व्यवस्थापक @@ -552,6 +564,7 @@ DocType: Workflow State,barcode,बारकोड apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,उप-चौकशी किंवा फंक्शनचा वापर प्रतिबंधित आहे apps/frappe/frappe/config/customization.py,Add your own translations,आपल्या स्वत: च्या भाषांतरे जोडा DocType: Country,Country Name,देश नाव +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,रिक्त टेम्पलेट DocType: About Us Team Member,About Us Team Member,आमच्या टीम मेंबर विषयी apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","परवानग्या वाचा, लिहा, तयार करा, नष्ट करा, सादर करा, रद्द करा,सुधारणा,अहवाल, आयात, निर्यात, प्रिंट, ईमेल आणि सेट वापरकर्ता परवानग्या या अधिकारानुसार भूमिका आणि दस्तऐवज प्रकारावर सेट केल्या जातात." DocType: Event,Wednesday,बुधवारी @@ -563,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,वेबसाइट थी DocType: Web Form,Sidebar Items,साइडबार आयटम DocType: Web Form,Show as Grid,ग्रिड म्हणून दर्शवा apps/frappe/frappe/installer.py,App {0} already installed,अनुप्रयोग {0} आधीपासूनच स्थापित +DocType: Energy Point Rule,Users assigned to the reference document will get points.,संदर्भ दस्तऐवजासाठी नियुक्त केलेल्या वापरकर्त्यांना गुण मिळतील. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,पूर्वावलोकन नाही DocType: Workflow State,exclamation-sign,उद्गार-चिन्ह apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,अनझिप केलेल्या {0} फायली @@ -598,6 +612,7 @@ DocType: Notification,Days Before,दिवस करण्यापूर्व apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,डेली इव्हेंट्स त्याच दिवशी संपले पाहिजेत. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,संपादित करा ... DocType: Workflow State,volume-down,आवाज -कमी +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,या आयपी पत्त्यावरून प्रवेशास परवानगी नाही apps/frappe/frappe/desk/reportview.py,No Tags,टॅग्ज DocType: Email Account,Send Notification to,सूचना पाठवा DocType: DocField,Collapsible,संक्षिप्त @@ -654,6 +669,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,विकसक apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,तयार 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,डीफॉल्ट मुद्रण भाषा apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,च्या पूर्वज apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} रूट हटविले जाऊ शकत नाही @@ -695,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,यजमान +DocType: Data Import Beta,Import File,फाइल आयात करा apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,स्तंभ {0} आधीपासून अस्तित्वात आहे. DocType: ToDo,High,उच्च apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,नवीन कार्यक्रम @@ -723,8 +740,6 @@ DocType: User,Send Notifications for Email threads,ईमेल थ्रेड apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,प्रा apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,विकसक मोड मध्ये नाही apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,फाईल बॅकअप तयार आहे -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",गुणक मूल्यासह गुणाकारानंतर अधिकतम गुणांची परवानगी (टीप: मर्यादा सेट मूल्यासाठी 0 नाही) DocType: DocField,In Global Search,ग्लोबल शोध घ्या DocType: System Settings,Brute Force Security,ब्रूट फोर्स सिक्युरिटी DocType: Workflow State,indent-left,मागणीपत्र-डाव्या @@ -767,6 +782,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',वापरकर्ता '{0}' आधीच भूमिका आहे '{1}' DocType: System Settings,Two Factor Authentication method,दोन घटक प्रमाणीकरण पद्धत apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,प्रथम नाव सेट करा आणि रेकॉर्ड सेव्ह करा. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 रेकॉर्ड apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} सोबत शेअर केले apps/frappe/frappe/email/queue.py,Unsubscribe,सदस्यता रद्द करा DocType: View Log,Reference Name,संदर्भ नाव @@ -817,6 +833,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,ईमेल स्थितीचा मागोवा घ्या DocType: Note,Notify Users On Every Login,प्रत्येक लॉग-इन वापरकर्ते सूचित करा DocType: Note,Notify Users On Every Login,प्रत्येक लॉग-इन वापरकर्ते सूचित करा +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,यशस्वीरित्या {0} रेकॉर्ड अद्यतनित केले. DocType: PayPal Settings,API Password,एपीआय परवलीचा शब्द apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,पायथन मॉड्यूल किंवा निवडक कनेक्टर प्रकार प्रविष्ट करा apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,FIELDNAME सानुकूल फील्ड सेट नाही @@ -845,9 +862,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,मूल्य बदलले apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},डुप्लिकेट नाव {0} {1} -DocType: Email Queue,Retry,पुन्हा प्रयत्न करा +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,पुन्हा प्रयत्न करा +DocType: Contact Phone,Number,नंबर DocType: Web Form Field,Web Form Field,वेब फॉर्म फील्ड apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,आपणाकडून एक नवीन संदेश आहे: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML संपादित करा apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,कृपया पुनर्निर्देशित URL प्रविष्ट करा apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Restore Original Permissions,मूळ परवानगी पुनर्संचयित करा @@ -871,7 +890,7 @@ DocType: Notification,View Properties (via Customize Form),(सानुकू apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,फाइल निवडण्यासाठी त्यावर क्लिक करा. DocType: Note Seen By,Note Seen By,लक्षात ठेवा पाहिले apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,अधिक वळवून एक यापुढे कीबोर्ड नमुना वापरण्याचा प्रयत्न -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LEADERBOARD +,LeaderBoard,LEADERBOARD DocType: DocType,Default Sort Order,डीफॉल्ट क्रमवारी ऑर्डर DocType: Address,Rajasthan,राजस्थान DocType: Email Template,Email Reply Help,ईमेल उत्तर मदत @@ -906,6 +925,7 @@ apps/frappe/frappe/utils/data.py,Cent,टक्के apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ईमेल तयार करा apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","राज्यासाठी कार्यपद्धत (उदा ड्राफ्ट, मंजूर, रद्द)." DocType: Print Settings,Allow Print for Draft,मसुदा रताच ि ंट करा परवानगी द्या +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/link_selector.js,Set Quantity,सेट प्रमाण apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,पुष्टी करण्यासाठी या दस्तऐवज सादर DocType: Contact,Unsubscribed,सदस्यता रद्द @@ -936,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,वापरकर्त् ,Transaction Log Report,व्यवहार लॉग अहवाल DocType: Custom DocPerm,Custom DocPerm,सानुकूल DocPerm DocType: Newsletter,Send Unsubscribe Link,सदस्यता रद्द करणे दुवा पाठवा +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,अशी काही दुवा साधलेली रेकॉर्ड आहेत जी आम्ही तुमची फाईल आयात करण्यापूर्वी तयार करणे आवश्यक आहे. आपण खालील गहाळ रेकॉर्ड स्वयंचलितपणे तयार करू इच्छिता? DocType: Access Log,Method,पद्धत DocType: Report,Script Report,स्क्रिप्ट अहवाल DocType: OAuth Authorization Code,Scopes,स्कोप @@ -977,6 +998,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,यशस्वीरित्या अपलोड केले apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,आपण इंटरनेटशी कनेक्ट आहात DocType: Social Login Key,Enable Social Login,सामाजिक लॉगइन सक्षम करा +DocType: Data Import Beta,Warnings,चेतावणी DocType: Communication,Event,कार्यक्रम apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} वर, {1} ने लिहिले:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,मानक क्षेत्रात हटवू शकत नाही. आपण इच्छुक असल्यास आपण तो लपवू शकत नाही @@ -1032,6 +1054,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,घाल DocType: Kanban Board Column,Blue,ब्लू apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,सर्व सानुकूलने काढली जाईल. पुष्टी करा. DocType: Page,Page HTML,पृष्ठ HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,चुकीच्या पंक्ती निर्यात करा apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,गट नाव रिक्त असू शकत नाही. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,पुढील नोडस् फक्त 'ग्रुप प्रकार नोडस् अंतर्गत तयार केले जाऊ शकते DocType: SMS Parameter,Header,शीर्षलेख @@ -1071,13 +1094,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,समयोचित आउट विनंती apps/frappe/frappe/config/settings.py,Enable / Disable Domains,सक्षम / अक्षम करा डोमेन DocType: Role Permission for Page and Report,Allow Roles,भूमिका परवानगी द्या +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,यशस्वीरित्या {1} पैकी {0} रेकॉर्ड आयात केले. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","साधे पायथन अभिव्यक्ति, उदाहरण: स्थिती ("अवैध")" DocType: User,Last Active,सक्रिय गेल्या DocType: Email Account,SMTP Settings for outgoing emails,आउटगोइंग ईमेल साठी या SMTP सेटिंग्ज apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,निवडा एक DocType: Data Export,Filter List,फिल्टर सूची DocType: Data Export,Excel,एक्सेल -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,आपला संकेतशब्द अद्यतनित केले गेले आहेत . येथे आपला नवीन पासवर्ड आहे DocType: Email Account,Auto Reply Message,ऑटो प्रत्युत्तर संदेश DocType: Data Migration Mapping,Condition,अट apps/frappe/frappe/utils/data.py,{0} hours ago,{0} तासांपूर्वी @@ -1086,7 +1109,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,वापरकर्ता आयडी DocType: Communication,Sent,पाठविले DocType: Address,Kerala,केरळ -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,प्रशासन DocType: User,Simultaneous Sessions,एकाचवेळी सत्र DocType: Social Login Key,Client Credentials,क्लायंट ेय @@ -1118,7 +1140,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},अद apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,मास्टर DocType: DocType,User Cannot Create,वापरकर्ता तयार करू शकत नाही apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,यशस्वीरित्या पूर्ण झाले -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,फोल्डर {0} अस्तित्वात नाही apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ड्रॉपबॉक्स प्रवेश मंजूर केला आहे! DocType: Customize Form,Enter Form Type,फॉर्म प्रकार प्रविष्ट करा DocType: Google Drive,Authorize Google Drive Access,Google ड्राइव्ह प्रवेश अधिकृत करा @@ -1126,7 +1147,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,कोणतीही रेकॉर्ड टॅग केले. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,फील्ड काढा apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,आपण इंटरनेटशी कनेक्ट केलेले नाही. काहीवेळा नंतर पुन्हा प्रयत्न करा -DocType: User,Send Password Update Notification,संकेतशब्द अद्यतनित सूचना पाठवा apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType परवानगी. सावध रहा!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","मुद्रण, ईमेल साठी सानुकूलित नमुने" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} ची बेरीज @@ -1210,6 +1230,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,अयोग्य apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google संपर्क एकत्रीकरण अक्षम केले आहे. DocType: Assignment Rule,Description,वर्णन DocType: Print Settings,Repeat Header and Footer in PDF,PDF मध्ये शीर्षलेख आणि तळटीप पुन्हा करा +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,अपयश DocType: Address Template,Is Default,मुलभूत आहे DocType: Data Migration Connector,Connector Type,कनेक्टर प्रकार apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,स्तंभ नाव रिकामे असू शकत नाही @@ -1222,6 +1243,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} पृष्ठ 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,स्तंभ आधारित +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/model/document.py,Action Failed,क्रिया अयशस्वी apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,वापरकर्ता @@ -1272,6 +1294,7 @@ DocType: Print Settings,Enable Raw Printing,रॉ मुद्रण सक् DocType: Website Route Redirect,Source,स्रोत apps/frappe/frappe/templates/includes/list/filters.html,clear,स्पष्ट apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,पूर्ण झाले +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> वापरकर्ता DocType: Prepared Report,Filter Values,मूल्य फिल्टर करा DocType: Communication,User Tags,सदस्य टॅग्ज DocType: Data Migration Run,Fail,अपयशी @@ -1327,6 +1350,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,अ ,Activity,क्रियाकलाप DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","मदत: प्रणाली मध्ये आणखी रेकॉर्ड या निर्देशित पानाशी जोडण्यासाठी लिंक URL म्हणून ""# फॉर्म / टीप / [नाव टीप]"" वापरा ( ""http: //""वापरू नका)" DocType: User Permission,Allow,परवानगी द्या +DocType: Data Import Beta,Update Existing Records,विद्यमान रेकॉर्ड अद्यतनित करा apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,च्या पुनरावृत्ती शब्द आणि अक्षरांची टाळू या DocType: Energy Point Rule,Energy Point Rule,उर्जा बिंदू नियम DocType: Communication,Delayed,विलंब @@ -1339,9 +1363,7 @@ DocType: Milestone,Track Field,ट्रॅक फील्ड DocType: Notification,Set Property After Alert,अॅलर्ट केल्यानंतर मालमत्ता सेट करा apps/frappe/frappe/config/customization.py,Add fields to forms.,फॉर्म फील्ड जोडा. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,असे दिसते या साइटच्या पेपल संरचना चुकीचे आहे. -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/sidebar/review.js,Add Review,पुनरावलोकन जोडा -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),फॉन्ट आकार (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,सानुकूलित फॉर्ममधून केवळ मानक डॉकटाइपना सानुकूलित करण्याची परवानगी आहे. DocType: Email Account,Sendgrid,Sendgrid @@ -1377,6 +1399,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,फ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,क्षमस्व! आपण स्वयं-व्युत्पन्न टिप्पण्या हटवू शकत नाही DocType: Google Settings,Used For Google Maps Integration.,Google नकाशे समाकलनासाठी वापरले. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,संदर्भ DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,कोणतीही रेकॉर्ड निर्यात केली जाणार नाही DocType: User,System User,प्रणाली वापरकर्ता DocType: Report,Is Standard,मानक आहे DocType: Desktop Icon,_report,_अहवाल द्या @@ -1391,6 +1414,7 @@ DocType: Workflow State,minus-sign,उणे-चिन्ह apps/frappe/frappe/public/js/frappe/request.js,Not Found,सापडले नाही apps/frappe/frappe/www/printview.py,No {0} permission,क्रमांक {0} परवानगी apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,निर्यात सानुकूल परवानग्या +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,कोणतेही आयटम आढळले नाहीत. DocType: Data Export,Fields Multicheck,फील्ड Multicheck DocType: Activity Log,Login,लॉग-इन DocType: Web Form,Payments,देयके @@ -1450,7 +1474,7 @@ DocType: Email Account,Default Incoming,मुलभूत येणार्य DocType: Workflow State,repeat,पुनरावृत्ती DocType: Website Settings,Banner,बॅनर DocType: Role,"If disabled, this role will be removed from all users.","अक्षम केले असल्यास, ही भूमिका सर्व वापरकर्त्यांकडून काढून टाकले जाईल." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} यादीवर जा +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,शोध मदत DocType: Milestone,Milestone Tracker,माईलस्टोन ट्रॅकर apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,नोंदणीकृत परंतु अकार्यान्वीत @@ -1490,10 +1514,10 @@ 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/form/footer/timeline.js,changed value of {0} {1},{0} {1} चे मूल्य बदलले 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,एकूण पृष्ठे -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                      No results found for '

                                                                      ,

                                                                      'साठी कोणतेही परिणाम आढळले नाहीत

                                                                      DocType: DocField,Attach Image,प्रतिमा संलग्न DocType: Workflow State,list-alt,यादी-Alt apps/frappe/frappe/www/update-password.html,Password Updated,पासवर्ड अद्यतनित @@ -1514,8 +1538,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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,गप्पा +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> वापरकर्त्याच्या परवानग्या DocType: LDAP Group Mapping,LDAP Group Mapping,एलडीएपी ग्रुप मॅपिंग DocType: Dashboard Chart,Chart Options,चार्ट पर्याय +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,अशीर्षकांकित स्तंभ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} पासून {1} {2} मध्ये सलग # करण्यासाठी {3} DocType: Communication,Expired,कालबाह्य apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,आपण वापरत असलेले टोकन अवैध आहे असे वाटते! @@ -1525,6 +1551,7 @@ DocType: DocType,System,प्रणाली DocType: Web Form,Max Attachment Size (in MB),कमाल संलग्नक आकार (MB मध्ये) apps/frappe/frappe/www/login.html,Have an account? Login,एक खाते आहे? प्रवेश करा DocType: Workflow State,arrow-down,बाण-खाली +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},पंक्ती {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},वापरकर्ता हटवण्यासाठी परवानगी नाही {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} पैकी {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,अखेरचे रोजी अद्यतनित @@ -1541,6 +1568,7 @@ DocType: Custom Role,Custom Role,सानुकूल भूमिका apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,मुख्यपृष्ठ / कसोटी फोल्डर 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,आपला संकेतशब्द प्रविष्ट करा DocType: Dropbox Settings,Dropbox Access Secret,ड्रॉपबॉक्स प्रवेश गुपित +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(अनिवार्य) 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.,फाईलमध्ये कोणताही डेटा आढळला नाही कृपया डेटासह नवीन फाईल पुन्हा जोडा. @@ -1613,6 +1641,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,डॅश apps/frappe/frappe/desk/form/assign_to.py,New Message,नवीन संदेश DocType: File,Preview HTML,एचटीएमएल पूर्वावलोकन DocType: Desktop Icon,query-report,क्वेरी-अहवाल +DocType: Data Import Beta,Template Warnings,टेम्पलेट चेतावणी apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,फिल्टर जतन DocType: DocField,Percent,टक्के apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,फिल्टर सेट करा @@ -1634,6 +1663,7 @@ DocType: Custom Field,Custom,सानुकूल DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","सक्षम असल्यास, प्रतिबंधित IP पत्त्यावरून लॉग इन करणारे वापरकर्ते, दो घटक ऑथसाठी सूचित केले जाणार नाहीत" DocType: Auto Repeat,Get Contacts,संपर्क मिळवा apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} अंतर्गत दाखल केली पोस्ट +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,अशीर्षकांकित स्तंभ वगळत आहे DocType: Notification,Send alert if date matches this field's value,तारीख या क्षेत्रात चे मूल्य जुळत असल्याचे अॅलर्ट पाठवा DocType: Workflow,Transitions,संक्रमणे apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} करण्यासाठी {2} @@ -1657,6 +1687,7 @@ DocType: Workflow State,step-backward,चरण-मागे apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,आपली साइट संरचना मध्ये ड्रॉपबॉक्स प्रवेश कळा सेट करा apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,या ईमेल पत्त्यावर पाठवून परवानगी देण्यासाठी हे रेकॉर्ड हटवा +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","जर नॉन-स्टँडर्ड पोर्ट (उदा. पीओपी 3: 995/110, आयएमएपी: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,शॉर्टकट सानुकूलित करा apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,फक्त अनिवार्य शेतात नवीन रेकॉर्डसाठी आवश्यक आहेत. आपली इच्छा असेल तर आपण न-अनिवार्य स्तंभ हटवू शकता. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,अधिक क्रियाकलाप दर्शवा @@ -1761,7 +1792,9 @@ 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,पत्र DocType: DocType,"Naming Options:
                                                                      1. field:[fieldname] - By Field
                                                                      2. naming_series: - By Naming Series (field called naming_series must be present
                                                                      3. Prompt - Prompt user for a name
                                                                      4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                      5. @@ -1775,6 +1808,7 @@ DocType: GCalendar Account,Next Sync Token,पुढील सिंक टो DocType: Energy Point Settings,Energy Point Settings,एनर्जी पॉइंट सेटिंग्ज DocType: Async Task,Succeeded,यशस्वी झाले apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},आवश्यक फील्ड {0} मधे आवश्यक आहे +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                        No results found for '

                                                                        ,

                                                                        'साठी कोणतेही परिणाम आढळले नाहीत

                                                                        apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0}साठी परवानगी रीसेट करा ? apps/frappe/frappe/config/desktop.py,Users and Permissions,वापरकर्ते आणि परवानग्या DocType: S3 Backup Settings,S3 Backup Settings,S3 बॅकअप सेटिंग्ज @@ -1845,6 +1879,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,मध्ये DocType: Notification,Value Change,मूल्य बदला DocType: Google Contacts,Authorize Google Contacts Access,Google संपर्क प्रवेश अधिकृत करा apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,केवळ अहवालावरून अंकीय क्षेत्र दर्शवित आहे +DocType: Data Import Beta,Import Type,आयात प्रकार DocType: Access Log,HTML Page,एचटीएमएल पृष्ठ DocType: Address,Subsidiary,उपकंपनी apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,क्यूझेड ट्रेवर कनेक्शनचा प्रयत्न करीत आहे ... @@ -1855,7 +1890,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,अवै DocType: Custom DocPerm,Write,लिहा apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,फक्त प्रशासक क्वेरी / स्क्रिप्ट अहवाल तयार करण्यास परवानगी apps/frappe/frappe/public/js/frappe/form/save.js,Updating,अद्यतनित करीत आहे -DocType: File,Preview,पूर्वावलोकन +DocType: Data Import Beta,Preview,पूर्वावलोकन apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",शेत 'मूल्य "आवश्यक आहे. अद्ययावत करणे मूल्य निर्दिष्ट करा DocType: Customize Form,Use this fieldname to generate title,शीर्षक निर्माण करण्यासाठी हे FIELDNAME वापरा apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,ईमेल पासून आयात @@ -1939,6 +1974,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,ब्रा DocType: Social Login Key,Client URLs,क्लायंट URL apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,काही माहिती गहाळ आहे apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} यशस्वीरित्या तयार केले +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","{1}, {2} मधील {0} वगळत आहे" DocType: Custom DocPerm,Cancel,रद्द करा apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,बल्क हटवा apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,फाइल {0} अस्तित्वात नाही @@ -1966,7 +2002,6 @@ DocType: GCalendar Account,Session Token,सत्र टोकन DocType: Currency,Symbol,प्रतीक apps/frappe/frappe/model/base_document.py,Row #{0}:,रो # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,डेटा हटविण्याची पुष्टी करा -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,नवीन पासवर्ड ई-मेल apps/frappe/frappe/auth.py,Login not allowed at this time,या वेळी लॉगीन करण्याची परवानगी नाही DocType: Data Migration Run,Current Mapping Action,वर्तमान मॅपिंग क्रिया DocType: Dashboard Chart Source,Source Name,स्रोत नाव @@ -1979,6 +2014,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ज apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,पाठोपाठ DocType: LDAP Settings,LDAP Email Field,LDAP ईमेल फील्ड apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} यादी +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} रेकॉर्ड निर्यात करा apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,आधीच वापरकर्त्याच्या च्या सूचीत करावे DocType: User Email,Enable Outgoing,जाणारे सक्षम DocType: Address,Fax,फॅक्स @@ -2038,7 +2074,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,कागदपत्र मुद्रित करा apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,फील्डवर जा DocType: Contact Us Settings,Forward To Email Address,फॉरवर्ड ईमेल पत्त्यावर +DocType: Contact Phone,Is Primary Phone,प्राथमिक फोन आहे DocType: Auto Email Report,Weekdays,आठवड्यातील दिवस +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} रेकॉर्ड निर्यात केले जातील apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,शीर्षक फील्ड वैध FIELDNAME असणे आवश्यक आहे DocType: Post Comment,Post Comment,टिप्पणी पोस्ट करा apps/frappe/frappe/config/core.py,Documents,दस्तऐवज @@ -2057,7 +2095,9 @@ eval:doc.age>18",येथे परिभाषित FIELDNAMEला म DocType: Social Login Key,Office 365,ऑफिस 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,आज apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,आज +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","आपण या सेट एकदा सेट केल्यावर , वापरकर्ते केवळ प्रवेश दस्तऐवज वापरू शकतात (उदा. ब्लॉग) जेथे लिंक अस्तित्वात असते (उदा. ब्लॉगर)." +DocType: Data Import Beta,Submit After Import,आयात केल्यानंतर सबमिट करा DocType: Error Log,Log of Scheduler Errors,अनुसूची त्रुटी लॉग DocType: User,Bio,जैव DocType: OAuth Client,App Client Secret,अनुप्रयोग क्लायंट गुपित @@ -2076,10 +2116,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,लॉग-इन पृष्ठ अक्षम करा साइन अप ग्राहक दुवा apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ मालक नियुक्त DocType: Workflow State,arrow-left,बाण डावीकडे +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1 रेकॉर्ड निर्यात करा DocType: Workflow State,fullscreen,पूर्ण स्क्रीन DocType: Chat Token,Chat Token,चॅट टोकन apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,चार्ट तयार करा apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,आयात करू नका DocType: Web Page,Center,केंद्र DocType: Notification,Value To Be Set,मूल्य सेट करणे apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} संपादित करा @@ -2099,6 +2141,7 @@ DocType: Print Format,Show Section Headings,कलम शीर्षकाच DocType: Bulk Update,Limit,मर्यादा apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},आम्हाला यासह संबंधित {0} डेटा हटविण्याची विनंती प्राप्त झाली आहे: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,एक नवीन विभाग जोडा +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,फिल्टर रेकॉर्ड apps/frappe/frappe/www/printview.py,No template found at path: {0},मार्ग येथे साचा आढळला नाही: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ईमेल खाते DocType: Comment,Cancelled,रद्द @@ -2184,7 +2227,9 @@ 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} शक्य नाही 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,आपले लॉगिन आयडी काय असेल +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,ग्लोबल शोध दस्तऐवज प्रकार रीसेट. ,Lead Conversion Time,लीड रुपांतरण वेळ apps/frappe/frappe/desk/page/activity/activity.js,Build Report,अहवाल तयार करा DocType: Note,Notify users with a popup when they log in,ते मध्ये लॉग इन करताना एक पॉपअप वापरकर्ते सूचित करा @@ -2204,8 +2249,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,बंद करा 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> वापरकर्त्याच्या परवानग्या -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,अद्यतन +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,अद्यतन DocType: Transaction Log,Transaction Hash,व्यवहार हॅश DocType: Error Snapshot,Snapshot View,स्नॅपशॉट पहा apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,पाठविण्यापूर्वी वृत्तपत्र जतन करा @@ -2221,6 +2265,7 @@ DocType: Data Import,In Progress,प्रगतीपथावर apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,बॅकअप साठी रांगेत. तो एक तास काही मिनिटे लागू शकतात. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,वापरकर्ता परवानगी आधीपासूनच अस्तित्वात आहे +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},फील्ड {1} करण्यासाठी स्तंभ {0} मॅपिंग करत आहे apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} पहा DocType: User,Hourly,ताशी apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth क्लायंट अनुप्रयोग नोंदणी @@ -2232,7 +2277,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,पॉईंट oc DocType: SMS Settings,SMS Gateway URL,एसएमएस गेटवे URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} असू शकत नाही ""{2}"". हे एक असेच असावे ""{3}""" apps/frappe/frappe/utils/data.py,{0} or {1},{0} किंवा {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,संकेतशब्द अद्यतनित DocType: Workflow State,trash,कचरा DocType: System Settings,Older backups will be automatically deleted,जुने बॅकअप आपोआप हटविले जाईल apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,अवैध प्रवेश कळ आयडी किंवा गुप्त प्रवेश की @@ -2260,6 +2304,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,क DocType: Address,Preferred Shipping Address,पसंतीचे शिपिंग पत्ता apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,पत्र डोके apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} ने तयार केलेले हे {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते सेटअप केलेले नाही. कृपया सेटअप> ईमेल> ईमेल खाते वरून नवीन ईमेल खाते तयार करा DocType: S3 Backup Settings,eu-west-1,ईयू-वेस्ट -1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","हे तपासले असल्यास, वैध डेटासह पंक्ती आयात केली जातील आणि आपल्यासाठी नंतरच्या फाइल आयात करण्यासाठी एक नवीन फाइलमध्ये अवैध पंक्ती डंप होतील." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,दस्तऐवज भूमिका केवळ च्या वापरकर्त्यांद्वारे संपादन करता येतात @@ -2286,6 +2331,7 @@ DocType: Custom Field,Is Mandatory Field,अनिवार्य फील् DocType: User,Website User,वेबसाइट सदस्य apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,पीडीएफमध्ये मुद्रण करताना काही स्तंभ कापले जाऊ शकतात. 10 पेक्षा कमी स्तंभ ठेवण्याचा प्रयत्न करा. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,बरोबरीची नाही +DocType: Data Import Beta,Don't Send Emails,ईमेल पाठवू नका DocType: Integration Request,Integration Request Service,एकत्रीकरण विनंती सेवा DocType: Access Log,Access Log,प्रवेश लॉग DocType: Website Script,Script to attach to all web pages.,स्क्रिप्ट सर्व वेब पृष्ठांवर संलग्न आहे. @@ -2325,6 +2371,7 @@ DocType: Contact,Passive,निष्क्रीय DocType: Auto Repeat,Accounts Manager,खाते व्यवस्थापक apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} साठी असाइनमेंट apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,आपले देयक रद्द केले आहे. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते वरून डीफॉल्ट ईमेल खाते सेट करा apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,निवडा फाइल प्रकार apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,सर्व पहा DocType: Help Article,Knowledge Base Editor,नॉलेज बेस संपादक @@ -2356,6 +2403,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,डेटा apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,दस्तऐवज स्थिती apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,मंजूरी आवश्यक +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,आम्ही आपली फाईल आयात करण्यापूर्वी खालील रेकॉर्ड तयार करणे आवश्यक आहे. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth प्राधिकृत करणे कोड apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,आयात करण्याची परवानगी नाही DocType: Deleted Document,Deleted DocType,हटविले DocType @@ -2409,8 +2457,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API क्रेडे apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,सत्र प्रारंभ अयशस्वी apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,सत्र प्रारंभ अयशस्वी apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},हा ई-मेल {0} पाठविला आणि {1} ला कॉपी केला होता +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},हा कागदजत्र सादर केला {0} DocType: Workflow State,th,व्या -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} वर्षापूर्वी DocType: Social Login Key,Provider Name,प्रदाता नाव apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},एक नवीन {0} तयार करा DocType: Contact,Google Contacts,गूगल संपर्क @@ -2418,6 +2466,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar खाते DocType: Email Rule,Is Spam,स्पॅम आहे apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},अहवाल {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ओपन {0} +DocType: Data Import Beta,Import Warnings,चेतावणी आयात करा DocType: OAuth Client,Default Redirect URI,मुलभूत पुनर्निर्देशन URI DocType: Auto Repeat,Recipients,प्राप्तकर्ता DocType: System Settings,Choose authentication method to be used by all users,सर्व वापरकर्त्यांद्वारे वापरण्याजोगी प्रमाणीकरण पद्धत निवडा @@ -2533,6 +2582,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,अहवा apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,स्लॅक वेबहूक त्रुटी DocType: Email Flag Queue,Unread,न वाचलेले DocType: Bulk Update,Desk,डेस्क +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},वगळत स्तंभ {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),फिल्टर एक tuple किंवा सूची (यादी मध्ये) असणे आवश्यक आहे apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,एक SELECT क्वेरी लिहा. टीप परिणाम (सर्व डेटा एक जाता जाता पाठविण्यात आले आहे) paged नाही. DocType: Email Account,Attachment Limit (MB),संलग्नक मर्यादा (एमबी) @@ -2547,6 +2597,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,नवीन तयार करा DocType: Workflow State,chevron-down,शेवरॉन -खाली apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),पाठविले नाही ईमेल {0} (अक्षम / सदस्यत्व रद्द) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,निर्यात करण्यासाठी फील्ड निवडा DocType: Async Task,Traceback,ट्रेसबॅक DocType: Currency,Smallest Currency Fraction Value,लहान चलन अपूर्णांक मूल्य apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,अहवाल तयार करीत आहे @@ -2555,6 +2606,7 @@ DocType: Workflow State,th-list,व्या यादी DocType: Web Page,Enable Comments,टिप्पण्या सक्षम करा apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,नोट्स DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),फक्त या IP पत्ता वापरकर्ता प्रतिबंधित. एकापेक्षा जास्त P पत्ते स्वल्पविरामाने विभक्त जोडले जाऊ शकतात . तसेच जसे आंशिक IP पत्ते स्वीकारतो (111.111.111) +DocType: Data Import Beta,Import Preview,पूर्वावलोकन आयात करा DocType: Communication,From,पासून apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,प्रथम एक गट नोड निवडा. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{1} मधील {0} शोधा @@ -2651,6 +2703,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,दरम्यान DocType: Social Login Key,fairlogin,फयरिलोगिन DocType: Async Task,Queued,रांगेत आहे +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म सानुकूलित करा DocType: Braintree Settings,Use Sandbox,Sandbox वापर apps/frappe/frappe/utils/goal.py,This month,या महिन्यात apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,नवीन सानुकूल प्रिंट स्वरूप @@ -2665,6 +2718,7 @@ DocType: Session Default,Session Default,सत्र डीफॉल्ट DocType: Chat Room,Last Message,अंतिम संदेश DocType: OAuth Bearer Token,Access Token,प्रवेश टोकन DocType: About Us Settings,Org History,Org इतिहास +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,सुमारे {0} मिनिटे शिल्लक आहेत DocType: Auto Repeat,Next Schedule Date,पुढील वेळापत्रक तारीख DocType: Workflow,Workflow Name,कार्यपद्धत नाव DocType: DocShare,Notify by Email,ईमेल द्वारे सूचना द्या @@ -2694,6 +2748,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,लेखक apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,पाठवत आहे पुन्हा सुरु करा apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,पुन्हा उघडा +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,चेतावणी दर्शवा apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},पुन्हा: {0} DocType: Address,Purchase User,खरेदी सदस्य DocType: Data Migration Run,Push Failed,पुश अयशस्वी @@ -2731,6 +2786,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,प् apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,आपल्याला वृत्तपत्र पाहण्याची परवानगी नाही DocType: User,Interests,छंद apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,पासवर्ड रीसेट सूचना ई-मेलद्वारे पाठविण्यात आले आहे +DocType: Energy Point Rule,Allot Points To Assigned Users,असाइन केलेल्या वापरकर्त्यांना गुण द्या apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","लेव्हल 0 दस्तऐवज स्तर परवानग्या, \ उच्च स्तर क्षेत्रीय स्तरावर परवानग्या आहे." DocType: Contact Email,Is Primary,प्राथमिक आहे @@ -2754,6 +2810,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Publishable की DocType: Stripe Settings,Publishable Key,Publishable की apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,आयात प्रारंभ करा +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,निर्यात प्रकार DocType: Workflow State,circle-arrow-left,मंडळ-बाण डावीकडे DocType: System Settings,Force User to Reset Password,संकेतशब्द रीसेट करण्यासाठी वापरकर्त्यास भाग पाडणे apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis कॅशे सर्व्हरचे चालत नाही. प्रशासक / तंत्रज्ञान समर्थनाशी संपर्क साधा @@ -2766,12 +2823,15 @@ DocType: Contact,Middle Name,मधले नाव DocType: Custom Field,Field Description,फील्ड वर्णन apps/frappe/frappe/model/naming.py,Name not set via Prompt,प्रॉम्प्ट द्वारे नाव सेट होऊ शकत नाही apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ई-मेल इनबॉक्स +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1}, {2} चे {0} अद्यतनित करीत आहे" DocType: Auto Email Report,Filters Display,फिल्टर प्रदर्शन apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",सुधारणा करण्यासाठी "सुधारित_फार्म" फील्ड असणे आवश्यक आहे. +DocType: Contact,Numbers,संख्या apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,फिल्टर जतन करा DocType: Address,Plant,वनस्पती apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,सर्वांना उत्तर द्या DocType: DocType,Setup,सेटअप +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,सर्व नोंदी DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ज्यांचे Google संपर्क समक्रमित केले जातील असा ईमेल पत्ता. DocType: Email Account,Initial Sync Count,प्रारंभिक समक्रमण संख्या DocType: Workflow State,glass,काचेच्या @@ -2796,7 +2856,7 @@ DocType: Workflow State,font,फॉन्ट DocType: DocType,Show Preview Popup,पूर्वावलोकन पॉपअप दर्शवा apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,हे टॉप 100 सामान्य पासवर्ड आहे. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,पॉप-अप सक्षम करा -DocType: User,Mobile No,मोबाइल क्रमांक +DocType: Contact,Mobile No,मोबाइल क्रमांक DocType: Communication,Text Content,मजकूर सामग्री DocType: Customize Form Field,Is Custom Field,सानुकूल फील्ड आहे DocType: Workflow,"If checked, all other workflows become inactive.","तपासले केल्यास, इतर सर्व workflows निष्क्रिय होतात." @@ -2842,6 +2902,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,फ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,नवीन मुद्रण स्वरूप नाव apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,साइडबार टॉगल करा DocType: Data Migration Run,Pull Insert,घाला घाला +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",गुणक मूल्यासह गुणांचे गुणन झाल्यानंतर जास्तीत जास्त बिंदू अनुमत आहेत (टीप: कोणत्याही मर्यादेसाठी हे फील्ड रिक्त सोडू नका किंवा 0 सेट करा) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,अवैध टेम्पलेट apps/frappe/frappe/model/db_query.py,Illegal SQL Query,बेकायदेशीर एस क्यू एल क्वेरी apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,अनिवार्य: DocType: Chat Message,Mentions,उल्लेख @@ -2855,6 +2918,7 @@ DocType: User Permission,User Permission,वापरकर्ता परव apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ब्लॉग apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP स्थापित नाही apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,डेटा डाउनलोड करा +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} साठी मूल्ये बदलली DocType: Workflow State,hand-right,हात-योग्य DocType: Website Settings,Subdomain,सबडोमेन DocType: S3 Backup Settings,Region,प्रदेश @@ -2882,9 +2946,11 @@ DocType: Braintree Settings,Public Key,सार्वजनिक की DocType: GSuite Settings,GSuite Settings,GSuite सेटिंग्ज DocType: Address,Links,दुवे DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,हे खाते वापरुन पाठविलेल्या सर्व ईमेलचे प्रेषक नाव म्हणून या खात्यात नमूद केलेला ईमेल पत्ता नाव वापरतो. +DocType: Energy Point Rule,Field To Check,फील्ड चेक apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,कृपया दस्तऐवज प्रकार निवडा. apps/frappe/frappe/model/base_document.py,Value missing for,मूल्य गहाळ apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,child जोडा +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,आयात प्रगती DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",जर स्थिती समाधानी असेल तर वापरकर्त्यास गुणांसह बक्षीस दिले जाईल. उदा. doc.status == 'बंद' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: सादर नोंद हटविले जाऊ शकत नाही. @@ -3055,6 +3121,7 @@ DocType: Custom Field,Options Help,पर्याय मदत 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 रेकॉर्ड निर्यात केली जाईल 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,डोमेन करण्यासाठी प्रतिबंधित @@ -3071,6 +3138,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,सत्यापन कोड DocType: Webhook,Webhook Request,वेबहुक विनंती apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** अयशस्वी: {0} पासून {1}: {2} DocType: Data Migration Mapping,Mapping Type,मॅपिंग प्रकार +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,अनिवार्य निवडा apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,ब्राउझ करा apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","प्रतीक, अंक, किंवा लोअरकेस वर्ण गरज नाही." DocType: DocField,Currency,चलन @@ -3101,11 +3169,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,पत्र आधारित आधारित apps/frappe/frappe/utils/oauth.py,Token is missing,टोकन गहाळ आहे apps/frappe/frappe/www/update-password.html,Set Password,संकेतशब्द सेट करा +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,यशस्वीरित्या {0} रेकॉर्ड आयात केले. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,टीप: पृष्ठ नाव बदलल्याने या पृष्ठावर मागील URL खंडित करेल. apps/frappe/frappe/utils/file_manager.py,Removed {0},काढला {0} DocType: SMS Settings,SMS Settings,SMS सेटिंग्ज DocType: Company History,Highlight,ठळक DocType: Dashboard Chart,Sum,बेरीज +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,डेटा आयात द्वारे DocType: OAuth Provider Settings,Force,शक्ती apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},अंतिम समक्रमित {0} DocType: DocField,Fold,दुमडणे @@ -3174,6 +3244,7 @@ DocType: Website Settings,Top Bar Items,शीर्ष बार आयटम DocType: Notification,Print Settings,मुद्रण सेटिंग्ज DocType: Page,Yes,होय DocType: DocType,Max Attachments,कमाल जोडणी +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,सुमारे {0} सेकंद शिल्लक आहेत DocType: Calendar View,End Date Field,शेवट तारीख फील्ड apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ग्लोबल शॉर्टकट्स DocType: Desktop Icon,Page,पृष्ठ @@ -3282,6 +3353,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite प्रवेश करण DocType: DocType,DESC,DESC DocType: DocType,Naming,नामांकन apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,सर्व निवडा +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},स्तंभ {0} apps/frappe/frappe/config/customization.py,Custom Translations,सानुकूल भाषांतरे apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,प्रगती apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,भूमिका @@ -3323,6 +3395,7 @@ DocType: Stripe Settings,Stripe Settings,पट्टी सेटिंग् DocType: Stripe Settings,Stripe Settings,पट्टी सेटिंग्ज DocType: Data Migration Mapping,Data Migration Mapping,डेटा माइग्रेशन मॅपिंग DocType: Auto Email Report,Period,कालावधी +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,सुमारे {0} मिनिट शिल्लक apps/frappe/frappe/www/login.py,Invalid Login Token,अवैध लॉग-इन टोकन apps/frappe/frappe/public/js/frappe/chat.js,Discard,टाकून द्या apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,१ तास पूर्वी @@ -3347,6 +3420,7 @@ DocType: Calendar View,Start Date Field,प्रारंभ तारीख DocType: Role,Role Name,भूमिका नाव apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,डेस्क स्विच apps/frappe/frappe/config/core.py,Script or Query reports,स्क्रिप्ट किंवा क्वेरी अहवाल +DocType: Contact Phone,Is Primary Mobile,प्राथमिक मोबाइल आहे DocType: Workflow Document State,Workflow Document State,कार्यपद्धत दस्तऐवज राज्य apps/frappe/frappe/public/js/frappe/request.js,File too big,फाईल खूप मोठा apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ईमेल खाते एकाधिक वेळा जोडले @@ -3425,6 +3499,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,काही वैशिष्ट्ये आपल्या ब्राउझरमध्ये काम करू शकत नाही. नवीनतम आवृत्ती आपले ब्राउझर अद्यतनित करा. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,काही वैशिष्ट्ये आपल्या ब्राउझरमध्ये काम करू शकत नाही. नवीनतम आवृत्ती आपले ब्राउझर अद्यतनित करा. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",माहित नाही विचारू 'मदत' +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},हा कागदजत्र रद्द केला {0} DocType: DocType,Comments and Communications will be associated with this linked document,टिप्पण्या आणि संचार या लिंक दस्तऐवजला संबोधित केले जाईल apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,फिल्टर ... DocType: Workflow State,bold,ठळक @@ -3499,6 +3574,7 @@ DocType: Print Settings,PDF Settings,पीडीएफ सेटिंग्ज DocType: Kanban Board Column,Column Name,स्तंभ नाव DocType: Language,Based On,आधारित DocType: Email Account,"For more information, click here.","अधिक माहितीसाठी, येथे क्लिक करा ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,स्तंभांची संख्या डेटाशी जुळत नाही apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,डीफॉल्ट बनवा apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,अंमलबजावणीची वेळः {0} से apps/frappe/frappe/model/utils/__init__.py,Invalid include path,अवैध समावेश पथ @@ -3588,7 +3664,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,प्रारंभ वेळचा अहवाल द्या -apps/frappe/frappe/config/settings.py,Export Data,डेटा निर्यात करा +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,डेटा निर्यात करा 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.,हा पार्श्वभूमी अहवाल आहे. कृपया योग्य फिल्टर सेट करा आणि नंतर नवीन तयार करा. @@ -3605,7 +3681,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},{0} तया DocType: Report,Disable Prepared Report,तयार केलेला अहवाल अक्षम करा apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,बेकायदेशीर प्रवेश टोकन. कृपया पुन्हा प्रयत्न करा apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","अर्ज नवीन आवृत्तीकरीता सुधारित केले आहे, हे पृष्ठ रीफ्रेश करा" -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.,डीफॉल्ट अ‍ॅड्रेस टेम्पलेट आढळला नाही. कृपया सेटअप> मुद्रण आणि ब्रांडिंग> अ‍ॅड्रेस टेम्पलेट वरून नवीन तयार करा. DocType: Notification,Optional: The alert will be sent if this expression is true,"पर्यायी: या अभिव्यक्ती खऱ्या असतील तर अॅलर्ट पाठविला जाईल" DocType: Data Migration Plan,Plan Name,योजनेचे नांव @@ -3645,6 +3720,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: सेट करू शकत नाही न बदलणे रद्द करा apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,पूर्ण पृष्ठ DocType: DocType,Is Child Table,Child टेबल आहे +DocType: Data Import Beta,Template Options,टेम्पलेट पर्याय apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} हा {1} मधला एक असणे आवश्यक आहे apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} सध्या हा दस्तऐवज पहात आहे apps/frappe/frappe/config/core.py,Background Email Queue,पार्श्वभूमी ईमेल रांग @@ -3652,7 +3728,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,संकेतश DocType: Communication,Opened,उघडलेले DocType: Workflow State,chevron-left,शेवरॉन डाव्या DocType: Communication,Sending,पाठवत आहे -apps/frappe/frappe/auth.py,Not allowed from this IP Address,या IP पत्त्यापासून परवानगी नाही DocType: Website Slideshow,This goes above the slideshow.,या स्लाईड शो वर जातो. DocType: Contact,Last Name,गेल्या नाव DocType: Event,Private,खाजगी @@ -3666,7 +3741,6 @@ DocType: Workflow Action,Workflow Action,कार्यपद्धत क् apps/frappe/frappe/utils/bot.py,I found these: ,मी या आढळले: DocType: Event,Send an email reminder in the morning,सकाळी एक ईमेल स्मरणपत्र पाठवा DocType: Blog Post,Published On,रोजी प्रकाशित -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते सेटअप केलेले नाही. कृपया सेटअप> ईमेल> ईमेल खाते वरून नवीन ईमेल खाते तयार करा DocType: Contact,Gender,लिंग apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,अनिवार्य माहिती गहाळ: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,चेक विनंती URL @@ -3686,7 +3760,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,चेतावणी-चिन्ह DocType: Prepared Report,Prepared Report,तयार अहवाल apps/frappe/frappe/config/website.py,Add meta tags to your web pages,आपल्या वेब पृष्ठांवर मेटा टॅग जोडा -DocType: Contact,Phone Nos,फोन नंबर DocType: Workflow State,User,सदस्य DocType: Website Settings,"Show title in browser window as ""Prefix - title""","""पूर्वपद - शीर्षक"" म्हणून शीर्षक ब्राउझर विंडोमध्ये दर्शवा" DocType: Payment Gateway,Gateway Settings,गेटवे सेटिंग्ज @@ -3704,6 +3777,7 @@ DocType: Data Migration Connector,Data Migration,डेटा माइग्र DocType: User,API Key cannot be regenerated,API की पुन्हा तयार केली जाऊ शकत नाही apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,काहीतरी चूक झाली DocType: System Settings,Number Format,क्रमांक स्वरूप +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,यशस्वीरित्या {0} रेकॉर्ड आयात केला. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,सारांश DocType: Event,Event Participants,कार्यक्रम सहभागी DocType: Auto Repeat,Frequency,वारंवारता @@ -3711,7 +3785,7 @@ DocType: Custom Field,Insert After,नंतर समाविष्ट कर DocType: Event,Sync with Google Calendar,Google कॅलेंडरसह समक्रमित करा DocType: Access Log,Report Name,अहवाल नाव DocType: Desktop Icon,Reverse Icon Color,चिन्ह रंग उलटा -DocType: Notification,Save,जतन करा +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,जतन करा apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,पुढील अनुसूचित तारीख apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,ज्याला कमीतकमी असाइनमेंट्स आहेत त्यांना नियुक्त करा apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,विभागात @@ -3734,11 +3808,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म सानुकूलित करा DocType: Google Contacts,Last Sync On,अंतिम सिंक चालू DocType: Deleted Document,Deleted Document,हटविले दस्तऐवज apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,अरेरे! काहीतरी चूक झाली DocType: Desktop Icon,Category,वर्ग +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},मूल्य {0} गमावत नाही {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,संपर्क जोडा apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,लँडस्केप apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,क्लाएंट साइड Javascript मधील स्क्रिप्ट विस्तार @@ -3762,6 +3836,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,उर्जा बिंदू अद्यतन apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',कृपया दुसरी देयक पद्धत निवडा. पोपल चलन व्यवहार समर्थन देत नाही '{0}' DocType: Chat Message,Room Type,खोली प्रकार +DocType: Data Import Beta,Import Log Preview,लॉग पूर्वावलोकन आयात करा apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,शोध क्षेत्रात {0} वैध नाही apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,अपलोड केलेली फाईल DocType: Workflow State,ok-circle,ठीक-मंडळ @@ -3828,6 +3903,7 @@ DocType: DocType,Allow Auto Repeat,स्वयं पुनरावृत् apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,दर्शविण्यासाठी कोणतीही मूल्ये नाहीत DocType: Desktop Icon,_doctype,_doc प्र कार DocType: Communication,Email Template,ईमेल टेम्पलेट +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,यशस्वीरित्या {0} रेकॉर्ड अद्यतनित केले. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,आवश्यक दोन्ही लॉगिन आणि पासवर्ड apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,नवीनतम दस्तऐवजात प्राप्त करण्यासाठी रीफ्रेश करा. DocType: User,Security Settings,सुरक्षा सेटिंग्ज diff --git a/frappe/translations/ms.csv b/frappe/translations/ms.csv index e79a458a66..2864af8347 100644 --- a/frappe/translations/ms.csv +++ b/frappe/translations/ms.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Siaran {baru} untuk aplikasi berikut boleh didapati apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Sila pilih Field Jumlah. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Memuatkan fail import ... DocType: Assignment Rule,Last User,Pengguna Terakhir apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Satu tugas baru, {0}, telah diberikan kepada anda oleh {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Default Sesi disimpan +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Muat semula Fail DocType: Email Queue,Email Queue records.,rekod e-mel Giliran. DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Bulanan DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Membolehkan masuk apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Bahaya -apps/frappe/frappe/www/login.py,Email Address,Alamat e-mel +DocType: Address,Email Address,Alamat e-mel DocType: Workflow State,th-large,ke-besar DocType: Communication,Unread Notification Sent,Pemberitahuan belum dibaca Dihantar apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksport tidak dibenarkan. Anda perlu {0} peranan untuk eksport. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Pentadbir L DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Pilihan kenalan, seperti "Jualan Pertanyaan, Sokongan Query" dan lain-lain setiap pada baris baru atau dipisahkan dengan tanda koma." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Tambah tag ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Potret -DocType: Data Migration Run,Insert,Insert +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insert apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Membenarkan akses Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Pilih {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Sila masukkan URL Asas @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minit ya 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 DocType: Company History,Company History,Sejarah Syarikat -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Reset +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Reset DocType: Workflow State,volume-up,jumlah-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks memanggil permintaan API ke dalam apl web +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Tunjukkan Traceback DocType: DocType,Default Print Format,Cetak Format Default DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Tiada: Akhir Aliran Kerja apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} bidang tidak boleh ditetapkan sebagai unik dalam {1}, kerana ada nilai-nilai bukan unik yang sedia ada" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Jenis dokumen +DocType: Global Search Settings,Document Types,Jenis dokumen DocType: Address,Jammu and Kashmir,Jammu dan Kashmir DocType: Workflow,Workflow State Field,Aliran kerja Field Negeri -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Persediaan> Pengguna DocType: Language,Guest,Tetamu DocType: DocType,Title Field,Tajuk Field DocType: Error Log,Error Log,ralat Log @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Ulangan seperti "abcabcabc" hanya sedikit sukar diteka daripada "abc" DocType: Notification,Channel,Saluran apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Jika anda rasa ini adalah tidak dibenarkan, sila tukar kata laluan Administrator." +DocType: Data Import Beta,Data Import Beta,Beta Import Data apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} adalah wajib DocType: Assignment Rule,Assignment Rules,Kaedah Penyerahan DocType: Workflow State,eject,mengeluarkan @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Nama aliran kerja Tindakan apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE tidak boleh digabungkan DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Bukan fail zip +DocType: Global Search DocType,Global Search DocType,DocType Carian Global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                        New {{ doc.doctype }} #{{ doc.name }}
                                                                        ","Untuk menambah subjek dinamik, gunakan tag jinja seperti
                                                                         New {{ doc.doctype }} #{{ doc.name }} 
                                                                        " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Acara Dokumen apps/frappe/frappe/public/js/frappe/utils/user.js,You,Anda DocType: Braintree Settings,Braintree Settings,Tetapan Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Dicipta {0} rekod dengan jayanya. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Simpan Penapis DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Tidak dapat memadamkan {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Masukkan parameter url unt apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Auto Ulang yang dibuat untuk dokumen ini apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Lihat laporan dalam pelayar anda apps/frappe/frappe/config/desk.py,Event and other calendars.,Acara dan kalendar lain. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 baris wajib) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Semua medan yang perlu untuk hantar komen. DocType: Custom Script,Adds a client custom script to a DocType,Menambah skrip custom client kepada DocType DocType: Print Settings,Printer Name,Nama Pencetak @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Update Bulk DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Membolehkan tetamu untuk Lihat apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} tidak sepatutnya sama dengan {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Memadam {0} item selama-lamanya? apps/frappe/frappe/utils/oauth.py,Not Allowed,Tidak dibenarkan @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Paparan DocType: Email Group,Total Subscribers,Jumlah Pelanggan apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Atas {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Nombor Row apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jika Peranan yang tidak mempunyai akses di Tingkat 0, maka tahap yang lebih tinggi adalah tidak bermakna." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Simpan sebagai DocType: Comment,Seen,Dilihat @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Mentakrifkan negeri aliran kerja dan kaedah-kaedah bagi dokumen. DocType: Workflow State,Filter,Penapis @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Ditutup DocType: Blog Settings,Blog Title,Blog Title apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,peranan standard tidak boleh dimatikan apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Jenis Sembang +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Peta Lajur DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Surat Berita apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Tidak boleh menggunakan sub-pertanyaan di perintah oleh @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Menambah lajur apps/frappe/frappe/www/contact.html,Your email address,Alamat e-mel anda DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Berjaya diperbaharui {0} rekod daripada {1}. DocType: Notification,Send Alert On,Hantar Alert Pada DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Menyesuaikan Label, Cetak Sembunyi, dan lain-lain Default" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping files ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Pengguna DocType: System Settings,Currency Precision,mata wang Precision DocType: System Settings,Currency Precision,mata wang Precision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Satu lagi transaksi menyekat satu ini. Sila cuba lagi dalam beberapa saat. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Penapis jernih DocType: Test Runner,App,Aplikasi apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Lampiran tidak boleh dikaitkan dengan betul dengan dokumen baru DocType: Chat Message Attachment,Attachment,Lampiran @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Tidak dapat apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalendar Google - Tidak dapat mengemas kini Acara {0} dalam Google Calendar, kod ralat {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cari atau taip arahan DocType: Activity Log,Timeline Name,Nama Timeline +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Hanya satu {0} boleh ditetapkan sebagai utama. DocType: Email Account,e.g. smtp.gmail.com,contohnya smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Tambah A Peraturan Baru DocType: Contact,Sales Master Manager,Master Sales Manager @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP Middle Name Field apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Mengimport {0} daripada {1} DocType: GCalendar Account,Allow GCalendar Access,Benarkan Akses GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} adalah medan wajib +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} adalah medan wajib apps/frappe/frappe/templates/includes/login/login.js,Login token required,Token masuk diperlukan apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Kedudukan bulanan: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Pilih beberapa item senarai @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Tidak dapat menyambung: apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Perkataan yang dengan sendirinya adalah mudah untuk meneka. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Penugasan automatik gagal: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Cari ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Sila pilih Syarikat apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Penggabungan hanya boleh dilakukan antara Kumpulan ke Kumpulan atau Leaf Nod-ke-Leaf Nod apps/frappe/frappe/utils/file_manager.py,Added {0},Ditambah {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Tiada rekod yang sepadan. Mencari sesuatu yang baru @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,ID Klien OAuth DocType: Auto Repeat,Subject,Tertakluk apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Kembali ke Meja DocType: Web Form,Amount Based On Field,Jumlah Berasaskan Field -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Pengguna adalah mandatori bagi Share DocType: DocField,Hidden,Tersembunyi DocType: Web Form,Allow Incomplete Forms,Benarkan Borang yang tidak lengkap @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} dan {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Mulakan perbualan. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Sentiasa menambah "Draf" Tajuk untuk mencetak draf dokumen apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Ralat Pemberitahuan: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu DocType: Data Migration Run,Current Mapping Start,Mula Pemetaan Semasa apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mel telah ditandakan sebagai spam DocType: Comment,Website Manager,Laman Web Pengurus @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,kod bar apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Penggunaan sub-query atau fungsi adalah terhad apps/frappe/frappe/config/customization.py,Add your own translations,Menambah terjemahan anda sendiri DocType: Country,Country Name,Nama Negara +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Templat Kosong DocType: About Us Team Member,About Us Team Member,Ahli Pasukan Mengenai Kami apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Kebenaran ditetapkan pada Peranan dan Jenis Dokumen (dipanggil DocTypes) dengan menetapkan hak seperti membaca, menulis, Buat, Padam, Hantar, Batal, Meminda, Laporan, Import, Eksport, Cetak, E-mel dan Set pengguna Kebenaran." DocType: Event,Wednesday,Rabu @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,Laman Web Tema Imej Pautan DocType: Web Form,Sidebar Items,Item Sidebar DocType: Web Form,Show as Grid,Tunjukkan sebagai Grid apps/frappe/frappe/installer.py,App {0} already installed,App {0} telah dipasang +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Pengguna yang diberikan kepada dokumen rujukan akan mendapat mata. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Tiada Preview DocType: Workflow State,exclamation-sign,seru-tanda apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Fail yang dikeluarkan {0} @@ -605,6 +620,7 @@ DocType: Notification,Days Before,Sebelum hari apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Peristiwa Harian harus selesai pada Hari yang sama. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edit ... DocType: Workflow State,volume-down,kelantangan kurang +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Akses tidak dibenarkan dari Alamat IP ini apps/frappe/frappe/desk/reportview.py,No Tags,Tiada Tags DocType: Email Account,Send Notification to,Hantar Pemberitahuan kepada DocType: DocField,Collapsible,Lipat @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Pemaju apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Dibuat apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} di baris {1} tidak boleh mempunyai URL dan perkara anak secara serentak +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Harus ada atleast satu baris untuk jadual berikut: {0} DocType: Print Format,Default Print Language,Bahasa Cetakan Lalai apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Keturunan apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Akar {0} tidak boleh dihapuskan @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Host +DocType: Data Import Beta,Import File,Import Fail apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Ruangan {0} sudah wujud. DocType: ToDo,High,Tinggi apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Acara Baru @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,Hantar Notis untuk benang E-m apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Tidak dalam Mod Pemaju apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Backup fail sudah siap -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Mata maksimum dibenarkan selepas mendarabkan mata dengan nilai penggandaan (Nota: Tidak ada set nilai had sebagai 0) DocType: DocField,In Global Search,Dalam Pencarian Global DocType: System Settings,Brute Force Security,Keselamatan Force Brute DocType: Workflow State,indent-left,inden kiri @@ -775,6 +791,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Pengguna '{0}' sudah mempunyai peranan '{1}' DocType: System Settings,Two Factor Authentication method,Kaedah Pengesahan Dua Faktor apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Mula-mula tetapkan nama dan simpan rekod. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Rekod apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Dikongsi dengan {0} apps/frappe/frappe/email/queue.py,Unsubscribe,unsubscribe DocType: View Log,Reference Name,Nama Rujukan @@ -825,6 +842,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Jejaki Status E-mel DocType: Note,Notify Users On Every Login,Memberitahu Pengguna Pada Setiap Login DocType: Note,Notify Users On Every Login,Memberitahu Pengguna Pada Setiap Login +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Tidak dapat memadankan lajur {0} dengan mana-mana medan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Mencatat {0} rekod berjaya. DocType: PayPal Settings,API Password,API Kata laluan apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Masukkan modul python atau pilih jenis penyambung apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname tidak ditetapkan untuk Custom Field @@ -853,9 +872,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Salinan nama {0} {1} -DocType: Email Queue,Retry,Cuba semula +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Cuba semula +DocType: Contact Phone,Number,Nombor DocType: Web Form Field,Web Form Field,Web Borang Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Anda mempunyai mesej baru dari: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Sila masukkan URL Redirect apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -881,7 +902,7 @@ DocType: Notification,View Properties (via Customize Form),Lihat Properties (mel apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik pada fail untuk memilihnya. DocType: Note Seen By,Note Seen By,Nota Seen By apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Cuba untuk menggunakan corak papan kekunci yang lebih panjang dengan lebih gilir -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Leaderboard +,LeaderBoard,Leaderboard DocType: DocType,Default Sort Order,Pesalah Susut Lalai DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Bantuan Balas E-mel @@ -916,6 +937,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,mengarang Email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Negeri untuk aliran kerja (contohnya Draf, Diluluskan, Dibatalkan)." DocType: Print Settings,Allow Print for Draft,Benarkan Cetak untuk Draf +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/link_selector.js,Set Quantity,Terletak Kuantiti apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Mengemukakan dokumen ini untuk mengesahkan DocType: Contact,Unsubscribed,Dilanggan @@ -947,6 +969,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Unit Organisasi untuk Pengg ,Transaction Log Report,Laporan Log Transaksi DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Hantar Batal langganan Link +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Terdapat beberapa rekod yang berkaitan yang perlu dibuat sebelum kami boleh mengimport fail anda. Adakah anda ingin mencipta rekod yang hilang berikut secara automatik? DocType: Access Log,Method,Kaedah DocType: Report,Script Report,Laporan skrip DocType: OAuth Authorization Code,Scopes,skop @@ -988,6 +1011,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Telah dimuat naik dengan jayanya apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Anda disambungkan ke internet. DocType: Social Login Key,Enable Social Login,Dayakan Login Sosial +DocType: Data Import Beta,Warnings,Amaran DocType: Communication,Event,Peristiwa apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Pada {0}, {1} menulis:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Tidak boleh memadam bidang standard. Anda boleh menyembunyikannya jika anda mahu @@ -1043,6 +1067,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Masukkan DocType: Kanban Board Column,Blue,Blue apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Semua penyesuaian akan dihapuskan. Sila sahkan. DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Baris Kesalahan Eksport apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Nama kumpulan tidak boleh kosong. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Nod lagi hanya boleh diwujudkan di bawah nod jenis 'Kumpulan DocType: SMS Parameter,Header,Tandukan @@ -1082,13 +1107,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Meminta tamat masa apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Membolehkan / Nonaktifkan Domain DocType: Role Permission for Page and Report,Allow Roles,Benarkan Peranan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Berhasil mengimport {0} rekod daripada {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Ekspresi Python Mudah, Contoh: Status dalam ("Tidak Sah")" DocType: User,Last Active,Terakhir Aktif DocType: Email Account,SMTP Settings for outgoing emails,Tetapan SMTP untuk e-mel keluar apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,pilih satu DocType: Data Export,Filter List,Senarai Penapis DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Kata laluan anda telah dikemaskini. Berikut adalah kata laluan baru anda 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 @@ -1097,7 +1122,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID Pengguna DocType: Communication,Sent,Dihantar DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Pentadbiran DocType: User,Simultaneous Sessions,Sesyen serentak DocType: Social Login Key,Client Credentials,Bukti kelayakan pelanggan @@ -1129,7 +1153,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Dikemas apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Pengguna tidak boleh Buat apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Berjaya Selesai -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} tidak wujud apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,akses Dropbox diluluskan! DocType: Customize Form,Enter Form Type,Masukkan Borang Jenis DocType: Google Drive,Authorize Google Drive Access,Diberikan Akses Google Drive @@ -1137,7 +1160,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Tiada rekod tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Buang Field apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Anda tidak bersambung ke Internet. Cuba semula selepas beberapa ketika. -DocType: User,Send Password Update Notification,Hantar Kata laluan Update Pemberitahuan apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Membenarkan DOCTYPE, DOCTYPE. Berhati-hati!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Format disesuaikan untuk Percetakan, E-mel" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Jumlah {0} @@ -1223,6 +1245,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Kod Pengesahan salah apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrasi Kenalan Google dilumpuhkan. DocType: Assignment Rule,Description,Penerangan DocType: Print Settings,Repeat Header and Footer in PDF,Ulang Header dan Footer dalam bentuk PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Kegagalan DocType: Address Template,Is Default,Adalah Default DocType: Data Migration Connector,Connector Type,Jenis Penyambung apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Ruangan Nama tidak boleh kosong @@ -1235,6 +1258,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Pergi ke {0} Halaman DocType: LDAP Settings,Password for Base DN,Kata laluan untuk Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Jadual Field 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/model/document.py,Action Failed,tindakan Gagal apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,untuk Pengguna @@ -1288,6 +1312,7 @@ DocType: Print Settings,Enable Raw Printing,Dayakan percetakan mentah DocType: Website Route Redirect,Source,Sumber apps/frappe/frappe/templates/includes/list/filters.html,clear,jelas apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Selesai +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Persediaan> Pengguna DocType: Prepared Report,Filter Values,Nilai Penapis DocType: Communication,User Tags,Tags DocType: Data Migration Run,Fail,Gagal @@ -1344,6 +1369,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Ikut ,Activity,Aktiviti DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Bantuan: Untuk pautan ke satu lagi rekod dalam sistem, menggunakan "# Borang / Nota / [Nota Nama]" sebagai URL Link. (Tidak menggunakan "http: //")" DocType: User Permission,Allow,Benarkan +DocType: Data Import Beta,Update Existing Records,Kemas kini Rekod yang Ada apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Mari kita mengelakkan mengulangi kata-kata dan watak-watak DocType: Energy Point Rule,Energy Point Rule,Peraturan Tenaga Tenaga DocType: Communication,Delayed,Lambat @@ -1356,9 +1382,7 @@ DocType: Milestone,Track Field,Trek Field DocType: Notification,Set Property After Alert,Menetapkan Hartanah Selepas Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Menambah medan untuk bentuk. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Kelihatan seperti sesuatu yang tidak kena dengan konfigurasi Paypal tapak ini. -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/sidebar/review.js,Add Review,Tambah Ulasan -DocType: File,rgt,Rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Saiz Fon (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Hanya DocTypes standard yang dibenarkan untuk disesuaikan daripada Borang Penyesuaian. DocType: Email Account,Sendgrid,Sendgrid @@ -1395,6 +1419,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Pen apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Maaf! Anda tidak boleh memadam komen auto-dijana DocType: Google Settings,Used For Google Maps Integration.,Digunakan untuk Integrasi Peta Google. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Rujukan DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Tiada rekod akan dieksport DocType: User,System User,Sistem Pengguna DocType: Report,Is Standard,Adalah Standard DocType: Desktop Icon,_report,_Lapor @@ -1410,6 +1435,7 @@ DocType: Workflow State,minus-sign,tolak-tanda apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not Found apps/frappe/frappe/www/printview.py,No {0} permission,Tiada {0} kebenaran apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksport Kebenaran Custom +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Tiada item dijumpai. DocType: Data Export,Fields Multicheck,Medan Multicheck DocType: Activity Log,Login,Log masuk DocType: Web Form,Payments,Pembayaran @@ -1470,8 +1496,9 @@ DocType: Address,Postal,Pos DocType: Email Account,Default Incoming,Default masuk DocType: Workflow State,repeat,berulang DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Nilai mestilah salah satu daripada {0} DocType: Role,"If disabled, this role will be removed from all users.","Jika tidak aktif, peranan ini akan dikeluarkan daripada semua pengguna." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Pergi ke {0} Senarai +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Pergi ke {0} Senarai 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 @@ -1485,6 +1512,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Nama Field Tempatan DocType: DocType,Track Changes,Jejak Perubahan DocType: Workflow State,Check,Semak DocType: Chat Profile,Offline,offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Berhasil diimport {0} DocType: User,API Key,Kunci API DocType: Email Account,Send unsubscribe message in email,Menghantar mesej unsubscribe dalam e-mel apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edit Title @@ -1511,11 +1539,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} telah memberikan nilai lalai untuk {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                        No results found for '

                                                                        ,

                                                                        Tiada hasil ditemui untuk '

                                                                        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 @@ -1536,8 +1564,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Tidak dibenarkan untu 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Persediaan> Kebenaran Pengguna DocType: LDAP Group Mapping,LDAP Group Mapping,Pemetaan Kumpulan LDAP DocType: Dashboard Chart,Chart Options,Pilihan Carta +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Lajur Untitled apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} dari {1} kepada {2} berturut # {3} DocType: Communication,Expired,Tamat apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Nampaknya token yang anda gunakan tidak sah! @@ -1547,6 +1577,7 @@ DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),Max Lampiran Saiz (dalam MB) apps/frappe/frappe/www/login.html,Have an account? Login,Akaun? Log masuk DocType: Workflow State,arrow-down,arrow ke bawah +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Barisan {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Pengguna tidak dibenarkan untuk memadamkan {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} daripada {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Terakhir Dikemaskini Pada @@ -1564,6 +1595,7 @@ DocType: Custom Role,Custom Role,Peranan adat apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Home / Ujian Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Masukkan kata laluan anda DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Akses Rahsia +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Wajib) 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. @@ -1638,6 +1670,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Tunjukkan apps/frappe/frappe/desk/form/assign_to.py,New Message,Mesej baru DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,Pertanyaan-laporan +DocType: Data Import Beta,Template Warnings,Peringatan Templat apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,penapis yang disimpan DocType: DocField,Percent,Peratus apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Sila set penapis @@ -1659,6 +1692,7 @@ DocType: Custom Field,Custom,Custom DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jika diaktifkan, pengguna yang log masuk dari Alamat IP Terhad, tidak akan diminta untuk Two Factor Auth" DocType: Auto Repeat,Get Contacts,Dapatkan Kenalan apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Jawatan yang difailkan di bawah {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Melangkau Tiang Tanpa Tajuk DocType: Notification,Send alert if date matches this field's value,Hantar amaran sekiranya tarikh perlawanan nilai ini bidang ini DocType: Workflow,Transitions,Peralihan apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} kepada {2} @@ -1682,6 +1716,7 @@ DocType: Workflow State,step-backward,langkah ke belakang apps/frappe/frappe/utils/boilerplate.py,{app_title},{Tajuk_App} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Sila set kunci akses Dropbox dalam config laman anda apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Padam rekod ini untuk membenarkan menghantar ke alamat email ini +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Jika pelabuhan bukan standard (contohnya POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Sesuaikan Pintasan apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Hanya medan mandatori yang perlu bagi rekod baru. Anda boleh memadam lajur bukan mandatori jika anda mahu. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Tunjukkan Lagi Aktiviti @@ -1789,7 +1824,9 @@ DocType: Note,Seen By Table,Dilihat Oleh Jadual apps/frappe/frappe/www/third_party_apps.html,Logged in,Log masuk apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Default Menghantar dan Peti masuk DocType: System Settings,OTP App,App OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Berjaya diperbaharui {0} rekod daripada {1}. DocType: Google Drive,Send Email for Successful Backup,Hantar E-mel untuk Cadangan Berjaya +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Penjadual tidak aktif. Tidak dapat mengimport data. DocType: Print Settings,Letter,Surat DocType: DocType,"Naming Options:
                                                                        1. field:[fieldname] - By Field
                                                                        2. naming_series: - By Naming Series (field called naming_series must be present
                                                                        3. Prompt - Prompt user for a name
                                                                        4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                        5. @@ -1803,6 +1840,7 @@ DocType: GCalendar Account,Next Sync Token,Token Sync Seterusnya DocType: Energy Point Settings,Energy Point Settings,Tetapan Mata Tenaga DocType: Async Task,Succeeded,Diikuti apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Medan mandatori yang diperlukan dalam {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                          No results found for '

                                                                          ,

                                                                          Tiada hasil ditemui untuk '

                                                                          apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Kebenaran Reset untuk {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Pengguna dan Kebenaran DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1873,6 +1911,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Dalam DocType: Notification,Value Change,Nilai Perubahan DocType: Google Contacts,Authorize Google Contacts Access,Mengotorkan Akses Kenalan Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Hanya menunjukkan medan Nombor dari Laporan +DocType: Data Import Beta,Import Type,Jenis Import DocType: Access Log,HTML Page,Halaman HTML DocType: Address,Subsidiary,Anak Syarikat apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Mencuba Sambungan ke QZ Tray ... @@ -1883,7 +1922,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Pelayan Me DocType: Custom DocPerm,Write,Tulis apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Hanya Pentadbir dibenarkan untuk membuat Pertanyaan / Skrip Laporan apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Pengemaskinian -DocType: File,Preview,Preview +DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "nilai" adalah wajib. Sila nyatakan nilai yang perlu dikemaskini DocType: Customize Form,Use this fieldname to generate title,Gunakan fieldname ini untuk menjana tajuk apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import Dari E-mel @@ -1968,6 +2007,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Pelayar tidak DocType: Social Login Key,Client URLs,URL pelanggan apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Beberapa maklumat yang hilang apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} berjaya dibuat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Melangkau {0} dari {1}, {2}" DocType: Custom DocPerm,Cancel,Batal apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Padam Bulk apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Fail {0} tidak wujud @@ -1995,7 +2035,6 @@ DocType: GCalendar Account,Session Token,Token Sesi DocType: Currency,Symbol,Simbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Sahkan Pemadaman Data -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Kata laluan baru melalui e-mel apps/frappe/frappe/auth.py,Login not allowed at this time,Log Masuk tidak dibenarkan pada masa ini DocType: Data Migration Run,Current Mapping Action,Tindakan pemetaan semasa DocType: Dashboard Chart Source,Source Name,Nama Source @@ -2008,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Diikuti oleh DocType: LDAP Settings,LDAP Email Field,LDAP Email Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Senarai +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Eksport {0} rekod apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Sudah pada pengguna To Do senarai DocType: User Email,Enable Outgoing,Membolehkan Keluar DocType: Address,Fax,Fax @@ -2067,8 +2107,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Dokumen Cetak apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Lompat ke medan DocType: Contact Us Settings,Forward To Email Address,Forward Untuk E Alamat +DocType: Contact Phone,Is Primary Phone,Adakah Telefon Utama apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Hantar e-mel ke {0} untuk memautnya di sini. DocType: Auto Email Report,Weekdays,Harijadi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} rekod akan dieksport apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Bidang tajuk mesti fieldname yang sah DocType: Post Comment,Post Comment,pos komen apps/frappe/frappe/config/core.py,Documents,Dokumen @@ -2087,7 +2129,9 @@ eval:doc.age>18",Bidang ini akan dipaparkan hanya jika FIELDNAME yang ditakri DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,hari ini apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,hari ini +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Sebaik sahaja anda telah menetapkan ini, pengguna hanya akan dapat akses dokumen (. Contohnya Blog Post) mana pautan wujud (contohnya. Blogger)." +DocType: Data Import Beta,Submit After Import,Hantar Selepas Import DocType: Error Log,Log of Scheduler Errors,Log Kesilapan Berjadual DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,Secret Pelanggan App @@ -2106,10 +2150,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Matikan pautan Daftar Pelanggan di halaman Log masuk apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Ditugaskan Untuk / Pemilik DocType: Workflow State,arrow-left,arrow kiri +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Eksport 1 rekod DocType: Workflow State,fullscreen,skrin penuh DocType: Chat Token,Chat Token,Token Sembang apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Buat Carta apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Jangan Import DocType: Web Page,Center,Pusat DocType: Notification,Value To Be Set,Nilai Akan Tetapkan apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edit {0} @@ -2129,6 +2175,7 @@ DocType: Print Format,Show Section Headings,Show Seksyen Tajuk DocType: Bulk Update,Limit,Had apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Kami telah menerima permintaan untuk pemadaman {0} data yang berkaitan dengan: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Tambah bahagian baharu +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Rekod yang Ditapis apps/frappe/frappe/www/printview.py,No template found at path: {0},Tiada template ditemui di jalan: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,No Akaun E-mel DocType: Comment,Cancelled,Dibatalkan @@ -2216,10 +2263,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Penyelarasan Jenis Dokumen Global. ,Lead Conversion Time,Memimpin Masa Penukaran apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Membina Laporan DocType: Note,Notify users with a popup when they log in,Memberitahu pengguna dengan popup apabila mereka log masuk +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Modul Teras {0} tidak boleh dicari dalam Carian Global. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Terbuka Sembang apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} tidak wujud, pilih sasaran baru untuk bergabung" DocType: Data Migration Connector,Python Module,Modul Python @@ -2236,8 +2286,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Tutup 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Persediaan> Kebenaran Pengguna -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Update +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Update DocType: Transaction Log,Transaction Hash,Hash urus niaga DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Sila simpan Newsletter sebelum menghantar @@ -2253,6 +2302,7 @@ DocType: Data Import,In Progress,Dalam Kemajuan apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Beratur untuk sandaran. Ia mungkin mengambil masa beberapa minit hingga satu jam. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Kebenaran pengguna sudah wujud +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Lajur pemetaan {0} ke medan {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Lihat {0} DocType: User,Hourly,Jam apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Mendaftar OAuth Pelanggan App @@ -2265,7 +2315,6 @@ DocType: SMS Settings,SMS Gateway URL,URL SMS Gateway apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} tidak boleh ""{2}"". Ia harus menjadi salah satu daripada ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},diperolehi oleh {0} melalui peraturan automatik {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} atau {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Kata laluan Update DocType: Workflow State,trash,sampah DocType: System Settings,Older backups will be automatically deleted,sandaran tua akan dipadamkan secara automatik apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID Kunci Akses atau Kunci Akses Rahsia tidak sah. @@ -2294,6 +2343,7 @@ DocType: Address,Preferred Shipping Address,Pilihan Alamat Penghantaran apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Dengan kepala Surat apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} menghasilkan {1} ini apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Tidak dibenarkan untuk {0}: {1} dalam Baris {2}. Medan terhad: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jika ini diperiksa, baris dengan data yang sah akan diimport dan baris tidak sah akan dibuang ke dalam fail baru untuk anda import kemudian." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumen hanya boleh disunting oleh pengguna peranan @@ -2320,6 +2370,7 @@ DocType: Custom Field,Is Mandatory Field,Adalah Field Mandatori DocType: User,Website User,Laman Web Pengguna apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Beberapa lajur mungkin terputus semasa mencetak ke PDF. Cuba simpan bilangan lajur di bawah 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Tidak setaraf +DocType: Data Import Beta,Don't Send Emails,Jangan Hantar E-mel DocType: Integration Request,Integration Request Service,Integrasi Permintaan Perkhidmatan DocType: Access Log,Access Log,Log Masuk DocType: Website Script,Script to attach to all web pages.,Skrip untuk dikenakan ke atas semua laman web. @@ -2360,6 +2411,7 @@ DocType: Contact,Passive,Pasif DocType: Auto Repeat,Accounts Manager,Pengurus Akaun-akaun apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Tugasan untuk {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Bayaran anda dibatalkan. +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/views/reports/report_view.js,Select File Type,Pilih Jenis Fail apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Lihat semua DocType: Help Article,Knowledge Base Editor,Pangkalan Data Editor @@ -2392,6 +2444,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumen Status apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Kelulusan Diperlukan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Rekod berikut perlu dibuat sebelum kami boleh mengimport fail anda. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Kod Pengesahan apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Tidak dibenarkan untuk Import DocType: Deleted Document,Deleted DocType,DOCTYPE dipadam @@ -2446,8 +2499,8 @@ DocType: GCalendar Settings,Google API Credentials,Kredensial API Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesi Mula Gagal apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesi Mula Gagal apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},E-mel ini telah dihantar ke {0} dan disalin ke {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},mengemukakan dokumen ini {0} DocType: Workflow State,th,ke- -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu DocType: Social Login Key,Provider Name,Nama Pembekal apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Buat baru {0} DocType: Contact,Google Contacts,Kenalan Google @@ -2455,6 +2508,7 @@ DocType: GCalendar Account,GCalendar Account,Akaun GCalendar DocType: Email Rule,Is Spam,adalah Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Laporan {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Buka {0} +DocType: Data Import Beta,Import Warnings,Amaran Import DocType: OAuth Client,Default Redirect URI,Redirect URI lalai DocType: Auto Repeat,Recipients,Penerima DocType: System Settings,Choose authentication method to be used by all users,Pilih kaedah pengesahan yang akan digunakan oleh semua pengguna @@ -2573,6 +2627,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Laporan tela apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Ralat Webhook Ralat DocType: Email Flag Queue,Unread,belum dibaca DocType: Bulk Update,Desk,Meja +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Melangkaui lajur {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Penapis perlu menjadi tuple atau senarai (dalam senarai) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Tuliskan pernyataan SELECT. Hasil nota tidak paged (semua data dihantar dalam satu pergi). DocType: Email Account,Attachment Limit (MB),Had Lampiran (MB) @@ -2587,6 +2642,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Buat Baru DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-mel tidak dihantar kepada {0} (berhenti melanggan / kurang upaya) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Pilih medan untuk dieksport DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Terkecil mata Pecahan Nilai apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Menyediakan Laporan @@ -2595,6 +2651,7 @@ DocType: Workflow State,th-list,ke senarai DocType: Web Page,Enable Comments,Membolehkan Comments apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Nota DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Hadkan pengguna dari alamat IP ini sahaja. Alamat IP berganda boleh ditambah dengan memisahkan dengan tanda koma. Juga menerima sebahagian alamat IP seperti (111.111.111) +DocType: Data Import Beta,Import Preview,Pratonton Import DocType: Communication,From,Dari apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Pilih nod kumpulan pertama. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Cari {0} dalam {1} @@ -2694,6 +2751,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,antara DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Beratur +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Persediaan> Peribadikan Borang DocType: Braintree Settings,Use Sandbox,Penggunaan Sandbox apps/frappe/frappe/utils/goal.py,This month,Bulan ini apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Format Custom Cetak @@ -2709,6 +2767,7 @@ DocType: Session Default,Session Default,Default Sesi DocType: Chat Room,Last Message,Mesej terakhir DocType: OAuth Bearer Token,Access Token,Token Akses DocType: About Us Settings,Org History,Org Sejarah +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Mengenai {0} minit yang tinggal DocType: Auto Repeat,Next Schedule Date,Tarikh Jadual Seterusnya DocType: Workflow,Workflow Name,Nama aliran kerja DocType: DocShare,Notify by Email,Memberitahu melalui E-mel @@ -2738,6 +2797,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Pengarang apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Resume Menghantar apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Buka semula +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Tunjukkan Amaran apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Pembelian Pengguna DocType: Data Migration Run,Push Failed,Tolak Gagal @@ -2776,6 +2836,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Carian apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Anda tidak dibenarkan melihat surat berita itu. DocType: User,Interests,minat apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Arahan set semula kata laluan telah dihantar ke e-mel anda +DocType: Energy Point Rule,Allot Points To Assigned Users,Allot Points To Users Ditetapkan apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 adalah untuk kebenaran tahap dokumen, \ tahap yang lebih tinggi untuk kebenaran peringkat lapangan." DocType: Contact Email,Is Primary,Adakah Primer @@ -2799,6 +2860,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Key boleh diterbitkan DocType: Stripe Settings,Publishable Key,Key boleh diterbitkan apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Mula Import +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Jenis Eksport DocType: Workflow State,circle-arrow-left,bulatan-anak panah kiri DocType: System Settings,Force User to Reset Password,Angkatan Pengguna untuk Menetapkan Kata Laluan apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Untuk mendapatkan laporan terkini, klik pada {0}." @@ -2812,13 +2874,16 @@ DocType: Contact,Middle Name,Nama tengah DocType: Custom Field,Field Description,Bidang Penerangan apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nama tidak ditetapkan melalui Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-mel Peti Masuk +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Mengemas kini {0} daripada {1}, {2}" DocType: Auto Email Report,Filters Display,Penapis Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","amended_from" mesti hadir untuk melakukan pindaan. +DocType: Contact,Numbers,Nombor apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} menghargai kerja anda di {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Simpan penapis DocType: Address,Plant,Loji apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Membalas semua DocType: DocType,Setup,Persediaan +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Semua Rekod DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Alamat E-mel yang Kenalan Googlenya akan disegerakkan. DocType: Email Account,Initial Sync Count,Awal Count Sync DocType: Workflow State,glass,kaca @@ -2843,7 +2908,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Tunjukkan Pop timbul Pratonton apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ini adalah top-100 kata laluan yang sama. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Sila membolehkan pop-up -DocType: User,Mobile No,Tidak Bergerak +DocType: Contact,Mobile No,Tidak Bergerak DocType: Communication,Text Content,kandungan teks DocType: Customize Form Field,Is Custom Field,Adalah Custom Field DocType: Workflow,"If checked, all other workflows become inactive.","Jika disemak, semua aliran kerja lain menjadi tidak aktif." @@ -2889,6 +2954,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Tamba apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nama Format Cetak baru apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Togol Sidebar DocType: Data Migration Run,Pull Insert,Tarik Masukkan +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Mata maksimum dibenarkan selepas mendarabkan mata dengan nilai penggandaan (Nota: Untuk tiada had meninggalkan medan ini kosong atau tetapkan 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Templat Tidak Sah apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Query SQL yang tidak sah apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Wajib: DocType: Chat Message,Mentions,Mentions @@ -2903,6 +2971,7 @@ DocType: User Permission,User Permission,Kebenaran Pengguna apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Tidak Dipasang apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Muat turun dengan data +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},menukar nilai untuk {0} {1} DocType: Workflow State,hand-right,tangan kanan DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Wilayah @@ -2930,10 +2999,12 @@ DocType: Braintree Settings,Public Key,Kunci Awam DocType: GSuite Settings,GSuite Settings,Tetapan GSuite DocType: Address,Links,Pautan DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Menggunakan Nama Alamat E-mel yang disebutkan dalam Akaun ini sebagai Nama Penghantar untuk semua e-mel yang dihantar menggunakan Akaun ini. +DocType: Energy Point Rule,Field To Check,Field To Check apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Kenalan Google - Tidak dapat mengemas kini kenalan dalam Kenalan Google {0}, kod ralat {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Sila pilih Jenis Dokumen. apps/frappe/frappe/model/base_document.py,Value missing for,Nilai hilang apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Tambah Anak +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Kemajuan Import DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",Sekiranya syarat pengguna berpuas hati akan diberi ganjaran dengan mata. contohnya. doc.status == 'Tertutup' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Rekod Dihantar tidak boleh dihapuskan. @@ -2970,6 +3041,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Mengotorkan Akses Kale apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,halaman yang anda cari adalah hilang. Ini mungkin kerana ia dipindahkan atau terdapat kesilapan menaip dalam pautan. apps/frappe/frappe/www/404.html,Error Code: {0},Kod Ralat: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Keterangan untuk laman yang menyenaraikan, dalam teks biasa, hanya beberapa baris. (Maks 140 huruf)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} adalah medan mandatori DocType: Workflow,Allow Self Approval,Benarkan Kelulusan Diri DocType: Event,Event Category,Kategori Acara apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3017,8 +3089,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Berpindah ke DocType: Address,Preferred Billing Address,Alamat Bil pilihan apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Terlalu banyak menulis di dalam satu permintaan. Sila hantar permintaan yang lebih kecil apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive telah dikonfigurasikan. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Jenis Dokumen {0} telah diulang. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,nilai Berubah DocType: Workflow State,arrow-up,arrow-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Harus ada atleast satu baris untuk {0} jadual apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Untuk mengkonfigurasi Ulangan Auto, dayakan "Benarkan Ulang Auto" dari {0}." DocType: OAuth Bearer Token,Expires In,tamat pada DocType: DocField,Allow on Submit,Benarkan di Hantar @@ -3105,6 +3179,7 @@ DocType: Custom Field,Options Help,Pilihan Bantuan 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 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 @@ -3122,6 +3197,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Kod Verfication DocType: Webhook,Webhook Request,Permintaan Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Gagal: {0} kepada {1}: {2} DocType: Data Migration Mapping,Mapping Type,Jenis pemetaan +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,pilih Mandatori apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Tinjau apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Tidak perlu untuk simbol, angka, atau huruf besar." DocType: DocField,Currency,Mata Wang @@ -3152,11 +3228,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Ketua Surat Berasaskan Pada apps/frappe/frappe/utils/oauth.py,Token is missing,Token yang hilang apps/frappe/frappe/www/update-password.html,Set Password,Tetapkan kata laluan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Berjaya mengimport {0} rekod. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Nota: Menukar Nama Page akan memecahkan URL sebelum ke halaman ini. apps/frappe/frappe/utils/file_manager.py,Removed {0},Dikeluarkan {0} DocType: SMS Settings,SMS Settings,Tetapan SMS DocType: Company History,Highlight,Highlight DocType: Dashboard Chart,Sum,Jumlah +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,melalui Import Data DocType: OAuth Provider Settings,Force,Force apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Terakhir disegerakkan {0} DocType: DocField,Fold,Lipat @@ -3193,6 +3271,7 @@ DocType: Workflow State,Home,Laman Utama DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Pengguna boleh log masuk menggunakan id E-mel atau Nama Pengguna DocType: Workflow State,question-sign,soalan-tanda +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} dilumpuhkan apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Laluan "laluan" adalah wajib untuk Paparan Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Masukkan Ruang Sebelum {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Pengguna dari medan ini akan diberi ganjaran @@ -3226,6 +3305,7 @@ DocType: Website Settings,Top Bar Items,Item Top Bar DocType: Notification,Print Settings,Tetapan cetak DocType: Page,Yes,Ya DocType: DocType,Max Attachments,Max Lampiran +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Mengenai {0} baki saat DocType: Calendar View,End Date Field,Tarikh Tarikh Akhir apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Pintasan Global DocType: Desktop Icon,Page,Page @@ -3338,6 +3418,7 @@ DocType: GSuite Settings,Allow GSuite access,Membenarkan akses GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Menamakan apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Pilih Semua +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Lajur {0} apps/frappe/frappe/config/customization.py,Custom Translations,Custom Terjemahan apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,kemajuan apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,mengikut Peranan @@ -3380,11 +3461,13 @@ DocType: Stripe Settings,Stripe Settings,Tetapan jalur DocType: Stripe Settings,Stripe Settings,Tetapan jalur DocType: Data Migration Mapping,Data Migration Mapping,Pemetaan Migrasi Data DocType: Auto Email Report,Period,Tempoh +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Perihal {0} baki minit apps/frappe/frappe/www/login.py,Invalid Login Token,Daftar sah Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Buang apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 jam yang lalu DocType: Website Settings,Home Page,Laman Utama DocType: Error Snapshot,Parent Error Snapshot,Ibu Bapa Ralat Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Lajur peta dari {0} ke medan dalam {1} DocType: Access Log,Filters,Penapis DocType: Workflow State,share-alt,saham alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Giliran harus menjadi salah satu {0} @@ -3404,6 +3487,7 @@ DocType: Calendar View,Start Date Field,Mula Tarikh Bidang DocType: Role,Role Name,Nama Peranan apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Tukar Ke Meja apps/frappe/frappe/config/core.py,Script or Query reports,Skrip atau Pertanyaan melaporkan +DocType: Contact Phone,Is Primary Mobile,Adakah Mobile Utama DocType: Workflow Document State,Workflow Document State,Aliran Kerja Dokumen Negeri apps/frappe/frappe/public/js/frappe/request.js,File too big,Fail terlalu besar apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Akaun e-mel ditambah beberapa kali @@ -3449,6 +3533,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Tetapan Halaman apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Menyimpan ... apps/frappe/frappe/www/update-password.html,Invalid Password,kata laluan tidak sah +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Berjaya mengimport {0} rekod daripada {1}. DocType: Contact,Purchase Master Manager,Pembelian Master Pengurus apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Klik pada ikon kunci untuk togol awam / swasta DocType: Module Def,Module Name,Nama Modul @@ -3483,6 +3568,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Antara ciri-ciri mungkin tidak berfungsi dalam pelayar anda. Sila kemas kini pelayar anda kepada versi terkini. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Antara ciri-ciri mungkin tidak berfungsi dalam pelayar anda. Sila kemas kini pelayar anda kepada versi terkini. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Tidak tahu, tanya 'membantu'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},membatalkan dokumen ini {0} DocType: DocType,Comments and Communications will be associated with this linked document,Komen dan Komunikasi akan dikaitkan dengan dokumen berkaitan ini apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Menapis ... DocType: Workflow State,bold,berani @@ -3501,6 +3587,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Tambah / Urus DocType: Comment,Published,Diterbitkan apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Terima kasih kerana e-mel anda DocType: DocField,Small Text,Teks Kecil +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Nombor {0} tidak boleh ditetapkan sebagai utama untuk Telefon serta Nombor Mudah Alih DocType: Workflow,Allow approval for creator of the document,Benarkan kelulusan pencipta dokumen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Simpan Laporan DocType: Webhook,on_cancel,on_cancel @@ -3558,6 +3645,7 @@ DocType: Print Settings,PDF Settings,Tetapan PDF DocType: Kanban Board Column,Column Name,Ruangan Nama DocType: Language,Based On,Berdasarkan DocType: Email Account,"For more information, click here.","Untuk maklumat lanjut, klik di sini ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Bilangan lajur tidak sepadan dengan data apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Membuat Lalai apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Masa Pelaksanaan: {0} sec apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Laluan tidak sah termasuk @@ -3648,7 +3736,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Muat naik fail {0} DocType: Deleted Document,GCalendar Sync ID,ID Sync GCalendar DocType: Prepared Report,Report Start Time,Laporkan Masa Mula -apps/frappe/frappe/config/settings.py,Export Data,Data Eksport +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Data Eksport 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. @@ -3666,7 +3754,6 @@ DocType: Report,Disable Prepared Report,Lumpuhkan Laporan Disediakan apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Pengguna {0} telah meminta penghapusan data apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Haram Access Token. Sila cuba lagi apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikasi ini telah dikemaskini kepada versi baru, sila muat semula halaman ini" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,Pilihan: amaran akan dihantar jika ungkapan ini adalah benar DocType: Data Migration Plan,Plan Name,Nama Rancang DocType: Print Settings,Print with letterhead,Cetak dengan kepala surat @@ -3707,6 +3794,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Tidak boleh menetapkan Pinda tanpa Batal apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Halaman Penuh DocType: DocType,Is Child Table,Adakah Anak Jadual +DocType: Data Import Beta,Template Options,Pilihan Template apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} mesti menjadi salah satu daripada {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} kini melihat dokumen ini apps/frappe/frappe/config/core.py,Background Email Queue,Latar Belakang Email Giliran @@ -3714,7 +3802,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Kata laluan Reset DocType: Communication,Opened,Dibuka DocType: Workflow State,chevron-left,chevron kiri DocType: Communication,Sending,Menghantar -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Tidak dibenarkan daripada ini Alamat IP DocType: Website Slideshow,This goes above the slideshow.,Ini pergi atas tayangan slaid. DocType: Contact,Last Name,Nama Akhir DocType: Event,Private,Persendirian @@ -3728,7 +3815,6 @@ DocType: Workflow Action,Workflow Action,Aliran Kerja Tindakan apps/frappe/frappe/utils/bot.py,I found these: ,Saya mendapati ini: DocType: Event,Send an email reminder in the morning,Hantar e-mel peringatan pada waktu pagi DocType: Blog Post,Published On,Published On -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 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} @@ -3749,7 +3835,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,amaran-tanda DocType: Prepared Report,Prepared Report,Laporan Disediakan apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Tambah tag meta ke halaman web anda -DocType: Contact,Phone Nos,Nos Telefon 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 @@ -3767,6 +3852,7 @@ DocType: Data Migration Connector,Data Migration,Penghijrahan Data DocType: User,API Key cannot be regenerated,Kunci API tidak boleh dikembalikan semula apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Ada sesuatu yang tidak salah DocType: System Settings,Number Format,Format Nombor +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Berjaya mengimport {0} rekod. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Ringkasan DocType: Event,Event Participants,Peserta Acara DocType: Auto Repeat,Frequency,kekerapan @@ -3774,7 +3860,7 @@ DocType: Custom Field,Insert After,Masukkan Selepas DocType: Event,Sync with Google Calendar,Segerakkan dengan Kalendar Google DocType: Access Log,Report Name,Nama Laporan DocType: Desktop Icon,Reverse Icon Color,Songsang Icon Warna -DocType: Notification,Save,Simpan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Simpan apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Tarikh Berjadual Seterusnya apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Berikan kepada orang yang mempunyai tugas yang paling sedikit apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,seksyen Heading @@ -3797,11 +3883,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Persediaan> Peribadikan Borang 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 DocType: Desktop Icon,Category,Kategori +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Nilai {0} hilang untuk {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Tambah Kenalan apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Sambungan skrip sebelah pelanggan dalam Javascript @@ -3825,6 +3911,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Kemas kini titik tenaga apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Sila pilih kaedah pembayaran yang lain. PayPal tidak menyokong urus niaga dalam mata wang '{0}' DocType: Chat Message,Room Type,Jenis bilik +DocType: Data Import Beta,Import Log Preview,Import Preview Log apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,medan carian {0} tidak sah apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,fail yang dimuat naik DocType: Workflow State,ok-circle,ok bulatan @@ -3893,6 +3980,7 @@ DocType: DocType,Allow Auto Repeat,Benarkan Ulang Auto apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Tiada nilai untuk dipaparkan DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Templat E-mel +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Berjaya memperbaharui {0} rekod. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Pengguna {0} tidak mempunyai akses dokument melalui kebenaran peranan untuk dokumen {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Kedua-dua login dan kata laluan diperlukan apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Sila muat semula untuk mendapatkan dokumen terkini. diff --git a/frappe/translations/my.csv b/frappe/translations/my.csv index 17a52ad493..173d6a405a 100644 --- a/frappe/translations/my.csv +++ b/frappe/translations/my.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,အောက်ပါ apps တွေအတွက်နယူး {} လွှတ်ပေးရရှိနိုင်ပါ apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,တစ်ဦးငွေပမာဏကွင်းဆင်းရွေးချယ်ပါ။ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,loading တင်သွင်းဖိုင်ကို ... DocType: Assignment Rule,Last User,နောက်ဆုံးအသုံးပြုသူ apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","အသစ်အလုပ်တစ်ခုကို, {0}, {1} အားဖြင့်သင်တို့မှတာဝန်ပေးခဲ့တာဖြစ်ပါတယ်။ {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,session Defaults ကိုကယျတငျ +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ဖိုင်မှတ်တမ်းကိုပြန်တင်ရန် DocType: Email Queue,Email Queue records.,အီးမေးလ်တန်းစီမှတ်တမ်းများ။ DocType: Post,Post,တိုင် DocType: Address,Punjab,ပန်ဂျပ် @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,လစဉ် DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Incoming Enable apps/frappe/frappe/core/doctype/version/version_view.html,Danger,အန္တရာယ် -apps/frappe/frappe/www/login.py,Email Address,အီးမေးလ်လိပ်စာ +DocType: Address,Email Address,အီးမေးလ်လိပ်စာ DocType: Workflow State,th-large,ကြိမ်မြောက်-ကြီးများ DocType: Communication,Unread Notification Sent,ဖတ်ဖြစ်သောအသိပေးခြင်း Sent apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ပို့ကုန်ခွင့်မပြု။ သင်တို့ကိုတင်ပို့ဖို့ {0} အခန်းကဏ္ဍထားဖို့လိုပါမယ်။ @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,အုပ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""အရောင်း Query, ပံ့ပိုးမှု Query" စသည်တို့ကဲ့သို့သောဆက်သွယ်ရန်ရွေးချယ်စရာအသစ်တစ်ခုလိုင်းပေါ်တွင်အသီးအသီးသို့မဟုတ်ကော်မာကွဲကွာ။" apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,တစ်ဦး tag ကို Add ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ပုံတူ -DocType: Data Migration Run,Insert,ထည့်သွင်း +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,ထည့်သွင်း apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google Drive ကို Access က Allow apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} ကိုရွေးပါ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,အခြေစိုက်စခန်း URL ကိုရိုက်ထည့်ပေးပါ @@ -119,17 +122,17 @@ 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 DocType: Company History,Company History,ကုမ္ပဏီသမိုင်း -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,reset +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,reset DocType: Workflow State,volume-up,volume အ-up က apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,ကို web app များကိုသို့ API ကိုတောင်းဆိုမှုများတောင်းဆို Webhooks +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Show ကို Traceback DocType: DocType,Default Print Format,default ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံ DocType: Workflow State,Tags,Tags: apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,အဘယ်သူမျှမ: အသွားအလာ၏အဆုံး apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",Non-မူထူးခြားတဲ့လက်ရှိတန်ဖိုးများရှိပါတယ်အဖြစ် {0} လယ် {1} အတွက်မူထူးခြားတဲ့အဖြစ်သတ်မှတ်မရနိုငျ -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,စာရွက်စာတမ်းအမျိုးအစားများ +DocType: Global Search Settings,Document Types,စာရွက်စာတမ်းအမျိုးအစားများ DocType: Address,Jammu and Kashmir,Jammu နှင့်ကက်ရှမီးယား DocType: Workflow,Workflow State Field,အသွားအလာပြည်နယ်ကွင်းဆင်း -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup ကို> အသုံးပြုသူ DocType: Language,Guest,ဧည့်သည် DocType: DocType,Title Field,ခေါင်းစဉ်ဖျော်ဖြေမှု DocType: Error Log,Error Log,အမှားပါ @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","abcabcabc" သာအနည်းငယ် "abc" ထက်ခန့်မှန်းရန်ခက်ခဲနေကြသည်နှင့်တူပြန်လုပ်ပါ DocType: Notification,Channel,channel apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","သင်သည်ဤခွင့်ပြုချက်မရှိဘဲဖြစ်ပါတယ်ထင်ပါတယ်လျှင်, အုပ်ချုပ်ရေးမှူးစကားဝှက်ကိုပြောင်းလဲရန်ကျေးဇူးတင်ပါ။" +DocType: Data Import Beta,Data Import Beta,ဒေတာများကိုတင်သွင်း Beta ကို apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} မသင်မနေရ DocType: Assignment Rule,Assignment Rules,တာဝန်ကျတဲ့နေရာစည်းကမ်းများ DocType: Workflow State,eject,ထွက်စေ @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,အသွားအလာလ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE ပေါင်းစည်းမရနိုင်ပါ DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,မဇစ်ဖိုင် +DocType: Global Search DocType,Global Search DocType,ကမ္ဘာလုံးဆိုင်ရာရှာရန် DOCTYPE DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                          New {{ doc.doctype }} #{{ doc.name }}
                                                                          ",ပြောင်းလဲနေသောဘာသာရပ်ထည့်ရန်တူ jinja tags များကိုသုံးပါ
                                                                           New {{ doc.doctype }} #{{ doc.name }} 
                                                                          @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,ခင်ဗျား DocType: Braintree Settings,Braintree Settings,Braintree Settings များ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,အောင်မြင်စွာ {0} မှတ်တမ်းများ Created ။ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filter ကို Save DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} မဖျက်နိုင်ပါ @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,မက်ဆေ့ခ် apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,ဤစာရွက်စာတမ်းဖန်တီးအော်တိုထပ်ခါတလဲလဲ apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,သင့် browser ထဲမှာကြည့်ရန်အစီရင်ခံစာ apps/frappe/frappe/config/desk.py,Event and other calendars.,အဖြစ်အပျက်နှင့်အခြားပြက္ခဒိန်။ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (မဖြစ်မနေ 1 တန်း) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,အားလုံးလယ်ကွင်းမှတ်ချက်တင်ပြရန်လိုအပ်သောဖြစ်ကြသည်။ DocType: Custom Script,Adds a client custom script to a DocType,တစ်ဦး DOCTYPE မှတစ်ဦးကို client ထုံးစံ script ကိုထပ်ဖြည့် DocType: Print Settings,Printer Name,ပရင်တာအမည် @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,bulk Update ကို DocType: Workflow State,chevron-up,Chevron-up က DocType: DocType,Allow Guest to View,ဧည့်သည် View မှ Allow apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} {1} အဖြစ်အတူတူပင်ဖြစ်မနေသင့် -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,အမြဲတမ်း {0} ပစ္စည်းများကိုဖျက်မလား? apps/frappe/frappe/utils/oauth.py,Not Allowed,ခွင့်မပြု @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,ပြသ DocType: Email Group,Total Subscribers,စုစုပေါင်း Subscribers apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},ထိပ်တန်း {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,အတန်းအရေအတွက် apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","တစ်ဦးအခန်းက္ပအဆင့် 0 မှာ access ကိုမရှိပါဘူးလျှင်, အဆင့်မြင့်အနတ္တဖြစ်ကြ၏။" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save အမျှ DocType: Comment,Seen,မြင်ဘူး @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,ဥပမာ: DocType: Workflow,Defines workflow states and rules for a document.,တစ်ဦးစာရွက်စာတမ်းတွေအတွက်လုပ်ငန်းအသွားအလာပြည်နယ်နှင့်စည်းမျဉ်းစည်းကမ်းသတ်မှတ်ပါတယ်။ DocType: Workflow State,Filter,ရေစစ် @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,ပိတ်ထားသော DocType: Blog Settings,Blog Title,ဘလော့ခေါင်းစဉ် apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,စံအခန်းကဏ္ဍကိုပိတ်ထားမရနိုငျ apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,chat အမျိုးအစား +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,မြေပုံကော်လံများ DocType: Address,Mizoram,မီဇိုရမ်ပြည်နယ် DocType: Newsletter,Newsletter,သတင်းလွှာ apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ဖွငျ့နိုင်ရန်အတွက် Sub-query ကိုအသုံးမပြုနိုင်သ @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,တစ်ကော်လံ Add apps/frappe/frappe/www/contact.html,Your email address,သင့်အီးမေးလ်လိပ်စာ DocType: Desktop Icon,Module,module +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,အောင်မြင်စွာ {1} ထဲက {0} မှတ်တမ်းများ updated ။ DocType: Notification,Send Alert On,သတိပေးချက်တွင် Send DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Label, ပုံနှိပ်ဖျောက် Customize စသည်တို့ကို default" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping ဖိုင်တွေ ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,အသ DocType: System Settings,Currency Precision,ငွေကြေး Precision DocType: System Settings,Currency Precision,ငွေကြေး Precision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,နောက်ထပ်အရောင်းအဝယ်ဒီတစ်ခုပိတ်ဆို့ထားပါသည်။ စက္ကန့်အနည်းငယ်အတွက်ထပ်ကြိုးစားပါ။ +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Clear ကို filter များ DocType: Test Runner,App,App ကို apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,အဆိုပါ attachment များကိုမှန်ကန်စွာသစ်ကိုစာရွက်စာတမ်းနှင့်ဆက်စပ်မရနိုင်ခြင်း DocType: Chat Message Attachment,Attachment,attachment @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,ဒီအခ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google ကပြက္ခဒိန် - Google ကပြက္ခဒိန်, အမှားကုဒ် {1} အတွက်ပွဲ {0} ကို update မလုပ်နိုင်ခဲ့ပါ။" apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,command တစ်ခုရှာရန်သို့မဟုတ်ရိုက်ထည့် DocType: Activity Log,Timeline Name,timeline ကိုအမည် +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,တစ်ဦးတည်းသာ {0} မူလတန်းအဖြစ်သတ်မှတ်နိုင်ပါသည်။ DocType: Email Account,e.g. smtp.gmail.com,ဥပမာ smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,တစ်ဦးက New Rule Add DocType: Contact,Sales Master Manager,အရောင်းမဟာ Manager က @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP အလယျပိုငျးအမည်ဖျော်ဖြေမှု apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},တင်သွင်းခြင်း {0} {1} ၏ DocType: GCalendar Account,Allow GCalendar Access,GCalendar Access ကို Allow -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} တစ်ဦးမဖြစ်မနေအကွက်ဖြစ်၏ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} တစ်ဦးမဖြစ်မနေအကွက်ဖြစ်၏ apps/frappe/frappe/templates/includes/login/login.js,Login token required,login လက္ခဏာသက်သေမလိုအပ် apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,လစဉ်အဆင့်: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,မျိုးစုံစာရင်းကိုပစ္စည်းများကို Select လုပ်ပါ @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},မချိတ်ဆက apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,သူ့ဟာသူတစ်ဦးကစကားလုံးခန့်မှန်းရန်လွယ်ကူသည်။ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},အော်တိုတာဝနျကိုမအောင်မြင်ပါ: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,ရှာရန် ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,ကုမ္ပဏီကို select ကျေးဇူးပြု. apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,merge To-Group ကအုပ်စု-သို့မဟုတ် Leaf က Node-To-Leaf က Node အကြားသာဖြစ်နိုင် apps/frappe/frappe/utils/file_manager.py,Added {0},Added {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,အဘယ်သူမျှမတိုက်ဆိုင်သည့်မှတ်တမ်းများ။ အသစ်သောအရာတစ်ခုခုရှာရန် @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,OAuth လိုင်း ID ကို DocType: Auto Repeat,Subject,ဘာသာရပ် apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,နောက်ကျော Desk မှ DocType: Web Form,Amount Based On Field,ဖျော်ဖြေမှုတွင် အခြေခံ. ပမာဏ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေ ကျေးဇူးပြု. setup ကို default အနေနဲ့အီးမေးလ်အကောင့်ကို apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,အသုံးပြုသူဝေမျှမယ်တွေအတွက်မဖြစ်မနေဖြစ်ပါသည် DocType: DocField,Hidden,Hidden DocType: Web Form,Allow Incomplete Forms,မပြည့်စုံပုံစံ Allow @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} နှင့် {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,စကားပြောကိုစတင်ပါ။ DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",အမြဲတမ်းပုံနှိပ်ဥပဒေမူကြမ်းစာရွက်စာတမ်းများများအတွက်ခေါင်းစီး "မူကြမ်း" add apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},သတိပေးချက်ထဲမှာအမှား: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} တစ်နှစ် (s) ကိုလွန်ခဲ့သည့် DocType: Data Migration Run,Current Mapping Start,လက်ရှိမြေပုံ Start ကို apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,အီးမေးလ်ပို့ရန်စပမ်အဖြစ်မှတ်ထားပြီး DocType: Comment,Website Manager,website Manager က @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Sub-query ကိုသို့မဟုတ် function ကိုအသုံးပြုခြင်းကန့်သတ်တာဖြစ်ပါတယ် apps/frappe/frappe/config/customization.py,Add your own translations,သင့်ကိုယ်ပိုင်ဘာသာ Add DocType: Country,Country Name,နိုင်ငံအမည် +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,blank Template ကို DocType: About Us Team Member,About Us Team Member,ကျွန်ုပ်တို့ကိုရေးအဖွဲ့အဖွဲ့ဝင်အကြောင်း apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","ခွင့်ပြုချက်, ဖတ်ပါနှင့်တူအခွင့်အရေးများကိုပြင်ဆင်ခြင်းအားဖြင့်အခန်းကဏ္ဍနှင့် Document ဖိုင်အမျိုးအစားများ (DOCTYPE ဟုခေါ်) ပေါ်တင်ထားရေးထား Create, Delete, Submit, Cancel, ပြင်ဆင်ရေး, အစီရင်ခံစာ, သွင်းကုန်, ပို့ကုန်, ပုံနှိပ်, Email နဲ့ Set အသုံးပြုသူခွင့်ပြုချက်ရသည်။" DocType: Event,Wednesday,ဗုဒ္ဓဟူးနေ့ @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,"website Theme သင်ခ DocType: Web Form,Sidebar Items,sidebar ပစ္စည်းများ DocType: Web Form,Show as Grid,Grid အဖြစ်ပြရန် apps/frappe/frappe/installer.py,App {0} already installed,App ကို {0} ပြီးသား installed +DocType: Energy Point Rule,Users assigned to the reference document will get points.,ရည်ညွှန်းစာရွက်စာတမ်းမှတာဝန်ပေးအပ်အသုံးပြုသူများမှတ်ရလိမ့်မယ်။ apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,အဘယ်သူမျှမကို Preview DocType: Workflow State,exclamation-sign,"ကြီးတွေ,!-နိမိတ်လက္ခဏာ" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,ဇီပ် {0} ဖိုင်တွေ @@ -605,6 +620,7 @@ DocType: Notification,Days Before,ခင်မှာရက်ပတ်လုံ apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,နေ့စဉ်ပွဲများထိုနေ့ရက်တွင်အပြီးသတ်သငျ့သညျ။ apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edit ကို ... DocType: Workflow State,volume-down,volume အ-Down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Access ကိုဤ IP Address ကိုထံမှခွင့်မပြု apps/frappe/frappe/desk/reportview.py,No Tags,အဘယ်သူမျှမ Tags: DocType: Email Account,Send Notification to,မှအမိန့်ကြော်ငြာစာ Send DocType: DocField,Collapsible,ခေါက် @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,developer apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Created 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},အောက်ပါဇယားများအတွက် atleast တဦးတည်းအတန်းရှိသင့်ပါသည်: {0} DocType: Print Format,Default Print Language,default ပါပုံနှိပ်ဘာသာစကားများ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,၏ဘိုးဘေးတို့ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,အမြစ် {0} ဖျက်ပြီးမရနိုင်ပါ @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",ပစ်မှတ် = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,host က +DocType: Data Import Beta,Import File,သွင်းကုန်ဖိုင်မှတ်တမ်း apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,ကော်လံ {0} ပြီးသားတည်ရှိ။ DocType: ToDo,High,မြင့်သော apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,နယူး Event @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,အီးမေးလ်ခ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ပါမောက္ခ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,မ Developer Mode ကိုအတွက် apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,file ကို backup လုပ်ထားအဆင်သင့်ဖြစ်ပြီ -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",အဆိုပါမြှောက်ကိန်းတန်ဖိုးမှတ်မပွားများပြီးနောက်ခွင့်ပြုအများဆုံးအချက်များ (မှတ်ချက်: 0 အဖြစ်တန်ဖိုးကိုသတ်မှတ်ထားခြင်းမရှိန့်သတ်ချက်သည်) DocType: DocField,In Global Search,ကမ္တာ့ရှာရန်အတွက် DocType: System Settings,Brute Force Security,brute တပ်ဖွဲ့လုံခြုံရေး DocType: Workflow State,indent-left,ကုန်အမှာစာ-လက်ဝဲ @@ -775,6 +791,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',အသုံးပြုသူ '' {0} '' ပြီးသားအခန်းကဏ္ဍ '' {1} '' ရှိပါတယ် DocType: System Settings,Two Factor Authentication method,နှစ်ဦးက factor authentication နည်းလမ်း apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ပထမဦးစွာနာမကိုမသတ်မှတ်နှင့်စံချိန်သိမ်းဆည်းပါ။ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 မှတ်တမ်း apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} နှင့်အတူ shared apps/frappe/frappe/email/queue.py,Unsubscribe,စာရင်းဖျက်ရန် DocType: View Log,Reference Name,ကိုးကားစရာအမည် @@ -825,6 +842,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,track အီးမေးလ်အခြေအနေ DocType: Note,Notify Users On Every Login,တိုင်းဝင်မည်တွင်အသုံးပြုသူများအားအသိပေး DocType: Note,Notify Users On Every Login,တိုင်းဝင်မည်တွင်အသုံးပြုသူများအားအသိပေး +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,မည်သည့်လယ်ကွင်းတွေနဲ့ကော်လံ {0} မကိုက်ညီနိုင်သလား +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,အောင်မြင်စွာ {0} မှတ်တမ်းများ updated ။ DocType: PayPal Settings,API Password,API ကို Password ကို apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Python နှင့် module ကိုရိုက်ထည့်ပါသို့မဟုတ် connector ကိုအမျိုးအစားကိုရွေးပါ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname Custom Field မဘို့ရာခန့်မ @@ -853,9 +872,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},{0} {1} နာမကို Duplicate -DocType: Email Queue,Retry,ပြန်ကြိုးစားမည် +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,ပြန်ကြိုးစားမည် +DocType: Contact Phone,Number,ဂဏန်း DocType: Web Form Field,Web Form Field,Web ကို Form တွင်ဖျော်ဖြေမှု apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,သင့်ထံမှအသစ်တစ်ခုကိုမက်ဆေ့ခ်ျကိုရှိသည်: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edit HTML ကို apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,ပြန်ညွှန်း URL ကိုရိုက်ထည့်ပေးပါ apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -881,7 +902,7 @@ DocType: Notification,View Properties (via Customize Form),(Customize ကို apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ကရွေးဖို့ဖိုင်တစ်ခုပေါ်တွင်ကလစ်နှိပ်ပါ။ DocType: Note Seen By,Note Seen By,မြင်မှတ်ချက် apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,ပိုပြီးအလှည့်နှင့်အတူတစ်ကြာကြာကီးဘုတ်ပုံစံကိုအသုံးပြုရန်ကြိုးစားပါ -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LEADERBOARD +,LeaderBoard,LEADERBOARD DocType: DocType,Default Sort Order,default စီအမိန့် DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,အီးမေးလ်ပို့ရန်စာပြန်ရန်အကူအညီ @@ -916,6 +937,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent က apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,အီးမေးလ် compose apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","လုပ်ငန်းအသွားအလာသည်ပြည်နယ်များ (ဥပမာမူကြမ်း, Approved, ဖျက်သိမ်း) ။" DocType: Print Settings,Allow Print for Draft,မူကြမ်းများအတွက်ပုံနှိပ်ပါ Allow +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 ထဲက application ကို install လုပ်ပြီးသားနှင့်ပြေးရှိသည်ဖို့လိုအပ်ပါတယ်။

                                                                          QZ Tray ထဲက Download လုပ်ပြီး install ဒီမှာနှိပ်ပါ
                                                                          ရော်ပုံနှိပ်အကြောင်းပိုမိုလေ့လာသင်ယူရန်ဒီနေရာကိုနှိပ်ပါ ။" apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Set ပမာဏ apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,အတည်ပြုဖို့ဤစာရွက်စာတမ်း Submit DocType: Contact,Unsubscribed,unsubscribe @@ -947,6 +969,7 @@ DocType: LDAP Settings,Organizational Unit for Users,အသုံးပြုသ ,Transaction Log Report,ငွေသွင်းငွေထုတ် Log in ဝင်ရန်အစီရင်ခံစာ DocType: Custom DocPerm,Custom DocPerm,custom DocPerm DocType: Newsletter,Send Unsubscribe Link,စာရင်းဖျက်ရန် Link ကိုပို့ပါ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,ငါတို့သည်သင်တို့၏ဖိုင်ကို import နိုင်မီ created ခံရဖို့လိုအပ်ပါတယ်ရာအချို့နှင့်ဆက်စပ်မှတ်တမ်းများရှိပါတယ်။ သငျသညျအလိုအလြောကျအောက်ပါပျောက်ဆုံးနေမှတ်တမ်းများဖန်တီးချင်ပါသလား DocType: Access Log,Method,နည်းလမ်း DocType: Report,Script Report,script အစီရင်ခံစာ DocType: OAuth Authorization Code,Scopes,မျက်နှာစာများ @@ -988,6 +1011,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,အောင်မြင်စွာ Uploaded apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,သငျသညျအင်တာနက်ချိတ်ဆက်နေကြသည်။ DocType: Social Login Key,Enable Social Login,လူမှုဝင်မည် Enable +DocType: Data Import Beta,Warnings,သတိပေးချက်များ DocType: Communication,Event,အဖြစ်အပျက် apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} တွင်, {1} wrote:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,စံနယ်ပယ်မဖျက်နိုင်ပါ။ သင်ချင်တယ်ဆိုရင်သင်ကဖုံးကွယ်ထားနိုင်ပါတယ် @@ -1043,6 +1067,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,အော DocType: Kanban Board Column,Blue,ပြာသော apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,အားလုံးသည်စိတ်ကြိုက်ဖယ်ရှားရလိမ့်မည်။ confirm ပေးပါ။ DocType: Page,Page HTML,စာမျက်နှာက HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,ပို့ကုန် Errored တန်း apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,အဖွဲ့အမည်မှာဗလာမဖြစ်နိုင်ပါ။ apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,နောက်ထပ်ဆုံမှတ်များသာ '' Group မှ '' type ကိုဆုံမှတ်များအောက်မှာနေသူများကဖန်တီးနိုင်ပါသည် DocType: SMS Parameter,Header,header @@ -1082,13 +1107,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,အချိန်ကိုတောင်းဆို apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Disable လုပ်ထားဒိုမိန်း / Enable DocType: Role Permission for Page and Report,Allow Roles,အခန်းကဏ္ဍ Allow +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,အောင်မြင်စွာ {1} ထဲက {0} မှတ်တမ်းများတင်သွင်းခဲ့သည်။ DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","ရိုးရှင်းသော Python ကိုဖော်ပြမှု, ဥပမာ: ( "မှားနေသော") အတွက်အခြေအနေ" DocType: User,Last Active,ပြီးခဲ့သည့် Active ကို DocType: Email Account,SMTP Settings for outgoing emails,ထွက်သွားတဲ့အီးမေးလ်များ SMTP Settings ကို apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,တစ်ဦးကိုရှေးခယျြ DocType: Data Export,Filter List,filter များစာရင်း DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,သင့်ရဲ့စကားဝှက်ကို update လုပ်ခဲ့ကြောင်းသိရသည်။ ဒီနေရာတွင်သင့်ရဲ့စကားဝှက်အသစ်ဖြစ်ပါသည် DocType: Email Account,Auto Reply Message,မော်တော်ကားစာပြန်ရန် Message DocType: Data Migration Mapping,Condition,condition apps/frappe/frappe/utils/data.py,{0} hours ago,{0} နာရီအကြာက @@ -1097,7 +1122,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,သုံးစွဲသူအိုင်ဒီ DocType: Communication,Sent,ကိုစလှေတျ DocType: Address,Kerala,ကီရာလာ -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,အုပ်ချုပ်ရေး DocType: User,Simultaneous Sessions,တစ်ပြိုင်နက်တည်း Sessions DocType: Social Login Key,Client Credentials,client သံတမန်ဆောင်ဧည် @@ -1129,7 +1153,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Updated apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,master DocType: DocType,User Cannot Create,အသုံးပြုသူ Create မရပါ apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,အောင်မြင်စွာ Done -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder ကို {0} မတည်ရှိပါဘူး apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox ကို access ကိုအတည်ပြုနေပါသည်! DocType: Customize Form,Enter Form Type,Form တွင် Type ကိုရိုက်ထည့်ပါ DocType: Google Drive,Authorize Google Drive Access,Google Drive ကို Access ကိုခွင့်ပြုရန် @@ -1137,7 +1160,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,အဘယ်သူမျှမမှတ်တမ်းများ tagged ။ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ဖျော်ဖြေမှု Remove apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,သငျသညျကိုအင်တာနက်ချိတ်ဆက်မရှိကြပေ။ တစ်ချိန်ချိန်ပြီးနောက်ပြန်ကြိုးစားမည်။ -DocType: User,Send Password Update Notification,Password ကို Update ကိုအသိပေးခြင်း Send apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE ခွင့်ပြုခြင်း။ သတိထားပါ!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ပုံနှိပ်, အီးမေးလ်များအတွက်စိတ်ကြိုက် Formats" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} ၏ sum @@ -1223,6 +1245,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,မှားယွ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google အဆက်အသွယ်ပေါင်းစည်းရေးကိုပိတ်ထားသည်။ DocType: Assignment Rule,Description,ဖေါ်ပြချက် DocType: Print Settings,Repeat Header and Footer in PDF,PDF ဖိုင်ရယူရန်အတွက် Header ကိုနှင့်အောက်ခြေစာတန်းထပ်ခါတလဲလဲလုပ်ပါ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,မအောင်မြင်ခြင်း DocType: Address Template,Is Default,ပုံမှန်ဖြစ် DocType: Data Migration Connector,Connector Type,connector အမျိုးအစား apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,ကော်လံအမည်ဗလာမဖွစျနိုငျ @@ -1235,6 +1258,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} 's Page က DocType: LDAP Settings,Password for Base DN,အခြေစိုက်စခန်း DN ဘို့ Password ကို 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/model/document.py,Action Failed,လှုပ်ရှားမှုမအောင်မြင်ခဲ့ပါ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,အသုံးပြုသူများအတွက် @@ -1288,6 +1312,7 @@ DocType: Print Settings,Enable Raw Printing,ရော်ပုံနှိပ် DocType: Website Route Redirect,Source,အရင်းအမြစ် apps/frappe/frappe/templates/includes/list/filters.html,clear,ရှင်းလင်းသော apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,ချော +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup ကို> အသုံးပြုသူ DocType: Prepared Report,Filter Values,filter တန်ဖိုးများ DocType: Communication,User Tags,အသုံးပြုသူ Tags: DocType: Data Migration Run,Fail,ဆုံးရှုံး @@ -1344,6 +1369,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,လ ,Activity,လုပ်ဆောင်ချက် DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","အကူအညီ: အတွက် Link URL ကိုအဖြစ် "[အမည်မှတ်ချက်] # Form တွင် / မှတ်ချက် /", system ကိုနောက်ထပ်စံချိန်သစ်လင့်ထားသည်ကိုအသုံးပြုဖို့ရန်။ (": // http" ကိုမသုံးပါဘူး)" DocType: User Permission,Allow,ခွင့်ပြု +DocType: Data Import Beta,Update Existing Records,ဖြစ်တည်မှုမှတ်တမ်းကိုအပ်ဒိတ်လုပ် apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,ရဲ့အထပ်ထပ်စကားလုံးများနှင့်ဇာတ်ကောင်ကိုရှောင်ကြဉ်ကြကုန်အံ့ DocType: Energy Point Rule,Energy Point Rule,စွမ်းအင်ဝန်ကြီးဌာနပွိုင့်စည်းမျဉ်း DocType: Communication,Delayed,နှောင့်နှေး @@ -1356,9 +1382,7 @@ DocType: Milestone,Track Field,track ဖျော်ဖြေမှု DocType: Notification,Set Property After Alert,အချက်ပေးပြီးနောက်အိမ်ခြံမြေ Set apps/frappe/frappe/config/customization.py,Add fields to forms.,ပုံစံများမှလယ်ကွင်းထည့်ပါ။ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,တစ်ခုခုကဒီ site ရဲ့ Paypal configuration နဲ့အတူမှားယွင်းနေသည်နဲ့တူလှပါတယ်။ -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 ထဲက application ကို install လုပ်ပြီးသားနှင့်ပြေးရှိသည်ဖို့လိုအပ်ပါတယ်။

                                                                          QZ Tray ထဲက Download လုပ်ပြီး install ဒီမှာနှိပ်ပါ
                                                                          ရော်ပုံနှိပ်အကြောင်းပိုမိုလေ့လာသင်ယူရန်ဒီနေရာကိုနှိပ်ပါ ။" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,ဆန်းစစ်ခြင်း Add -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),font Size ကို (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,သာစံ DOCTYPE Customize Form ကိုကနေစိတ်ကြိုက်ခံရဖို့ခွင့်ပြုခဲ့ရသည်။ DocType: Email Account,Sendgrid,Sendgrid @@ -1395,6 +1419,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ပ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ဆော်ရီး! သငျသညျ Auto-generated မှတ်ချက်များမဖျက်နိုင်ပါ DocType: Google Settings,Used For Google Maps Integration.,Google Maps ကိုပေါင်းစည်းရေးသည်ကိုအသုံးပြုခဲ့သည်။ apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,ကိုးကားစရာ DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,အဘယ်သူမျှမမှတ်တမ်းများတင်ပို့ပါလိမ့်မည် DocType: User,System User,System ကိုအသုံးပြုသူတို့၏ DocType: Report,Is Standard,Standard ဖြစ်ပါသည် DocType: Desktop Icon,_report,_report @@ -1410,6 +1435,7 @@ DocType: Workflow State,minus-sign,အနုတ်-နိမိတ်လက္ apps/frappe/frappe/public/js/frappe/request.js,Not Found,မတွေ့ပါ apps/frappe/frappe/www/printview.py,No {0} permission,အဘယ်သူမျှမ {0} ခွင့်ပြုချက် apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ပို့ကုန်စိတ်တိုင်းကျခွင့်ပြုချက်များ +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ပစ္စည်းများကိုမျှမတွေ့ပါ။ DocType: Data Export,Fields Multicheck,fields Multicheck DocType: Activity Log,Login,လော့ဂ်အင် DocType: Web Form,Payments,ငွေပေးချေမှု @@ -1470,8 +1496,9 @@ DocType: Address,Postal,စာတိုက် DocType: Email Account,Default Incoming,default Incoming DocType: Workflow State,repeat,ပြန်ဆို DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Value ကို {0} တဦးဖြစ်ရပါမည် DocType: Role,"If disabled, this role will be removed from all users.",မသန်စွမ်းလျှင်ဤအခန်းကဏ္ဍအားလုံးအသုံးပြုသူများအနေဖယ်ရှားပါလိမ့်မည်။ -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} စာရင်းကိုသွားပါ +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,ရှာဖွေရန်အပေါ်အကူအညီ DocType: Milestone,Milestone Tracker,မှတ်တိုင် Tracker apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,မှတ်ပုံတင်ရှိသော်လည်းမသန်စွမ်း @@ -1485,6 +1512,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,ဒေသခံ Fieldname DocType: DocType,Track Changes,track အပြောင်းအလဲများ DocType: Workflow State,Check,စစ်ဆေးခြင်း DocType: Chat Profile,Offline,အော့ဖ်လိုင်း +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},အောင်မြင်စွာတင်သွင်း {0} DocType: User,API Key,API ကို Key ကို DocType: Email Account,Send unsubscribe message in email,အီးမေးလ်ထဲတွင်ယူမှုကိုဖျက်သတင်းစကားကိုပို့ပါ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edit ကိုခေါင်းစဉ် @@ -1511,11 +1539,11 @@ 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" ကဲ့သို့တရားဝင်နည်းလမ်းများအပေါ်ခလုတ်, etc (ရွေးချယ်ထားသော DOCTYPE အပေါ်မူတည်ပါလိမ့်မယ်)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1} ၏ပြောင်းလဲတန်ဖိုးကို 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,စုစုပေါင်းစာမျက်နှာများ apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} ပြီးသား {1} များအတွက် default value ကိုတာဝန်ပေးထားသည်။ -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                          No results found for '

                                                                          ,

                                                                          ရလဒ်တွေကို '' အဘို့မျှမတွေ့

                                                                          DocType: DocField,Attach Image,Image ကို Attach DocType: Workflow State,list-alt,စာရင်း-alt + apps/frappe/frappe/www/update-password.html,Password Updated,Password ကို Updated @@ -1536,8 +1564,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup ကို> အသုံးပြုသူခွင့်ပြုချက်များ DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP Group မှမြေပုံ DocType: Dashboard Chart,Chart Options,ဇယား Options ကို +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,ခေါင်းစဉ်မဲ့ကော်လံ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} {1} ကနေ {2} မှအတန်း # အတွက် {3} DocType: Communication,Expired,Expired apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,သင်အသုံးပြုနေသောလက္ခဏာသက်သေမမှန်ကန်ပုံရသည်! @@ -1547,6 +1577,7 @@ DocType: DocType,System,စံနစ် DocType: Web Form,Max Attachment Size (in MB),(ကို MB အတွက်) မက်စ်နှောင်ကြိုး Size ကို apps/frappe/frappe/www/login.html,Have an account? Login,အကောင့်တစ်ခုရှိသည်? လော့ဂ်အင် DocType: Workflow State,arrow-down,မြှား-Down +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},အတန်း {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},{1}: User {0} ကိုပယ်ဖျက်ဖို့ခွင့်မပြု apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} {1} ၏ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,နောက်ဆုံးတွင် Updated @@ -1564,6 +1595,7 @@ DocType: Custom Role,Custom Role,မိမိစိတ်ကြိုက်အ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,နေအိမ် / မရှိစမ်းသပ်ခြင်း Folder ကို 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,သင့်ရဲ့စကားဝှက်ကိုရိုက်ထည့် DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ကို Access ကလျှို့ဝှက်ချက် +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(မသင်မနေရ) 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.,ဖိုင်ထဲမှာမှမတွေ့ပါဒေတာ။ ဒေတာနှင့်အတူသစ်ကိုဖိုင်ကိုပြန်ပြီးပူးတွဲရမည်ပေးပါ။ @@ -1638,6 +1670,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Show က apps/frappe/frappe/desk/form/assign_to.py,New Message,နယူးမက်စေ့ DocType: File,Preview HTML,ကို Preview HTML ကို DocType: Desktop Icon,query-report,query ကို-အစီရင်ခံစာ +DocType: Data Import Beta,Template Warnings,template သတိပေးချက်များ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ကယ်တင်ခြင်းသို့ရောက်သောစိစစ်မှုများ DocType: DocField,Percent,ရာခိုင်နှုန်း apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,filter များထားပေးပါ @@ -1659,6 +1692,7 @@ DocType: Custom Field,Custom,ထုံးစံဓလေ့ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","enabled လြှငျ, ကန့်သတ် IP Address ကိုကနေ login သူကိုသုံးစွဲသူများနှစ်ဦး Factor Auth များအတွက်သတိပေးခံရမည်မဟုတ်ပါ" DocType: Auto Repeat,Get Contacts,ဆက်သွယ်ရန် get apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} အောက်မှာတင်သွင်းပို့စ်များ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ခေါင်းစဉ်မဲ့ကော်လံခုန်ကျော်သွားသကဲ့သို့ဖြစ်ရသည် DocType: Notification,Send alert if date matches this field's value,နေ့စွဲဤနယ်ပယ်တွင်ရဲ့တန်ဖိုးကိုကိုက်ညီလျှင်တပ်လှန် Send DocType: Workflow,Transitions,အသွင်ကူးပြောင်းမှု apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} {2} မှ @@ -1682,6 +1716,7 @@ DocType: Workflow State,step-backward,ခြေလှမ်း-နောက် apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,သင့်ရဲ့ site ကို config ကိုအတွက် Dropbox ကို access ကိုသော့ထားပေးပါ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,အဲဒီအီးမေးလ်လိပ်စာပေးပို့ခြင်းခွင့်ပြုပါရန်ဤမှတ်တမ်း Delete +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Non-စံဆိပ်ကမ်းကို (995/110, IMAP ကို: 993/143 ဥပမာ POP3) အကယ်." apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Shortcuts Customize apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,သာမဖြစ်မနေလယ်ကွက်အသစ်မှတ်တမ်းများသည်လိုအပ်သောဖြစ်ကြ၏။ အကယ်လို့ဆန္ဒရှိတယ်ဆိုရင် Non-မဖြစ်မနေကော်လံဖျက်ပစ်နိုင်ပါတယ်။ apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,နောက်ထပ် Activity ကိုပြရန် @@ -1789,7 +1824,9 @@ DocType: Note,Seen By Table,စားပွဲတင်အားဖြင့် apps/frappe/frappe/www/third_party_apps.html,Logged in,အတွက် Logged apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,default ပေးပို့ခြင်းနှင့် Inbox DocType: System Settings,OTP App,OTP App ကို +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,အောင်မြင်စွာ {1} ထဲက {0} စံချိန် updated ။ DocType: Google Drive,Send Email for Successful Backup,အောင်မြင်သော Backup ကိုများအတွက်အီးမေးလ်ပို့ပါ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Scheduler ကိုမလှုပ်မရှားဖြစ်ပါတယ်။ ဒေတာတင်သွင်းနိုင်မှာမဟုတ်ဘူး။ DocType: Print Settings,Letter,စာ DocType: DocType,"Naming Options:
                                                                          1. field:[fieldname] - By Field
                                                                          2. naming_series: - By Naming Series (field called naming_series must be present
                                                                          3. Prompt - Prompt user for a name
                                                                          4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                          5. @@ -1803,6 +1840,7 @@ DocType: GCalendar Account,Next Sync Token,Next ကို Sync ကိုတိ DocType: Energy Point Settings,Energy Point Settings,စွမ်းအင်ဝန်ကြီးဌာနပွိုင့်က Settings DocType: Async Task,Succeeded,အရာ၌နန်းထိုင် apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} အတွက်လိုအပ်သည့်မသင်မနေရလယ်ကွက် +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                            No results found for '

                                                                            ,

                                                                            ရလဒ်တွေကို '' အဘို့မျှမတွေ့

                                                                            apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} သည် reset ခွင့်ပြုချက်? apps/frappe/frappe/config/desktop.py,Users and Permissions,အသုံးပြုသူများနှင့်ခွင့်ပြုချက် DocType: S3 Backup Settings,S3 Backup Settings,S3 ကို Backup ကိုချိန်ညှိမှုများ @@ -1873,6 +1911,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,တွင် DocType: Notification,Value Change,Value တစ်ခုပြောင်းရန် DocType: Google Contacts,Authorize Google Contacts Access,Google အဆက်အသွယ် Access ကိုခွင့်ပြုရန် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,အစီရင်ခံစာထဲကနေမှသာကိန်းဂဏန်းလယ်ကွင်းဖေါ်ပြသည် +DocType: Data Import Beta,Import Type,သွင်းကုန်အမျိုးအစား DocType: Access Log,HTML Page,HTML ကို 's Page DocType: Address,Subsidiary,ထောက်ခံသောကုမ္ပဏီ apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ Tray ထဲကမှ Connection ကိုကြိုးစားနေ ... @@ -1883,7 +1922,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,မမှ DocType: Custom DocPerm,Write,ရေးသား apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,သာအုပ်ချုပ်ရေးမှူး Query / Script ကိုအစီရင်ခံစာများကိုဖန်တီးရန်ခွင့်ပြု apps/frappe/frappe/public/js/frappe/form/save.js,Updating,UPDATE -DocType: File,Preview,ကို Preview +DocType: Data Import Beta,Preview,ကို Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ဖျော်ဖြေမှု "တန်ဖိုး" မဖြစ်မနေဖြစ်ပါတယ်။ updated ခံရဖို့တန်ဖိုးကိုသတ်မှတ်ပေးပါ DocType: Customize Form,Use this fieldname to generate title,ခေါင်းစဉ်ကို generate ရန်ဤ fieldname ကိုသုံးပါ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,မှစ. သွင်းကုန်အီးမေးလ် @@ -1968,6 +2007,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser ကိ DocType: Social Login Key,Client URLs,client URLs များကို apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,တချို့ကသတင်းအချက်အလက်ပျောက်ဆုံးနေ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} ကိုအောင်မြင်စွာဖန်တီး +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","ခုန်ကျော်သွားသကဲ့သို့ဖြစ်ရသည် {0} {1}, {2} ၏" DocType: Custom DocPerm,Cancel,ပျက်စေ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,bulk Delete apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,File ကို {0} မတည်ရှိပါဘူး @@ -1995,7 +2035,6 @@ DocType: GCalendar Account,Session Token,session တိုကင် DocType: Currency,Symbol,အထိမ်းအမှတ် apps/frappe/frappe/model/base_document.py,Row #{0}:,row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,ဒေတာများ၏ပယ်ဖျက်ခြင်းကိုအတည်ပြု -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,စကားဝှက်အသစ်မေးလ်ပို့ပေး apps/frappe/frappe/auth.py,Login not allowed at this time,login ဒီအချိန်မှာခွင့်မပြု DocType: Data Migration Run,Current Mapping Action,လက်ရှိမြေပုံလှုပ်ရှားမှု DocType: Dashboard Chart Source,Source Name,source အမည် @@ -2008,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,နောက်မှလိုက်နေသည်မှာ DocType: LDAP Settings,LDAP Email Field,LDAP အီးမေးလ်ဖျော်ဖြေမှု apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} List ကို +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,ပို့ကုန် {0} မှတ်တမ်းများ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ယခုပင်လျှင်လုပ်ပါရန်အသုံးပြုသူရဲ့စာရင်းထဲတွင် DocType: User Email,Enable Outgoing,အထွက် Enable DocType: Address,Fax,ဖက်စ် @@ -2067,8 +2107,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,ပုံနှိပ်ပါစာရွက်စာတမ်းများ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,လယ်ပြင်ဤနေရာသို့သွားရန် DocType: Contact Us Settings,Forward To Email Address,Forward Email လိပ်စာရန် +DocType: Contact Phone,Is Primary Phone,မူလတန်းဖုန်းဖြစ်ပါတယ် apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ဒီမှာချိတ်ဆက် {0} အီးမေးလ်ပေးပို့ပါ။ DocType: Auto Email Report,Weekdays,ကြားရက်များ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} မှတ်တမ်းများတင်ပို့ပါလိမ့်မည် apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,ခေါင်းစဉ်လယ်တရားဝင် fieldname ဖြစ်ရမည် DocType: Post Comment,Post Comment,post ကိုမှတ်ချက် apps/frappe/frappe/config/core.py,Documents,စာရွက်စာတမ်းများ @@ -2087,7 +2129,9 @@ eval:doc.age>18",myfield eval: doc.myfield == '' ငါ့အ Value DocType: Social Login Key,Office 365,Office 365 ကို apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ယနေ့တွင် apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ယနေ့တွင် +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.,မျှမတွေ့ default အနေနဲ့လိပ်စာ Template ။ Setup ကို> ပုံနှိပ်ခြင်းနှင့်တံဆိပ်တပ်> လိပ်စာ Template ကနေအသစ်တခုဖန်တီးပေးပါ။ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",သင်သည်ဤခန့်ထားပြီသည်နှင့်တပြိုင်နက်အသုံးပြုသူသာတတ်နိုင် access ကိုစာရွက်စာတမ်းများ (ဥပမာ။ Post ကို Blog) link ကိုတည်ရှိသည့်နေရာဖြစ်လိမ့်မည် (ဥပမာ။ ဘလော့ဂါ) ။ +DocType: Data Import Beta,Submit After Import,သွင်းကုန်ပြီးနောက် Submit DocType: Error Log,Log of Scheduler Errors,Scheduler ကို Errors ၏ log DocType: User,Bio,ဇီဝ DocType: OAuth Client,App Client Secret,App ကိုလိုင်းလျှို့ဝှက်ချက် @@ -2106,10 +2150,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,ဝင်မည်စာမျက်နှာအတွက်ဖောက်သည် signup လုပ်နိုင်ပါသည် link ကိုကို disable apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ ပိုင်ရှင်ရန်တာဝန်ပေး DocType: Workflow State,arrow-left,မြှား-လက်ဝဲ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,ပို့ကုန် 1 စံချိန် DocType: Workflow State,fullscreen,မျက်နှာပြင်အပြည့် DocType: Chat Token,Chat Token,တိုကင် chat apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,ဇယား Create apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,တင်သွင်းရန်မနေပါနဲ့ DocType: Web Page,Center,အလယ်ဗဟို DocType: Notification,Value To Be Set,Value ကို Set ခံရရန် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edit ကို {0} @@ -2129,6 +2175,7 @@ DocType: Print Format,Show Section Headings,Show ကိုပုဒ်မခေ DocType: Bulk Update,Limit,ကန့်သတ် apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},ကျနော်တို့နှင့်အတူဆက်နွယ် {0} အချက်အလက်များ၏ဖျက်မှုတစ်ခုတောင်းဆိုချက်ကိုလက်ခံရရှိပြီ {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,သစ်တစ်ခုအပိုင်း Add +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,စစ်ထုတ်သည်မှတ်တမ်း apps/frappe/frappe/www/printview.py,No template found at path: {0},path ကိုမှာတှေ့မရှိပါ template ကို: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,အဘယ်သူမျှမအီးမေးလ်အကောင့်ကို DocType: Comment,Cancelled,ဖျက်သိမ်း @@ -2216,10 +2263,13 @@ DocType: Communication Link,Communication Link,ဆက်သွယ်ရေး Li apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,မှားနေသော Output Format ကို apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},နိုင်သလားမဟုတ် {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,အသုံးပြုသူကိုပိုင်ရှင်ဖြစ်လျှင်ဤနည်းဥပဒေ Apply +DocType: Global Search Settings,Global Search Settings,ကမ္ဘာလုံးဆိုင်ရာရှာရန် Settings များ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,သင်၏ login ID ကိုဖွစျလိမျ့မညျ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,ကမ္ဘာလုံးဆိုင်ရာရှာရန်စာရွက်စာတမ်းအမျိုးအစားများ Reset ။ ,Lead Conversion Time,ကူးပြောင်းခြင်းအချိန်ဦးဆောင်လမ်းပြ apps/frappe/frappe/desk/page/activity/activity.js,Build Report,အစီရင်ခံစာ Build DocType: Note,Notify users with a popup when they log in,"သူတို့အတွက် log အခါ, တစ်ဦးပေါ့ပ်အပ်နှင့်အတူအသုံးပြုသူများအားအသိပေး" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,core မော်ဂျူးများ {0} ကို Global ရှာရန်အတွက်ကိုရှာဖွေရနိုင်မှာမဟုတ်ဘူး။ apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,ပွင့်လင်း Chat ကို apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} နှစ်မျိုးကိုပေါင်းစပ်ဖို့, တည်ရှိနေသစ်တစ်ခုပစ်မှတ်ကို select ပါဘူး" DocType: Data Migration Connector,Python Module,Python ကို Module @@ -2236,8 +2286,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,ပိတ် 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup ကို> အသုံးပြုသူခွင့်ပြုချက်များ -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Update ကို +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Update ကို DocType: Transaction Log,Transaction Hash,ငွေသွင်းငွေထုတ် Hash DocType: Error Snapshot,Snapshot View,snapshot ကြည့်ရန် apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,ပို့သည့်ရှေ့တော်၌ထိုသတင်းလွှာကိုကယ်တင် ကျေးဇူးပြု. @@ -2253,6 +2302,7 @@ DocType: Data Import,In Progress,ဆောင်ရွက်ဆဲဖြစ် apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,backup လုပ်ဘို့တန်းစီထားသည်။ ဒါဟာတစ်နာရီမှမိနစ်အနည်းငယ်ကြာနိုင်ပါသည်။ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,အသုံးပြုသူခွင့်ပြုချက်ရှိထားပြီးသား +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},မြေပုံကော်လံ {0} တောမှ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},ကြည့်ရန် {0} DocType: User,Hourly,နာရီတိုင်း apps/frappe/frappe/config/integrations.py,Register OAuth Client App,မှတ်ပုံတင်မည် OAuth လိုင်း App ကို @@ -2265,7 +2315,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS ကို Gateway က URL ကို apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" မဖြစ်နိုင်။ ဒါဟာ "{3}" တယောက်ဖြစ်သင့် apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},အော်တိုအုပ်ချုပ်မှုကိုမှတဆင့် {0} အားဖြင့်ရရှိခဲ့ {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} သို့မဟုတ် {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Password ကို Update ကို DocType: Workflow State,trash,အသုံးမရသောအရာ DocType: System Settings,Older backups will be automatically deleted,အဟောင်းတွေ Backup တွေကိုအလိုအလျှောက်ဖျက်ပစ်ပါလိမ့်မည် apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,မှားနေသော Access ကို Key ကို ID သို့မဟုတ်လျှို့ဝှက် Access ကို Key ကို။ @@ -2294,6 +2343,7 @@ DocType: Address,Preferred Shipping Address,ပိုဦးစားပေး apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,ပေးစာဦးခေါင်းနှင့်အတူ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} {1} ဒီနေသူများကဖန်တီး apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},{1} Row {2} အတွက်: {0} များအတွက်ခွင့်မပြု။ ကန့်သတ်သောလယ်: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မပေး setup ကို။ Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေအသစ်တခုအီးမေးလ်အကောင့်ကိုဖန်တီးပေးပါ DocType: S3 Backup Settings,eu-west-1,EU-အနောက်ဘက်-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",ဒီ check လုပ်ထားလျှင်ခိုင်လုံသောဒေတာနှင့်အတူတန်းစီတင်သွင်းမည်ဖြစ်ပြီးမမှန်ကန်တဲ့အတန်းကိုသင်နောက်ပိုင်းတွင်တင်သွင်းဖို့အတှကျဖိုင်အသစ်တစ်ခုသို့စွန့်ပစ်လိမ့်မည်။ apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,စာရွက်စာတမ်းအခန်းကဏ္ဍ၏အသုံးပြုသူများသာတည်းဖြတ်မှု @@ -2320,6 +2370,7 @@ DocType: Custom Field,Is Mandatory Field,မသင်မနေရဖျော် DocType: User,Website User,website အသုံးပြုသူတို့၏ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,PDF ဖိုင်မှပုံနှိပ်သည့်အခါအချို့ကကော်လံကိုပယ်ဖြတ်ရပေလိမ့်မည်။ 10 နှစ်အောက်ကော်လံအရေအတွက်စောင့်ရှောက်ဖို့ကြိုးစားပါ။ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,မတန်းတူ +DocType: Data Import Beta,Don't Send Emails,အီးမေးလ်ပို့မနေပါနဲ့ DocType: Integration Request,Integration Request Service,ပေါင်းစည်းရေးတောင်းဆိုမှုဝန်ဆောင်မှု DocType: Access Log,Access Log,access ကို Log in ဝင်ရန် DocType: Website Script,Script to attach to all web pages.,အားလုံးက်ဘ်ဆိုက်စာမျက်နှာတွေမှာပူးတွဲဇာတ်ညွှန်း။ @@ -2360,6 +2411,7 @@ DocType: Contact,Passive,မလှုပ်မရှားနေသော DocType: Auto Repeat,Accounts Manager,အကောင့်အသစ်များ၏ Manager က apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} ဘို့တာဝန်ကျတဲ့နေရာ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,သင့်အတွက်ငွေပေးချေမှုဖျက်သိမ်းသည်။ +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေ ကျေးဇူးပြု. setup ကို default အနေနဲ့အီးမေးလ်အကောင့်ကို apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,ဖိုင်မှတ်တမ်းအမျိုးအစားကိုရွေးချယ်ပါ apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,အားလုံးကြည့်ရန် DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor ကို @@ -2392,6 +2444,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,ဒေတာ apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,စာရွက်စာတမ်းနဲ့ Status apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,ခွင့်ပြုချက်လိုအပ်သော +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,အောက်ပါမှတ်တမ်းများငါတို့သည်သင်တို့၏ဖိုင်ကို import နိုင်မီ created ရန်လိုအပ်ပါသည်။ DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth ခွင့်ပြုချက် Code ကို apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,သွင်းကုန်ခွင့်မပြုခဲ့ DocType: Deleted Document,Deleted DocType,Deleted DOCTYPE @@ -2446,8 +2499,8 @@ DocType: GCalendar Settings,Google API Credentials,Google က API ကိုသ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,session Start ကို Failed apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,session Start ကို Failed apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ဤအီးမေးလ် {0} မှစေလွှတ် {1} မှကူးယူခဲ့ပါတယ် +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ဤစာရွက်စာတမ်း {0} တင်သွင်း DocType: Workflow State,th,ကြိမ်မြောက် -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} တစ်နှစ် (s) ကိုလွန်ခဲ့သည့် DocType: Social Login Key,Provider Name,provider အမည် apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},သစ်တစ်ခု {0} Create DocType: Contact,Google Contacts,Google အဆက်အသွယ် @@ -2455,6 +2508,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar အကောင့် DocType: Email Rule,Is Spam,ပမ် Is apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},အစီရင်ခံစာ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ပွင့်လင်း {0} +DocType: Data Import Beta,Import Warnings,သွင်းကုန်သတိပေးချက်များ DocType: OAuth Client,Default Redirect URI,default ပြန်ညွှန်း URI DocType: Auto Repeat,Recipients,လက်ခံသူများ DocType: System Settings,Choose authentication method to be used by all users,အားလုံးအသုံးပြုသူများအနေဖြင့်အသုံးပြုရမှစစ်မှန်ကြောင်းအထောက်အထားပြသခြင်းနည်းလမ်းအားရွေးချယ်ပါ @@ -2573,6 +2627,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,အစီရ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Webhook မှားယွင်းနေသည်ကြည့်ရှု DocType: Email Flag Queue,Unread,မဖတ်ရသေးသော DocType: Bulk Update,Desk,စာရေးခုံ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},ခုန်ကျော်သွားသကဲ့သို့ဖြစ်ရသည်ကော်လံ {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),filter (ကစာရင်းထဲတွင်) တစ်ဦး tuple သို့မဟုတ်စာရင်းဖြစ်ရမည် apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,တစ် SELECT query ကိုရေးပါ။ မှတ်ချက်ရလဒ် (အားလုံးဒေတာတစျခုသွားပို့တာဖြစ်ပါတယ်) မျက်နှာမရ။ DocType: Email Account,Attachment Limit (MB),attachment Limit (MB) @@ -2587,6 +2642,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,နယူး Create DocType: Workflow State,chevron-down,Chevron-Down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),အီးမေးလ်က {0} (မသန်စွမ်းသူများအတွက် / unsubscribe) မှစေလွှတ်တော်မ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,တင်ပို့ဖို့လယ်ကွင်းကို Select လုပ်ပါ DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,အသေးဆုံးငွေကြေးစနစ်အပိုင်းအစများ Value ကို apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,အစီရင်ခံစာပြင်ဆင်နေ @@ -2595,6 +2651,7 @@ DocType: Workflow State,th-list,ကြိမ်မြောက်-စာရင DocType: Web Page,Enable Comments,မှတ်ချက်များကို Enable apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,မှတ်စုများ DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),သာဒီ IP address ကိုကနေအသုံးပြုသူကန့်သတ်။ အကွိမျမြားစှာ IP လိပ်စာများကော်မာနှင့်အတူခွဲထုတ်ခြင်းဖြင့်ဖြည့်စွက်နိုင်ပါသည်။ ဒါ့အပြင် (111.111.111) လိုတစ်စိတ်တစ်ပိုင်း IP လိပ်စာများကိုလက်ခံ +DocType: Data Import Beta,Import Preview,သွင်းကုန်ကို Preview DocType: Communication,From,မှ apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,ပထမဦးဆုံးအဖွဲ့တစ်ဖွဲ့ node ကိုရွေးချယ်ပါ။ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} {1} အတွက်ရှာမည် @@ -2694,6 +2751,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,အကြား DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Queued +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup ကို> Customize Form ကို DocType: Braintree Settings,Use Sandbox,Sandbox ကိုသုံးပါ apps/frappe/frappe/utils/goal.py,This month,ဤလတွင် apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,နယူးအကောက်ခွန်ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံ @@ -2709,6 +2767,7 @@ DocType: Session Default,Session Default,session ပုံမှန် DocType: Chat Room,Last Message,နောက်ဆုံးကို Message DocType: OAuth Bearer Token,Access Token,Access Token DocType: About Us Settings,Org History,org သမိုင်း +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,ကျန်ရှိသောအကြောင်း {0} မိနစ် DocType: Auto Repeat,Next Schedule Date,Next ကိုဇယားနေ့စွဲ DocType: Workflow,Workflow Name,အသွားအလာအမည် DocType: DocShare,Notify by Email,အီးမေးလ်ကိုအကြောင်းကြား @@ -2738,6 +2797,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,စာရေးသူ apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,ပေးပို့ခြင်းပြန်လည်စတင် apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,ပြန်ဖွင့် +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Show ကိုသတိပေး apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,ဝယ်ယူအသုံးပြုသူ DocType: Data Migration Run,Push Failed,မှု Push @@ -2776,6 +2836,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ပါ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,သင့်အနေဖြင့်သတင်းလွှာကြည့်ရှုရန်ခွင့်ပြုမထားပေ။ DocType: User,Interests,စိတ်ဝင်စားမှုများ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Password ကိုကို reset ညွှန်ကြားချက်သင့်အီးမေးလ်ကိုစလှေတျခဲ့ကြ +DocType: Energy Point Rule,Allot Points To Assigned Users,Assigned အသုံးပြုသူများရန်အမှတ်စာရေးတံ ချ. ဝေ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","level 0 င်သောလယ်အဆင့်ကိုခွင့်ပြုချက်များအတွက်အဆင့်မြင့် \, စာရွက်စာတမ်းအဆင့်အထိခွင့်ပြုချက်အဘို့ဖြစ်၏။" DocType: Contact Email,Is Primary,မူလတန်း Is @@ -2799,6 +2860,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Publish Key ကို DocType: Stripe Settings,Publishable Key,Publish Key ကို apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,သွင်းကုန် Start +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,ပို့ကုန်အမျိုးအစား DocType: Workflow State,circle-arrow-left,စက်ဝိုင်း-မြှား-လက်ဝဲ DocType: System Settings,Force User to Reset Password,Password ကို Reset လုပ်ဖို့အသုံးပြုသူအတင်း apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","အပ်ဒိတ်လုပ်ထားသောအစီရင်ခံစာအရ, {0} အပေါ်ကိုကလစ်နှိပ်ပါ။" @@ -2812,13 +2874,16 @@ DocType: Contact,Middle Name,အလယ်နာမည် DocType: Custom Field,Field Description,လယ်ပြင်၌ဖော်ပြချက်များ apps/frappe/frappe/model/naming.py,Name not set via Prompt,နာမတော်ကိုမ Prompt ကိုကနေတဆင့်စွဲလမ်းခြင်းမ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,အီးမေးလ်ပို့ရန် Inbox ထဲမှာ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{0} {1}, {2} ၏အသစ်ပြောင်းခြင်း" DocType: Auto Email Report,Filters Display,စိစစ်မှုများပြရန် apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","amended_from" လယ်ကွင်းတစ်ခုပြင်ဆင်ချက်လုပ်ဖို့ပစ္စုပ္ပန်ဖြစ်ရပါမည်။ +DocType: Contact,Numbers,တောလည်ရာ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} {1} {2} ပေါ်တွင်သင်၏အလုပ်တန်ဖိုးထား apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filter ကို Save DocType: Address,Plant,စက်ရုံ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,အားလုံး Reply DocType: DocType,Setup,ပြငိဆငိခနိး +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,အားလုံးမှတ်တမ်း DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,အဘယ်သူ၏ Google အဆက်အသွယ်တစ်ပြိုင်တည်းချိန်ကိုက်ခံရဖို့ရှိပါတယ် Email လိပ်စာ။ DocType: Email Account,Initial Sync Count,ကနဦး Sync ကိုအရေအတွက် DocType: Workflow State,glass,ဖန်ခွက် @@ -2843,7 +2908,7 @@ DocType: Workflow State,font,ဖောင့် DocType: DocType,Show Preview Popup,Show ကိုအစမ်းကြည့်ရန်ဝင်းဒိုး apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ဒါကထိပ်တန်း-100 ဘုံစကားဝှက်ဖြစ်ပါတယ်။ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Pop-ups enable ကျေးဇူးပြု. -DocType: User,Mobile No,မိုဘိုင်းလ်မရှိပါ +DocType: Contact,Mobile No,မိုဘိုင်းလ်မရှိပါ DocType: Communication,Text Content,စာသားအကြောင်းအရာ DocType: Customize Form Field,Is Custom Field,Custom Field ဖြစ်ပါတယ် DocType: Workflow,"If checked, all other workflows become inactive.","checked မယ်ဆိုရင်, ရှိသမျှသည်အခြားသော Workflows လှုပျမရှားဖြစ်လာ။" @@ -2889,6 +2954,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ပ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,အသစ်ကပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံအမည် apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,toggle Sidebar DocType: Data Migration Run,Pull Insert,Insert pull +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",အဆိုပါမြှောက်ကိန်းတန်ဖိုးမှတ်မပွားများပြီးနောက်ခွင့်ပြုအများဆုံးအချက်များ (မှတ်ချက်: အဘယ်သူမျှမန့်သတ်ချက်သည်အချည်းနှီးသောဤနယ်ပယ်တွင်ထားခဲ့ပါသို့မဟုတ် 0 င်သတ်မှတ်ထား) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,မှားနေသော Template ကို apps/frappe/frappe/model/db_query.py,Illegal SQL Query,တရားမဝင် SQL Query apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,မသင်မနေရ: DocType: Chat Message,Mentions,ဖျောပွထားသ @@ -2903,6 +2971,7 @@ DocType: User Permission,User Permission,အသုံးပြုသူခွင apps/frappe/frappe/templates/includes/blog/blog.html,Blog,ဘလော့ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Installed မ apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ဒေတာနှင့်အတူ Download +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} များအတွက်တန်ဖိုးများပြောင်းလဲသွား DocType: Workflow State,hand-right,လက်ညာ DocType: Website Settings,Subdomain,subdomain DocType: S3 Backup Settings,Region,ဒေသ @@ -2930,10 +2999,12 @@ DocType: Braintree Settings,Public Key,Public Key ကို DocType: GSuite Settings,GSuite Settings,GSuite Settings များ DocType: Address,Links,Links များ DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,ဒီအကောင့်ကိုသုံးပြီးပို့အားလုံးအီးမေးလ်များကိုများအတွက်ပေးပို့သူရဲ့အမည်အဖြစ်ဤအကောင့်ထဲမှာဖော်ပြခဲ့တဲ့အီးမေးလ်လိပ်စာ Name ကိုအသုံးပြုသည်။ +DocType: Energy Point Rule,Field To Check,Check ရန်ကွင်းဆင်း apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google အဆက်အသွယ် - Google အဆက်အသွယ် {0}, အမှားကုဒ် {1} အတွက်အဆက်အသွယ်ကို update မလုပ်နိုင်ခဲ့ပါ။" apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,အဆိုပါစာရွက်စာတမ်းအမျိုးအစားတစ်ခုကိုရွေးပါ။ apps/frappe/frappe/model/base_document.py,Value missing for,သည်ပျောက်ဆုံး Value တစ်ခု apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,ကလေး Add +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,သွင်းကုန်တိုးတက်ရေးပါတီ DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",အခြေအနေကိုကျေနပ်လျှင်အသုံးပြုသူအချက်များနှင့်အတူဆုခခြဲ့ပါလိမ့်မည်။ ဥပမာ။ doc.status == '' ပိတ် '' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Submitted Record ဖျက်ပစ်မရနိုင်ပါ။ @@ -2970,6 +3041,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google ကပြက္ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,သင်တို့အဘို့ရှာကြသည်စာမျက်နှာပျောက်နေသည်။ ဒါကြောင့်ပြောင်းရွှေ့ဒါမှမဟုတ် link ကိုတစ်ဦး typing error တစ်ခုရှိသည်ကို ထောက်. ဤသည်ဖြစ်နိုင်ပါတယ်။ apps/frappe/frappe/www/404.html,Error Code: {0},အမှားကုဒ်: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","လွင်ပြင်စာသား, လိုင်းများသာစုံတွဲအတွက်စာမျက်နှာလူပ်သည်ဖော်ပြချက်။ (max ကို 140 ဇာတ်ကောင်)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} မဖြစ်မနေလယ်ကွင်းများမှာ DocType: Workflow,Allow Self Approval,ကိုယ်ပိုင်အတည်ပြုချက် Allow DocType: Event,Event Category,အဖြစ်အပျက် Category: apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,ယောဟနျသ Doe @@ -3017,8 +3089,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ရန်ရွှ DocType: Address,Preferred Billing Address,ပိုဦးစားပေးသည် Billing လိပ်စာ apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,တယောက်တောင်းဆိုမှုအတွက်အများကြီးရေးပါ။ သေးငယ်တောင်းဆိုမှုများပေးပို့နိုင်ပါသည် apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive ကို configure လုပ်လျက်ရှိသည်။ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,စာရွက်စာတမ်းအမျိုးအစား {0} ထပ်ခါတလဲလဲခဲ့သည်။ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Changed တန်ဖိုးများ DocType: Workflow State,arrow-up,မြှား-up က +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} စားပွဲပေါ်မှာအဘို့အ atleast တဦးတည်းအတန်းရှိသင့်ပါသည် apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","အော်တိုထပ် configure လုပ်ဖို့, {0} ကနေ "အော်တိုထပ် Allow" ကို enable ။" DocType: OAuth Bearer Token,Expires In,ခုနှစ်တွင်သက်တမ်းကုန်ဆုံးမည် DocType: DocField,Allow on Submit,Submit အပေါ် Allow @@ -3105,6 +3179,7 @@ DocType: Custom Field,Options Help,Options ကိုအကူအညီ 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 စံချိန်တင်ပို့ပါလိမ့်မည် 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,ဒိုမိန်းစေရန်ကန့်သတ်ရန် @@ -3122,6 +3197,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code ကို DocType: Webhook,Webhook Request,Webhook တောင်းဆိုခြင်း apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Failed: {2}: {0} {1} မှ DocType: Data Migration Mapping,Mapping Type,မြေပုံအမျိုးအစား +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,မသင်မနေရကို Select လုပ်ပါ apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Browse ကို apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","သင်္ကေတများ, ဂဏန်း, ဒါမှမဟုတ်ကြီးစာလုံးများအတွက်အဘယ်သူမျှမလိုအပ်ပါဘူး။" DocType: DocField,Currency,ငှေကွေး @@ -3152,11 +3228,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,ပေးစာဌာနမှူးအခြေပြုတွင် apps/frappe/frappe/utils/oauth.py,Token is missing,token ပျောက်ဆုံးနေ apps/frappe/frappe/www/update-password.html,Set Password,Set Password ကို +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,အောင်မြင်စွာ {0} မှတ်တမ်းများတင်သွင်းခဲ့သည်။ apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,မှတ်စု: စာမျက်နှာအမည်ပြောင်းလဲခြင်းဒီစာမျက်နှာယခင် URL ကိုချိုးမည်။ apps/frappe/frappe/utils/file_manager.py,Removed {0},ဖယ်ရှား {0} DocType: SMS Settings,SMS Settings,SMS ကို Settings ကို DocType: Company History,Highlight,Highlight DocType: Dashboard Chart,Sum,ငှေပေါငျး +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,ဒေတာများကိုတင်သွင်းနေတဆင့် DocType: OAuth Provider Settings,Force,အင်အားစု apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},နောက်ဆုံး {0} တစ်ပြိုင်တည်းချိန်ကိုက် DocType: DocField,Fold,ခေါက် @@ -3193,6 +3271,7 @@ DocType: Workflow State,Home,နေအိမ် DocType: OAuth Provider Settings,Auto,အော်တို DocType: System Settings,User can login using Email id or User Name,အသုံးပြုသူအီးမေးလ်အိုင်ဒီသို့မဟုတ်အသုံးပြုသူအမည်ကိုသုံးပြီး login နိုင်ပါတယ် DocType: Workflow State,question-sign,မေးခွန်း-နိမိတ်လက္ခဏာ +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ကိုပိတ်ထား apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",field "လမ်းကြောင်း" web Views စာတွေအတွက်မဖြစ်မနေဖြစ်ပါသည် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} ခင်မှာကော်လံထည့်ပါ DocType: Energy Point Rule,The user from this field will be rewarded points,ဒီလယ်ကွင်းကနေအသုံးပြုသူအချက်များအကျိုးကိုခံရလိမ့်မည် @@ -3226,6 +3305,7 @@ DocType: Website Settings,Top Bar Items,ထိပ်ဆုံးဘားပစ DocType: Notification,Print Settings,ပုံနှိပ် Settings ကို DocType: Page,Yes,ဟုတ်ကဲ့ DocType: DocType,Max Attachments,max Attachments +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,ကျန်ရှိသော {0} စက္ကန့်အကြောင်း DocType: Calendar View,End Date Field,အဆုံးနေ့စွဲဖျော်ဖြေမှု apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ကမ္ဘာလုံးဆိုင်ရာ Shortcuts DocType: Desktop Icon,Page,စာမျက်နှာ @@ -3338,6 +3418,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite access ကို Allow DocType: DocType,DESC,DESC DocType: DocType,Naming,အမည်ပေးခြင်း apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,အားလုံးကို Select လုပ်ပါ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},ကော်လံ {0} apps/frappe/frappe/config/customization.py,Custom Translations,စိတ်တိုင်းကျဘာသာပြန်ချက်များ apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,တိုးတက်ခြင်း apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,အခန်းက္ပအားဖြင့် @@ -3380,11 +3461,13 @@ DocType: Stripe Settings,Stripe Settings,အစင်း Settings များ DocType: Stripe Settings,Stripe Settings,အစင်း Settings များ DocType: Data Migration Mapping,Data Migration Mapping,ဒေတာကိုရွှေ့ပြောင်းမြေပုံ DocType: Auto Email Report,Period,ကာလ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,ကျန်ရှိသောအကြောင်း {0} မိနစ် apps/frappe/frappe/www/login.py,Invalid Login Token,မမှန်ကန်ခြင်းဝင်မည် Token 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,Home Page DocType: Error Snapshot,Parent Error Snapshot,မိဘတစ်အမှား 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} ၏တဦးတည်းဖြစ်သင့်တယ် @@ -3404,6 +3487,7 @@ DocType: Calendar View,Start Date Field,Start ကိုနေ့စွဲဖျ DocType: Role,Role Name,အခန်းက္ပအမည် apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Desk ရန် Switch apps/frappe/frappe/config/core.py,Script or Query reports,script သို့မဟုတ် Query ကိုအစီရင်ခံစာများ +DocType: Contact Phone,Is Primary Mobile,မူလတန်းမိုဘိုင်း Is DocType: Workflow Document State,Workflow Document State,အသွားအလာ Document ဖိုင်ပြည်နယ် apps/frappe/frappe/public/js/frappe/request.js,File too big,သိပ်ကြီးမားတဲ့ file ကို apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,အီးမေးလ်အကောင့်မျိုးစုံကိုအကြိမ်ပေါင်းကဆက်ပြောသည် @@ -3449,6 +3533,7 @@ DocType: DocField,Float,မြော DocType: Print Settings,Page Settings,စာမကျြနှာကိုဆက်တင် apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,သိမ်းဆည်းခြင်း ... apps/frappe/frappe/www/update-password.html,Invalid Password,မှားနေသော Password ကို +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,အောင်မြင်စွာ {1} ထဲက {0} စံချိန်တင်သွင်းခဲ့သည်။ DocType: Contact,Purchase Master Manager,ဝယ်ယူမဟာ Manager က apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,public / private toggle ဖို့သော့ခတ်အိုင်ကွန်ပေါ်တွင်ကလစ်နှိပ်ပါ DocType: Module Def,Module Name,module အမည် @@ -3483,6 +3568,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,အဆိုပါအင်္ဂါရပ်များတချို့ကသင့်ရဲ့ browser မှာအလုပ်မဖြစ်ပေလိမ့်မည်။ နောက်ဆုံးပေါ်ဗားရှင်းသင့် browser ကို update ပေးပါ။ apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,အဆိုပါအင်္ဂါရပ်များတချို့ကသင့်ရဲ့ browser မှာအလုပ်မဖြစ်ပေလိမ့်မည်။ နောက်ဆုံးပေါ်ဗားရှင်းသင့် browser ကို update ပေးပါ။ apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",သိမေးမနေပါနဲ့ '' အကူအညီနဲ့ '' +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ဤစာရွက်စာတမ်း {0} ဖျက်သိမ်း DocType: DocType,Comments and Communications will be associated with this linked document,မှတ်ချက်များနှင့်ဆက်သွယ်ရေးဝန်ကြီးကဒီနှင့်ဆက်စပ်စာရွက်စာတမ်းနှင့်အတူဆက်နွယ်လိမ့်မည် apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,filter ... DocType: Workflow State,bold,ရဲရင့် @@ -3501,6 +3587,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Add / အီ DocType: Comment,Published,Published apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,သင့်ရဲ့အီးမေးလ်အတွက်ကျေးဇူးတင်ပါသည် DocType: DocField,Small Text,အသေးစားစာသား +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,နံပါတ် {0} တယ်လီဖုန်းများအတွက်မူလတန်းအဖြစ်မိုဘိုင်းအမှတ်အဖြစ်သတ်မှတ်ထားမရနိုင် DocType: Workflow,Allow approval for creator of the document,စာရွက်စာတမ်း၏ဖန်ဆင်းရှင်များအတွက်ခွင့်ပြုချက် Allow apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,ကြော်ငြာကို Save လုပ်ရန်အစီရင်ခံစာ DocType: Webhook,on_cancel,on_cancel @@ -3558,6 +3645,7 @@ DocType: Print Settings,PDF Settings,PDF ဖိုင်ရယူရန် Setti DocType: Kanban Board Column,Column Name,ကော်လံအမည် DocType: Language,Based On,ပေါ်အခြေခံကာ DocType: Email Account,"For more information, click here.","ပိုမိုသိရှိလိုပါက, ဤနေရာကိုကလစ်နှိပ်ပါ ။" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,ကော်လံအရေအတွက်ဒေတာတွေနဲ့မကိုက်ညီ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,ပုံမှန် Make apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,execution အချိန်: {0} စက္က apps/frappe/frappe/model/utils/__init__.py,Invalid include path,မှားနေသောလမ်းကြောင်းကိုပါဝင်သည် @@ -3648,7 +3736,7 @@ 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} ဖိုင်တွေကို upload DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ကို ID ကို DocType: Prepared Report,Report Start Time,အစီရင်ခံစာ Start ကိုအချိန် -apps/frappe/frappe/config/settings.py,Export Data,ပို့ကုန်မှာ Data +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ပို့ကုန်မှာ Data 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 ပေးပါ။ @@ -3666,7 +3754,6 @@ DocType: Report,Disable Prepared Report,ပြင်ဆင်အစီရင် apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,အသုံးပြုသူ {0} ဒေတာကိုပယ်ဖျက်ဘို့မေတ္တာရပ်ခံလိုက်ပါတယ် apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,တရားမဝင် Access ကိုတိုကင်။ ထပ်ကြိုးစားပါ apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",အဆိုပါ application ကိုဗားရှင်းသစ်မှ updated ခဲ့ကြောင်းဤစာမျက်နှာ refresh ကိုကျေးဇူးတင်ပါ -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.,မျှမတွေ့ default အနေနဲ့လိပ်စာ Template ။ Setup ကို> ပုံနှိပ်ခြင်းနှင့်တံဆိပ်တပ်> လိပ်စာ Template ကနေအသစ်တခုဖန်တီးပေးပါ။ DocType: Notification,Optional: The alert will be sent if this expression is true,optional: ဤစကားရပ်ဟုတ်မှန်သည်ဆိုပါကအဆိုပါသတိပေးချက်ကိုစလှေတျပါလိမ့်မည် DocType: Data Migration Plan,Plan Name,plan ကိုအမည် DocType: Print Settings,Print with letterhead,letterhead နှင့်အတူ Print @@ -3707,6 +3794,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Cancel မပါဘဲပြင်ဆင်ချက်စွဲလမ်းခြင်းမနိုင်သလား apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,အပြည့်အဝစာမျက်နှာ DocType: DocType,Is Child Table,ကလေးဇယားသည် +DocType: Data Import Beta,Template Options,template Options ကို apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} {1} တယောက်ဖြစ်ရပါမည် apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} လောလောဆယ်တွင်ဤစာရွက်စာတမ်းကြည့်ရှုနေသည် apps/frappe/frappe/config/core.py,Background Email Queue,နောက်ခံသမိုင်းအီးမေးလ်လူတန်း @@ -3714,7 +3802,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Password ကို R DocType: Communication,Opened,ဖွင့်လှစ် DocType: Workflow State,chevron-left,Chevron-လက်ဝဲ DocType: Communication,Sending,ပေးပို့ခြင်း -apps/frappe/frappe/auth.py,Not allowed from this IP Address,ဒီ IP Address ကိုမှအခွင့်မပေး DocType: Website Slideshow,This goes above the slideshow.,ဤအဆလိုက်ရှိုးအထက်တတ်၏။ DocType: Contact,Last Name,မျိုးနွယ်အမည် DocType: Event,Private,ကိုယ်ပိုင် @@ -3728,7 +3815,6 @@ DocType: Workflow Action,Workflow Action,အသွားအလာလှုပ် apps/frappe/frappe/utils/bot.py,I found these: ,ဒီတွေ့ရှိခဲ့: DocType: Event,Send an email reminder in the morning,နံနက်ယံ၌အီးမေးလ်သတိပေး Send DocType: Blog Post,Published On,တွင် Published -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မပေး setup ကို။ Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေအသစ်တခုအီးမေးလ်အကောင့်ကိုဖန်တီးပေးပါ 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} ပေါ်တွင်သင်၏မှတ်သို့ပြောင်း @@ -3749,7 +3835,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,သတိပေးချက်ကို-နိမိတ်လက္ခဏာ DocType: Prepared Report,Prepared Report,ပြင်ဆင်ထားအစီရင်ခံစာ apps/frappe/frappe/config/website.py,Add meta tags to your web pages,သင်၏ဝဘ်စာမျက်နှာများကိုမှ meta tag များ Add -DocType: Contact,Phone Nos,ဖုန်းနံပါတ် Nos 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 များ @@ -3767,6 +3852,7 @@ DocType: Data Migration Connector,Data Migration,ဒေတာများရွ DocType: User,API Key cannot be regenerated,API ကို Key ကို regenerated မရနိုင် apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,တစ်ခုခုမှားသွား DocType: System Settings,Number Format,နံပါတ်စီစဉ်ဖွဲ့စည်းမှုပုံစံ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,အောင်မြင်စွာ {0} စံချိန်တင်သွင်းခဲ့သည်။ apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,အကျဉ်းချုပ် DocType: Event,Event Participants,အဖြစ်အပျက်ပါဝင် DocType: Auto Repeat,Frequency,frequency @@ -3774,7 +3860,7 @@ DocType: Custom Field,Insert After,ပြီးနောက် Insert DocType: Event,Sync with Google Calendar,Google ကပြက္ခဒိန်နှင့်အတူ Sync ကို DocType: Access Log,Report Name,အစီရင်ခံစာအမည် DocType: Desktop Icon,Reverse Icon Color,အိုင်ကွန်အရောင် reverse -DocType: Notification,Save,Save ကို +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Save ကို apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Next ကို Scheduled နေ့စွဲ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,အနည်းဆုံးတာဝန်တွေရှိပါတယ်သူတဦးတည်းမှ assign apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,ပုဒ်မ Head @@ -3797,11 +3883,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup ကို> Customize Form ကို 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! တစ်ခုခုမှားသွားတယ် DocType: Desktop Icon,Category,Category: +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Value ကို {0} {1} အဘို့အဦးပျောက်ဆုံးနေ apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,ဆက်သွယ်ရန် Add apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ရှုခင်း apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Javascript ကိုအတွက် client ကို side script တွေ extension များ @@ -3825,6 +3911,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,စွမ်းအင်ဝန်ကြီးဌာနအမှတ် update ကို apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',အခြားပေးချေမှုနည်းလမ်းကိုရွေးချယ်ပါ။ PayPal က '' {0} '' ငွေကြေးအရောင်းအထောကျပံ့ပေးမထားဘူး DocType: Chat Message,Room Type,အခန်းအမျိုးအစား +DocType: Data Import Beta,Import Log Preview,သွင်းကုန် Log in ဝင်ရန် Preview ကို apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,ရှာရန်လယ်ကွင်း {0} တရားဝင်မဟုတ်ပါဘူး apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,တင်ထားသောဖိုင် DocType: Workflow State,ok-circle,ok-စက်ဝိုင်း @@ -3892,6 +3979,7 @@ DocType: DocType,Allow Auto Repeat,အော်တိုထပ် Allow apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ပြသနိုင်ဖို့တန်ဖိုးများကိုအဘယ်သူမျှမ DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,အီးမေးလ်ပို့ရန် Template ကို +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,အောင်မြင်စွာ {0} စံချိန် updated ။ apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},အသုံးပြုသူ {0} စာရွက်စာတမ်း {1} များအတွက်အခန်းကဏ္ဍခွင့်ပြုချက်မှတဆင့် DOCTYPE လက်လှမ်းရှိသည်ပါဘူး apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,login လုပ်လို့ရပါတယ်နှင့် password ကိုနှစ်ဦးစလုံးမလိုအပ် apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,နောက်ဆုံးပေါ်စာရွက်စာတမ်းရဖို့ refresh ပေးပါ။ diff --git a/frappe/translations/nl.csv b/frappe/translations/nl.csv index bbf9061726..09b2b0392b 100644 --- a/frappe/translations/nl.csv +++ b/frappe/translations/nl.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Nieuwe {} releases voor de volgende apps zijn beschikbaar apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Selecteer een veld Aantal. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Importbestand laden ... DocType: Assignment Rule,Last User,Laatste gebruiker apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Een nieuwe taak, {0}, is aan u toegewezen door {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Standaardwaarden sessie opgeslagen +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Bestand opnieuw laden DocType: Email Queue,Email Queue records.,E-mail Queue verslagen. DocType: Post,Post,Bericht DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Maandelijks DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Inschakelen Binnenkomend apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Gevaar -apps/frappe/frappe/www/login.py,Email Address,E-mailadres +DocType: Address,Email Address,E-mailadres DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Melding 'Ongelezen' verstuurd apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Exporteren niet toegestaan. Je hebt rol {0} nodig om te kunnen exporteren . @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Contact opties, zoals ""Sales Query, Support Query"" etc. Elk op een nieuwe regel of gescheiden door komma's." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Voeg een tag toe ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret -DocType: Data Migration Run,Insert,Plaats +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Plaats apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Laat Google Drive Access apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Selecteer {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Voer de basis-URL in @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuut g 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 DocType: Company History,Company History,Bedrijf Geschiedenis -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Reset +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Reset DocType: Workflow State,volume-up,volume-omhoog apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks bellen API-verzoeken naar web apps +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Traceback weergeven DocType: DocType,Default Print Format,Standaard Print Format DocType: Workflow State,Tags,labels apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Geen: Einde van de Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} veld kan niet worden ingesteld als uniek {1}, omdat er niet uniek bestaande waarden" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Document Types +DocType: Global Search Settings,Document Types,Document Types DocType: Address,Jammu and Kashmir,Jammu and Kashmir DocType: Workflow,Workflow State Field,Workflow Status Veld -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Stel in> Gebruiker DocType: Language,Guest,Gast DocType: DocType,Title Field,Titelveld DocType: Error Log,Error Log,Error log @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Herhalingen zoals "abcabcabc" zijn slechts iets moeilijker te raden dan "abc" DocType: Notification,Channel,Kanaal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Als u denkt dat dit niet is toegestaan, wijzigt u het beheerderswachtwoord." +DocType: Data Import Beta,Data Import Beta,Beta voor gegevensimport apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} is verplicht DocType: Assignment Rule,Assignment Rules,Opdrachtregels DocType: Workflow State,eject,uitwerpen @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Workflow Actie Naam apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kan niet worden samengevoegd DocType: Web Form Field,Fieldtype,Veldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Niet een zip-bestand +DocType: Global Search DocType,Global Search DocType,Globaal zoeken DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                            New {{ doc.doctype }} #{{ doc.name }}
                                                                            ","Om dynamisch onderwerp toe te voegen, gebruik jinja tags zoals
                                                                             New {{ doc.doctype }} #{{ doc.name }} 
                                                                            " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,U DocType: Braintree Settings,Braintree Settings,Braintree-instellingen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} records succesvol aangemaakt. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filter opslaan DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Kan {0} niet verwijderen @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Voer URL-parameter voor be apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Auto Repeat gemaakt voor dit document apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Bekijk rapport in je browser apps/frappe/frappe/config/desk.py,Event and other calendars.,Event en andere kalenders. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 rij verplicht) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Alle velden zijn verplicht in te vullen om de comment in te dienen. DocType: Custom Script,Adds a client custom script to a DocType,Voegt een aangepast klantenscript toe aan een DocType DocType: Print Settings,Printer Name,Printernaam @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,bulk-update DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Laat Gast te bekijken apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} mag niet hetzelfde zijn als {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Verwijder {0} items definitief? apps/frappe/frappe/utils/oauth.py,Not Allowed,Niet Toegestaan @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,tonen DocType: Email Group,Total Subscribers,Totaal Abonnees apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Rij nummer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Als een Rol geen toegang heeft op niveau 0, dan zijn de hogere niveaus zinloos." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Opslaan als DocType: Comment,Seen,Seen @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Definieert workflow-staten en regels voor een document. DocType: Workflow State,Filter,filter @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Gesloten DocType: Blog Settings,Blog Title,Blog Titel apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standard rollen kan niet worden uitgeschakeld apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Chat Type +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kaartkolommen DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Nieuwsbrief apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Kan geen gebruik maken van sub-query in bestelling door @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Een kolom toevoegen apps/frappe/frappe/www/contact.html,Your email address,Uw e-mailadres DocType: Desktop Icon,Module,Module +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} records uit {1} met succes bijgewerkt. DocType: Notification,Send Alert On,Stuur Alert Op DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Aanpassen Label, Print verbergen, Standaard, enz." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Bestanden uitpakken ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Gebruike DocType: System Settings,Currency Precision,Valuta Precisie DocType: System Settings,Currency Precision,Valuta Precisie apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Andere transactie blokkeert deze. Probeer opnieuw in een paar seconden. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Filters wissen DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,De bijlagen kunnen niet correct worden gekoppeld aan het nieuwe document DocType: Chat Message Attachment,Attachment,Gehechtheid @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Niet in staa apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Agenda - Kon gebeurtenis {0} in Google Agenda, foutcode {1} niet bijwerken." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Zoek of typ een opdracht DocType: Activity Log,Timeline Name,Timeline Naam +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Er kan slechts één {0} worden ingesteld als primair. DocType: Email Account,e.g. smtp.gmail.com,bv smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Voeg een nieuwe regel toe DocType: Contact,Sales Master Manager,Sales Master Manager @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Veld LDAP-middelste naam apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} van {1} importeren DocType: GCalendar Account,Allow GCalendar Access,GCalendar-toegang toestaan -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} is een verplicht veld +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} is een verplicht veld apps/frappe/frappe/templates/includes/login/login.js,Login token required,Login token vereist apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Maandelijkse rang: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Selecteer meerdere lijstitems @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Kan geen verbinding make apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Een vrijstaand woord is gemakkelijk te raden. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automatische toewijzing mislukt: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Zoeken... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Selecteer Company apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Samenvoegen is alleen mogelijk tussen de Groepen of tussen Blad Nodes. apps/frappe/frappe/utils/file_manager.py,Added {0},Toegevoegd {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Geen overeenkomende records. Zoek iets nieuws @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,OAuth-client-ID DocType: Auto Repeat,Subject,Onderwerp apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Terug naar bureau DocType: Web Form,Amount Based On Field,Bedrag op basis van Field -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Gebruiker is verplicht voor Share DocType: DocField,Hidden,verborgen DocType: Web Form,Allow Incomplete Forms,Laat Onvolledig ingevulde formulieren @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} en {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Een gesprek beginnen. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Voeg altijd "Concept" Heading for printing conceptdocumenten apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Fout in melding: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar geleden DocType: Data Migration Run,Current Mapping Start,Huidige toewijzingstart apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail is gemarkeerd als spam DocType: Comment,Website Manager,Website Manager @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Het gebruik van subvragen of functies is beperkt apps/frappe/frappe/config/customization.py,Add your own translations,Voeg je eigen vertalingen DocType: Country,Country Name,Naam van het land +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Lege sjabloon DocType: About Us Team Member,About Us Team Member,Over ons Teamlid apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Machtigingen zijn ingesteld op Rollen en documenttypen (de zogenaamde DocTypes ) door het instellen van rechten zoals Lezen , schrijven , maken, verwijderen , indienen, annuleren , wijzigen , rapporteren , importeren, exporteren, afdrukken , e-mailen en instellen machtigingen." DocType: Event,Wednesday,Woensdag @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,Website Theme Afbeelding Link DocType: Web Form,Sidebar Items,sidebar items DocType: Web Form,Show as Grid,Toon als raster apps/frappe/frappe/installer.py,App {0} already installed,App {0} reeds geïnstalleerd +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Gebruikers die aan het referentiedocument zijn toegewezen, krijgen punten." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Geen preview DocType: Workflow State,exclamation-sign,uitroepteken apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Uitgepakte {0} bestanden @@ -605,6 +620,7 @@ DocType: Notification,Days Before,Dagen voor apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dagelijkse evenementen moeten op dezelfde dag eindigen. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Bewerk... DocType: Workflow State,volume-down,volume-omlaag +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Toegang niet toegestaan vanaf dit IP-adres apps/frappe/frappe/desk/reportview.py,No Tags,No Tags DocType: Email Account,Send Notification to,Stuur Kennisgeving aan DocType: DocField,Collapsible,Inklapbaar @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Ontwikkelaar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Gemaakt apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} in rij {1} kan niet zowel URL en onderliggende items bevatten +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Er moet minstens één rij zijn voor de volgende tabellen: {0} DocType: Print Format,Default Print Language,Standaard afdruktaal apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Voorouders van apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kan niet worden verwijderd @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,gastheer +DocType: Data Import Beta,Import File,Importeer bestand apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Column {0} al bestaan. DocType: ToDo,High,Hoog apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nieuw evenement @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,Verzend meldingen voor e-mail apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Niet in Developer Mode apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Bestandskopie is klaar -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maximaal toegestane punten na het vermenigvuldigen van punten met de vermenigvuldigingswaarde (Opmerking: stel geen limiet in op 0) DocType: DocField,In Global Search,In Global Search DocType: System Settings,Brute Force Security,Brute Force-beveiliging DocType: Workflow State,indent-left,inspringing-links @@ -774,6 +790,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Gebruiker '{0}' heeft al de rol van '{1}' DocType: System Settings,Two Factor Authentication method,Twee Factor Authentication methode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Stel eerst de naam in en sla de record op. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 records apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Gedeeld met {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Afmelden DocType: View Log,Reference Name,Referentie Naam @@ -824,6 +841,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Volg e-mailstatus DocType: Note,Notify Users On Every Login,Gebruikers in kennis stellen op elke login DocType: Note,Notify Users On Every Login,Gebruikers in kennis stellen op elke login +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Kan kolom {0} niet koppelen aan een veld +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} records succesvol bijgewerkt. DocType: PayPal Settings,API Password,API Password apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Voer de python-module in of selecteer het type connector apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Veldnaam niet ingesteld op Aangepast veld @@ -852,9 +871,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Dubbele naam {0} {1} -DocType: Email Queue,Retry,opnieuw proberen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,opnieuw proberen +DocType: Contact Phone,Number,Aantal DocType: Web Form Field,Web Form Field,Webformulier invulveld apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Je hebt een nieuw bericht van: +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)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Bewerken HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Voer de omleidings-URL in apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -880,7 +901,7 @@ DocType: Notification,View Properties (via Customize Form),Bekijk Properties (vi apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klik op een bestand om het te selecteren. DocType: Note Seen By,Note Seen By,Opmerking gezien door apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Probeer een langere keyboard patroon met meer bochten te gebruiken -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Scorebord +,LeaderBoard,Scorebord DocType: DocType,Default Sort Order,Standaard sorteervolgorde DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Reply Help @@ -915,6 +936,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Email opstellen apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Statussen voor workflow ( bijv. Draft , Goedgekeurd , Cancelled) ." DocType: Print Settings,Allow Print for Draft,Laat Print voor Draft +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/link_selector.js,Set Quantity,Stel Hoeveelheid apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Verzend dit document om te bevestigen DocType: Contact,Unsubscribed,Uitgeschreven @@ -946,6 +968,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organisatie-eenheid voor ge ,Transaction Log Report,Transactielogboekrapport DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Stuur afmeldlink +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Er zijn enkele gekoppelde records die moeten worden gemaakt voordat we uw bestand kunnen importeren. Wilt u automatisch de volgende ontbrekende records maken? DocType: Access Log,Method,Methode DocType: Report,Script Report,Script Rapport DocType: OAuth Authorization Code,Scopes,scopes @@ -987,6 +1010,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Succesvol geüpload apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Je bent verbonden met internet. DocType: Social Login Key,Enable Social Login,Schakel sociale login in +DocType: Data Import Beta,Warnings,waarschuwingen DocType: Communication,Event,Evenement apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Op {0}, {1} schreef:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Kan standaardveld niet verwijderen. U kunt het verbergen als u dit wilt @@ -1042,6 +1066,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Hieronder DocType: Kanban Board Column,Blue,Blauw apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Alle aanpassingen zullen worden verwijderd. Gelieve te bevestigen. DocType: Page,Page HTML,Pagina HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Rijen met fouten exporteren apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Groepsnaam mag niet leeg zijn. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Verder nodes kunnen alleen worden gemaakt op grond van het type nodes 'Groep' DocType: SMS Parameter,Header,Hoofd @@ -1081,13 +1106,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Time-out apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Domeinen in- / uitschakelen DocType: Role Permission for Page and Report,Allow Roles,laat Rollen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Succesvol {0} records geïmporteerd uit {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Eenvoudige Python-expressie, voorbeeld: status in ("Ongeldig")" DocType: User,Last Active,Laatst actief DocType: Email Account,SMTP Settings for outgoing emails,SMTP-instellingen voor uitgaande e-mails apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,kies een DocType: Data Export,Filter List,Filterlijst DocType: Data Export,Excel,uitmunten -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Uw wachtwoord is bijgewerkt. Hier is uw nieuwe wachtwoord 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 @@ -1096,7 +1121,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Gebruikers-ID DocType: Communication,Sent,verzonden DocType: Address,Kerala,Kerala -DocType: File,Lft,lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Toediening DocType: User,Simultaneous Sessions,Gelijktijdig Sessions DocType: Social Login Key,Client Credentials,client geloofsbrieven @@ -1128,7 +1152,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Bijgewe apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Stam DocType: DocType,User Cannot Create,Gebruiker kan niet aanmaken apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Met succes gedaan -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Map {0} bestaat niet apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,toegang Dropbox is goedgekeurd! DocType: Customize Form,Enter Form Type,Voer Form Type in DocType: Google Drive,Authorize Google Drive Access,Autoriseer Google Drive Access @@ -1136,7 +1159,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Geen records gelabeld. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Veld verwijderen apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,U bent niet verbonden met internet. Probeer het na een tijdje opnieuw. -DocType: User,Send Password Update Notification,Stuur wachtwoord-update apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Het toestaan DocType , DocType . Wees voorzichtig !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Aangepaste Formaten voor afdrukken, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Som van {0} @@ -1222,6 +1244,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Incorrecte Verificat apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Contacten-integratie is uitgeschakeld. DocType: Assignment Rule,Description,Beschrijving DocType: Print Settings,Repeat Header and Footer in PDF,Herhaal kop- en voetteksten in PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Mislukking DocType: Address Template,Is Default,Is Standaard DocType: Data Migration Connector,Connector Type,Type connector apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Column Naam mag niet leeg zijn @@ -1234,6 +1257,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Ga naar {0} pagina DocType: LDAP Settings,Password for Base DN,Wachtwoord voor Base DN 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/model/document.py,Action Failed,Actie is mislukt apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,voor Gebruikers @@ -1287,6 +1311,7 @@ DocType: Print Settings,Enable Raw Printing,Schakel Raw Printing in DocType: Website Route Redirect,Source,Bron apps/frappe/frappe/templates/includes/list/filters.html,clear,wissen apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Afgewerkt +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Stel in> Gebruiker DocType: Prepared Report,Filter Values,Filterwaarden DocType: Communication,User Tags,Gebruiker-tags DocType: Data Migration Run,Fail,mislukken @@ -1343,6 +1368,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Volg ,Activity,Activiteit DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Help: Om te linken naar een andere record in het systeem, gebruikt ""#Form/Note/[Note Name]"", als de Link URL. (Gebruik geen ""http://"")" DocType: User Permission,Allow,Toestaan +DocType: Data Import Beta,Update Existing Records,Bestaande records bijwerken apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Laten we voorkomen dat herhaalde woorden en tekens DocType: Energy Point Rule,Energy Point Rule,Energiepuntregel DocType: Communication,Delayed,Vertraagd @@ -1355,9 +1381,7 @@ DocType: Milestone,Track Field,Volg veld DocType: Notification,Set Property After Alert,Eigenschap instellen na alarmering apps/frappe/frappe/config/customization.py,Add fields to forms.,Voeg velden toe aan formulieren apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Het lijkt erop dat er iets mis is met de Paypal-configuratie van deze site. -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/sidebar/review.js,Add Review,Voeg recensie toe -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Lettergrootte (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Alleen standaard DocTypes mogen worden aangepast vanuit het formulier Aanpassen. DocType: Email Account,Sendgrid,SendGrid @@ -1394,6 +1418,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Sorry! Je kunt niet automatisch gegenereerde opmerkingen verwijderen DocType: Google Settings,Used For Google Maps Integration.,Gebruikt voor Google Maps-integratie. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referentie DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Er worden geen records geëxporteerd DocType: User,System User,Systeemgebruiker DocType: Report,Is Standard,Is Standaard DocType: Desktop Icon,_report,_rapport @@ -1409,6 +1434,7 @@ DocType: Workflow State,minus-sign,min-teken apps/frappe/frappe/public/js/frappe/request.js,Not Found,Niet gevonden apps/frappe/frappe/www/printview.py,No {0} permission,Geen {0} toestemming apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export Custom Machtigingen +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Geen items gevonden. DocType: Data Export,Fields Multicheck,Velden Multicheck DocType: Activity Log,Login,Login DocType: Web Form,Payments,Betalingen @@ -1469,8 +1495,9 @@ DocType: Address,Postal,Post- DocType: Email Account,Default Incoming,Standaard Inkomende DocType: Workflow State,repeat,herhalen DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Waarde moet een van {0} zijn DocType: Role,"If disabled, this role will be removed from all users.","Indien uitgeschakeld, zal deze rol van alle gebruikers worden verwijderd." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Ga naar {0} lijst +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Ga naar {0} lijst 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 @@ -1484,6 +1511,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Lokale veldnaam DocType: DocType,Track Changes,Spoorwissel DocType: Workflow State,Check,Controleren DocType: Chat Profile,Offline,offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Succesvol geïmporteerd {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Stuur unsubscribe bericht e-mail apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Titel bewerken @@ -1510,11 +1538,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} heeft al een standaardwaarde toegewezen voor {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                            No results found for '

                                                                            ,

                                                                            Geen resultaten gevonden voor '

                                                                            DocType: DocField,Attach Image,Bevestig Afbeelding DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Wachtwoord bijgewerkt @@ -1535,8 +1563,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Niet toegestaan voor 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuratie> Gebruikersrechten DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-groepstoewijzing DocType: Dashboard Chart,Chart Options,Grafiek opties +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Kolom zonder titel apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} van {1} tot {2} in rij # {3} DocType: Communication,Expired,Verlopen apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Het lijkt erop dat het token dat u gebruikt ongeldig is! @@ -1546,6 +1576,7 @@ DocType: DocType,System,Systeem DocType: Web Form,Max Attachment Size (in MB),Max Bijlage Grootte (in MB) apps/frappe/frappe/www/login.html,Have an account? Login,Bestaande account? Aanmelden DocType: Workflow State,arrow-down,arrow-down +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rij {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Gebruiker niet toegestaan om {0} te verwijderen: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} van {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Laatst aangepast op @@ -1563,6 +1594,7 @@ DocType: Custom Role,Custom Role,Custom Role apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Home / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Voer uw wachtwoord in DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Toegang Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Verplicht) 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. @@ -1637,6 +1669,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Dashboard apps/frappe/frappe/desk/form/assign_to.py,New Message,Nieuw bericht DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,vraag-rapport +DocType: Data Import Beta,Template Warnings,Sjabloonwaarschuwingen apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filters gered DocType: DocField,Percent,Percentage apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Stel filters @@ -1658,6 +1691,7 @@ DocType: Custom Field,Custom,Aangepast DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Indien ingeschakeld, zullen gebruikers die zich aanmelden vanuit een beperkt IP-adres, niet om twee factoren worden gevraagd" DocType: Auto Repeat,Get Contacts,Contactpersonen ophalen apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Berichten opgeslagen onder {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Kolom zonder titel overslaan DocType: Notification,Send alert if date matches this field's value,Stuur Alert als datum overeenkomt met waarde in dit veld. DocType: Workflow,Transitions,Overgangen apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} tot {2} @@ -1681,6 +1715,7 @@ DocType: Workflow State,step-backward,step-achteruit apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Stel Dropbox access keys in in uw site configuratie apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Verwijder dit record om mailverkeer naar dit e-mailadres toe te staan. +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Indien niet-standaard poort (bijv. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Pas snelkoppelingen aan apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Enige verplichte velden zijn nodig voor nieuwe records. U kunt niet-verplichte kolommen te verwijderen indien u dat wenst. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Meer activiteit weergeven @@ -1788,7 +1823,9 @@ DocType: Note,Seen By Table,Gezien door Table apps/frappe/frappe/www/third_party_apps.html,Logged in,Ingelogd apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standaard verzenden en Inbox DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} record uit {1} met succes bijgewerkt. DocType: Google Drive,Send Email for Successful Backup,Stuur een e-mail voor een succesvolle back-up +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Planner is inactief. Kan gegevens niet importeren. DocType: Print Settings,Letter,Brief DocType: DocType,"Naming Options:
                                                                            1. field:[fieldname] - By Field
                                                                            2. naming_series: - By Naming Series (field called naming_series must be present
                                                                            3. Prompt - Prompt user for a name
                                                                            4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                            5. @@ -1802,6 +1839,7 @@ DocType: GCalendar Account,Next Sync Token,Volgende synchronisatietoken DocType: Energy Point Settings,Energy Point Settings,Instellingen energiepunt DocType: Async Task,Succeeded,Geslaagd apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Verplichte velden zijn verplicht in {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                              No results found for '

                                                                              ,

                                                                              Geen resultaten gevonden voor '

                                                                              apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Reset Machtigingen voor {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Gebruikers en machtigingen DocType: S3 Backup Settings,S3 Backup Settings,S3 Back-upinstellingen @@ -1873,6 +1911,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,in DocType: Notification,Value Change,Waarde Veranderen DocType: Google Contacts,Authorize Google Contacts Access,Autoriseer Google Contacten Toegang apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Alleen Numerieke velden uit rapport weergeven +DocType: Data Import Beta,Import Type,Type invoer DocType: Access Log,HTML Page,HTML-pagina DocType: Address,Subsidiary,Dochteronderneming apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Poging tot verbinding met QZ-lade ... @@ -1883,7 +1922,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ongeldige DocType: Custom DocPerm,Write,Schrijven apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Alleen Beheerder toegestaan om Query / Script Rapporten maken apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aan het bijwerken -DocType: File,Preview,Voorbeeld +DocType: Data Import Beta,Preview,Voorbeeld apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "waarde" is verplicht. Gelieve te specificeren waarde worden bijgewerkt DocType: Customize Form,Use this fieldname to generate title,Gebruik deze veldnaam om de titel te genereren apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import e-mail van @@ -1968,6 +2007,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser wordt DocType: Social Login Key,Client URLs,Client-URL's apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Sommige informatie ontbreekt apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} is succesvol aangemaakt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","{0} van {1}, {2} overslaan" DocType: Custom DocPerm,Cancel,Annuleren apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk verwijderen apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Bestand {0} bestaat niet @@ -1995,7 +2035,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,Symbool apps/frappe/frappe/model/base_document.py,Row #{0}:,Rij # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Bevestig verwijdering van gegevens -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nieuw wachtwoord verstuurd apps/frappe/frappe/auth.py,Login not allowed at this time,Inloggen niet toegestaan op dit moment DocType: Data Migration Run,Current Mapping Action,Huidige toewijzingsactie DocType: Dashboard Chart Source,Source Name,Bron naam @@ -2008,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Gevolgd door DocType: LDAP Settings,LDAP Email Field,LDAP Email Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lijst +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exporteer {0} records apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Reeds in gebruiker takenlijst DocType: User Email,Enable Outgoing,Inschakelen Uitgaand DocType: Address,Fax,Fax @@ -2066,8 +2106,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Documenten afdrukken apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Spring naar veld DocType: Contact Us Settings,Forward To Email Address,Doorsturen naar e-mailadres +DocType: Contact Phone,Is Primary Phone,Is primaire telefoon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Stuur een e-mail naar {0} om het hier te koppelen. DocType: Auto Email Report,Weekdays,Doordeweekse dagen +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} records worden geëxporteerd apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titelveld moet een geldige veldnaam zijn DocType: Post Comment,Post Comment,Plaats een reactie apps/frappe/frappe/config/core.py,Documents,Documenten @@ -2085,7 +2127,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","Dit veld verschijnt alleen als de veldnaam hier gedefinieerde waarde heeft, of de regels waar zijn (voorbeelden): myfield Eval: doc.myfield == 'My Value' eval: doc.age> 18" DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Vandaag +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 Instellingen> Afdrukken en branding> Adressjabloon. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Zodra je dit hebt ingesteld, hebben de gebruikers uitsluitend toegang tot documenten ( bijv. blog post ) waarvan de link bestaat ( bijv. Blogger ) ." +DocType: Data Import Beta,Submit After Import,Verzenden na importeren DocType: Error Log,Log of Scheduler Errors,Log van Scheduler Fouten DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App Client Secret @@ -2104,10 +2148,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Uitschakelen van de Klanten Inschrijf Link op de Login pagina apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Toegewezen aan / Eigenaar DocType: Workflow State,arrow-left,pijl-links +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1 record exporteren DocType: Workflow State,fullscreen,volledig scherm DocType: Chat Token,Chat Token,Chat token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Grafiek maken apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Niet importeren DocType: Web Page,Center,Centreren DocType: Notification,Value To Be Set,Waarde om te worden ingesteld apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Bewerk {0} @@ -2127,6 +2173,7 @@ DocType: Print Format,Show Section Headings,Show koppen DocType: Bulk Update,Limit,Begrenzing apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},We hebben een verzoek ontvangen om {0} gegevens te verwijderen die zijn gekoppeld aan: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Voeg een nieuw gedeelte toe +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Gefilterde records apps/frappe/frappe/www/printview.py,No template found at path: {0},Geen template gevonden in pad: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Geen e-mail account DocType: Comment,Cancelled,Geannuleerd @@ -2214,10 +2261,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globaal zoeken Documenttypen Reset. ,Lead Conversion Time,Lead Conversion Time apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Maak Rapport DocType: Note,Notify users with a popup when they log in,Houd gebruikers met een pop-up wanneer deze zich aanmeldt +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Kernmodules {0} kunnen niet worden gezocht in Globaal zoeken. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Chat openen apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} bestaat niet, kies een nieuw doel om samen te voegen" DocType: Data Migration Connector,Python Module,Python-module @@ -2234,8 +2284,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Sluiten 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuratie> Gebruikersrechten -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Bijwerken +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Bijwerken DocType: Transaction Log,Transaction Hash,Transactie Hash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Sla de nieuwsbrief op voor het verzenden @@ -2251,6 +2300,7 @@ DocType: Data Import,In Progress,Bezig apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,De wachtrij voor back-up. Het kan een paar minuten tot een uur. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Gebruikersrechten bestaan al +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kolom {0} toewijzen aan veld {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Bekijk {0} DocType: User,Hourly,ieder uur apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreer OAuth Client App @@ -2263,7 +2313,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kan niet ""{2}"" worden. Het moet één zijn van ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},verkregen door {0} via automatische regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} of {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Wachtwoord bijwerken DocType: Workflow State,trash,prullenbak DocType: System Settings,Older backups will be automatically deleted,Oudere backups worden automatisch verwijderd apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ongeldige toegangssleutel ID of geheime toegangssleutel. @@ -2292,6 +2341,7 @@ DocType: Address,Preferred Shipping Address,Voorkeur verzendadres apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Met Brief hoofd apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} heeft dit {1} aangemaakt apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Niet toegestaan voor {0}: {1} in rij {2}. Beperkt veld: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Als dit is aangevinkt, worden rijen met geldige gegevens geïmporteerd en worden ongeldige rijen in een nieuw bestand gedumpt om later te importeren." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document is alleen bewerkbaar door gebruikers van de rol van @@ -2318,6 +2368,7 @@ DocType: Custom Field,Is Mandatory Field,Is Verplicht veld DocType: User,Website User,Website Gebruiker apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Sommige kolommen kunnen worden afgebroken tijdens het afdrukken naar PDF. Probeer het aantal kolommen onder de 10 te houden. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Ongelijk aan +DocType: Data Import Beta,Don't Send Emails,Stuur geen e-mails DocType: Integration Request,Integration Request Service,Integratie Aanvraag Service DocType: Access Log,Access Log,Toegangslogboek DocType: Website Script,Script to attach to all web pages.,Script te hechten aan alle webpagina's. @@ -2358,6 +2409,7 @@ DocType: Contact,Passive,Passief DocType: Auto Repeat,Accounts Manager,Rekeningen Beheerder apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Toewijzing voor {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Uw betaling is geannuleerd. +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/views/reports/report_view.js,Select File Type,Select File Type apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Bekijk alles DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor @@ -2390,6 +2442,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Document Status apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Goedkeuring vereist +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,De volgende records moeten worden gemaakt voordat we uw bestand kunnen importeren. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Authorization Code apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Niet toegestaan om te importeren DocType: Deleted Document,Deleted DocType,verwijderde DocType @@ -2443,8 +2496,8 @@ DocType: System Settings,System Settings,Systeeminstellingen DocType: GCalendar Settings,Google API Credentials,Google API-referenties apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sessie Start mislukt apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Deze e-mail is verzonden naar {0} en gekopieerd naar {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},heeft dit document {0} ingediend DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar geleden DocType: Social Login Key,Provider Name,Provider naam apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Maak een nieuwe {0} DocType: Contact,Google Contacts,Google Contacten @@ -2452,6 +2505,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar Account DocType: Email Rule,Is Spam,is Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} +DocType: Data Import Beta,Import Warnings,Waarschuwingen importeren DocType: OAuth Client,Default Redirect URI,Standaard Redirect URI DocType: Auto Repeat,Recipients,Ontvangers DocType: System Settings,Choose authentication method to be used by all users,Kies de verificatiemethode die door alle gebruikers wordt gebruikt @@ -2570,6 +2624,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Rapport succ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook-fout DocType: Email Flag Queue,Unread,Ongelezen DocType: Bulk Update,Desk,Bureau +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Kolom overslaan {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter moet een tupel of een lijst zijn (in een lijst) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,"Schrijf een SELECT-query. Let op, resultaat wordt niet opgeroepen (alle data wordt verzonden in een keer)." DocType: Email Account,Attachment Limit (MB),Attachment Limit (MB) @@ -2584,6 +2639,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Maak nieuw DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Geen e-mail verstuurd naar {0} (uitgeschreven / uitgeschakeld) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Selecteer velden om te exporteren DocType: Async Task,Traceback,Herleiden DocType: Currency,Smallest Currency Fraction Value,Kleinste Valuta fractiewaarde apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Rapport wordt opgesteld @@ -2592,6 +2648,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Inschakelen Reacties apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Opmerkingen DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Beperk de gebruiker van dit IP-adres alleen. Meerdere IP-adressen kunnen worden toegevoegd door het scheiden van met komma's. Ook aanvaardt gedeeltelijke IP-adres, zoals (111.111.111)" +DocType: Data Import Beta,Import Preview,Voorbeeld importeren DocType: Communication,From,Van apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Selecteer eerst een groep knooppunt. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Zoek {0} van {1} @@ -2691,6 +2748,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Tussen DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Wachtrij +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuratie> Formulier aanpassen DocType: Braintree Settings,Use Sandbox,Gebruik Sandbox apps/frappe/frappe/utils/goal.py,This month,Deze maand apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nieuwe Custom Print Format @@ -2706,6 +2764,7 @@ DocType: Session Default,Session Default,Sessie Standaard DocType: Chat Room,Last Message,Laatste bericht DocType: OAuth Bearer Token,Access Token,Toegang Token DocType: About Us Settings,Org History,org Geschiedenis +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Ongeveer {0} minuten resterend DocType: Auto Repeat,Next Schedule Date,Volgende schema datum DocType: Workflow,Workflow Name,Workflow Naam DocType: DocShare,Notify by Email,Notificeren per e-mail @@ -2735,6 +2794,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Auteur apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,doorgaan met het verzenden apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Heropenen +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Waarschuwingen weergeven apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Aankoop Gebruiker DocType: Data Migration Run,Push Failed,Push mislukt @@ -2773,6 +2833,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Geavan apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,U mag de nieuwsbrief niet bekijken. DocType: User,Interests,Interesses apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,"Instructies om uw wachtwoord opnieuw in te stellen, zijn naar uw e-mail verzonden" +DocType: Energy Point Rule,Allot Points To Assigned Users,Wijs punten toe aan toegewezen gebruikers apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Niveau 0 is voor documentniveau machtigingen, \ hogere niveaus voor veldniveau machtigingen." DocType: Contact Email,Is Primary,Is primair @@ -2796,6 +2857,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Publiceerbare sleutel DocType: Stripe Settings,Publishable Key,Publiceerbare sleutel apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Begin met importeren +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Exporttype DocType: Workflow State,circle-arrow-left,cirkel-pijl-links DocType: System Settings,Force User to Reset Password,Dwing gebruiker om wachtwoord opnieuw in te stellen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",Klik op {0} om het bijgewerkte rapport te krijgen. @@ -2809,13 +2871,16 @@ DocType: Contact,Middle Name,Midden-naam DocType: Custom Field,Field Description,Veld Omschrijving apps/frappe/frappe/model/naming.py,Name not set via Prompt,Naam niet ingesteld via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail Postvak IN +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Updaten {0} van {1}, {2}" DocType: Auto Email Report,Filters Display,filters weergeven apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","modified_from" veld moet aanwezig zijn om een wijziging uit te voeren. +DocType: Contact,Numbers,Numbers apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} waardeerde uw werk op {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filters opslaan DocType: Address,Plant,Fabriek apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Allen beantwoorden DocType: DocType,Setup,Instellingen +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Alle records DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,E-mailadres waarvan Google-contacten moeten worden gesynchroniseerd. DocType: Email Account,Initial Sync Count,Initial synchronisatietelketen DocType: Workflow State,glass,glas @@ -2840,7 +2905,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Voorbeeldpop-up weergeven apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dit is een gemeenschappelijk wachtwoord top-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Schakel aub pop - ups in -DocType: User,Mobile No,Mobiel nummer +DocType: Contact,Mobile No,Mobiel nummer DocType: Communication,Text Content,text Content DocType: Customize Form Field,Is Custom Field,Is Aangepast veld DocType: Workflow,"If checked, all other workflows become inactive.","Indien aangevinkt, worden alle andere workflows inactief." @@ -2886,6 +2951,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Voeg apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Naam van de nieuwe Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Zijbalk verschuiven DocType: Data Migration Run,Pull Insert,Pull Insert +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maximaal toegestane punten na het vermenigvuldigen van punten met de vermenigvuldigingswaarde (Opmerking: laat dit veld voor geen limiet leeg of stel 0 in) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Ongeldige sjabloon apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Illegale SQL-zoekopdracht apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Verplicht: DocType: Chat Message,Mentions,vermeldingen @@ -2900,6 +2968,7 @@ DocType: User Permission,User Permission,Gebruikersmachtiging apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP niet geïnstalleerd apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Download met data +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},waarden gewijzigd voor {0} {1} DocType: Workflow State,hand-right,hand-rechts DocType: Website Settings,Subdomain,Subdomein DocType: S3 Backup Settings,Region,Regio @@ -2927,10 +2996,12 @@ DocType: Braintree Settings,Public Key,Publieke sleutel DocType: GSuite Settings,GSuite Settings,GSuite Instellingen DocType: Address,Links,Links DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Gebruikt de e-mailadresnaam die in dit account wordt vermeld als de afzendernaam voor alle e-mails die met dit account worden verzonden. +DocType: Energy Point Rule,Field To Check,Te controleren veld apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Contacten - Kon contact in Google Contacten {0}, foutcode {1} niet bijwerken." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Selecteer het documenttype. apps/frappe/frappe/model/base_document.py,Value missing for,Waarde ontbreekt voor apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Onderliggende toevoegen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Voortgang importeren DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Als aan de voorwaarde is voldaan, wordt de gebruiker beloond met de punten. bv. doc.status == 'Gesloten'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Ingediend record kan niet worden verwijderd. @@ -2967,6 +3038,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google Agenda-toegang apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,De pagina die u zoekt ontbreekt. Dit kan zijn omdat het wordt verplaatst of er een typefout in de link. apps/frappe/frappe/www/404.html,Error Code: {0},Error Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beschrijving van lijst pagina, in platte tekst, slechts een paar regels. (Max 140 tekens)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} zijn verplichte velden DocType: Workflow,Allow Self Approval,Toestaan zelf-goedkeuring DocType: Event,Event Category,Evenement Categorie apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3015,8 +3087,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Verplaatsen naar DocType: Address,Preferred Billing Address,Voorkeur Factuuradres apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Too many writes in one request. Please send smaller requests apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive is geconfigureerd. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Documenttype {0} is herhaald. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Gewijzigde waarden DocType: Workflow State,arrow-up,pijl-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Er moet minimaal één rij zijn voor de {0} tabel apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Om Auto Repeat te configureren, schakelt u "Allow Auto Repeat" in vanaf {0}." DocType: OAuth Bearer Token,Expires In,Verloopt in DocType: DocField,Allow on Submit,Laat op Submit @@ -3103,6 +3177,7 @@ DocType: Custom Field,Options Help,Opties Help 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 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 @@ -3120,6 +3195,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code DocType: Webhook,Webhook Request,Webhook aanvraag apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Mislukt: {0} tot {1}: {2} DocType: Data Migration Mapping,Mapping Type,Mapping Type +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Selecteer Verplicht apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Bladeren apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Geen behoefte aan symbolen, cijfers of hoofdletters." DocType: DocField,Currency,Valuta @@ -3150,11 +3226,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Briefhoofd op basis van apps/frappe/frappe/utils/oauth.py,Token is missing,Token ontbreekt apps/frappe/frappe/www/update-password.html,Set Password,Wachtwoord instellen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} records succesvol geïmporteerd. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Opmerking: de paginanaam verandert zal de vorige URL naar deze pagina breken. apps/frappe/frappe/utils/file_manager.py,Removed {0},Verwijderd {0} DocType: SMS Settings,SMS Settings,SMS-instellingen DocType: Company History,Highlight,Markeer DocType: Dashboard Chart,Sum,Som +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,via gegevensimport DocType: OAuth Provider Settings,Force,Dwingen apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Laatst gesynchroniseerd {0} DocType: DocField,Fold,Vouw @@ -3191,6 +3269,7 @@ DocType: Workflow State,Home,Thuis DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Gebruiker kan inloggen met e-mail id of gebruikersnaam DocType: Workflow State,question-sign,vraagteken +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} is uitgeschakeld apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Veld "route" is verplicht voor webweergaven apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Kolom invoegen vóór {0} DocType: Energy Point Rule,The user from this field will be rewarded points,De gebruiker uit dit veld krijgt punten @@ -3224,6 +3303,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Items DocType: Notification,Print Settings,Afdrukinstellingen DocType: Page,Yes,Ja DocType: DocType,Max Attachments,Max Bijlagen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Ongeveer {0} seconden resterend DocType: Calendar View,End Date Field,Einddatum veld apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Wereldwijde sneltoetsen DocType: Desktop Icon,Page,Pagina @@ -3336,6 +3416,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite toegang verlenen DocType: DocType,DESC,DESC DocType: DocType,Naming,Benaming apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Alles selecteren +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Kolom {0} apps/frappe/frappe/config/customization.py,Custom Translations,Aangepaste vertalingen apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Vooruitgang apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,per rol @@ -3378,11 +3459,13 @@ DocType: Stripe Settings,Stripe Settings,Streep instellingen DocType: Stripe Settings,Stripe Settings,Streep instellingen DocType: Data Migration Mapping,Data Migration Mapping,Mapping van gegevensmigratie DocType: Auto Email Report,Period,periode +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Ongeveer {0} minuut resterend apps/frappe/frappe/www/login.py,Invalid Login Token,Ongeldig Aanmelden Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,afdanken apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 uur geleden DocType: Website Settings,Home Page,Home Page DocType: Error Snapshot,Parent Error Snapshot,Ouder Fout Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Kolommen van {0} toewijzen aan velden in {1} DocType: Access Log,Filters,Filters DocType: Workflow State,share-alt,delen-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Wachtrij moet onderdeel uitmaken van {0} @@ -3413,6 +3496,7 @@ DocType: Calendar View,Start Date Field,Begindataveld DocType: Role,Role Name,Rolnaam apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Overschakelen naar Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script of Query-rapporten +DocType: Contact Phone,Is Primary Mobile,Is primair mobiel DocType: Workflow Document State,Workflow Document State,Workflow Document Status apps/frappe/frappe/public/js/frappe/request.js,File too big,Bestand te groot apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-mail account meerdere keren toegevoegd @@ -3458,6 +3542,7 @@ DocType: DocField,Float,Zweven DocType: Print Settings,Page Settings,Pagina instellingen apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Besparing... apps/frappe/frappe/www/update-password.html,Invalid Password,ongeldig wachtwoord +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Succesvol geïmporteerd {0} record uit {1}. DocType: Contact,Purchase Master Manager,Aankoop Master Manager apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Klik op het vergrendelingspictogram om te schakelen tussen openbaar / privé DocType: Module Def,Module Name,Modulenaam @@ -3492,6 +3577,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Sommige van de functies werken mogelijk niet in je browser. Update alstublieft uw browser naar de nieuwste versie. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Sommige van de functies werken mogelijk niet in je browser. Update alstublieft uw browser naar de nieuwste versie. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Ik weet het niet, vraag 'help'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},heeft dit document geannuleerd {0} DocType: DocType,Comments and Communications will be associated with this linked document,Commentaren en Communicatie zal geassocieerd worden met dit gekoppelde document apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,Vet @@ -3510,6 +3596,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Toevoegen / B DocType: Comment,Published,Gepubliceerd apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Bedankt voor je email DocType: DocField,Small Text,Kleine tekst +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Nummer {0} kan niet worden ingesteld als primair voor zowel Telefoon als Mobiel. DocType: Workflow,Allow approval for creator of the document,Sta goedkeuring toe voor maker van het document apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Rapport opslaan DocType: Webhook,on_cancel,on_cancel @@ -3567,6 +3654,7 @@ DocType: Print Settings,PDF Settings,PDF-instellingen DocType: Kanban Board Column,Column Name,Kolomnaam DocType: Language,Based On,Gebaseerd op DocType: Email Account,"For more information, click here.","Klik hier voor meer informatie." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Aantal kolommen komt niet overeen met gegevens apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Maak Default apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Uitvoeringstijd: {0} sec apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Ongeldig pad opnemen @@ -3657,7 +3745,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Upload {0} bestanden DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Starttijd melden -apps/frappe/frappe/config/settings.py,Export Data,Exportgegevens +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportgegevens 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. @@ -3675,7 +3763,6 @@ DocType: Report,Disable Prepared Report,Bereid rapport uitschakelen apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Gebruiker {0} heeft gevraagd om gegevens te verwijderen apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Illegale Access Token. Probeer het opnieuw apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","De applicatie is bijgewerkt naar een nieuwe versie, gelieve deze pagina te vernieuwen" -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 Instellingen> Afdrukken en branding> Adressjabloon. DocType: Notification,Optional: The alert will be sent if this expression is true,Optioneel: De Alert zal worden verzonden als deze expressie waar is DocType: Data Migration Plan,Plan Name,Plan naam DocType: Print Settings,Print with letterhead,Afdrukken met briefhoofd @@ -3716,6 +3803,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : Kan niet Wijzigen zonder te Annuleren apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Volledige Pagina DocType: DocType,Is Child Table,Is onderliggende tabel +DocType: Data Import Beta,Template Options,Sjabloonopties apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} moet een van {1} zijn apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} is momenteel het document aan het bekijken apps/frappe/frappe/config/core.py,Background Email Queue,Achtergrond e-mail wachtrij @@ -3723,7 +3811,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Wachtwoord opnieuw i DocType: Communication,Opened,Geopend DocType: Workflow State,chevron-left,chevron-links DocType: Communication,Sending,Verzenden -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Niet toegestaan vanaf dit IP -adres DocType: Website Slideshow,This goes above the slideshow.,Dit staat boven de diavoorstelling. DocType: Contact,Last Name,Achternaam DocType: Event,Private,Prive- @@ -3737,7 +3824,6 @@ DocType: Workflow Action,Workflow Action,Workflow Actie apps/frappe/frappe/utils/bot.py,I found these: ,Ik vond deze: DocType: Event,Send an email reminder in the morning,Stuur een e-mail herinnering in de ochtend DocType: Blog Post,Published On,Gepubliceerd op -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 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} @@ -3758,7 +3844,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,waarschuwing-teken DocType: Prepared Report,Prepared Report,Voorbereid rapport apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Voeg metatags toe aan uw webpagina's -DocType: Contact,Phone Nos,Telefoonnummers 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 @@ -3776,6 +3861,7 @@ DocType: Data Migration Connector,Data Migration,Data migratie DocType: User,API Key cannot be regenerated,API-sleutel kan niet worden geregenereerd apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Er ging iets mis DocType: System Settings,Number Format,Getalnotatie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} record succesvol geïmporteerd. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Overzicht DocType: Event,Event Participants,Deelnemers aan het evenement DocType: Auto Repeat,Frequency,Frequentie @@ -3783,7 +3869,7 @@ DocType: Custom Field,Insert After,Invoegen na DocType: Event,Sync with Google Calendar,Synchroniseren met Google Agenda DocType: Access Log,Report Name,Rapportnaam DocType: Desktop Icon,Reverse Icon Color,Reverse Icon Kleur -DocType: Notification,Save,bewaren +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,bewaren apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Volgende geplande datum apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Wijs toe aan degene die de minste opdrachten heeft apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,sectie Koppen @@ -3806,11 +3892,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuratie> Formulier aanpassen 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! DocType: Desktop Icon,Category,Categorie +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Waarde {0} ontbreekt voor {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Contacten toevoegen apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landschap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Client-side script extensies in Javascript @@ -3834,6 +3920,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Update energiepunt apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Selecteer een andere betaalmethode. PayPal biedt geen ondersteuning voor transacties in valuta '{0}' DocType: Chat Message,Room Type,Kamertype +DocType: Data Import Beta,Import Log Preview,Voorbeeld van logboek importeren apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Search veld {0} is niet geldig apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,geupload bestand DocType: Workflow State,ok-circle,ok-cirkel @@ -3902,6 +3989,7 @@ DocType: DocType,Allow Auto Repeat,Automatisch herhalen toestaan apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Geen waarden om te tonen DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Email sjabloon +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} record succesvol bijgewerkt. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Gebruiker {0} heeft geen doctype toegang via rolrechten voor document {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Zowel de login en wachtwoord vereist apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vernieuw om het nieuwste document te krijgen. diff --git a/frappe/translations/no.csv b/frappe/translations/no.csv index c3e2fa0e5c..def9a6030d 100644 --- a/frappe/translations/no.csv +++ b/frappe/translations/no.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Nye {} utgivelser for de følgende appene er tilgjengelige apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Velg en beløpsfeltet. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Laster inn importfil ... DocType: Assignment Rule,Last User,Siste bruker apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","En ny oppgave, {0}, har blitt gitt til deg av {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Økt standard er lagret +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Last inn filen på nytt DocType: Email Queue,Email Queue records.,E-post Queue poster. DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Månedlig DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktivere innkommende apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Danger -apps/frappe/frappe/www/login.py,Email Address,E-Post-Adresse +DocType: Address,Email Address,E-Post-Adresse DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Ulest melding sendt apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksport er ikke tillatt. Du må {0} rolle å eksportere. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt alternativer, som "Sales Query, Support Query" etc hver på en ny linje eller atskilt med komma." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Legg til et tag ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrett -DocType: Data Migration Run,Insert,Sett +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Sett apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Tillate Google Drive Access apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Velg {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Vennligst skriv inn Base URL @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minutt 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.","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 DocType: Company History,Company History,Selskapets historie -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Tilbakestill +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Tilbakestill DocType: Workflow State,volume-up,volum opp apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks ringer API-forespørsler til webprogrammer +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Vis traceback DocType: DocType,Default Print Format,Standard Print Format DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ingen: End of arbeidsflyt apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} feltet kan ikke settes som unik i {1}, så er det ikke-entydige eksisterende verdier" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumenttyper +DocType: Global Search Settings,Document Types,Dokumenttyper DocType: Address,Jammu and Kashmir,Jammu og Kashmir DocType: Workflow,Workflow State Field,Arbeidsflyt State Feltet -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Oppsett> Bruker DocType: Language,Guest,Gjest DocType: DocType,Title Field,Tittel Feltet DocType: Error Log,Error Log,feil~~POS=TRUNC @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Gjentar som "abcabcabc" er bare litt vanskeligere å gjette enn "abc" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Hvis du tror dette er ulovlig, må du endre administratorpassordet." +DocType: Data Import Beta,Data Import Beta,Dataimport-beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} er obligatorisk DocType: Assignment Rule,Assignment Rules,Oppdragsregler DocType: Workflow State,eject,løse ut @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Arbeidsflyten Handlingsnavn apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE kan ikke bli slått sammen DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ikke en zip-fil +DocType: Global Search DocType,Global Search DocType,Global Search DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                              New {{ doc.doctype }} #{{ doc.name }}
                                                                              ","For å legge til dynamisk emne, bruk jinja-koder som
                                                                               New {{ doc.doctype }} #{{ doc.name }} 
                                                                              " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,Du DocType: Braintree Settings,Braintree Settings,Braintree Innstillinger +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Opprettet {0} poster vellykket. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Lagre filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Kan ikke slette {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Skriv inn url parameter fo apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Auto Repeat opprettet for dette dokumentet apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Se rapport i nettleseren din apps/frappe/frappe/config/desk.py,Event and other calendars.,Event og andre kalendere. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 rad obligatorisk) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Alle felt er nødvendige for å sende inn kommentaren. DocType: Custom Script,Adds a client custom script to a DocType,Legger til et kundetilpasset skript til en DocType DocType: Print Settings,Printer Name,Skrivernavn @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Bulk Update DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Tillat gjeste til Vis apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} skal ikke være det samme som {1} -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, bruk 5:10 (for verdier mellom 5 og 10)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Slett {0} produktene permanent? apps/frappe/frappe/utils/oauth.py,Not Allowed,Ikke tillatt @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Utstilling DocType: Email Group,Total Subscribers,Totalt Abonnenter apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Topp {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Radnummer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Hvis en rolle ikke har tilgang på nivå 0, da høyere nivåer er meningsløse." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Lagre som DocType: Comment,Seen,Sett @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Definerer arbeidsflyt stater og regler for et dokument. DocType: Workflow State,Filter,Filter @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Stengt DocType: Blog Settings,Blog Title,Bloggtittel apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standard roller kan ikke deaktiveres apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Chat Type +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kartkolonner DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Nyhetsbrev apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Kan ikke bruke sub-spørring i rekkefølge etter @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Legge til en kolonne apps/frappe/frappe/www/contact.html,Your email address,Din epostadresse DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} poster fra {1} ble oppdatert. DocType: Notification,Send Alert On,Send varsel om DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Tilpass Label, Print Hide, Standard etc." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping av filer ... @@ -399,6 +409,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Bruker {0} kan ikke slettes DocType: System Settings,Currency Precision,Valuta Presisjon apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,En annen transaksjon blokkerer denne. Vennligst prøv igjen om noen sekunder. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Fjern filtre DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Vedleggene kunne ikke være riktig koblet til det nye dokumentet DocType: Chat Message Attachment,Attachment,Vedlegg @@ -424,6 +435,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Kan ikke sen apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - Kunne ikke oppdatere hendelse {0} i Google Kalender, feilkode {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Søk eller skriv en kommando DocType: Activity Log,Timeline Name,Tidslinje Name +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Bare en {0} kan settes som primær. DocType: Email Account,e.g. smtp.gmail.com,f.eks smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Legg til en ny regel DocType: Contact,Sales Master Manager,Sales Master manager @@ -441,7 +453,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP mellomnavnfelt apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importerer {0} av {1} DocType: GCalendar Account,Allow GCalendar Access,Tillat GCalendar Access -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} er et obligatorisk felt +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} er et obligatorisk felt apps/frappe/frappe/templates/includes/login/login.js,Login token required,Påloggings-token kreves apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Månedlig rangering: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Velg flere listeelementer @@ -471,6 +483,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Kan ikke koble til: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Et ord i seg selv er lett å gjette. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Autotildeling mislyktes: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Søke... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Vennligst velg selskapet apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Sammenslåing er bare mulig mellom Gruppe-til-konsernet eller Leaf Node-til-Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Lagt {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Ingen tilsvarende poster. Søk noe nytt @@ -483,7 +496,6 @@ DocType: Google Settings,OAuth Client ID,OAuth-klient-ID DocType: Auto Repeat,Subject,Emne apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tilbake til skrivebordet DocType: Web Form,Amount Based On Field,Beløp basert på feltet -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Brukeren er obligatorisk for Share DocType: DocField,Hidden,Skjult DocType: Web Form,Allow Incomplete Forms,Tillat Ufullstendige skjemaer @@ -520,6 +532,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} og {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Start en samtale. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Alltid legge til "Draft" Overskrift for utskrift av utkast til dokumenter apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Feil i varsling: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden DocType: Data Migration Run,Current Mapping Start,Aktuell kartleggingstart apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-post er merket som spam DocType: Comment,Website Manager,Website manager @@ -558,6 +571,7 @@ DocType: Workflow State,barcode,strekkode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Bruk av underforespørsel eller -funksjon er begrenset apps/frappe/frappe/config/customization.py,Add your own translations,Legg til dine egne oversettelser DocType: Country,Country Name,Land Navn +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Blank mal DocType: About Us Team Member,About Us Team Member,Om oss Team Member apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Tillatelser er satt på Roller og dokumenttyper (kalt Doctyper) ved å sette rettigheter som lese, skrive, opprette, slette Send, Avbryt, Endre, Rapport, import, eksport, utskrift, e-post og Set brukertillatelser." DocType: Event,Wednesday,Onsdag @@ -569,6 +583,7 @@ DocType: Website Settings,Website Theme Image Link,Website Theme Bilde Link DocType: Web Form,Sidebar Items,Sidebar Items DocType: Web Form,Show as Grid,Vis som rutenett apps/frappe/frappe/installer.py,App {0} already installed,App {0} allerede installert +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Brukere som er tilordnet referansedokumentet, vil få poeng." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Ingen forhåndsvisning DocType: Workflow State,exclamation-sign,utrops-skilt apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,{0} filer er pakket ut @@ -604,6 +619,7 @@ DocType: Notification,Days Before,Dager før apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Daglige hendelser bør avsluttes samme dag. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redigere... DocType: Workflow State,volume-down,volum-ned +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Tilgang ikke tillatt fra denne IP-adressen apps/frappe/frappe/desk/reportview.py,No Tags,ingen tagger DocType: Email Account,Send Notification to,Sende melding til DocType: DocField,Collapsible,Sammenleggbar @@ -660,6 +676,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Utvikler apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Laget apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} i rad {1} kan ikke ha både URL og barne varer +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Det skal være minst en rad for følgende tabeller: {0} DocType: Print Format,Default Print Language,Standard utskriftsspråk apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Forfedre av apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kan ikke slettes @@ -702,6 +719,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Vert +DocType: Data Import Beta,Import File,Importer fil apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolonne {0} allerede eksisterer. DocType: ToDo,High,Høy apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Ny begivenhet @@ -730,8 +748,6 @@ DocType: User,Send Notifications for Email threads,Send varsler for e-posttråde apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ikke i utviklermodus apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Filbackup er klar -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maksimalt tillatte poeng etter multiplisering av poeng med multiplikatorverdien (Merk: For ingen grenseinnstilt verdi som 0) DocType: DocField,In Global Search,I Global Søk DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,innrykk-venstre @@ -774,6 +790,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Bruker {0} har allerede rollen {1} DocType: System Settings,Two Factor Authentication method,To faktorautentiseringsmetode apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Først angi navnet og lagre posten. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 poster apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Delt med {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Avslutte abonnementet DocType: View Log,Reference Name,Referanse Name @@ -823,6 +840,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Spor e-poststatus DocType: Note,Notify Users On Every Login,Meld brukerne på hver innlogging DocType: Note,Notify Users On Every Login,Meld brukerne på hver innlogging +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Kan ikke matche kolonne {0} med noe felt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} poster er vellykket. DocType: PayPal Settings,API Password,API Password apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Skriv inn pythonmodul eller velg kontakttype apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Feltnavn ikke satt for Tilpasset felt @@ -851,9 +870,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplisere navn {0} {1} -DocType: Email Queue,Retry,Prøv på nytt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Prøv på nytt +DocType: Contact Phone,Number,Antall DocType: Web Form Field,Web Form Field,Web Form Feltet apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Du har en ny melding fra: +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, bruk 5:10 (for verdier mellom 5 og 10)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Vennligst skriv omadresseringsadressen apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -879,7 +900,7 @@ DocType: Notification,View Properties (via Customize Form),Vis egenskaper (via T apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klikk på en fil for å velge den. DocType: Note Seen By,Note Seen By,Merk sett av apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Prøv å bruke en lengre tastatur mønster med flere svinger -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Leaderboard +,LeaderBoard,Leaderboard DocType: DocType,Default Sort Order,Standard sorteringsrekkefølge DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-post Svar Hjelp @@ -914,6 +935,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Skrive epost apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Statene for arbeidsflyt (f.eks Draft, Godkjent, Avbrutt)." DocType: Print Settings,Allow Print for Draft,Lar utskrifts for Draft +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/link_selector.js,Set Quantity,Still Antall apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Send dette dokumentet for å bekrefte DocType: Contact,Unsubscribed,Utmeldings @@ -945,6 +967,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organisasjonsenhet for bruk ,Transaction Log Report,Transaksjonsloggrapport DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Send avmeldingslinken +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Det er noen koblede poster som må opprettes før vi kan importere filen. Vil du opprette følgende manglende poster automatisk? DocType: Access Log,Method,Metode DocType: Report,Script Report,Script Rapporter DocType: OAuth Authorization Code,Scopes,scopes @@ -986,6 +1009,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Lastet opp apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Du er koblet til Internett. DocType: Social Login Key,Enable Social Login,Aktiver sosial pålogging +DocType: Data Import Beta,Warnings,advarsler DocType: Communication,Event,Hendelses apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",På {0} {1} skrev: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Kan ikke slette standard feltet. Du kan skjule det hvis du vil @@ -1041,6 +1065,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Sett Nede DocType: Kanban Board Column,Blue,Blå apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Alle tilpasninger vil bli fjernet. Vennligst bekreft. DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Eksporter feilede rader apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Gruppens navn kan ikke være tomt. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Ytterligere noder kan bare skapt under 'Gruppe' type noder DocType: SMS Parameter,Header,Header @@ -1080,13 +1105,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Forespørsel avbrutt apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Aktiver / deaktiver domener DocType: Role Permission for Page and Report,Allow Roles,Tillat Roller +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Importerte {0} poster fra {1} ble vellykket. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Enkelt Python-uttrykk, eksempel: Status i ("ugyldig")" DocType: User,Last Active,Sist aktiv DocType: Email Account,SMTP Settings for outgoing emails,SMTP-innstillinger for utgående e-post apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,velg en DocType: Data Export,Filter List,Filterliste DocType: Data Export,Excel,utmerke -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Passordet ditt er oppdatert. Her er ditt nye passord 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 @@ -1095,7 +1120,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Bruker-ID DocType: Communication,Sent,Sendte DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administrasjon DocType: User,Simultaneous Sessions,samtidige sesjoner DocType: Social Login Key,Client Credentials,klientlegitimasjon @@ -1127,7 +1151,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Oppdate apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Bruker kan ikke opprette apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fullført -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} finnes ikke apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Tilgang til Dropbox er godkjent! DocType: Customize Form,Enter Form Type,Skriv inn skjematype DocType: Google Drive,Authorize Google Drive Access,Autoriser Google Drive Access @@ -1135,7 +1158,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Ingen poster merket. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Fjern Feltet apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Du er ikke koblet til Internett. Prøv igjen etter en gang. -DocType: User,Send Password Update Notification,Send passord Update Notification apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Tillate DOCTYPE, DOCTYPE. Vær forsiktig!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Tilpassede formater for utskrift, e-post" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summen av {0} @@ -1221,6 +1243,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Feil bekreftelseskod apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Kontakter Integrasjon er deaktivert. DocType: Assignment Rule,Description,Beskrivelse DocType: Print Settings,Repeat Header and Footer in PDF,Gjenta topptekst og bunn i PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Failure DocType: Address Template,Is Default,Er Standard DocType: Data Migration Connector,Connector Type,Tilkoblingstype apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Kolonnenavn kan ikke være tomt @@ -1233,6 +1256,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Gå til {0} -siden DocType: LDAP Settings,Password for Base DN,Passord for Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabell Feltet 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/model/document.py,Action Failed,handling Kunne apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,for bruker @@ -1286,6 +1310,7 @@ DocType: Print Settings,Enable Raw Printing,Aktiver rå utskrift DocType: Website Route Redirect,Source,Source apps/frappe/frappe/templates/includes/list/filters.html,clear,klart apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,ferdig +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Oppsett> Bruker DocType: Prepared Report,Filter Values,Filtrer verdier DocType: Communication,User Tags,Bruker Tags DocType: Data Migration Run,Fail,fail @@ -1342,6 +1367,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Føl ,Activity,Aktivitet DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Hjelp: Hvis du vil koble til en annen rekord i systemet, bruke "# Form / Note / [Note navn]" som Link URL. (Ikke bruk "http: //")" DocType: User Permission,Allow,Tillate +DocType: Data Import Beta,Update Existing Records,Oppdater eksisterende poster apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,La oss unngå gjentatte ord og tegn DocType: Energy Point Rule,Energy Point Rule,Energy Point-regel DocType: Communication,Delayed,Forsinket @@ -1354,9 +1380,7 @@ DocType: Milestone,Track Field,Spor felt DocType: Notification,Set Property After Alert,Angi egenskap etter advarsel apps/frappe/frappe/config/customization.py,Add fields to forms.,Legge til felt i skjemaer. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Ser ut som noe er galt med dette nettstedet er Paypal-konfigurasjonen. -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/sidebar/review.js,Add Review,Legg til anmeldelse -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Skriftstørrelse (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Bare standard DocTypes tillates tilpasset fra Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1393,6 +1417,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Beklager! Du kan ikke slette automatisk generert kommentarer DocType: Google Settings,Used For Google Maps Integration.,Brukes til Google Maps-integrasjon. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referanse DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Ingen poster blir eksportert DocType: User,System User,System User DocType: Report,Is Standard,Er Standard DocType: Desktop Icon,_report,_rapportere @@ -1407,6 +1432,7 @@ DocType: Workflow State,minus-sign,minus-tegn apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ikke Funnet apps/frappe/frappe/www/printview.py,No {0} permission,Nei {0} tillatelse apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksport Custom Tillatelser +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ingen objekter funnet. DocType: Data Export,Fields Multicheck,Felter Multicheck DocType: Activity Log,Login,Logg Inn DocType: Web Form,Payments,Betalinger @@ -1467,8 +1493,9 @@ DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Standard Innkommende DocType: Workflow State,repeat,gjenta DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Verdien må være en av {0} DocType: Role,"If disabled, this role will be removed from all users.","Hvis deaktivert, vil denne rollen bli fjernet fra alle brukere." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Gå til {0} Liste +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gå til {0} Liste 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 @@ -1482,6 +1509,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Lokalt feltnavn DocType: DocType,Track Changes,Spor endringer DocType: Workflow State,Check,Sjekk DocType: Chat Profile,Offline,offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importert {0} DocType: User,API Key,API-nøkkel DocType: Email Account,Send unsubscribe message in email,Send unsubscribe meldingen i e-post apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Rediger tittel @@ -1508,11 +1536,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} har allerede tildelt standardverdien for {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                              No results found for '

                                                                              ,

                                                                              Ingen resultater funnet for '

                                                                              DocType: DocField,Attach Image,Fest bilde DocType: Workflow State,list-alt,list-alt apps/frappe/frappe/www/update-password.html,Password Updated,Passord Oppdatert @@ -1533,8 +1561,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ikke tillatt for {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 er ikke en gyldig rapportformat. Rapporter format skal \ ett av følgende% s DocType: Chat Message,Chat,Chat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Oppsett> Brukertillatelser DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-gruppekartlegging DocType: Dashboard Chart,Chart Options,Kartalternativer +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Uten tittel kolonne apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} fra {1} til {2} i rad # {3} DocType: Communication,Expired,Utløpt apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Synes token du bruker er ugyldig! @@ -1544,6 +1574,7 @@ DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Max Vedlegg Størrelse (i MB) apps/frappe/frappe/www/login.html,Have an account? Login,Har du en konto? Logg inn DocType: Workflow State,arrow-down,pil-ned +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rad {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Bruker ikke lov til å slette {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} av {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Sist oppdatert @@ -1561,6 +1592,7 @@ DocType: Custom Role,Custom Role,Custom rolle apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Hjem / Test mappe 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Skriv inn passordet ditt DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Tilgang Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),"(Påbudt, bindende)" 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. @@ -1635,6 +1667,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Vis instru apps/frappe/frappe/desk/form/assign_to.py,New Message,Ny melding DocType: File,Preview HTML,Forhåndsvisning HTML DocType: Desktop Icon,query-report,spørring-rapport +DocType: Data Import Beta,Template Warnings,Malvarsler apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filtre lagret DocType: DocField,Percent,Prosent apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Vennligst angi filtre @@ -1656,6 +1689,7 @@ DocType: Custom Field,Custom,Custom DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Hvis aktivert, blir brukere som logger inn fra Begrenset IP-adresse, ikke bedt om Two Factor Auth" DocType: Auto Repeat,Get Contacts,Få kontakter apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Innlegg arkivert under {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Hopp over Untitled Column DocType: Notification,Send alert if date matches this field's value,Send varsel om dato kamper denne feltets verdi DocType: Workflow,Transitions,Overganger apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} til {2} @@ -1679,6 +1713,7 @@ DocType: Workflow State,step-backward,trinn bakover apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Vennligst sett Dropbox hurtigtaster på din config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Slett denne posten for å tillate sende til denne e-postadressen +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Hvis ikke-standard port (f.eks. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Tilpass snarveier apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Bare obligatoriske feltene er nødvendige for nye rekorder. Du kan slette ikke-obligatoriske kolonner hvis du ønsker det. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Vis mer aktivitet @@ -1786,7 +1821,9 @@ DocType: Note,Seen By Table,Sett av Table apps/frappe/frappe/www/third_party_apps.html,Logged in,Logget inn apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standard Sende og Innboks DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} posten av {1} ble oppdatert. DocType: Google Drive,Send Email for Successful Backup,Send e-post for vellykket sikkerhetskopiering +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Planlegger er inaktiv. Kan ikke importere data. DocType: Print Settings,Letter,Brev DocType: DocType,"Naming Options:
                                                                              1. field:[fieldname] - By Field
                                                                              2. naming_series: - By Naming Series (field called naming_series must be present
                                                                              3. Prompt - Prompt user for a name
                                                                              4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                              5. @@ -1800,6 +1837,7 @@ DocType: GCalendar Account,Next Sync Token,Neste synkroniseringstegn DocType: Energy Point Settings,Energy Point Settings,Innstillinger for energipunkt DocType: Async Task,Succeeded,Lyktes apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obligatoriske felt kreves i {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                No results found for '

                                                                                ,

                                                                                Ingen resultater funnet for '

                                                                                apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Tilbakestill Tillatelser for {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Brukere og tillatelser DocType: S3 Backup Settings,S3 Backup Settings,S3 Sikkerhetskopieringsinnstillinger @@ -1870,6 +1908,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,I DocType: Notification,Value Change,Verdiendring DocType: Google Contacts,Authorize Google Contacts Access,Tillat tilgang til Google-kontakter apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Viser bare Numeriske felt fra Rapport +DocType: Data Import Beta,Import Type,Importtype DocType: Access Log,HTML Page,HTML-side DocType: Address,Subsidiary,Datterselskap apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Forsøker tilkobling til QZ-skuff ... @@ -1880,7 +1919,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ugyldig Ut DocType: Custom DocPerm,Write,Skrive apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Bare Administrator lov til å lage Query / Script Reports apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Oppdatering -DocType: File,Preview,Forhåndsvisning +DocType: Data Import Beta,Preview,Forhåndsvisning apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Feltet "verdi" er obligatorisk. Vennligst oppgi verdien som skal oppdateres DocType: Customize Form,Use this fieldname to generate title,Bruk denne feltnavn å generere tittel apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import E-post fra @@ -1965,6 +2004,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Nettleser stø DocType: Social Login Key,Client URLs,Klientadresser apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,mangler litt informasjon apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} ble opprettet +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Hopper over {0} av {1}, {2}" DocType: Custom DocPerm,Cancel,Avbryt apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Delete apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Fil {0} finnes ikke @@ -1992,7 +2032,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,Symbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Bekreft sletting av data -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nytt passord mailet apps/frappe/frappe/auth.py,Login not allowed at this time,Logg ikke tillatt på dette tidspunktet DocType: Data Migration Run,Current Mapping Action,Aktuell kartleggingshandling DocType: Dashboard Chart Source,Source Name,Source Name @@ -2005,6 +2044,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Etterfulgt av DocType: LDAP Settings,LDAP Email Field,LDAP E-post Feltet apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Liste +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Eksporter {0} poster apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Allerede i brukerens oppgavelisten DocType: User Email,Enable Outgoing,Aktiver utgående DocType: Address,Fax,Fax @@ -2064,8 +2104,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Skriv ut dokumenter apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hopp til felt DocType: Contact Us Settings,Forward To Email Address,Frem til e-postadresse +DocType: Contact Phone,Is Primary Phone,Er primær telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Send en e-post til {0} for å koble den hit. DocType: Auto Email Report,Weekdays,hver~~POS=TRUNC +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} poster blir eksportert apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Tittel-feltet må være en gyldig feltnavn DocType: Post Comment,Post Comment,post Kommentar apps/frappe/frappe/config/core.py,Documents,Dokumenter @@ -2083,7 +2125,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Dette feltet vises bare hvis feltnavn er definert her har verdi eller reglene er sanne (eksempler): myfield eval: doc.myfield == 'Min Value' eval: doc.age> 18 DocType: Social Login Key,Office 365,Kontor 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,I dag +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Når du har satt dette, vil brukerne bare kunne åpne dokumenter (f.eks. Blogginnlegg) der koblingen finnes (f.eks. Blogger)." +DocType: Data Import Beta,Submit After Import,Send inn etter import DocType: Error Log,Log of Scheduler Errors,Logg av Scheduler feil DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App Client Secret @@ -2102,10 +2146,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Deaktiver Customer Påmelding linken i innloggingssiden apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Tildelt til / eier DocType: Workflow State,arrow-left,pil-venstre +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Eksporter 1 post DocType: Workflow State,fullscreen,full skjerm DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Lag diagram apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ikke importer DocType: Web Page,Center,Sentrum DocType: Notification,Value To Be Set,Verdi som skal settes apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Rediger {0} @@ -2125,6 +2171,7 @@ DocType: Print Format,Show Section Headings,Vis avsnittsoverskrifter DocType: Bulk Update,Limit,Grense apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Vi har mottatt en forespørsel om sletting av {0} data tilknyttet: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Legg til en ny seksjon +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrerte poster apps/frappe/frappe/www/printview.py,No template found at path: {0},Ingen mal funnet på bane: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ingen e-postkonto DocType: Comment,Cancelled,Avbrutt @@ -2212,10 +2259,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globale søkedokumenttyper tilbakestilt. ,Lead Conversion Time,Lead Conversion Time apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Bygg Rapporter DocType: Note,Notify users with a popup when they log in,Varsle brukere med en popup når de logger inn +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Kjernemoduler {0} kan ikke søkes i Global Search. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Åpne Chat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} finnes ikke, velg et nytt mål å fusjonere" DocType: Data Migration Connector,Python Module,Python-modul @@ -2232,8 +2282,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Lukk 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Oppsett> Brukertillatelser -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Oppdater +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Oppdater DocType: Transaction Log,Transaction Hash,Transaksjonshash DocType: Error Snapshot,Snapshot View,Snapshot Vis apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Ta vare på Nyhetsbrev før sending @@ -2249,6 +2298,7 @@ DocType: Data Import,In Progress,I prosess apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,I kø for sikkerhetskopiering. Det kan ta noen minutter til en time. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Brukertillatelse eksisterer allerede +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kartlegger kolonne {0} til felt {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Se {0} DocType: User,Hourly,Hver time apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrer OAuth-klient app @@ -2261,7 +2311,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} kan ikke være "{2}". Det bør være en av "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},oppnådd av {0} via automatisk regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} eller {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Passord Update DocType: Workflow State,trash,trash DocType: System Settings,Older backups will be automatically deleted,Eldre sikkerhetskopier vil bli slettet automatisk apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ugyldig tilgangsnøkkel-ID eller hemmelig tilgangsnøkkel. @@ -2290,6 +2339,7 @@ DocType: Address,Preferred Shipping Address,Foretrukne leveringsadresse apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Med Letter hodet apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} opprettet dette {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Ikke tillatt for {0}: {1} i rad {2}. Begrenset felt: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-vest-en DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Hvis dette er merket, importeres rader med gyldige data, og ugyldige rader blir dumpet til en ny fil for at du skal importere senere." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentet er kun redigeres av brukerne av rolle @@ -2316,6 +2366,7 @@ DocType: Custom Field,Is Mandatory Field,Er Obligatoriske felt DocType: User,Website User,Website User apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Noen kolonner kan bli avskåret når du skriver ut til PDF. Forsøk å holde antall kolonner under 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Ikke equals +DocType: Data Import Beta,Don't Send Emails,Ikke send e-post DocType: Integration Request,Integration Request Service,Integrasjon be om service DocType: Access Log,Access Log,Tilgangslogg DocType: Website Script,Script to attach to all web pages.,Script for å feste til alle nettsider. @@ -2356,6 +2407,7 @@ DocType: Contact,Passive,Passiv DocType: Auto Repeat,Accounts Manager,Accounts Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Oppgave for {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Din betaling er kansellert. +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/views/reports/report_view.js,Select File Type,Velg filtype apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Se alt DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor @@ -2388,6 +2440,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumentstatus apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Godkjenning påkrevd +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Følgende poster må opprettes før vi kan importere filen. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Autorisasjonskode apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Ikke lov til å importere DocType: Deleted Document,Deleted DocType,slettet DOCTYPE @@ -2442,8 +2495,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API-legitimasjon apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start mislyktes apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start mislyktes apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Denne e-posten ble sendt til {0} og kopieres til {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},sendte inn dette dokumentet {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden DocType: Social Login Key,Provider Name,Navn på leverandør apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Opprett en ny {0} DocType: Contact,Google Contacts,Google-kontakter @@ -2451,6 +2504,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar-konto DocType: Email Rule,Is Spam,er Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapporter {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Åpen {0} +DocType: Data Import Beta,Import Warnings,Importvarsler DocType: OAuth Client,Default Redirect URI,Standard Omadresser URI DocType: Auto Repeat,Recipients,Mottakere DocType: System Settings,Choose authentication method to be used by all users,Velg autentiseringsmetode som skal brukes av alle brukere @@ -2569,6 +2623,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Rapporten bl apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook Error DocType: Email Flag Queue,Unread,ulest DocType: Bulk Update,Desk,Skrivebord +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Hopp over kolonne {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filteret må være en tuple eller liste (i en liste) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Skriv en SELECT spørring. Note resultat er ikke paginert (alle data blir sendt på en gang). DocType: Email Account,Attachment Limit (MB),Limit vedlegg (MB) @@ -2583,6 +2638,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Opprett ny DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-post ble ikke sendt til {0} (utmeldings / deaktivert) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Velg felt som skal eksporteres DocType: Async Task,Traceback,Spore tilbake DocType: Currency,Smallest Currency Fraction Value,Minste Valuta Fraksjon Verdi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Utarbeider rapport @@ -2591,6 +2647,7 @@ DocType: Workflow State,th-list,th-liste DocType: Web Page,Enable Comments,Aktiver Kommentarer apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notater DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Begrense bruker fra denne IP-adresse. Flere IP-adresser kan legges ved å skille med komma. Aksepterer også delvis IP-adresser som (111.111.111) +DocType: Data Import Beta,Import Preview,Importer forhåndsvisning DocType: Communication,From,Fra apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Velg en gruppe node først. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Finn {0} i {1} @@ -2690,6 +2747,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Mellom DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,I kø +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Oppsett> Tilpass skjema DocType: Braintree Settings,Use Sandbox,bruk Sandbox apps/frappe/frappe/utils/goal.py,This month,Denne måneden apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format @@ -2705,6 +2763,7 @@ DocType: Session Default,Session Default,Økt standard DocType: Chat Room,Last Message,Siste melding DocType: OAuth Bearer Token,Access Token,Tilgang Token DocType: About Us Settings,Org History,Org Historie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Omtrent {0} minutter igjen DocType: Auto Repeat,Next Schedule Date,Neste planleggingsdato DocType: Workflow,Workflow Name,Arbeidsflyt Name DocType: DocShare,Notify by Email,Varsle på e-post @@ -2734,6 +2793,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Forfatter apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Fortsett Sending apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Gjenåpne +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Vis advarsler apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Kjøp User DocType: Data Migration Run,Push Failed,Push mislyktes @@ -2772,6 +2832,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Avanse apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Du har ikke lov til å se nyhetsbrevet. DocType: User,Interests,Interesser apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Instruksjoner Password Reset har blitt sendt til din e-post +DocType: Energy Point Rule,Allot Points To Assigned Users,Tildel poeng til tildelte brukere apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nivå 0 er for dokumentnivåtillatelser, \ høyere nivåer for feltnivåtillatelser." DocType: Contact Email,Is Primary,Er primær @@ -2795,6 +2856,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Publiserbar nøkkel DocType: Stripe Settings,Publishable Key,Publiserbar nøkkel apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Start Importer +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Eksporttype DocType: Workflow State,circle-arrow-left,sirkel-pil-venstre DocType: System Settings,Force User to Reset Password,Tving bruker til å tilbakestille passord apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","For å få den oppdaterte rapporten, klikk på {0}." @@ -2807,13 +2869,16 @@ DocType: Contact,Middle Name,Mellomnavn DocType: Custom Field,Field Description,Felt Beskrivelse apps/frappe/frappe/model/naming.py,Name not set via Prompt,Navn ikke satt via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-post innboksen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Oppdaterer {0} av {1}, {2}" DocType: Auto Email Report,Filters Display,Filter Skjerm apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Feltet "amend_from" må være til stede for å gjøre en endring. +DocType: Contact,Numbers,tall apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} satte pris på arbeidet ditt med {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Lagre filtre DocType: Address,Plant,Plant apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svar alle DocType: DocType,Setup,Setup +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Alle poster DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,E-postadresse hvis Google-kontakter skal synkroniseres. DocType: Email Account,Initial Sync Count,Initial Sync Count DocType: Workflow State,glass,glass @@ -2838,7 +2903,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Vis popup-forhåndsvisning apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dette er en topp-100 vanlige passord. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Vennligst aktiver pop-ups -DocType: User,Mobile No,Mobile No +DocType: Contact,Mobile No,Mobile No DocType: Communication,Text Content,tekst~~POS=TRUNC DocType: Customize Form Field,Is Custom Field,Er Tilpasset felt DocType: Workflow,"If checked, all other workflows become inactive.","Hvis det er merket, alle andre arbeidsflyter blir inaktive." @@ -2884,6 +2949,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Legg apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Navnet på den nye utskriftsformat apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Bytt sidepanel DocType: Data Migration Run,Pull Insert,Trekk inn +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Maksimum poeng tillatt etter multiplisering av poeng med multiplikatorverdien (Merk: For ingen grenser, la dette feltet være tomt eller sett 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Ugyldig mal apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Ulovlig SQL-spørring apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obligatorisk: DocType: Chat Message,Mentions,nevner @@ -2898,6 +2966,7 @@ DocType: User Permission,User Permission,Bruker Tillatelse apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blogg apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ikke installert apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Last ned med data +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},endrede verdier for {0} {1} DocType: Workflow State,hand-right,hånd høyre DocType: Website Settings,Subdomain,Underdomene DocType: S3 Backup Settings,Region,Region @@ -2925,10 +2994,12 @@ DocType: Braintree Settings,Public Key,Offentlig nøkkel DocType: GSuite Settings,GSuite Settings,GSuite Innstillinger DocType: Address,Links,Lenker DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Bruker e-postadressenavnet som er nevnt på denne kontoen som avsenderens navn for alle e-postmeldinger som sendes med denne kontoen. +DocType: Energy Point Rule,Field To Check,Felt å sjekke apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Kontakter - Kunne ikke oppdatere kontakten i Google Kontakter {0}, feilkode {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Vennligst velg dokumenttype. apps/frappe/frappe/model/base_document.py,Value missing for,Verdi mangler for apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Legg Child +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Importer fremdrift DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Hvis betingelsen er tilfreds, vil brukeren bli belønnet med poengene. f.eks. doc.status == 'Stengt'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Skrevet Record kan ikke slettes. @@ -2965,6 +3036,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autoriser Google Kalen apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Siden du leter etter mangler. Dette kan være fordi det flyttes eller det er en skrivefeil i linken. apps/frappe/frappe/www/404.html,Error Code: {0},Feilkode: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrivelse for notering siden, i klartekst, bare et par linjer. (maks 140 tegn)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} er obligatoriske felt DocType: Workflow,Allow Self Approval,Tillat selv godkjenning DocType: Event,Event Category,Hendelse Kategori apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3012,8 +3084,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Flytte til DocType: Address,Preferred Billing Address,Foretrukne faktureringsadresse apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,For mange skriver i én forespørsel. Vennligst send mindre forespørsler apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive er konfigurert. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Dokumenttype {0} har blitt gjentatt. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,verdier Endret DocType: Workflow State,arrow-up,pil opp +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Det skal være minst en rad for {0} tabellen apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","For å konfigurere Auto Repeat, aktiverer du "Tillat Auto Repeat" fra {0}." DocType: OAuth Bearer Token,Expires In,utløper om DocType: DocField,Allow on Submit,Tillat på Send @@ -3100,6 +3174,7 @@ DocType: Custom Field,Options Help,Alternativer Hjelp 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 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 @@ -3117,6 +3192,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code DocType: Webhook,Webhook Request,Webhook-forespørsel apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Mislyktes: {0} til {1}: {2} DocType: Data Migration Mapping,Mapping Type,Mapping Type +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Velg Obligatorisk apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Bla apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Ingen behov for symboler, tall eller store bokstaver." DocType: DocField,Currency,Valuta @@ -3147,11 +3223,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Brevhode basert på apps/frappe/frappe/utils/oauth.py,Token is missing,Token mangler apps/frappe/frappe/www/update-password.html,Set Password,Lag et passord +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Importerte {0} poster ble vellykket. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,"Merk: Hvis du endrer sidenavnet, bryter du forrige URL til denne siden." apps/frappe/frappe/utils/file_manager.py,Removed {0},Fjernet {0} DocType: SMS Settings,SMS Settings,SMS-innstillinger DocType: Company History,Highlight,Høydepunktet DocType: Dashboard Chart,Sum,Sum +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,via dataimport DocType: OAuth Provider Settings,Force,Makt apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Sist synkronisert {0} DocType: DocField,Fold,Brett @@ -3188,6 +3266,7 @@ DocType: Workflow State,Home,Hjem DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Brukeren kan logge inn med e-post-ID eller brukernavn DocType: Workflow State,question-sign,spørsmålstegn +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} er deaktivert apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Feltet "rute" er obligatorisk for Webvisninger apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Sett inn kolonne før {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Brukeren fra dette feltet vil bli belønnet poeng @@ -3221,6 +3300,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Items DocType: Notification,Print Settings,Utskriftsinnstillinger DocType: Page,Yes,Ja DocType: DocType,Max Attachments,Maks Vedlegg +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Omtrent {0} sekunder igjen DocType: Calendar View,End Date Field,Sluttdato felt apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale snarveier DocType: Desktop Icon,Page,Side @@ -3331,6 +3411,7 @@ DocType: GSuite Settings,Allow GSuite access,Tillat GSuite-tilgang DocType: DocType,DESC,DESC DocType: DocType,Naming,Naming apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Velg Alle +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Kolonne {0} apps/frappe/frappe/config/customization.py,Custom Translations,Custom Oversettelser apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Framgang apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,av Rolle @@ -3372,11 +3453,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Sen DocType: Stripe Settings,Stripe Settings,Stripe Innstillinger DocType: Data Migration Mapping,Data Migration Mapping,Data Migrering Kartlegging DocType: Auto Email Report,Period,Periode +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Omtrent {0} minutt igjen apps/frappe/frappe/www/login.py,Invalid Login Token,Ugyldig Pålogging Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,kast apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 time siden DocType: Website Settings,Home Page,Hjemmeside DocType: Error Snapshot,Parent Error Snapshot,Parent Feil Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Kartkolonner fra {0} til felt i {1} DocType: Access Log,Filters,Filtre DocType: Workflow State,share-alt,aksje-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Køen bør være en av {0} @@ -3396,6 +3479,7 @@ DocType: Calendar View,Start Date Field,Startdatafelt DocType: Role,Role Name,Rolle Navn apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Bytt til skrivebord apps/frappe/frappe/config/core.py,Script or Query reports,Script eller Query rapporter +DocType: Contact Phone,Is Primary Mobile,Er primær mobil DocType: Workflow Document State,Workflow Document State,Arbeidsflyt Document State apps/frappe/frappe/public/js/frappe/request.js,File too big,Fil for stor apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-postkonto lagt til flere ganger @@ -3441,6 +3525,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Sideinnstillinger apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Lagrer ... apps/frappe/frappe/www/update-password.html,Invalid Password,ugyldig passord +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importert {0} post fra {1}. DocType: Contact,Purchase Master Manager,Kjøp Master manager apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Klikk på låseikonet for å skifte offentlig / privat DocType: Module Def,Module Name,Module Name @@ -3475,6 +3560,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Noen av funksjonene fungerer kanskje ikke i nettleseren din. Vennligst oppdater nettleseren din til den nyeste versjonen. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Noen av funksjonene fungerer kanskje ikke i nettleseren din. Vennligst oppdater nettleseren din til den nyeste versjonen. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Vet ikke, spør 'hjelp'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},kansellerte dette dokumentet {0} DocType: DocType,Comments and Communications will be associated with this linked document,Kommentarer og kommunikasjon vil bli assosiert med denne koblet dokument apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,fet @@ -3493,6 +3579,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Legg til / Ad DocType: Comment,Published,Publisert apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Takk for din e-post DocType: DocField,Small Text,Liten tekst +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Nummer {0} kan ikke angis som primært for telefon så vel som mobilnummer. DocType: Workflow,Allow approval for creator of the document,Tillat godkjenning for skaperen av dokumentet apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Lagre rapport DocType: Webhook,on_cancel,on_cancel @@ -3550,6 +3637,7 @@ DocType: Print Settings,PDF Settings,PDF-innstillinger DocType: Kanban Board Column,Column Name,Kolonnenavn DocType: Language,Based On,Basert På DocType: Email Account,"For more information, click here.","For mer informasjon, klikk her ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Antall kolonner samsvarer ikke med data apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Gjøre standard apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Utførelsestid: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Ugyldig inkluder banen @@ -3640,7 +3728,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Last opp {0} filer DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Rapporter starttidspunkt -apps/frappe/frappe/config/settings.py,Export Data,Eksporter data +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Eksporter data 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. @@ -3658,7 +3746,6 @@ DocType: Report,Disable Prepared Report,Deaktiver utarbeidet rapport apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Bruker {0} har bedt om sletting av data apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,"Ulovlig tilgang Token. Vær så snill, prøv på nytt" apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Søknaden har blitt oppdatert til en ny versjon, kan du oppdatere denne siden" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,Valgfritt: Varselet vil bli sendt hvis dette uttrykket er sant DocType: Data Migration Plan,Plan Name,Plan navn DocType: Print Settings,Print with letterhead,Skriv ut med brev @@ -3699,6 +3786,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Kan ikke satt endre uten Avbryt apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Page DocType: DocType,Is Child Table,Er barnet tabellen +DocType: Data Import Beta,Template Options,Malalternativer apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} må være en av {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} er for tiden leser dette dokumentet apps/frappe/frappe/config/core.py,Background Email Queue,Bakgrunn Email Queue @@ -3706,7 +3794,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Reset Passord DocType: Communication,Opened,Åpnet DocType: Workflow State,chevron-left,chevron-venstre DocType: Communication,Sending,Sende -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Ikke tillatt fra denne IP-adressen DocType: Website Slideshow,This goes above the slideshow.,Dette går over fremvisningen. DocType: Contact,Last Name,Etternavn DocType: Event,Private,Privat @@ -3720,7 +3807,6 @@ DocType: Workflow Action,Workflow Action,Arbeidsflyt Handling apps/frappe/frappe/utils/bot.py,I found these: ,Jeg fant disse: DocType: Event,Send an email reminder in the morning,Send en e-post påminnelse i morgen DocType: Blog Post,Published On,Publisert på -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 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} @@ -3741,7 +3827,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,varselskilt DocType: Prepared Report,Prepared Report,Utarbeidet rapport apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Legg til metakoder på websidene dine -DocType: Contact,Phone Nos,Telefon nr 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 @@ -3759,6 +3844,7 @@ DocType: Data Migration Connector,Data Migration,Dataoverføring DocType: User,API Key cannot be regenerated,API-nøkkelen kan ikke regenereres apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Noe gikk galt DocType: System Settings,Number Format,Number Format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Importert {0} post. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sammendrag DocType: Event,Event Participants,Eventdeltakere DocType: Auto Repeat,Frequency,Hyppighet @@ -3766,7 +3852,7 @@ DocType: Custom Field,Insert After,Sett Etter DocType: Event,Sync with Google Calendar,Synkroniser med Google Kalender DocType: Access Log,Report Name,Rapportnavn DocType: Desktop Icon,Reverse Icon Color,Omvendt Ikon Color -DocType: Notification,Save,Lagre +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Lagre apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Neste planlagt dato apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Tildel den som har minst oppdrag apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,seksjon Overskrift @@ -3789,11 +3875,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Oppsett> Tilpass skjema 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 DocType: Desktop Icon,Category,Kategori +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Verdien {0} mangler for {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Legg til kontakter apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Klientsiden skript utvidelser i Javascript @@ -3817,6 +3903,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Oppdatering av energipunkt apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Vennligst velg en annen betalingsmåte. PayPal støtter ikke transaksjoner i valuta '{0} DocType: Chat Message,Room Type,Romtype +DocType: Data Import Beta,Import Log Preview,Forhåndsvisning av importlogg apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Søkefelt {0} er ikke gyldig apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,lastet opp fil DocType: Workflow State,ok-circle,ok-sirkel @@ -3885,6 +3972,7 @@ DocType: DocType,Allow Auto Repeat,Tillat automatisk gjenta apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ingen verdier å vise DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-postskjema +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} posten ble vellykket. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Bruker {0} har ikke tilgang til doktype via rolletillatelse for dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Både brukernavn og passord kreves apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vennligst oppdater for å få det siste dokumentet. diff --git a/frappe/translations/pl.csv b/frappe/translations/pl.csv index 3666908569..81322cd674 100644 --- a/frappe/translations/pl.csv +++ b/frappe/translations/pl.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Dostępne są nowe wersje {} dla następujących aplikacji apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Proszę wybrać kwotę Field. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Ładowanie pliku importu ... DocType: Assignment Rule,Last User,Ostatni użytkownik apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nowe zadanie, {0}, zostało przypisane do Ciebie przez {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Zapisane ustawienia domyślne sesji +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Załaduj ponownie plik DocType: Email Queue,Email Queue records.,Zapisy email kolejce. DocType: Post,Post,Stanowisko DocType: Address,Punjab,Pendżab @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Miesięcznie DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Włącz Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Niebezpieczeństwo -apps/frappe/frappe/www/login.py,Email Address,E-mail +DocType: Address,Email Address,E-mail DocType: Workflow State,th-large, DocType: Communication,Unread Notification Sent,Nieprzeczytane Powiadomienie Wysłano apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,eksport nie jest dozwolony. Potrzebujesz {0} modeli żeby eksportować @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.", apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Dodaj tag ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret -DocType: Data Migration Run,Insert,Wstaw +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Wstaw apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Pozwól na dostęp do Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Wybierz {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Wprowadź bazowy adres URL @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuta t 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 DocType: Company History,Company History,Historia firmy -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Nastawić +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Nastawić DocType: Workflow State,volume-up,zwiększ-głośność apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks wywołujący żądania API w aplikacjach internetowych +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Pokaż śledzenie DocType: DocType,Default Print Format,Domyślny format wydruku DocType: Workflow State,Tags,Tagi apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Brak: Zakończenie przepływu prac apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} pole nie może być ustawiony jako jedyne w {1}, jako że nie są unikatowe istniejących wartości" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Typy dokumentów +DocType: Global Search Settings,Document Types,Typy dokumentów DocType: Address,Jammu and Kashmir,Jammu i Kaszmir DocType: Workflow,Workflow State Field,Pole Stanu Przepływu Pracy -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ustawienia> Użytkownik DocType: Language,Guest,Gość DocType: DocType,Title Field,Pole tytułu DocType: Error Log,Error Log,Dziennik błędów @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Powtarza jak "abcabcabc" są tylko nieznacznie trudniejsze do odgadnięcia niż "abc" DocType: Notification,Channel,Kanał apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Jeśli uważasz, że to wynik nieuprawnionego dostępu, należy zmienić hasło administratora." +DocType: Data Import Beta,Data Import Beta,Beta importu danych apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} jest obowiązkowe DocType: Assignment Rule,Assignment Rules,Zasady przydziału DocType: Workflow State,eject,wysuń @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Nazwa Akcji Przepływu Prac apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType nie może być połączony DocType: Web Form Field,Fieldtype,Typ pola apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nie jest to plik zip +DocType: Global Search DocType,Global Search DocType,DocType wyszukiwania globalnego DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                New {{ doc.doctype }} #{{ doc.name }}
                                                                                ","Aby dodać temat dynamiczny, użyj tagów jinja, takich jak
                                                                                 New {{ doc.doctype }} #{{ doc.name }} 
                                                                                " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,Ty DocType: Braintree Settings,Braintree Settings,Ustawienia Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Pomyślnie utworzono {0} rekordów. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Zapisz filtr DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Nie można usunąć {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Wpisz URL dla wiadomości apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Automatyczne powtarzanie utworzone dla tego dokumentu apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Wyświetl raport w przeglądarce apps/frappe/frappe/config/desk.py,Event and other calendars.,Wydarzenie i inne kalendarze. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 wiersz obowiązkowy) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,"Wszystkie pola są konieczne, aby przesłać komentarz." DocType: Custom Script,Adds a client custom script to a DocType,Dodaje niestandardowy skrypt klienta do DocType DocType: Print Settings,Printer Name,Nazwa drukarki @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Zbiorcza Aktualizacja DocType: Workflow State,chevron-up, DocType: DocType,Allow Guest to View,Pozostawić do gości Zobacz apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} nie powinno być takie samo jak {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Usuń {0} Pozycje na stałe? apps/frappe/frappe/utils/oauth.py,Not Allowed,Nie dozwolone @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Wyświetl DocType: Email Group,Total Subscribers,Wszystkich zapisani apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Numer wiersza apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jeśli Twoje uprawnienia nie dają Ci dostępu na poziomie 0, to wyższe poziomy są bez znaczenia." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Zapisz jako DocType: Comment,Seen,Widziany @@ -308,6 +315,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Definiuje stany przepływu pracy i zasady dokumentu. DocType: Workflow State,Filter,filtr @@ -330,6 +338,7 @@ DocType: Activity Log,Closed,Zamknięte DocType: Blog Settings,Blog Title,Tytuł bloga apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standardowe role nie można wyłączyć apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Typ czatu +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kolumny mapy DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Nie można używać sub-zapytanie w kolejności @@ -365,6 +374,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Dodaj kolumnę apps/frappe/frappe/www/contact.html,Your email address,Twój adres e-mail DocType: Desktop Icon,Module,Moduł +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Pomyślnie zaktualizowano {0} rekordów z {1}. DocType: Notification,Send Alert On,Wyślij alarm na DocType: Customize Form,"Customize Label, Print Hide, Default etc.", apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Rozpakowywanie plików ... @@ -399,6 +409,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Użytkow DocType: System Settings,Currency Precision,Precyzja walutowa DocType: System Settings,Currency Precision,Precyzja walutowa apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Kolejna transakcja jest blokowanie tego. Prosimy spróbować ponownie za kilka sekund. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Wyczyść filtry DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Załączniki nie mogły być poprawnie powiązane z nowym dokumentem DocType: Chat Message Attachment,Attachment,Załącznik @@ -424,6 +435,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nie można w apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalendarz Google - nie można zaktualizować zdarzenia {0} w kalendarzu Google, kod błędu {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Wyszukaj lub wpisz polecenie DocType: Activity Log,Timeline Name,Timeline Nazwa +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Tylko jeden {0} może być ustawiony jako podstawowy. DocType: Email Account,e.g. smtp.gmail.com,np smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Dodaj nową regułę DocType: Contact,Sales Master Manager,Główny Menadżer Sprzedaży @@ -441,7 +453,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Pole nazwy środkowej LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importowanie {0} z {1} DocType: GCalendar Account,Allow GCalendar Access,Zezwalaj na dostęp do GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} jest polem obowiązkowym +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} jest polem obowiązkowym apps/frappe/frappe/templates/includes/login/login.js,Login token required,Wymagany token logowania apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Ranking miesięczny: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Wybierz wiele elementów listy @@ -471,6 +483,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Nie można połączyć: apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Słowo samo w sobie jest łatwe do odgadnięcia. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automatyczne przypisanie nie powiodło się: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Szukanie... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Proszę wybrać firmę apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Łączenie jest możliwe tylko pomiędzy Grupa-Grupa lub Liść-Liść apps/frappe/frappe/utils/file_manager.py,Added {0},Dodano {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Brak aktualności ogłoszeń. Szukać czegoś nowego @@ -483,7 +496,6 @@ DocType: Google Settings,OAuth Client ID,Identyfikator klienta OAuth DocType: Auto Repeat,Subject,Temat apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Powrót do Pulpitu DocType: Web Form,Amount Based On Field,Kwota wg Polu -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Skonfiguruj domyślne konto e-mail w Ustawienia> E-mail> Konto e-mail apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Konieczny jest Użytkownik by Udostępniać DocType: DocField,Hidden,ukryty DocType: Web Form,Allow Incomplete Forms,Pozwól Niekompletne wnioski @@ -520,6 +532,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Rozpocznij rozmowę. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Zawsze dodawaj nagłówek ""Wersja robocza"" podczas drukowania dokumentów w wersji roboczej" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Błąd w powiadomieniu: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} lat temu DocType: Data Migration Run,Current Mapping Start,Bieżący start mapowania apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email został oznaczony jako spam DocType: Comment,Website Manager,Manager strony WWW @@ -558,6 +571,7 @@ DocType: Workflow State,barcode,kod kreskowy apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Wykorzystanie pod-zapytania lub funkcji jest ograniczone apps/frappe/frappe/config/customization.py,Add your own translations,Dodaj własne tłumaczenia DocType: Country,Country Name,Nazwa kraju +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Pusty szablon DocType: About Us Team Member,About Us Team Member,O Nas Członek Zespołu apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Uprawnienia są ustawiane dla Roli i Typu dokumentu (zwane DocTypes) poprzez ustawianie praw takich jak: Odczyt, Zapis, Tworzenie, Usuwanie, Zatwierdzanie, Anulowanie, Poprawianie, Raportowanie, Importowanie, Exsportowanie, Drukowanie, Wysyłka e-mail oraz Ustawianie uprawnień użytkowanika." DocType: Event,Wednesday,Środa @@ -569,6 +583,7 @@ DocType: Website Settings,Website Theme Image Link,Link do obrazka stylu strony DocType: Web Form,Sidebar Items,Elementy paska bocznego DocType: Web Form,Show as Grid,Pokaż jako siatkę apps/frappe/frappe/installer.py,App {0} already installed,Aplikacja {0} już została zainstalowana +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Użytkownicy przypisani do dokumentu referencyjnego otrzymają punkty. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Brak podglądu DocType: Workflow State,exclamation-sign,wykrzyknik apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Rozpakowane pliki {0} @@ -604,6 +619,7 @@ DocType: Notification,Days Before,Dni przed apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Codzienne wydarzenia powinny zakończyć się w tym samym dniu. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edytować... DocType: Workflow State,volume-down,obniż-głośność +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Dostęp niedozwolony z tego adresu IP 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 @@ -660,6 +676,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Deweloper apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Stworzony apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} w wierszu {1} nie może mieć jednocześnie obu przypisanych paramentów typu URL i elementu zależnego +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Powinien być co najmniej jeden wiersz dla następujących tabel: {0} DocType: Print Format,Default Print Language,Domyślny język wydruku apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Przodkowie apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} nie może być usunięty @@ -702,6 +719,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd, DocType: Integration Request,Host,Gospodarz +DocType: Data Import Beta,Import File,Importować plik apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolumna {0} istnieje. DocType: ToDo,High,Wysoki apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nowe wydarzenie @@ -730,8 +748,6 @@ DocType: User,Send Notifications for Email threads,Wyślij powiadomienia o wątk apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof. apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nie w trybie dewelopera apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Kopie zapasowe plików są gotowe -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maksymalne dozwolone punkty po pomnożeniu punktów przez wartość mnożnika (Uwaga: W przypadku braku limitu wartość ustawiona jako 0) DocType: DocField,In Global Search,W Global Search DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left, @@ -774,6 +790,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Użytkownik '{0}' ma już rolę '{1}' DocType: System Settings,Two Factor Authentication method,Metoda uwierzytelniania dwóch czynników apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najpierw ustaw nazwę i zapisz rekord. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 rekordów apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Udostępnione {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Wyrejestrowanie DocType: View Log,Reference Name,Nazwa Odniesienia @@ -824,6 +841,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Śledź status e-mail DocType: Note,Notify Users On Every Login,Powiadamiaj użytkowników o każdym logowaniu DocType: Note,Notify Users On Every Login,Powiadamiaj użytkowników o każdym logowaniu +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Nie można dopasować kolumny {0} z żadnym polem +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Pomyślnie zaktualizowano rekordy {0}. DocType: PayPal Settings,API Password,API Hasło apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Wejdź do modułu python lub wybierz typ złącza apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Nazwa pola nie jest ustawiona w polu niestandardowym @@ -852,9 +871,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Nazwa zduplikowana {0} {1} -DocType: Email Queue,Retry,Spróbować ponownie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Spróbować ponownie +DocType: Contact Phone,Number,Numer DocType: Web Form Field,Web Form Field,Pole formularza Internetowego apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Masz nową wiadomość od: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edytuj HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Wprowadź przekierowanie apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -880,7 +901,7 @@ DocType: Notification,View Properties (via Customize Form),Właściwości widoku apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Kliknij plik, aby go wybrać." DocType: Note Seen By,Note Seen By,Uwaga postrzegane przez apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Spróbuj użyć dłuższego wzór klawiatury z większą ilością zwojów -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Tabela Liderów +,LeaderBoard,Tabela Liderów DocType: DocType,Default Sort Order,Domyślny porządek sortowania DocType: Address,Rajasthan,Radżastanie DocType: Email Template,Email Reply Help,Email Reply Help @@ -915,6 +936,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Komponować wiadomość e-mail apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Stan postępu prac (np. Szkic, Zatwierdzony, Odwołany)." DocType: Print Settings,Allow Print for Draft,Pozwól na drukowanie dla Wersji roboczych +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/link_selector.js,Set Quantity,Ustaw ilość apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,"Prześlij ten dokument, aby potwierdzić" DocType: Contact,Unsubscribed,Nie zarejestrowany @@ -946,6 +968,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Jednostka organizacyjna dla ,Transaction Log Report,Raport dziennika transakcji DocType: Custom DocPerm,Custom DocPerm,niestandardowe DocPerm DocType: Newsletter,Send Unsubscribe Link,Wyślij link Wyrejestrowanie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Istnieje kilka powiązanych rekordów, które należy utworzyć, zanim będziemy mogli zaimportować plik. Czy chcesz automatycznie utworzyć następujące brakujące rekordy?" DocType: Access Log,Method,Metoda DocType: Report,Script Report,Skrypt Raportu DocType: OAuth Authorization Code,Scopes,zakresy @@ -987,6 +1010,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Przesłano pomyślnie apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Jesteś podłączony do Internetu. DocType: Social Login Key,Enable Social Login,Włącz logowanie społecznościowe +DocType: Data Import Beta,Warnings,Ostrzeżenia DocType: Communication,Event,Wydarzenie apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","W terminie {0}, {1} napisał:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Nie można usunąć standardowe pole. Możesz ukryć go, jeśli chcesz" @@ -1042,6 +1066,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Wstaw pon DocType: Kanban Board Column,Blue,Niebieski apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Wszystkie zmiany zostaną usunięte. Proszę potwierdzić. DocType: Page,Page HTML,Strona HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Eksportuj błędne wiersze apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Nazwa grupy nie może być pusta. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,"Kolejne powiązania mogą być tworzone tylko w powiązaniach typu ""grupa""" DocType: SMS Parameter,Header,Nagłówek @@ -1081,13 +1106,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Upłynął limit czasu żądania apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Włącz / wyłącz Domeny DocType: Role Permission for Page and Report,Allow Roles,Pozostawić Roles +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Pomyślnie zaimportowano {0} rekordów z {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Proste wyrażenie w języku Python, przykład: Status w („Nieprawidłowy”)" DocType: User,Last Active,Czas ostatniej aktywności DocType: Email Account,SMTP Settings for outgoing emails,Ustawienia SMTP dla wiadomości wychodzących apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,wybierz DocType: Data Export,Filter List,Lista filtrów DocType: Data Export,Excel,Przewyższać -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Twoje hasło zostało zaktualizowane. Oto nowe hasło 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 @@ -1096,7 +1121,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID Użytkownika DocType: Communication,Sent,Wysłano DocType: Address,Kerala,Kerala -DocType: File,Lft,lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Podawanie DocType: User,Simultaneous Sessions,Liczba jednoczesnych sesji DocType: Social Login Key,Client Credentials,Referencje klientów @@ -1128,7 +1152,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Zaktual apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Magister DocType: DocType,User Cannot Create,Użytkownik nie może stworzyć apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Pomyślnie wykonane -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} nie istnieje apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dostęp do Dropbox jest zatwierdzony! DocType: Customize Form,Enter Form Type,Wprowadź Typ Formularza DocType: Google Drive,Authorize Google Drive Access,Autoryzuj dostęp do Dysku Google @@ -1136,7 +1159,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Brak otagowanych rekordów. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Usuń pole apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Nie masz połączenia z Internetem. Spróbuj ponownie po pewnym czasie. -DocType: User,Send Password Update Notification,Wyślij powiadomienie o zmianie hasła apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!", apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Niestandardowe formaty do drukowania, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Suma {0} @@ -1222,6 +1244,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Nieprawidłowy kod w apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integracja kontaktów Google jest wyłączona. DocType: Assignment Rule,Description,Opis DocType: Print Settings,Repeat Header and Footer in PDF,Powtórz Nagłówek i stopka w formacie PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Niepowodzenie DocType: Address Template,Is Default,Jest domyślny DocType: Data Migration Connector,Connector Type,Typ złącza apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Nazwa kolumna nie może być pusty @@ -1234,6 +1257,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Przejdź do strony { DocType: LDAP Settings,Password for Base DN,Hasło do bazy DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Pole Tabeli 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/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 @@ -1287,6 +1311,7 @@ DocType: Print Settings,Enable Raw Printing,Włącz drukowanie surowe DocType: Website Route Redirect,Source,Źródło apps/frappe/frappe/templates/includes/list/filters.html,clear,jasny apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Skończone +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ustawienia> Użytkownik DocType: Prepared Report,Filter Values,Filtruj wartości DocType: Communication,User Tags,Tagi użytkownika DocType: Data Migration Run,Fail,Zawieść @@ -1343,6 +1368,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Śle ,Activity,Aktywność DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Pomoc: Aby utworzyć łącze do innego rejestru w systemie, należy użyć ""#Postać/Nota/[Nazwa Noty]"" jako Link URL. (Nie używać ""http: //"")" DocType: User Permission,Allow,Zezwól +DocType: Data Import Beta,Update Existing Records,Zaktualizuj istniejące rekordy apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Załóżmy uniknąć powtarzających się słów i znaków DocType: Energy Point Rule,Energy Point Rule,Reguła punktu energetycznego DocType: Communication,Delayed,Opóźniony @@ -1355,9 +1381,7 @@ DocType: Milestone,Track Field,Pole toru DocType: Notification,Set Property After Alert,Ustaw właściwość po alertu apps/frappe/frappe/config/customization.py,Add fields to forms.,Dodaj pola do formularzy. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Wygląda na to, że coś jest nie tak z konfiguracją witryny Paypal." -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/sidebar/review.js,Add Review,Dodaj recenzję -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Rozmiar czcionki (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Tylko standardowe DocTypes mogą być dostosowywane z Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1394,6 +1418,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Przepraszam! Nie można usuwać auto generowane komentarzy DocType: Google Settings,Used For Google Maps Integration.,Używany do integracji z Mapami Google. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DocType Odniesienia +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Żadne rekordy nie zostaną wyeksportowane DocType: User,System User,Użytkownik systemu DocType: Report,Is Standard,Standardowy DocType: Desktop Icon,_report,_raport @@ -1409,6 +1434,7 @@ DocType: Workflow State,minus-sign,znak minusa apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nie znaleziono apps/frappe/frappe/www/printview.py,No {0} permission,{0} - brak uprawnień apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Uprawnienia eksportowe na zamówienie +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nie znaleziono żadnych przedmiotów. DocType: Data Export,Fields Multicheck,Pola Multicheck DocType: Activity Log,Login,Zaloguj się DocType: Web Form,Payments,Płatności @@ -1469,8 +1495,9 @@ DocType: Address,Postal,Pocztowy DocType: Email Account,Default Incoming,Domyślnie przychodzące DocType: Workflow State,repeat,powtórz DocType: Website Settings,Banner,Baner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Wartość musi być równa {0} DocType: Role,"If disabled, this role will be removed from all users.","Jeśli wyłączone, ta rola zostanie usunięty z wszystkich użytkowników." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Przejdź do listy {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Przejdź do listy {0} 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" @@ -1484,6 +1511,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Lokalna nazwa pola DocType: DocType,Track Changes,Śledzenie zmian DocType: Workflow State,Check,Sprawdź DocType: Chat Profile,Offline,Offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Pomyślnie zaimportowano {0} DocType: User,API Key,Klucz API DocType: Email Account,Send unsubscribe message in email,Wyślij wiadomość do maila wypisz apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Edytuj tytuł @@ -1510,11 +1538,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} ma już przypisaną wartość domyślną dla {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                No results found for '

                                                                                ,

                                                                                Nie znaleziono wyników dla '

                                                                                DocType: DocField,Attach Image,Dołącz obrazek DocType: Workflow State,list-alt, apps/frappe/frappe/www/update-password.html,Password Updated,Hasło zaktualizowane @@ -1535,8 +1563,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Niedozwolone dla {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 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ustawienia> Uprawnienia użytkownika DocType: LDAP Group Mapping,LDAP Group Mapping,Mapowanie grup LDAP DocType: Dashboard Chart,Chart Options,Opcje wykresów +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Kolumna bez tytułu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} od {1} do {2} w wierszu #{3} DocType: Communication,Expired,Upłynął apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Wydaje się, że token jest nieprawidłowy!" @@ -1546,6 +1576,7 @@ DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Maksymalny rozmiar załącznika (w MB) apps/frappe/frappe/www/login.html,Have an account? Login,Mieć konto? Zaloguj się DocType: Workflow State,arrow-down,strzałka w dół +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Wiersz {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Użytkownik nie może usuwać {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} z {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Zmodyfikowano @@ -1563,6 +1594,7 @@ DocType: Custom Role,Custom Role,Rola zwyczaj apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Strona główna / Folder 2 test apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Wpisz swoje hasło DocType: Dropbox Settings,Dropbox Access Secret,Sekret do Dostępu do Dropboxa +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obowiązkowy) 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. @@ -1637,6 +1669,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Pokaż pul apps/frappe/frappe/desk/form/assign_to.py,New Message,Nowa wiadomość DocType: File,Preview HTML,Podgląd HTML DocType: Desktop Icon,query-report,Raport zapytań +DocType: Data Import Beta,Template Warnings,Ostrzeżenia szablonu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filtry zapisane DocType: DocField,Percent,Procent apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Proszę ustawić filtry @@ -1658,6 +1691,7 @@ DocType: Custom Field,Custom,Niestandardowy DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Jeśli ta opcja jest włączona, użytkownicy, którzy logują się z ograniczonego adresu IP, nie będą monitowani o dwu czynnika uwierzytelniania" DocType: Auto Repeat,Get Contacts,Pobierz kontakty apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Stanowisk złożony w ramach {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Pomijanie kolumny bez tytułu DocType: Notification,Send alert if date matches this field's value,"Wyślij alert, jeśli termin odpowiada wartości tego pola jest" DocType: Workflow,Transitions,Przejścia apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} do {2} @@ -1681,6 +1715,7 @@ DocType: Workflow State,step-backward,Cofnij o jeden krok apps/frappe/frappe/utils/boilerplate.py,{app_title}, apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Proszę ustawić klucze dostępu do aplikacji Dropbox w pliku konfiguracyjnym Twojej strony apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,"Usuń ten rekord, aby umożliwić wysyłanie na ten adres e-mail" +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Jeśli niestandardowy port (np. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Dostosuj skróty apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tylko pola obowiązkowe są niezbędne do nowych rekordów. Możesz usunąć kolumny nieobowiązkowe, jeśli chcesz." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Pokaż więcej aktywności @@ -1788,7 +1823,9 @@ DocType: Note,Seen By Table,Widziany przez tabeli apps/frappe/frappe/www/third_party_apps.html,Logged in,Zalogowany apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Domyślne Wysyłanie i Skrzynka odbiorcza DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Pomyślnie zaktualizowano rekord {0} z {1}. DocType: Google Drive,Send Email for Successful Backup,Wyślij wiadomość e-mail z prośbą o pomyślną kopię zapasową +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Program planujący jest nieaktywny. Nie można zaimportować danych. DocType: Print Settings,Letter,List DocType: DocType,"Naming Options:
                                                                                1. field:[fieldname] - By Field
                                                                                2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                3. Prompt - Prompt user for a name
                                                                                4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                5. @@ -1802,6 +1839,7 @@ DocType: GCalendar Account,Next Sync Token,Następny token synchronizacji DocType: Energy Point Settings,Energy Point Settings,Ustawienia punktu energetycznego DocType: Async Task,Succeeded,Osiągnąłeś sukces apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Okienka obowiązkowe wymagane w {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                  No results found for '

                                                                                  ,

                                                                                  Nie znaleziono wyników dla '

                                                                                  apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Resetuj Dostęp dla {0} apps/frappe/frappe/config/desktop.py,Users and Permissions,Użytkownicy i uprawnienia DocType: S3 Backup Settings,S3 Backup Settings,S3 Ustawienia kopii zapasowej @@ -1872,6 +1910,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,jest w DocType: Notification,Value Change,Zmień Wartość DocType: Google Contacts,Authorize Google Contacts Access,Autoryzuj dostęp do kontaktów Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Wyświetlanie tylko pól numerycznych z raportu +DocType: Data Import Beta,Import Type,Typ importu DocType: Access Log,HTML Page,Strona HTML DocType: Address,Subsidiary,Pomocniczy apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Próba połączenia z zasobnikiem QZ ... @@ -1882,7 +1921,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Nieprawid DocType: Custom DocPerm,Write,Zapisz apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Tylko Administrator może tworzyć zapytania / skrypty dla raportów apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aktualizuje -DocType: File,Preview,Podgląd +DocType: Data Import Beta,Preview,Podgląd apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Pole "wartość" jest obowiązkowe. Proszę podać wartość, która będzie aktualizowana" DocType: Customize Form,Use this fieldname to generate title,Użyj tej fieldName wygenerować tytuł apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importowania wiadomości z @@ -1967,6 +2006,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Przeglądarka DocType: Social Login Key,Client URLs,Adresy URL klienta apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Niektóre informacje brakuje apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} Utworzono z powodzeniem +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Pomijanie {0} z {1}, {2}" DocType: Custom DocPerm,Cancel,Anuluj apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Usuń zbiorcze apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Plik {0} nie istnieje @@ -1994,7 +2034,6 @@ DocType: GCalendar Account,Session Token,Token sesji DocType: Currency,Symbol,Symbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Wiersz # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Potwierdź usunięcie danych -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Wysłano e-mailem nowe hasło apps/frappe/frappe/auth.py,Login not allowed at this time,Login nie jest dostępny w tym czasie DocType: Data Migration Run,Current Mapping Action,Bieżąca akcja mapowania DocType: Dashboard Chart Source,Source Name,Źródło Nazwa @@ -2007,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Przy apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Śledzony przez DocType: LDAP Settings,LDAP Email Field,LDAP email Pole apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} - lista rekordów +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Wyeksportuj rekordy {0} apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,"Jest już na liście ""Do zrobienia"" użytkownika" DocType: User Email,Enable Outgoing,Włącz wychodzących DocType: Address,Fax,Faks @@ -2066,8 +2106,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Wydrukuj Dokumenty apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Przejdź do pola DocType: Contact Us Settings,Forward To Email Address,Prześlij dalej to adresu e-mail +DocType: Contact Phone,Is Primary Phone,Jest podstawowym telefonem apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Wyślij e-mail na adres {0}, aby połączyć go tutaj." DocType: Auto Email Report,Weekdays,Dni robocze +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} rekordy zostaną wyeksportowane apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Tytuł pole musi być prawidłową nazwę pola DocType: Post Comment,Post Comment,Wyślij komentarz apps/frappe/frappe/config/core.py,Documents,Dokumenty @@ -2086,7 +2128,9 @@ eval:doc.age>18","To pole pojawia się tylko wtedy, gdy nazwa pola zdefiniowa DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Dzisiaj apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Dzisiaj +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).", +DocType: Data Import Beta,Submit After Import,Prześlij po imporcie DocType: Error Log,Log of Scheduler Errors,Zaloguj Błędów Scheduler DocType: User,Bio,Biografia DocType: OAuth Client,App Client Secret,Tajny Klient App @@ -2105,10 +2149,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Wyłącz link Rejestracji Klientów na stronie do logowania apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Przypisane Do/Właściciel DocType: Workflow State,arrow-left,strzałka w lewo +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Wyeksportuj 1 rekord DocType: Workflow State,fullscreen,pełen ekran DocType: Chat Token,Chat Token,Token czatu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Utwórz wykres apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Nie importuj DocType: Web Page,Center,Środek DocType: Notification,Value To Be Set,"Wartość, którą należy ustawić" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edycja {0} @@ -2128,6 +2174,7 @@ DocType: Print Format,Show Section Headings,Pokaż Sekcja Nagłówki DocType: Bulk Update,Limit,Limit apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Otrzymaliśmy prośbę o usunięcie danych {0} powiązanych z: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Dodaj nową sekcję +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrowane rekordy apps/frappe/frappe/www/printview.py,No template found at path: {0},Nie znaleziono przy drodze szablon: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Brak konta e-mail DocType: Comment,Cancelled,Anulowano @@ -2215,10 +2262,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globalne wyszukiwanie typów dokumentów Reset. ,Lead Conversion Time,Główny czas konwersji apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Kreator Budżetu DocType: Note,Notify users with a popup when they log in,Informuj użytkownikom popup podczas logowania +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Moduły podstawowe {0} nie mogą być wyszukiwane w globalnym wyszukiwaniu. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Otwórz czat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nie istnieje, wybierz nowy cel do złączenia" DocType: Data Migration Connector,Python Module,Moduł Python @@ -2235,8 +2285,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zamknij 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ustawienia> Uprawnienia użytkownika -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Aktualizacja +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Aktualizacja DocType: Transaction Log,Transaction Hash,Hash transakcji DocType: Error Snapshot,Snapshot View,Migawka Zobacz apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Zachowaj Newsletter przed wysyłką @@ -2252,6 +2301,7 @@ DocType: Data Import,In Progress,W trakcie apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,W kolejce do tworzenia kopii zapasowych. Może to potrwać kilka minut do godziny. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Uprawnienia użytkownika już istnieją +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mapowanie kolumny {0} na pole {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Wyświetl {0} DocType: User,Hourly,Cogodzinny apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Zarejestruj OAuth klienta App @@ -2264,7 +2314,6 @@ DocType: SMS Settings,SMS Gateway URL,Adres URL bramki SMS apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nie może być ""{2}"". Powinien to być jeden z ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},zdobyte przez {0} za pomocą automatycznej reguły {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} lub {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Zmiana hasła DocType: Workflow State,trash,kosz DocType: System Settings,Older backups will be automatically deleted,Starsze kopie zapasowe będą automatycznie usuwane apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Nieprawidłowy identyfikator klucza dostępu lub tajny klucz dostępu. @@ -2293,6 +2342,7 @@ DocType: Address,Preferred Shipping Address,Preferowany adres dostawy apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,List z głową apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{1} Utworzony przez: {0} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Niedozwolone dla {0}: {1} w wierszu {2}. Ograniczone pole: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Jeśli ta opcja zostanie zaznaczona, wiersze zawierające poprawne dane zostaną zaimportowane, a nieprawidłowe wiersze zostaną zrzucone do nowego pliku w celu późniejszego zaimportowania." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument jest tylko edytowalny przez użytkowników z rolą @@ -2319,6 +2369,7 @@ DocType: Custom Field,Is Mandatory Field,jest polem obowiązkowym DocType: User,Website User,Użytkownik strony WWW apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,"Niektóre kolumny mogą zostać obcięte podczas drukowania do pliku PDF. Staraj się, aby liczba kolumn nie przekraczała 10." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,nie równa się +DocType: Data Import Beta,Don't Send Emails,Nie wysyłaj e-maili DocType: Integration Request,Integration Request Service,Integracja żądania usługi DocType: Access Log,Access Log,Dziennik dostępu DocType: Website Script,Script to attach to all web pages.,Skrypt dołączyć do wszystkich stron internetowych. @@ -2359,6 +2410,7 @@ DocType: Contact,Passive,Nieaktywny DocType: Auto Repeat,Accounts Manager,Menedżer kont apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Przypisanie dla {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Płatność zostanie anulowana. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Skonfiguruj domyślne konto e-mail w Ustawienia> E-mail> Konto e-mail apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Wybierz typ pliku apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Pokaż wszystkie DocType: Help Article,Knowledge Base Editor,Baza wiedzy Editor @@ -2391,6 +2443,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Dane apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Stan dokumentu apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Wymaga zatwierdzenia +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Aby zaimportować plik, należy utworzyć następujące rekordy." DocType: OAuth Authorization Code,OAuth Authorization Code,Kod autoryzacji OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Brak potwierdzenia do importu DocType: Deleted Document,Deleted DocType,usunięte DocType @@ -2445,8 +2498,8 @@ DocType: GCalendar Settings,Google API Credentials,Google Credentials apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Uruchomienie sesji nie powiodło się apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Uruchomienie sesji nie powiodło się apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ten e-mail został wysłany do {0} i skopiowany do {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},przesłał ten dokument {0} DocType: Workflow State,th, -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} lat temu DocType: Social Login Key,Provider Name,Nazwa dostawcy apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Utwórz nowy {0} DocType: Contact,Google Contacts,Kontakty Google @@ -2454,6 +2507,7 @@ DocType: GCalendar Account,GCalendar Account,Konto GCalendar DocType: Email Rule,Is Spam,Czy Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Zgłoś {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otwórz {0} +DocType: Data Import Beta,Import Warnings,Importuj ostrzeżenia DocType: OAuth Client,Default Redirect URI,Domyślne przekierowanie URI DocType: Auto Repeat,Recipients,Adresaci DocType: System Settings,Choose authentication method to be used by all users,"Wybierz metodę uwierzytelniania, która będzie używana przez wszystkich użytkowników" @@ -2572,6 +2626,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Raport zosta apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Błąd programu Web Slack DocType: Email Flag Queue,Unread,Niewykształcony DocType: Bulk Update,Desk,Biurko +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Pomijanie kolumny {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtr musi być krotką lub listą (na liście) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Napisz SELECT query. Uwaga: rezultat nie będzie wyświetlony z podziałem na strony (wszystko zostanie wysłane na raz) DocType: Email Account,Attachment Limit (MB),Limit załącznik (MB) @@ -2586,6 +2641,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Utwórz nowy DocType: Workflow State,chevron-down, apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-mail nie wysłany do {0} (wypisany / wyłączony) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Wybierz pola do wyeksportowania DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Najmniejszy Waluta Frakcja Wartość apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Przygotowanie raportu @@ -2594,6 +2650,7 @@ DocType: Workflow State,th-list, DocType: Web Page,Enable Comments,Włącz komentarze apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notatki DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Ogranicz dostęp dla użytkownika tylko dla tego adresu IP. Możesz dodać wiele adresów IP oddzielając je przecinkiem. Możesz podać również kawełek adresu IP np. (111.111.111) +DocType: Data Import Beta,Import Preview,Podgląd importu DocType: Communication,From,Od apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Na początku wybierz węzeł grupy. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Znajdź {0} w {1} @@ -2693,6 +2750,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Pomiędzy DocType: Social Login Key,fairlogin,Fairlogin DocType: Async Task,Queued,W kolejce +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ustawienia> Dostosuj formularz DocType: Braintree Settings,Use Sandbox,Korzystanie Sandbox apps/frappe/frappe/utils/goal.py,This month,Ten miesiąc apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nowy format wydruku klienta @@ -2708,6 +2766,7 @@ DocType: Session Default,Session Default,Domyślna sesja DocType: Chat Room,Last Message,Ostatnia wiadomość DocType: OAuth Bearer Token,Access Token,Dostęp za pomocą Tokenu DocType: About Us Settings,Org History,Historia Organizacji +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Pozostało około {0} minut DocType: Auto Repeat,Next Schedule Date,Następny dzień harmonogramu DocType: Workflow,Workflow Name,Nazwa Przepływu Pracy DocType: DocShare,Notify by Email,Informuj za pomocą Maila @@ -2737,6 +2796,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,wznowić wysyłanie apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Otworzyć na nowo +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Pokaż ostrzeżenia apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Zakup użytkownika DocType: Data Migration Run,Push Failed,Push Failed @@ -2775,6 +2835,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Wyszuk apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nie możesz przeglądać biuletynu. DocType: User,Interests,Zainteresowania apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Instrukcja resetowania hasła została wysłana na Twój email +DocType: Energy Point Rule,Allot Points To Assigned Users,Przydziel punkty przypisanym użytkownikom apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Poziom 0 jest przeznaczony dla uprawnień na poziomie dokumentu, \ wyższych poziomów uprawnień na poziomie pola." DocType: Contact Email,Is Primary,Jest podstawowa @@ -2798,6 +2859,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Klucz publikowany DocType: Stripe Settings,Publishable Key,Klucz publikowany apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Rozpocznij importowanie +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Typ eksportu DocType: Workflow State,circle-arrow-left, DocType: System Settings,Force User to Reset Password,Wymuś użytkownikowi zresetowanie hasła apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Aby uzyskać zaktualizowany raport, kliknij {0}." @@ -2811,13 +2873,16 @@ DocType: Contact,Middle Name,Drugie imię DocType: Custom Field,Field Description,Opis pola apps/frappe/frappe/model/naming.py,Name not set via Prompt, apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Skrzynka e-mail +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Aktualizacja {0} {1}, {2}" DocType: Auto Email Report,Filters Display,filtry Wyświetlacz apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Pole „Poprawiono_z” musi być obecne, aby wprowadzić poprawkę." +DocType: Contact,Numbers,Liczby apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} docenia twoją pracę nad {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Zapisz filtry DocType: Address,Plant,Zakład apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odpowiedz wszystkim DocType: DocType,Setup,Ustawienia +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Wszystkie rekordy DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Adres e-mail, którego kontakty Google mają być synchronizowane." DocType: Email Account,Initial Sync Count,Początkowa Sync Hrabia DocType: Workflow State,glass,szkło @@ -2842,7 +2907,7 @@ DocType: Workflow State,font,czcionka DocType: DocType,Show Preview Popup,Pokaż podgląd podglądu apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,To jest top-100 wspólnym hasłem. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Proszę włączyć pop-upy -DocType: User,Mobile No,Nr tel. Komórkowego +DocType: Contact,Mobile No,Nr tel. Komórkowego DocType: Communication,Text Content,Zawartość tekstowa DocType: Customize Form Field,Is Custom Field,Czy Pole niestandardowe DocType: Workflow,"If checked, all other workflows become inactive.","Jeśli zaznaczone, to wszystkie pozostałe obiegi stają się nieaktywne." @@ -2888,6 +2953,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Dodaj apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nazwa nowego formatu wydruku apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Przełącz boczny pasek DocType: Data Migration Run,Pull Insert,Pull Insert +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maksymalna liczba punktów dozwolona po pomnożeniu punktów przez wartość mnożnika (Uwaga: W przypadku braku limitu pozostaw to pole puste lub ustaw 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Nieprawidłowy szablon apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Nielegalne zapytanie SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obowiązkowe: DocType: Chat Message,Mentions,Wzmianki @@ -2902,6 +2970,7 @@ DocType: User Permission,User Permission,Uprawnienia użytkownika apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,Nie zainstalowano protokołu LDAP apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Pobierz z danymi +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},zmieniono wartości dla {0} {1} DocType: Workflow State,hand-right, DocType: Website Settings,Subdomain,Subdomena DocType: S3 Backup Settings,Region,Region @@ -2929,10 +2998,12 @@ DocType: Braintree Settings,Public Key,Klucz publiczny DocType: GSuite Settings,GSuite Settings,Ustawienia GSuite DocType: Address,Links,Łącza DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Używa nazwy adresu e-mail wymienionego na tym koncie jako nazwy nadawcy dla wszystkich wiadomości e-mail wysyłanych przy użyciu tego konta. +DocType: Energy Point Rule,Field To Check,Pole do sprawdzenia apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Kontakty Google - Nie można zaktualizować kontaktu w Kontaktach Google {0}, kod błędu {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Wybierz typ dokumentu. apps/frappe/frappe/model/base_document.py,Value missing for,Brakuje wartości dla apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Dodaj pod-element +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Postęp importu DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Jeśli warunek jest spełniony, użytkownik zostanie nagrodzony punktami. na przykład. doc.status == 'Zamknięte'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Napisał Record nie mogą być usunięte. @@ -2969,6 +3040,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autoryzuj dostęp do K apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Strona, której szukasz nie brakuje. To może być dlatego, że porusza się lub jest literówka w linku." apps/frappe/frappe/www/404.html,Error Code: {0},Kod błędu {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)", +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} to pola obowiązkowe DocType: Workflow,Allow Self Approval,Zezwalaj na samoobsługę DocType: Event,Event Category,Kategoria wydarzenia apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,nieznany z nazwiska @@ -3017,8 +3089,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Przenieś do DocType: Address,Preferred Billing Address,Preferowany adres rozliczeniowy apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Zbyt wiele zapisów w prośbie. Podziel swoje zapytania na mniejsze. apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Dysk Google został skonfigurowany. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Typ dokumentu {0} został powtórzony. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Zmienione wartości DocType: Workflow State,arrow-up,strzałka w górę +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,W tabeli {0} powinien znajdować się przynajmniej jeden wiersz apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Aby skonfigurować automatyczne powtarzanie, włącz „Zezwalaj na automatyczne powtarzanie” z {0}." DocType: OAuth Bearer Token,Expires In,Wygasa za DocType: DocField,Allow on Submit,Zezwól na Wysłanie @@ -3105,6 +3179,7 @@ DocType: Custom Field,Options Help,Opcje Pomocy 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 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 @@ -3122,6 +3197,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Kod weryfikacyjny DocType: Webhook,Webhook Request,Żądanie Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Nie udało: {0} {1}: {2} DocType: Data Migration Mapping,Mapping Type,Typ odwzorowania +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Wybierz Obowiązkowe apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Przeglądaj apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Nie potrzeba symboli, cyfr lub wielkimi literami." DocType: DocField,Currency,Waluta @@ -3152,11 +3228,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Szef literowy na podstawie apps/frappe/frappe/utils/oauth.py,Token is missing,Reklamowe brakuje apps/frappe/frappe/www/update-password.html,Set Password, +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Pomyślnie zaimportowano rekordy {0}. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Uwaga: zmiana nazwy strony spowoduje złamanie poprzedniego adresu URL tej strony. apps/frappe/frappe/utils/file_manager.py,Removed {0},Usunięto {0} DocType: SMS Settings,SMS Settings,Ustawienia SMS DocType: Company History,Highlight,Leflektor DocType: Dashboard Chart,Sum,Suma +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,poprzez import danych DocType: OAuth Provider Settings,Force,Siła apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Ostatnia synchronizacja {0} DocType: DocField,Fold,Zagiąć @@ -3193,6 +3271,7 @@ DocType: Workflow State,Home,Start DocType: OAuth Provider Settings,Auto,Automatyczny DocType: System Settings,User can login using Email id or User Name,Użytkownik może zalogować się przy użyciu adresu e-mail lub nazwy użytkownika DocType: Workflow State,question-sign,question-sign +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} jest wyłączone apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Pole "route" jest obowiązkowe w przypadku widoków sieciowych apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Wstaw kolumnę przed {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Użytkownik z tego pola otrzyma punkty @@ -3226,6 +3305,7 @@ DocType: Website Settings,Top Bar Items,Elementy Top Bar DocType: Notification,Print Settings,Ustawienia drukowania DocType: Page,Yes,Tak DocType: DocType,Max Attachments,Max Załączników +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Pozostało około {0} sekund DocType: Calendar View,End Date Field,Pole Data zakończenia apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalne skróty DocType: Desktop Icon,Page,Strona @@ -3338,6 +3418,7 @@ DocType: GSuite Settings,Allow GSuite access,Zezwalaj na dostęp do GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Nazwa apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Wybierz wszystko +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Kolumna {0} apps/frappe/frappe/config/customization.py,Custom Translations,Własne tłumaczenia apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Postęp apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role , @@ -3380,11 +3461,13 @@ DocType: Stripe Settings,Stripe Settings,Ustawienia paskowe DocType: Stripe Settings,Stripe Settings,Ustawienia paskowe DocType: Data Migration Mapping,Data Migration Mapping,Mapowanie migracji danych DocType: Auto Email Report,Period,Okres +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Pozostało około {0} minut apps/frappe/frappe/www/login.py,Invalid Login Token,Nieprawidłowy Zaloguj Reklamowe apps/frappe/frappe/public/js/frappe/chat.js,Discard,Odrzucać apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 godzinę temu DocType: Website Settings,Home Page,Strona główna DocType: Error Snapshot,Parent Error Snapshot,Rodzic Błąd Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Odwzoruj kolumny od {0} na pola w {1} DocType: Access Log,Filters,Filtry DocType: Workflow State,share-alt, apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Kolejką powinno być jedno z {0} @@ -3415,6 +3498,7 @@ DocType: Calendar View,Start Date Field,Pole daty rozpoczęcia DocType: Role,Role Name,Nazwa roli apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Przełącznik do biurka apps/frappe/frappe/config/core.py,Script or Query reports,Raporty Skryptowe lub na bazie Zapytań +DocType: Contact Phone,Is Primary Mobile,Jest podstawową komórką DocType: Workflow Document State,Workflow Document State,Stan Dokumentu Przepływu Pracy apps/frappe/frappe/public/js/frappe/request.js,File too big,Plik jest zbyt duży apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Konto e-mail wielokrotnie dodane @@ -3460,6 +3544,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Ustawienia strony apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Oszczędność... apps/frappe/frappe/www/update-password.html,Invalid Password,nieprawidłowe hasło +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Pomyślnie zaimportowano rekord {0} z {1}. DocType: Contact,Purchase Master Manager,Główny Menadżer Zakupów apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,"Kliknij ikonę kłódki, aby przełączyć tryb publiczny / prywatny" DocType: Module Def,Module Name,Nazwa Modułu @@ -3494,6 +3579,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Niektóre funkcje mogą nie działać w przeglądarce. Zaktualizuj swoją przeglądarkę do najnowszej wersji. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Niektóre funkcje mogą nie działać w przeglądarce. Zaktualizuj swoją przeglądarkę do najnowszej wersji. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Nie wiem, zapytaj 'help'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},anulowałem ten dokument {0} DocType: DocType,Comments and Communications will be associated with this linked document,Komentarze i komunikacja będą związane z tym połączonego dokumentu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtr ... DocType: Workflow State,bold,Pogrubiony @@ -3512,6 +3598,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Dodaj / Zarz DocType: Comment,Published,Opublikowany apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Dziękujemy za wiadomość DocType: DocField,Small Text,Mały tekst +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Numeru {0} nie można ustawić zarówno jako numer telefonu, jak i numer telefonu komórkowego" DocType: Workflow,Allow approval for creator of the document,Zezwalaj na zatwierdzenie twórcy dokumentu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Zapisz raport DocType: Webhook,on_cancel,on_cancel @@ -3569,6 +3656,7 @@ DocType: Print Settings,PDF Settings,Ustawienia PDF DocType: Kanban Board Column,Column Name,Nazwa kolumny DocType: Language,Based On,Bazujący na DocType: Email Account,"For more information, click here.","Aby uzyskać więcej informacji, kliknij tutaj ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Liczba kolumn nie pasuje do danych apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Ustaw jako domyślne apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Czas wykonania: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Nieprawidłowa ścieżka dołączenia @@ -3659,7 +3747,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Prześlij pliki {0} DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Zgłoś czas rozpoczęcia -apps/frappe/frappe/config/settings.py,Export Data,Eksportuj dane +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Eksportuj dane 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." @@ -3677,7 +3765,6 @@ DocType: Report,Disable Prepared Report,Wyłącz przygotowany raport apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Użytkownik {0} zażądał usunięcia danych apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Nielegalny dostęp Reklamowe. Proszę spróbuj ponownie apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","System został zaktualizowany do nowszej wersji, prosimy odświeżyć stronę" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,"Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest prawdziwe" DocType: Data Migration Plan,Plan Name,Nazwa planu DocType: Print Settings,Print with letterhead,Broszura z firmowym @@ -3718,6 +3805,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} Nie możesz wnieść poprawek bez anulowania apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Cała strona DocType: DocType,Is Child Table, +DocType: Data Import Beta,Template Options,Opcje szablonu apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} musi być jednym z {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} jest aktualnie przegląda ten dokument apps/frappe/frappe/config/core.py,Background Email Queue,Kolejka Email w Tle @@ -3725,7 +3813,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Resetowanie hasła DocType: Communication,Opened,Otwarty DocType: Workflow State,chevron-left, DocType: Communication,Sending,Wysyłanie -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Brak dostępu z tego adresu IP DocType: Website Slideshow,This goes above the slideshow.,Występuje ponad slideshow DocType: Contact,Last Name,Nazwisko DocType: Event,Private,Prywatny @@ -3739,7 +3826,6 @@ DocType: Workflow Action,Workflow Action,Akcja przepływu pracy apps/frappe/frappe/utils/bot.py,I found these: ,Znalazłem te: DocType: Event,Send an email reminder in the morning,Wyślij rano e-mail z przypomnieniem DocType: Blog Post,Published On,Opublikowany -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 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} @@ -3760,7 +3846,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,znak-ostrzeżenie DocType: Prepared Report,Prepared Report,Przygotowany raport apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Dodaj metatagi do swoich stron internetowych -DocType: Contact,Phone Nos,Numery telefonów 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 @@ -3778,6 +3863,7 @@ DocType: Data Migration Connector,Data Migration,Migracja danych DocType: User,API Key cannot be regenerated,Klucz API nie może zostać zregenerowany apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Coś poszło nie tak DocType: System Settings,Number Format,numer formatu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Pomyślnie zaimportowano rekord {0}. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Podsumowanie DocType: Event,Event Participants,Uczestnicy wydarzenia DocType: Auto Repeat,Frequency,Częstotliwość @@ -3785,7 +3871,7 @@ DocType: Custom Field,Insert After,Wstaw za DocType: Event,Sync with Google Calendar,Synchronizuj z Kalendarzem Google DocType: Access Log,Report Name,Nazwa raportu DocType: Desktop Icon,Reverse Icon Color,Rewers Ikona kolor -DocType: Notification,Save,Zapisz +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Zapisz apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Następna zaplanowana data apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Przydziel do tego, który ma najmniejsze zadania" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Sekcja Nagłówek @@ -3808,11 +3894,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ustawienia> Dostosuj formularz 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 DocType: Desktop Icon,Category,Kategoria +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Brak wartości {0} dla {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Dodaj kontakty apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Krajobraz apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Rozszerzenia skryptów po stronie klienta w JavaScript @@ -3836,6 +3922,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aktualizacja punktu energetycznego apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Proszę wybrać inną metodę płatności. PayPal nie obsługuje transakcji w walucie „{0}” DocType: Chat Message,Room Type,Rodzaj pokoju +DocType: Data Import Beta,Import Log Preview,Importuj podgląd dziennika apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Pole wyszukiwania {0} nie jest ważny apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,przesłany plik DocType: Workflow State,ok-circle,ok-circle @@ -3904,6 +3991,7 @@ DocType: DocType,Allow Auto Repeat,Zezwól na automatyczne powtarzanie apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Brak wartości do pokazania DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Szablon e-maila +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Pomyślnie zaktualizowano rekord {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Użytkownik {0} nie ma dostępu do dokumentu przez uprawnienie roli dla dokumentu {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Zarówno login i hasło wymagane apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Odśwież by otrzymać aktualny dokument diff --git a/frappe/translations/ps.csv b/frappe/translations/ps.csv index 250bfcc86e..3052b94f57 100644 --- a/frappe/translations/ps.csv +++ b/frappe/translations/ps.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,نوی {} رالیفونه د لاندې ایپسونو لپاره شتون لري apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,لطفا یو مقدار ساحوي ټاکي. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,د واردولو دوتنه پورته کول ... DocType: Assignment Rule,Last User,وروستی کارن apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",يوه نوې دنده، {0}، چې تاسو ته د {1} ګمارل شوي دي. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,د ناستې ټاکل شوي خوندي شوي +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,دوتنه بیا پورته کړئ DocType: Email Queue,Email Queue records.,ليک د کتار اسناد. DocType: Post,Post,ليکنه د DocType: Address,Punjab,پنجاب @@ -44,6 +46,7 @@ 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,د پاراميټر @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,میاشتنی DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,فعال راتلونکي apps/frappe/frappe/core/doctype/version/version_view.html,Danger,د خطر -apps/frappe/frappe/www/login.py,Email Address,بریښنالیک +DocType: Address,Email Address,بریښنالیک DocType: Workflow State,th-large,مه-لوی DocType: Communication,Unread Notification Sent,لېکل خبر ته وليږدول شوه apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,د صادراتو د اجازه نشته. تاسو د {0} د صادراتو رول ته اړتيا لري. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,د ادار DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",تماس انتخابونو، لکه "خرڅلاو شوې پوښتن، د ملاتړ شوې پوښتن" او نور هر يو يې پر يوه نوي مزي يا جلا شوي commas. apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,يوه ګڼه زياته کړه ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,انځور -DocType: Data Migration Run,Insert,درج +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,درج apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,د ګوګل ډرایو لاسرسي ته اجازه ورکړئ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},وټاکئ {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,مهرباني وکړئ د بیس URL نوم ولیکئ @@ -117,17 +120,17 @@ 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,موضوع کنټرول کړئ DocType: Company History,Company History,شرکت تاریخ -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Reset +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Reset DocType: Workflow State,volume-up,حجم-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,ویبوکس په ویب ایپسونو کې د API غوښتنې غوښتنه کوي +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ټرېبیک ښودل DocType: DocType,Default Print Format,Default چاپ شکل DocType: Workflow State,Tags,نښانونه apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,هيڅ: د ننګولې پايان apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} په برخه لکه څنګه چې په {1} ساری نه جوړ شي، د غير سارې موجوده ارزښتونو شته -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,سند ډولونه +DocType: Global Search Settings,Document Types,سند ډولونه DocType: Address,Jammu and Kashmir,جمو او کشمیر DocType: Workflow,Workflow State Field,ننګولې د بهرنیو چارو د ساحوي -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,جوړول> کارن DocType: Language,Guest,ميلمه DocType: DocType,Title Field,عنوان ساحوي DocType: Error Log,Error Log,تېروتنه ننوتنه @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",لکه "abcabcabc" يوازې لږ څه ستونزمن په پرتله "ABC" فکر تکرارونه DocType: Notification,Channel,چینل apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",که تاسو فکر کوئ چې دا غیر مجاز، لطفا د ادارې د پاسورد بدلولو لپاره. +DocType: Data Import Beta,Data Import Beta,د ډیټا وارد بیټا apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} الزامی دی DocType: Assignment Rule,Assignment Rules,د ګمارنې مقررات DocType: Workflow State,eject,eject @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,ننګولې کړنه نو apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType نه مدغم شي DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,يو زيب دوتنه نه ده +DocType: Global Search DocType,Global Search DocType,نړېوال پلټنې ډایپ ټایپ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                  New {{ doc.doctype }} #{{ doc.name }}
                                                                                  ","د متحرک موضوع اضافه کولو لپاره، د جینج ټګګ په څیر کاروئ
                                                                                   New {{ doc.doctype }} #{{ doc.name }} 
                                                                                  " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,د کور پېښلیک apps/frappe/frappe/public/js/frappe/utils/user.js,You,تاسو DocType: Braintree Settings,Braintree Settings,د Braintree ترتیبات +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,په بریالیتوب سره {0} ریکارډونه جوړ شول. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,فلټر ساتل DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} نشي ړنګولی @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,د پیغام url عوام apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,د دې سند لپاره اتومات تکرار رامینځته شوی apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,په خپل لټون کې راپور وګورئ apps/frappe/frappe/config/desk.py,Event and other calendars.,دکمپاینونو او نورو کلیزه. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 قطار لازمي) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,ټول برخو کې ضروري دي چې وړاندې د نظر. DocType: Custom Script,Adds a client custom script to a DocType,ډیک ټایپ ته د پیرودونکي دودیز سکریپټ اضافه کوي DocType: Print Settings,Printer Name,د چاپ نوم @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,د حجم تازه DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,اجازه ميلمه ته ښکاره کړی apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} باید د {1} په شان نه وي -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: Webhook,on_change,په apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,{0} توکي د تل لپاره ړنګول؟ apps/frappe/frappe/utils/oauth.py,Not Allowed,نه پرې نږدي @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,وښایئ DocType: Email Group,Total Subscribers,Total پېرودونکي apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},سرلیک {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,د قطار شمیره apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",که يو رول کوي 0 د ليول لاس رسی نه لري، نو په لوړه کچه د دي معنی نه ورکوي. apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,لیدل @@ -307,6 +314,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,بیلګې په توګه: DocType: Workflow,Defines workflow states and rules for a document.,يو سند لپاره ننګولې دولتونو او اصولو تعریفوي. DocType: Workflow State,Filter,Filter @@ -329,6 +337,7 @@ DocType: Activity Log,Closed,تړل DocType: Blog Settings,Blog Title,Blog عنوان apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,معياري رول نه نافعال شي کولای apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,د چیٹ ډول +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,د نقشې کالمونه DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,خبر پاڼه apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,آيا نه په خاطر له خوا د فرعي پکارواچوی @@ -397,6 +406,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,کارن DocType: System Settings,Currency Precision,د اسعارو له Precision DocType: System Settings,Currency Precision,د اسعارو له Precision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,بل د راکړې ورکړې دغه یوه (ضامن). لطفا دا په یو څو ثانیو بیا کوښښ وکړه. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,فلټرونه پاک کړئ DocType: Test Runner,App,ددفتروسایل apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,لاسوندونه په سمه توګه د نوي سند سره تړل کیدی نشي DocType: Chat Message Attachment,Attachment,ضميمه @@ -421,6 +431,7 @@ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ډشبورډ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,په دې وخت بریښنالیکونو ته واستوي توان نلري apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,پلټنه يا د يو کمانډ ټايپ DocType: Activity Log,Timeline Name,مهال ویش نوم +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,یوازې یو {0} د لومړني په توګه ټاکل کیدی شي. DocType: Email Account,e.g. smtp.gmail.com,د بيلګې په توګه smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Add يو نوي حاکمیت DocType: Contact,Sales Master Manager,خرڅلاو ماسټر مدير @@ -467,6 +478,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},پیوستېدلی نش apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,A لخوا په خپله کلمه ده اسانه فکر. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},د ګاډي سپړنه ناکامه شوه: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,د لټون ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,مهرباني وکړئ د شرکت وټاکئ apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,آژانسونو تر منځ یوازې هله ممکن دئ ګروپ-to-ګروپ یا د پاڼی غوټه-to-د پاڼی غوټه apps/frappe/frappe/utils/file_manager.py,Added {0},د ورزیاتولو {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,سمون نه خوړونکې ثبتوي. پلټنه څه نوي @@ -479,7 +491,6 @@ DocType: Google Settings,OAuth Client ID,د OAuth مؤکل ID DocType: Auto Repeat,Subject,مضمون apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,بېرته میز ته DocType: Web Form,Amount Based On Field,اندازه په ساحوي -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,مهرباني وکړئ د ډیفالټ بریښنالیک حساب له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه تنظیم کړئ apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,کارن لپاره د Share الزامی دی DocType: DocField,Hidden,پټ DocType: Web Form,Allow Incomplete Forms,نابشپړ فورمې اجازه @@ -516,6 +527,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} او {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,خبرې اترې پیل کړئ. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","مسوده" تل د چاپ اسناد مسوده مدعي دی اضافه apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},په خبرتیا کې تېروتنه: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} کاله دمخه DocType: Data Migration Run,Current Mapping Start,اوسنۍ نقشه ایزه شروع apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,برېښناليک په نښه شوی سپم DocType: Comment,Website Manager,وېب پاڼه مدير @@ -554,6 +566,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,د فرعي سوال یا کارونې کار محدود دی apps/frappe/frappe/config/customization.py,Add your own translations,خپل ژباړې ورزیات کړئ DocType: Country,Country Name,د هېواد نوم +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,خالي ټیمپلیټ DocType: About Us Team Member,About Us Team Member,زمونږ په اړه د ټيم غړې apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.",حلال پر نقش او د اسنادو ډولونه (DocTypes نومیږی) له خوا د حقونو د ټاکلو کتابونه ولولئ شان جوړ شوي دي، ولیکی، جوړول، ړنګول، سپارل، لغوه، تعدیل، راپور، د وارداتو، صادراتو، چاپ، ليک او ټولګې کارن حلال. DocType: Event,Wednesday,چهارشنبه @@ -565,6 +578,7 @@ DocType: Website Settings,Website Theme Image Link,وېب پاڼه موضوع د DocType: Web Form,Sidebar Items,د پټې سامان DocType: Web Form,Show as Grid,د گرډ په څیر ښکاره کړئ apps/frappe/frappe/installer.py,App {0} already installed,ددفتروسایل {0} د مخه لګول شوي +DocType: Energy Point Rule,Users assigned to the reference document will get points.,د حوالې سند ته ټاکل شوي کارونکي به ټکي ترلاسه کړي. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,نه لیدل DocType: Workflow State,exclamation-sign,د کارونکي-نښه apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,بې ځایه {0} فایلونه @@ -600,6 +614,7 @@ DocType: Notification,Days Before,ورځې مخکې apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,ورځنۍ پیښې باید په ورته ورځ پای ته ورسي. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,سمول ... DocType: Workflow State,volume-down,حجم څخه ښکته +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,د دې IP پتې څخه د لاسرسي اجازه نشته apps/frappe/frappe/desk/reportview.py,No Tags,نه نښانونه DocType: Email Account,Send Notification to,ته خبردارې ورکول وليږئ DocType: DocField,Collapsible,پرېوتونکې @@ -656,6 +671,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,د پراختیا apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,ايجاد apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} په قطار {1} کولای د هغوی دواړه په حافظی او ماشوم توکي لري +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,د چاپ اصلي ژبه apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,د پلارانو apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,د ريښي د {0} نه ړنګ شي @@ -697,6 +713,7 @@ apps/frappe/frappe/contacts/doctype/address/address.py,There is an error in your DocType: Footer Item,"target = ""_blank""",هدف = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,کوربه +DocType: Data Import Beta,Import File,دوتنه واردول apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,کالم {0} لا شتون لري. DocType: ToDo,High,د عالي apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,نوې پېښه @@ -725,8 +742,6 @@ DocType: User,Send Notifications for Email threads,د بریښنالیک موض apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,پروفيسور apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,نه په پراختیا د اکر apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,د دوتنې شاتړ چمتو دی -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",د ضرب کونکي ارزښت سره د ضرب الاجل وروسته اعظمي نقطو ته اجازه ورکول کیږي (یادونه: د هیڅ حد ټاکل شوي ارزښت لپاره 0) DocType: DocField,In Global Search,په نړیوال لټون DocType: System Settings,Brute Force Security,د ځواک ځواک امنیت DocType: Workflow State,indent-left,indent-کيڼ @@ -769,6 +784,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',کارن '{0}' پخوا د رول '{1}' DocType: System Settings,Two Factor Authentication method,د دوو فکتور اعتباري طریقه apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,لومړی نوم نومول او ریکارډ خوندي کول. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ریکارډونه apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},د شریکې سره د {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ویسي DocType: View Log,Reference Name,ماخذ نوم @@ -819,6 +835,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,د بریښناليک وضعیت DocType: Note,Notify Users On Every Login,په هر ننوتل کارنان خبر DocType: Note,Notify Users On Every Login,په هر ننوتل کارنان خبر +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,په بریالیتوب سره د {0} ریکارډونه نوي شوي. DocType: PayPal Settings,API Password,API پاسورډ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,د پیټون ماډل داخل کړئ یا د کنټرول ډول غوره کړئ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,د ګمرک د ساحوي Fieldname نه @@ -847,9 +864,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,ارزښت بدله apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},دوه نوم {0} د {1} -DocType: Email Queue,Retry,بیا راګرځول +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,بیا راګرځول +DocType: Contact Phone,Number,شمېره DocType: Web Form Field,Web Form Field,ويب فورمه ساحوي apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,تاسو له یو نوی پیغام لرئ: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,سمول HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,لطفا د مستقیم یو آر ایل داخل کړئ apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -875,7 +894,7 @@ DocType: Notification,View Properties (via Customize Form),محتویات Proper apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,د هغې د غوره کولو لپاره په فایل کلیک وکړئ. DocType: Note Seen By,Note Seen By,نوټ کتل By apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,سره نور په نوبت سره د اوږدې بورډ نمونې د کارولو هڅه وکړي -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LeaderBoard +,LeaderBoard,LeaderBoard DocType: DocType,Default Sort Order,د ډیفالټ ترتیب ترتیب DocType: Address,Rajasthan,راجستان DocType: Email Template,Email Reply Help,د برېښلیک ځواب ځواب @@ -910,6 +929,7 @@ apps/frappe/frappe/utils/data.py,Cent,په سلو کې apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,برېښناليک کمپوز apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).",د ننګولې ایالتونه (د مثال په مسوده، تصویب، ردشوي). DocType: Print Settings,Allow Print for Draft,لپاره مسوده چاپ اجازه +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/link_selector.js,Set Quantity,ټاکل شوی مقدار apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,د دې سند سپارل د تایید DocType: Contact,Unsubscribed,کش @@ -941,6 +961,7 @@ DocType: LDAP Settings,Organizational Unit for Users,د کاروونکو لپا ,Transaction Log Report,د راکړې ورکړې لوستلو راپور DocType: Custom DocPerm,Custom DocPerm,د ګمرکونو DocPerm DocType: Newsletter,Send Unsubscribe Link,وليږئ لاسرسۍ لینک +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,دلته یو څه تړلي ریکارډونه شتون لري چې موږ باید ستاسو فایل وارد کولو دمخه رامینځته کیدو ته اړتیا ولرو. ایا تاسو غواړئ چې دا لاندې ورک شوي ریکارډونه په اتومات ډول جوړ کړئ؟ DocType: Access Log,Method,Method DocType: Report,Script Report,د ښونکی راپور DocType: OAuth Authorization Code,Scopes,Scopes @@ -982,6 +1003,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,په بریالیتوب سره پورته شو apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,تاسو انټرنیټ سره تړلی یاست. DocType: Social Login Key,Enable Social Login,ټولنیز ننوتل فعال کړئ +DocType: Data Import Beta,Warnings,خبرداری DocType: Communication,Event,دکمپاینونو apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",د {0}، {1} وليکل: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,معياري ډګر ړنګ نه شي. تاسو کولای شۍ دا پټ که تاسو غواړی @@ -1037,6 +1059,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,دلته DocType: Kanban Board Column,Blue,آبي apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,ټول خپلخوښی به لرې شي. مهرباني وکړئ تایید یې کړئ. DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,خطا شوې لیکې صادر کړئ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,د ډلې نوم خالي نه دی. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,لا غوټو يوازې ډله 'ډول غوټو لاندې جوړ شي DocType: SMS Parameter,Header,سرۍ @@ -1076,13 +1099,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,غوښتنه د نښلېدلو apps/frappe/frappe/config/settings.py,Enable / Disable Domains,د ډاټا فعالول / نافعال کول DocType: Role Permission for Page and Report,Allow Roles,رولونه اجازه +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,په بریالیتوب سره د {1} څخه {0} ریکارډونه وارد شول. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")",د ساده پایتون اظهار ، مثال: حالت (په "غیرقانوني") کې DocType: User,Last Active,تېره فعاله DocType: Email Account,SMTP Settings for outgoing emails,د تېرې برېښلیکونه SMTP امستنې apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,یو غوره کړئ DocType: Data Export,Filter List,د فلټر لیست DocType: Data Export,Excel,اېسلسل -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,ستا شفر تازه شوي دي. دلته دی خپل نوی پټنوم DocType: Email Account,Auto Reply Message,د موټرونو ته ځواب ورکړئ پيغام DocType: Data Migration Mapping,Condition,حالت apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ساعته وړاندې @@ -1091,7 +1114,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,کارن نوم DocType: Communication,Sent,ته وليږدول شوه DocType: Address,Kerala,د کرالا -DocType: File,Lft,من apps/frappe/frappe/public/js/frappe/desk.js,Administration,اداره DocType: User,Simultaneous Sessions,نوار غونډه DocType: Social Login Key,Client Credentials,د مراجع د باورلیک ومانه @@ -1123,7 +1145,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Updated apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ماسټر DocType: DocType,User Cannot Create,کارن جوړول نه شي apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,په بریالیتوب سره ترسره شو -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,دادوسیه خلاصه {0} نه شته apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox لاسرسي تصویب! DocType: Customize Form,Enter Form Type,وليکئ فورمه ډول DocType: Google Drive,Authorize Google Drive Access,د ګوګل ډرایو لاسرسی اختیار کړئ @@ -1131,7 +1152,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,هیڅ ډول ثبتونې سکس. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,لرې ساحوي apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,تاسو د انټرنېټ سره تړلي نه یاست. ځینې وخت وروسته بیا ځړول. -DocType: User,Send Password Update Notification,وليږئ شفر تازه خبر apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",اجازه DocType، DocType. احتیاط کوه! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",د چاپونې، دبرېښنا ليک دودیزه بڼی apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},د {0} مجموعه @@ -1215,6 +1235,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,ناسم تاييد apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,د ګوګل اړیکو ادغام غیر فعال شوی دی. DocType: Assignment Rule,Description,Description DocType: Print Settings,Repeat Header and Footer in PDF,په PDF سرکي او بېخکی تکرار +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,ناکامي DocType: Address Template,Is Default,ده Default DocType: Data Migration Connector,Connector Type,د نښلونکی ډول apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,کالم نوم نه شي تش وي @@ -1227,6 +1248,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} پا toې ته 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,یورتان پر بنسټ +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/model/document.py,Action Failed,کړنه کې پاتې راغی apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,د کارن @@ -1278,6 +1300,7 @@ DocType: Print Settings,Enable Raw Printing,را چاپول وړ کړئ DocType: Website Route Redirect,Source,سرچینه apps/frappe/frappe/templates/includes/list/filters.html,clear,روښانه apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,ختم شو +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,جوړول> کارن DocType: Prepared Report,Filter Values,فلټر ارزښتونه DocType: Communication,User Tags,کارن نښانونه DocType: Data Migration Run,Fail,ناکامي @@ -1334,6 +1357,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,تع ,Activity,فعالیت DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",مرسته: د په سيستم کې د بل ریکارډ سره تړنې لري، وکاروي "# فورمه / يادونه / [یادونه نوم]" د لینک په حافظی په توګه. (نه کاروي "http: //") DocType: User Permission,Allow,اجازه ورکړه +DocType: Data Import Beta,Update Existing Records,موجود ریکارډونه تازه کړئ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,راځئ چې پرله پسې خبرو او د تورو د مخنيوي DocType: Energy Point Rule,Energy Point Rule,د انرژي ټکي قانون DocType: Communication,Delayed,وځنډید @@ -1346,9 +1370,7 @@ DocType: Milestone,Track Field,د څرک ساحه DocType: Notification,Set Property After Alert,خاصیت وټاکي خبرتیا وروسته apps/frappe/frappe/config/customization.py,Add fields to forms.,د فارمونو برخو کړئ. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ښکاري چې څه غلط سره د دې ځای د وی.دا سازونې ده. -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/sidebar/review.js,Add Review,بیاکتنه اضافه کړئ -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),د فونټ اندازه (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,یوازې د معیاري ډایپ ټایپونو ته اجازه ورکړل شوې چې د دودیز ب Formه غوره شي. DocType: Email Account,Sendgrid,Sendgrid @@ -1384,6 +1406,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,اوبخښه! تاسو نه شي کولای د Auto-تولید تبصرې ړنګول DocType: Google Settings,Used For Google Maps Integration.,د ګوګل میپ ادغام لپاره کارول کیږي. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,ماخذ DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,هیڅ ریکارډ به نه صادریږي DocType: User,System User,سيستم کارن DocType: Report,Is Standard,آیا د معياري DocType: Desktop Icon,_report,_report @@ -1398,6 +1421,7 @@ DocType: Workflow State,minus-sign,منفي-نښه apps/frappe/frappe/public/js/frappe/request.js,Not Found,پیدا نشو apps/frappe/frappe/www/printview.py,No {0} permission,نه {0} د اجازې apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,د صادراتو د ګمرک حلال +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,کوم توکي ونه موندل شول. DocType: Data Export,Fields Multicheck,ساحې څو ځلې DocType: Activity Log,Login,د ننه کیدل DocType: Web Form,Payments,د پیسو ورکړه @@ -1456,8 +1480,9 @@ DocType: Address,Postal,د پستي DocType: Email Account,Default Incoming,default راتلونکي DocType: Workflow State,repeat,تکرار DocType: Website Settings,Banner,بينر +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},ارزښت باید د {0} څخه یو وي DocType: Role,"If disabled, this role will be removed from all users.",که ناچارن شوی، دغه رول به له ټولو کاروونکو لرې شي. -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} لیست ته ورشئ +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,مرسته په پلټنه DocType: Milestone,Milestone Tracker,د مایلسټون تعقیبونکی apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,نومليکنه خو معلولينو @@ -1471,6 +1496,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,ځایی ډګر نوم DocType: DocType,Track Changes,Track بدلونونه DocType: Workflow State,Check,چيک DocType: Chat Profile,Offline,د نالیکي +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},په بریالیتوب سره {0} وارد شو DocType: User,API Key,API کلیدي DocType: Email Account,Send unsubscribe message in email,په بريښناليک د ګډون د پېغام وليږئ apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,سمول عنوان @@ -1497,10 +1523,10 @@ 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/form/footer/timeline.js,changed value of {0} {1},د {0} {1} ارزښت بدل شو 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,ټولې پاڼې -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                  No results found for '

                                                                                  ,"

                                                                                  د 'لپاره هیڅ پایله ونه موندل شوه

                                                                                  " DocType: DocField,Attach Image,د انځور ضمیمه DocType: Workflow State,list-alt,لست-alt apps/frappe/frappe/www/update-password.html,Password Updated,شفر Updated @@ -1520,8 +1546,10 @@ 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 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> د کارونکي اجازه DocType: LDAP Group Mapping,LDAP Group Mapping,د LDAP ګروپ نقشه کول DocType: Dashboard Chart,Chart Options,د چارت اختیارونه +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,بې پته کالم apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} د {1} د {2} په قطار # {3} DocType: Communication,Expired,تېر شوی apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,داسې ښکاري چې تاسو کارول یې ناسم دی! @@ -1531,6 +1559,7 @@ DocType: DocType,System,سيستم DocType: Web Form,Max Attachment Size (in MB),Max ضميمه اندازه (په MB) apps/frappe/frappe/www/login.html,Have an account? Login,يو ګڼون لری؟ د ننه کیدل DocType: Workflow State,arrow-down,غشی ښکته +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},قطار {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},کارن اجازه نه ړنګول {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} د {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,آخرین به روز رسانی @@ -1547,6 +1576,7 @@ DocType: Custom Role,Custom Role,د ګمرکونو رول apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,کور / امتحان پوښی 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,خپل پټ نوم وليکئ DocType: Dropbox Settings,Dropbox Access Secret,Dropbox لاسرسی پټې +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(لازمي) 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.,په فایل کې هیڅ معلومات نه موندل کیږي. مهرباني وکړئ نوی فایل د ډاټا سره بیاچاپ کړئ. @@ -1619,6 +1649,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ډشبور apps/frappe/frappe/desk/form/assign_to.py,New Message,نوی پیغام DocType: File,Preview HTML,د مخکتنې د HTML DocType: Desktop Icon,query-report,خوری-راپور +DocType: Data Import Beta,Template Warnings,د ساندوي خبرداری apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,چاڼګرونه وژغوره DocType: DocField,Percent,په سلو کې apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,لطفا د فلټرونو ټاکل @@ -1640,6 +1671,7 @@ DocType: Custom Field,Custom,د ګمرکونو DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",که چیرې فعال وي، هغه کارونکي چې د محدود شوي IP پتې څخه ننوتل، د دوو فاکتور لیکوال لپاره ندی هڅول کیږي DocType: Auto Repeat,Get Contacts,اړيکې ترلاسه کړئ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},ليکنې درج لاندې {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,د سرلیک نه پرته کالم پریښودل DocType: Notification,Send alert if date matches this field's value,وليږئ د خبرتیا که نېټې دې برخه کې د ارزښت سره سمون خوري DocType: Workflow,Transitions,ته وسپارل apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} د {1} د {2} @@ -1663,6 +1695,7 @@ DocType: Workflow State,step-backward,ګام په شا apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,مهرباني وکړئ په خپل ځای جوړول Useragent Dropbox لاسرسي کیلي ګانو څخه جوړ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,دغه ریکارډ ړنګول چې د دې ایمیل ادرس استولو اجازه +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)",که غیر معیاري بندر (د مثال په توګه POP3: 995/110 ، IMAP: 993/143) apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,لنډلارې غوره کړئ apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,يوازې جبري پټی لپاره د نوي ریکارډونه ضروري دي. تاسو کولای غیر الزامی ستنې ړنګول که تاسو غواړئ. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,ډیر فعالیت ښودل @@ -1770,6 +1803,7 @@ 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,Default لیږلو او د inbox DocType: System Settings,OTP App,د OTP اپلیکیشن 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,لیک DocType: DocType,"Naming Options:
                                                                                  1. field:[fieldname] - By Field
                                                                                  2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                  3. Prompt - Prompt user for a name
                                                                                  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                  5. @@ -1783,6 +1817,7 @@ DocType: GCalendar Account,Next Sync Token,د بل همغږۍ ټکي DocType: Energy Point Settings,Energy Point Settings,د انرژي ټکي تنظیمات DocType: Async Task,Succeeded,بریالي وو apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},اجباري برخو کې اړتیا {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                    No results found for '

                                                                                    ,"

                                                                                    د 'لپاره هیڅ پایله ونه موندل شوه

                                                                                    " apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,لپاره د بیرته حلال {0}؟ apps/frappe/frappe/config/desktop.py,Users and Permissions,کارنان او حلال DocType: S3 Backup Settings,S3 Backup Settings,S3 بیک اپ امستنې @@ -1853,6 +1888,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,په DocType: Notification,Value Change,د ارزښت د بدلون DocType: Google Contacts,Authorize Google Contacts Access,د ګوګل اړیکو لاسرسی اختیار کړئ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,د راپور څخه یواځې د شمیرې ساحې ښودل +DocType: Data Import Beta,Import Type,د واردولو ډول DocType: Access Log,HTML Page,د HTML پا .ه DocType: Address,Subsidiary,د متمم apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ ټایر سره د پیوستون هڅه کول ... @@ -1863,7 +1899,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,باطلې DocType: Custom DocPerm,Write,وليکئ apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,یواځې د مدیر ته شوې پوښتن / دستورالعمل راپورونه جوړ اجازه apps/frappe/frappe/public/js/frappe/form/save.js,Updating,د نصابونو په -DocType: File,Preview,د مخکتنې +DocType: Data Import Beta,Preview,د مخکتنې apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ساحوي "ارزښت" لازمي ده. لطفا د ارزښت د مشخص اوسمهالولو ته DocType: Customize Form,Use this fieldname to generate title,د دې fieldname په استفادې سره د سرليک تولید apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,د وارداتو ليک له @@ -1947,6 +1983,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,لټونګر DocType: Social Login Key,Client URLs,د مراجع یو آر ایل apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,ځينې معلومات ورک دی apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,په بریالیتوب سره {0} جوړ شو +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}",د {1} ، {2} د {0} پرېښودل DocType: Custom DocPerm,Cancel,لغوه کړه apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,بلک ړنګونه apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,د دوتنې {0} نه شته @@ -1973,7 +2010,6 @@ DocType: GCalendar Account,Session Token,د سیشن نښه DocType: Currency,Symbol,سمبول apps/frappe/frappe/model/base_document.py,Row #{0}:,د کتارونو تر # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,د معلوماتو حذف کیدل تایید کړئ -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,نوی پټنوم راولي apps/frappe/frappe/auth.py,Login not allowed at this time,د ننوت په دې وخت کې اجازه نه لري DocType: Data Migration Run,Current Mapping Action,اوسنۍ نقشه ایزه کړنه DocType: Dashboard Chart Source,Source Name,سرچینه نوم @@ -1986,6 +2022,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,په apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ور پسی DocType: LDAP Settings,LDAP Email Field,LDAP بريښناليک ساحوي apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} بشپړفهرست +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,د {0} ریکارډونه صادر کړئ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,لا له وړاندې په د کارونکي ته ایا لست DocType: User Email,Enable Outgoing,فعال باورلیک DocType: Address,Fax,فاکس @@ -2045,7 +2082,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,چاپ سندونه apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ډګر ته ورننوت DocType: Contact Us Settings,Forward To Email Address,مخ په وړاندې د برېښلیک پته +DocType: Contact Phone,Is Primary Phone,لومړنی تلیفون دی DocType: Auto Email Report,Weekdays,اونۍ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,د {0} ریکارډونه به صادر شي apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,عنوان ډګر باید یو قانوني fieldname وي DocType: Post Comment,Post Comment,د پوسټ تبصره apps/frappe/frappe/config/core.py,Documents,اسناد @@ -2064,7 +2103,9 @@ eval:doc.age>18",دې برخه کې به پرانيستل شي يوازې ک DocType: Social Login Key,Office 365,دفتر 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,نن apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,نن +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",کله چې تاسو جوړ دې، د کاروونکي به يوازې کولای لاسرسی اسناد وي (د بيلګې په توګه. Blog Post) چې مخونه شته (د مثال په. ویبالګ). +DocType: Data Import Beta,Submit After Import,له واردولو وروسته وسپارئ DocType: Error Log,Log of Scheduler Errors,يادښت د pane دندې تېروتنې DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,ددفتروسایل د مراجع د پټې @@ -2083,10 +2124,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,په Login مخ ناتوانې پيرودونکو لپارهخپل مخونه apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,د / خاوند ګمارل شوي DocType: Workflow State,arrow-left,غشی-پاتې +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1 ریکارډ صادر کړئ DocType: Workflow State,fullscreen,مکمله صفحه DocType: Chat Token,Chat Token,چیٹ توکی apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,چارت جوړ کړئ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,وارد مه کوئ DocType: Web Page,Center,مرکز DocType: Notification,Value To Be Set,ارزښت جوړ شي apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} @@ -2105,6 +2148,7 @@ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under DocType: Print Format,Show Section Headings,انکړپټه ښودل برخه Headings DocType: Bulk Update,Limit,حد apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,نوی برخه اضافه کړئ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,فلټر شوي ریکارډونه apps/frappe/frappe/www/printview.py,No template found at path: {0},نه کېنډۍ په لاره وموندل شو: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,نه برېښناليک حساب DocType: Comment,Cancelled,لغوه شوی @@ -2190,10 +2234,13 @@ 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} نه شي 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,به خپل د ننوت تذکرو وي +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,د نړیوال لټون اسنادو ډولونه بیا تنظیمول. ,Lead Conversion Time,د لیږد تبادله وخت apps/frappe/frappe/desk/page/activity/activity.js,Build Report,د راپور د جوړولو DocType: Note,Notify users with a popup when they log in,کارنان سره بړبوکيز خبر کله چې په log +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,اصلي ماډلونه {0} په نړیوال لټون کې نشي موندل کیدلی. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,خلاصې خبرې apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} د {1} نه شته، چې د لېږدونه او د نوي هدف وټاکئ DocType: Data Migration Connector,Python Module,پدیډ ماډول @@ -2210,8 +2257,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,بندول 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیم> د کارونکي اجازه -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,تازه +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,تازه DocType: Transaction Log,Transaction Hash,د راکړې ورکړې ها DocType: Error Snapshot,Snapshot View,انځور ښکاره کړی apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,لطفا د استولو مخکې د دغی وژغوري @@ -2227,6 +2273,7 @@ DocType: Data Import,In Progress,د پرمختګ په حال کې apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,د شاتړ کتار ولاړ. دا ښايي يو څو دقيقو کې د يوه ساعت. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,د کارن اجازې لا دمخه لا شتون لري +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},کالم {0} ساحې {1} ته نقشه کول apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},وګورئ {0} DocType: User,Hourly,ورځي apps/frappe/frappe/config/integrations.py,Register OAuth Client App,راجستر OAuth د مراجع ددفتروسایل @@ -2238,7 +2285,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,د ټکی تخصیص DocType: SMS Settings,SMS Gateway URL,SMS ليدونکی URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} د {1} نه وي. "{2}". دا بايد د يو وي "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} يا {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,د تېرنويې د تازه DocType: Workflow State,trash,خځلنۍ DocType: System Settings,Older backups will be automatically deleted,د زړو backups به په اتوماتيک ډول ړنګ شي apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,د ناباوره لاسرسی کیلي ID یا د پټ لاس رسی کیلي. @@ -2267,6 +2313,7 @@ DocType: Address,Preferred Shipping Address,نقل غوره پته apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,د لیک سر apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} جوړ دغه {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},د {0}: {1} لپاره په قطار {2} کې اجازه نشته. محدود محدود ساحه: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,د بریښنالیک حساب نه دی تنظیم شوی. مهرباني وکړئ له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه نوی بریښنالیک حساب جوړ کړئ DocType: S3 Backup Settings,eu-west-1,eu-West-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",که چیرې دا چک شوی وي، د قطعاتو باوري ډاټا سره به واردېږي او باوري قطار به تاسو ته وروسته د واردولو لپاره نوي فایل ته وځنډول شي. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,سند یوازې د رول د کاروونکو له خوا د سمون @@ -2293,6 +2340,7 @@ DocType: Custom Field,Is Mandatory Field,ده اجباري ساحوي DocType: User,Website User,وېب پاڼه د کارن apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,ځینې کالم ممکن کښته شي کله چې PDF ته چاپ شی. هڅه وکړئ د 10 کالم لاندې د کالمونو شمیر وساتئ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,نه سربرابري +DocType: Data Import Beta,Don't Send Emails,بریښنالیکونه مه واستوئ DocType: Integration Request,Integration Request Service,د یووالي غوښتنه خدمتونه DocType: Access Log,Access Log,لاسرسی لاگ DocType: Website Script,Script to attach to all web pages.,د ښونکی چې ټولو د ويب پاڼې په ضمیمه کړي. @@ -2332,6 +2380,7 @@ DocType: Contact,Passive,Passive DocType: Auto Repeat,Accounts Manager,حسابونه مدير apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},د {1} {1} لپاره مسؤل apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,ستاسو اجوره لغوه. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,مهرباني وکړئ د ډیفالټ بریښنالیک حساب له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه تنظیم کړئ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,دوتنه انتخاب ډول apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,ټول وګوری DocType: Help Article,Knowledge Base Editor,پوهې بنسټ اېډېټر @@ -2364,6 +2413,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,د معلوماتو د apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,سند حالت apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,تصویب ته اړتیا ده +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,مخکې لدې چې موږ ستاسو فایل وارد کړو لاندې ریکارډونه باید رامینځته شي. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth د واک ورکولو د قانون apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,اجازه نه واردیږي DocType: Deleted Document,Deleted DocType,ړنګ DocType @@ -2416,8 +2466,8 @@ DocType: GCalendar Settings,Google API Credentials,د ګوګل API کریډیټ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ناستې شروع ناکام apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ناستې شروع ناکام apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ایمیل د {0} ته استول شوې وه او کاپي د {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},دا لاسوند وړاندې کړی {0} DocType: Workflow State,th,مه -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} کاله دمخه DocType: Social Login Key,Provider Name,د چمتو کوونکي نوم apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},د جوړولو لپاره یو نوی {0} DocType: Contact,Google Contacts,د ګوګل اړیکې @@ -2425,6 +2475,7 @@ DocType: GCalendar Account,GCalendar Account,د ګالیلر حساب DocType: Email Rule,Is Spam,آیا سپام apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},راپور {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},د پرانیستې {0} +DocType: Data Import Beta,Import Warnings,خبرداری وارد کړه DocType: OAuth Client,Default Redirect URI,Default Redirect URI DocType: Auto Repeat,Recipients,اخیستونکو DocType: System Settings,Choose authentication method to be used by all users,د ټولو کاروونکو لخوا د کارولو لپاره د اعتبار طریقه غوره کړه @@ -2554,6 +2605,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,نوی جوړول DocType: Workflow State,chevron-down,chevron ښکته apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),ایمیل ته نه استول {0} (کش / معيوبو) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,د صادراتو لپاره ساحې وټاکئ DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,کوچنې د اسعارو له کسر ارزښت apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,د راپور چمتو کول @@ -2562,6 +2614,7 @@ DocType: Workflow State,th-list,مه-لست DocType: Web Page,Enable Comments,ها فعال کړه apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,یاداښتونه DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),IP پتې يوازې د کارونکي اندیښمن دي. څو IP پتې کولای سره commas بیلولو زياته شي. هم لکه قسمي IP پتې مني (111.111.111) +DocType: Data Import Beta,Import Preview,د وارد مخکتنه DocType: Communication,From,له apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,لومړی د يوې ډلې غوټه وټاکئ. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},موندل {0} د {1} @@ -2658,6 +2711,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,تر منځ د DocType: Social Login Key,fairlogin,عادلینګ DocType: Async Task,Queued,له پيله +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> فارم دودیز کړئ DocType: Braintree Settings,Use Sandbox,sandbox استعمال apps/frappe/frappe/utils/goal.py,This month,دا میاشت apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,د نوي ګمرک د چاپ شکل @@ -2672,6 +2726,7 @@ DocType: Session Default,Session Default,ناسته DocType: Chat Room,Last Message,وروستۍ پیغام DocType: OAuth Bearer Token,Access Token,د لاسرسي د نښې DocType: About Us Settings,Org History,دپوهنتون تاریخ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,شاوخوا {0} دقیقې پاتې دي DocType: Auto Repeat,Next Schedule Date,د بل شیدو نیټه DocType: Workflow,Workflow Name,ننګولې نوم DocType: DocShare,Notify by Email,له خوا د ليک خبر @@ -2701,6 +2756,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,لیکوال apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Resume لېږل apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,بېرته پرانيستل +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,خبرداری ښودل apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,کارن رانيول DocType: Data Migration Run,Push Failed,پش ناکام شو @@ -2738,6 +2794,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ژور apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,تاسو ته د خبر لیک لیدو اجازه نلرئ. DocType: User,Interests,د ګټو apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,د تېرنويې د بیرته جوړولو د لارښوونو ته خپل ایمیل استول شوي دي +DocType: Energy Point Rule,Allot Points To Assigned Users,ټاکل شوي کاروونکو ته د نقطو ټاکل apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",0 د ليول لپاره د سند په کچه پرېښلې، \ د ساحوي کچه پرېښلې لوړې کچې ده. DocType: Contact Email,Is Primary,لومړنی دی @@ -2761,6 +2818,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,خپرولو کلیدي DocType: Stripe Settings,Publishable Key,خپرولو کلیدي apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,واردول پیل کړئ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,د صادرولو ډول DocType: Workflow State,circle-arrow-left,دایره-غشی-پاتې DocType: System Settings,Force User to Reset Password,کارونکي د رمز له سره تنظیمولو ته زور ورکړی apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",د تازه راپور ترلاسه کولو لپاره ، په {0} کلیک وکړئ. @@ -2774,12 +2832,15 @@ DocType: Contact,Middle Name,منځنی نوم DocType: Custom Field,Field Description,ساحوي Description apps/frappe/frappe/model/naming.py,Name not set via Prompt,له لارې د خپلسرو نوم نه apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ايميل +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}",د {1} ، {2} د {0} تازه کول DocType: Auto Email Report,Filters Display,چاڼګرونه وښایئ apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",د ترمیم ترسره کولو لپاره باید "ترمیم شوي_ ډګر" ساحه شتون ولري. +DocType: Contact,Numbers,نمبرونه apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,فلټرونه خوندي کړئ DocType: Address,Plant,د نبات د apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Reply ټول DocType: DocType,Setup,چمتو کول +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,ټول ریکارډونه DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,د بریښنالیک آدرس چې د ګوګل اړیکې باید همغږي شي. DocType: Email Account,Initial Sync Count,لومړنۍ پرانیځئ شمېرنې DocType: Workflow State,glass,ګيلاس @@ -2804,7 +2865,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,د مخکتنې پاپ اپ ښودل apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,دا یو سر-100 عام شفر. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,لطفا پاپ پوړو وتوانوي -DocType: User,Mobile No,د موبايل په هيڅ +DocType: Contact,Mobile No,د موبايل په هيڅ DocType: Communication,Text Content,متن منځپانګه DocType: Customize Form Field,Is Custom Field,آیا د ګمرک د ساحوي DocType: Workflow,"If checked, all other workflows become inactive.",که چک د نورو ټولو workflows فعال شي. @@ -2850,6 +2911,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Add apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,د نوي چاپ شکل نوم apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,د سایډ بار ټګول DocType: Data Migration Run,Pull Insert,ورننوځئ +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",د ضرب کونکي ارزښت سره د ضرب الاجل وروسته اعظمي نقطو ته اجازه ورکول (یادونه: د هیڅ حد لپاره دا ساحه خالي نه پریږدئ یا 0 ټاکل) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,ناباوره ټیمپلیټ apps/frappe/frappe/model/db_query.py,Illegal SQL Query,غیرقانوني SQL پوښتنه apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,اجباري: DocType: Chat Message,Mentions,مغزونه @@ -2862,6 +2926,7 @@ DocType: User Permission,User Permission,د کارن اجازه apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP نه لګول apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,سره د معلوماتو دانلود +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},د {0} {1} لپاره بدل شوي ارزښتونه DocType: Workflow State,hand-right,لاس-حق DocType: Website Settings,Subdomain,ډومېن DocType: S3 Backup Settings,Region,Region @@ -2889,10 +2954,12 @@ DocType: Braintree Settings,Public Key,عامه کیلي DocType: GSuite Settings,GSuite Settings,GSuite امستنې DocType: Address,Links,دویب DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,د دې حساب په کارولو سره لیږل شوي ټولو بریښنالیکونو لپاره د لیږونکي نوم په توګه پدې حساب کې ذکر شوي بریښنالیک پتې نوم کاروي. +DocType: Energy Point Rule,Field To Check,ساحه د چک کولو لپاره apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.",د ګوګل اړیکې - د ګوګل اړیکو {0} ، د خطا کوډ {1} کې اړیکه نشي تازه کولی. apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,مهرباني وکړئ د سند ډول وټاکئ. apps/frappe/frappe/model/base_document.py,Value missing for,ارزښت د ورک apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Add د ماشومانو د +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,پرمختګ واردول DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",که چیرې حالت مطمین وي کارونکي به د ټکو سره انعام ورکړل شي. د مثال په توګه doc.status == 'بند' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} د {1}: وسپارل دثبت ړنګ نه شي. @@ -2976,6 +3043,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ته خوځون DocType: Address,Preferred Billing Address,اولګښت غوره پته apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,په یوه غوښتنه ډېر زيات ليکي. لطفا کوچني غوښتنې واستوئ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,د ګوګل ډرایو ترتیب شوی. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,د لاسوند ډول {0} تکرار شوی دی. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ارزښتونه بدله DocType: Workflow State,arrow-up,غشی-up apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",د آٹو تکرار تنظیم کولو لپاره ، له {0} څخه "د ځان تکرار اجازه ورکړئ" وړ کړئ. @@ -3064,6 +3132,7 @@ DocType: Custom Field,Options Help,غوراوي مرسته 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 ریکارډ به صادر شي 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,د ډومېن اړه اندیښمن دي @@ -3080,6 +3149,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,د بریښنالیک کوډ DocType: Webhook,Webhook Request,د ویبښک غوښتنه apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** ناکام شو: {0} د {1}: {2} DocType: Data Migration Mapping,Mapping Type,د نقشه ډول +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,اجباري وټاکئ apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,څريدل د ښارونو له apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.",د سمبولونو، ګڼې، او يا لوېتوري لیکونه اړتيا نشته. DocType: DocField,Currency,د اسعارو @@ -3110,11 +3180,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,د لیک پر بنسټ apps/frappe/frappe/utils/oauth.py,Token is missing,د نښې ورک دی apps/frappe/frappe/www/update-password.html,Set Password,شفر ورکړه +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,په بریالیتوب سره {0} ریکارډونه وارد شول. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,نوټ: د پاڼې نوم بدلول به د دې مخ د تېر په حافظی مات کړي. apps/frappe/frappe/utils/file_manager.py,Removed {0},لرې {0} DocType: SMS Settings,SMS Settings,SMS امستنې DocType: Company History,Highlight,سرټکي DocType: Dashboard Chart,Sum,سم +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,د ډاټا واردولو له لارې DocType: OAuth Provider Settings,Force,ځواک apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},وروستی ځل سنجول شوی {0} DocType: DocField,Fold,قات @@ -3149,6 +3221,7 @@ DocType: Workflow State,Home,کور DocType: OAuth Provider Settings,Auto,د موټرونو DocType: System Settings,User can login using Email id or User Name,کاروونکي کولی شي د بریښناليک د ایمیل یا کارن نوم کارولو سره وکاروي DocType: Workflow State,question-sign,پوښتنه-نښه +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} نافعال دی apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ساحه "لاره" د ویب نظریاتو لپاره لازمي ده apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} مخکې د کالم داخل کړئ DocType: Energy Point Rule,The user from this field will be rewarded points,د دې برخې څخه کارونکي به د جایزې وړ ټکي وي @@ -3182,6 +3255,7 @@ DocType: Website Settings,Top Bar Items,غوره مدافع وکیالنو د س DocType: Notification,Print Settings,چاپ امستنې DocType: Page,Yes,هو DocType: DocType,Max Attachments,Max ضم +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,شاوخوا {0} ثانیې پاتې دي DocType: Calendar View,End Date Field,د پای نیټه میدان apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,نړېوال لنډلار DocType: Desktop Icon,Page,Page @@ -3291,6 +3365,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite د لاسرسي اجازه DocType: DocType,DESC,نزولی DocType: DocType,Naming,نوم apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,ټول وټاکئ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},کالم {0} apps/frappe/frappe/config/customization.py,Custom Translations,د ګمرکونو Translations apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,پرمختګ apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,د رول له خوا @@ -3332,6 +3407,7 @@ DocType: Stripe Settings,Stripe Settings,یاتوره امستنې DocType: Stripe Settings,Stripe Settings,یاتوره امستنې DocType: Data Migration Mapping,Data Migration Mapping,د معلوماتو مهاجرت نقشه DocType: Auto Email Report,Period,د دورې +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,شاوخوا {0} دقیقې پاتې apps/frappe/frappe/www/login.py,Invalid Login Token,د ننوتو ناسم نوم د نښې apps/frappe/frappe/public/js/frappe/chat.js,Discard,پرېښودل apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 ساعت مخکې @@ -3356,6 +3432,7 @@ DocType: Calendar View,Start Date Field,د پیل تاریخ نیټه DocType: Role,Role Name,رول نوم apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,د ميشتو ونجول apps/frappe/frappe/config/core.py,Script or Query reports,د ښونکی او یا شوې پوښتن راپور +DocType: Contact Phone,Is Primary Mobile,لومړنی موبایل دی DocType: Workflow Document State,Workflow Document State,ننګولې دي د سند د بهرنیو چارو apps/frappe/frappe/public/js/frappe/request.js,File too big,ډېر لوی د دوتنې apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,برېښناليک حساب څو ځله زیاته کړه @@ -3400,6 +3477,7 @@ DocType: DocField,Float,ثاب DocType: Print Settings,Page Settings,د پاڼې ترتیبات apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,خوندي ساتل ... apps/frappe/frappe/www/update-password.html,Invalid Password,بې اعتباره پټنوم +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,په بریالیتوب سره د {1} څخه {0} ریکارډ وارد شو. DocType: Contact,Purchase Master Manager,رانيول ماسټر مدير apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,د لاک په تgۍ کلیک وکړئ د عامه / خصوصي کولو لپاره DocType: Module Def,Module Name,ماډل نوم @@ -3452,6 +3530,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Add / ادا DocType: Comment,Published,Published apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,د بریښنالیک څخه مو مننه DocType: DocField,Small Text,د کوچنیو متن +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,شمیره {0} د تلیفون او همدارنګه د ګرځنده شمیره لپاره لومړني نشي ټاکل کیدی. DocType: Workflow,Allow approval for creator of the document,د سند د پیدا کولو لپاره د تصویب اجازه ورکړه apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,راپور خوندي کړئ DocType: Webhook,on_cancel,په @@ -3508,6 +3587,7 @@ DocType: Print Settings,PDF Settings,د PDF امستنې DocType: Kanban Board Column,Column Name,کالم نوم DocType: Language,Based On,پر بنسټ DocType: Email Account,"For more information, click here.","د نورو معلوماتو لپاره ، دلته کلیک وکړئ ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,د کالمونو شمیر د معلوماتو سره سمون نه خوري apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Default د کمکیانو لپاره apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,د عملي کولو وخت: {0} سیک apps/frappe/frappe/model/utils/__init__.py,Invalid include path,ناباوره لاره شامله ده @@ -3598,7 +3678,7 @@ 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: Deleted Document,GCalendar Sync ID,د ګیالیلر پیوستون ID DocType: Prepared Report,Report Start Time,د پیل وخت -apps/frappe/frappe/config/settings.py,Export Data,د صادراتو ډاټا +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,د صادراتو ډاټا 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.,دا د شالید راپور دی. مهرباني وکړئ مناسب فلټرونه تنظیم کړئ او بیا یو نوی تولید کړئ. @@ -3616,7 +3696,6 @@ DocType: Report,Disable Prepared Report,چمتو شوی راپور ناتوان apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,کارن {0} د معلوماتو د حذف کولو غوښتنه کړې apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,ناقانونه لاسرسی نښه. لطفا بیا هڅه وکړې apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",د غوښتنليک په اړه د یوه نوي نسخه تازه شوي دي، لطفا د دې مخ د تازه -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.,د پتې اصلي ټاپو ټاپو ونه موندل شو. مهرباني وکړئ له تنظیم او چاپ کولو او نښه کولو> پته ټیمپلیټ څخه نوی جوړ کړئ. DocType: Notification,Optional: The alert will be sent if this expression is true,اختیاري: که دا د بیان د سمه ده د خبرتیا به واستول شي DocType: Data Migration Plan,Plan Name,د پلان نوم DocType: Print Settings,Print with letterhead,سره د ليک دچاپ @@ -3656,6 +3735,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: جوړ نشي تعدیل پرته لغوه کړه apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,بشپړ Page DocType: DocType,Is Child Table,آیا د ماشومانو د جدول +DocType: Data Import Beta,Template Options,د ټیمپټل اختیارونه apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} بايد د يو شي د {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} اوس مهال د دې سند یې ګورې apps/frappe/frappe/config/core.py,Background Email Queue,شاليد دبرېښنا ليک د کتار @@ -3663,7 +3743,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,شفر بیاجوړ DocType: Communication,Opened,په کار پيل وکړ DocType: Workflow State,chevron-left,chevron-پاتې DocType: Communication,Sending,لېږل -apps/frappe/frappe/auth.py,Not allowed from this IP Address,نه له دې IP پته اجازه DocType: Website Slideshow,This goes above the slideshow.,دا غوښتنليک او د سلاید پورته. DocType: Contact,Last Name,کورنۍ نوم DocType: Event,Private,د خصوصي @@ -3677,7 +3756,6 @@ DocType: Workflow Action,Workflow Action,ننګولې کړنه apps/frappe/frappe/utils/bot.py,I found these: ,زه د دغو: DocType: Event,Send an email reminder in the morning,د سهار په یو بریښنالیک پند وليږئ DocType: Blog Post,Published On,بخش د -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,د بریښنالیک حساب نه دی تنظیم شوی. مهرباني وکړئ له سیټ اپ> بریښنالیک> بریښنالیک حساب څخه نوی بریښنالیک حساب جوړ کړئ DocType: Contact,Gender,د جندر apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,اجباري معلومات ورک شوي وي: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,د غوښتنلیک یو ار ایل وګوره @@ -3697,7 +3775,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,خبرداری-نښه DocType: Prepared Report,Prepared Report,چمتو شوي راپور apps/frappe/frappe/config/website.py,Add meta tags to your web pages,ستاسو ویب پا pagesو کې میټا ټاګونه اضافه کړئ -DocType: Contact,Phone Nos,د تلیفون شمیره DocType: Workflow State,User,کارن DocType: Website Settings,"Show title in browser window as ""Prefix - title""",خپرونه د سرليک په لټونګر په توګه کړکۍ »مختاړی - لقب" DocType: Payment Gateway,Gateway Settings,د ګيټ و سیسټمونه @@ -3715,6 +3792,7 @@ DocType: Data Migration Connector,Data Migration,ډاټا مهاجرت DocType: User,API Key cannot be regenerated,د API کیلي نشي بدلیدلی apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,کومه تیروتنه وشوه DocType: System Settings,Number Format,شمېر شکل +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,په بریالیتوب سره د {0} ریکارډ وارد شو. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,لنډیز DocType: Event,Event Participants,د غونډې ګډون کوونکي DocType: Auto Repeat,Frequency,د فریکونسۍ @@ -3722,7 +3800,7 @@ DocType: Custom Field,Insert After,وروسته ورننويستل DocType: Event,Sync with Google Calendar,د ګوګل کیلنڈر سره همغږي DocType: Access Log,Report Name,راپور نوم DocType: Desktop Icon,Reverse Icon Color,سرچپه Icon رنګ -DocType: Notification,Save,Save +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Save apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,بله ټاکل شوی نیټه apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,یو چا ته چې لږترلږه دندې ورکړئ وټاکئ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,برخه Heading @@ -3745,11 +3823,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیم> فارم دودیز کړئ DocType: Google Contacts,Last Sync On,وروستنۍ هممهال DocType: Deleted Document,Deleted Document,ړنګ سند apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Oops! کومه تیروتنه وشوه DocType: Desktop Icon,Category,کټه ګورۍ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},ارزښت {0} د {1} لپاره ورک دی apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,اړيکې زيات کړئ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,منظره apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,په Javascript د مراجع لوري سکرېپټ د پراخونې @@ -3773,6 +3851,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,د انرژي ټکي تازه apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',لطفا بل طریقه ټاکي. وی.دا په اسعارو د راکړې ورکړې ملاتړ نه کوي '{0}' DocType: Chat Message,Room Type,د خونې ډول +DocType: Data Import Beta,Import Log Preview,د خبرونې مخکتنه وارد کړئ apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,د لټون ډګر {0} د اعتبار وړ نه دی apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,پورته شوې دوتنه DocType: Workflow State,ok-circle,سمه ده-کړۍ @@ -3838,6 +3917,7 @@ DocType: DocType,Allow Auto Repeat,د بیا تکرار اجازه ورکړه apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,د ښودلو لپاره هیڅ ارزښت نشته DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,د برېښلیک ایمیل +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,په بریالیتوب سره د {0} ریکارډ تازه شو. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},کارن {0} د سند {1} لپاره د نقش اجازه لیک له لارې ډاټا ډول لاسرسی نلري apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,د ننوتو دواړه او پټنوم اړتیا apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,لطفا تازه د وروستیو سند تر لاسه کړي. diff --git a/frappe/translations/pt.csv b/frappe/translations/pt.csv index 0d9c9a5b57..cb133fce3e 100644 --- a/frappe/translations/pt.csv +++ b/frappe/translations/pt.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Novas {} versões para os seguintes aplicativos estão disponíveis apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Por favor seleccione um campo Montante. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Carregando arquivo de importação ... DocType: Assignment Rule,Last User,Último usuário apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","{1}. {2} atribui-lhe uma nova tarefa, {0}." apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Padrões de sessão salvos +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Recarregar arquivo DocType: Email Queue,Email Queue records.,Registos de Fila Email . DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Mensal DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Ativar Receber apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Perigo -apps/frappe/frappe/www/login.py,Email Address,Endereço De Email +DocType: Address,Email Address,Endereço De Email DocType: Workflow State,th-large,ª-grande DocType: Communication,Unread Notification Sent,Notificação não lida Enviados apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Não é permitido efetuar a exportação. Necessita ter a função {0} para poder efetuar a exportação. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrad DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","As opções de contacto, como ""Consulta de Vendas, Consulta de Apoio"", etc., devem estar cada uma numa nova linha ou separadas por vírgulas." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Adicione uma tag ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Retrato -DocType: Data Migration Run,Insert,Inserir +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Inserir apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Permitir acesso ao Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Selecione {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Digite o URL da Base @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,há 1 minu 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 DocType: Company History,Company History,História da Empresa -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Redefinir +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Redefinir DocType: Workflow State,volume-up,volume- apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks chamando pedidos de API em aplicativos da web +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Mostrar Traceback DocType: DocType,Default Print Format,Formato de Impressão Padrão DocType: Workflow State,Tags,Tag apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nenhum: Fim do Fluxo de Trabalho apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","O campo {0} não pode ser definido como único em {1}, pois existem valores não exclusivos" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipos de Documento +DocType: Global Search Settings,Document Types,Tipos de Documento DocType: Address,Jammu and Kashmir,Jammu e Caxemira DocType: Workflow,Workflow State Field,Campo Status do Fluxo de Trabalho -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuração> Usuário DocType: Language,Guest,Convidado DocType: DocType,Title Field,campo Título DocType: Error Log,Error Log,Log de erro @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Repetições como ""abcabcabc"" são somente um pouco mais difícil de adivinhar que ""abc""" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Se acha que isto não foi autorizado, por favor altere a senha de Administrador." +DocType: Data Import Beta,Data Import Beta,Data Import Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} é obrigatório DocType: Assignment Rule,Assignment Rules,Regras de Atribuição DocType: Workflow State,eject,ejetar @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Nome da ação de fluxo de apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,O DocType não pode ser unido DocType: Web Form Field,Fieldtype,Tipo de Campo apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Não é um arquivo zip +DocType: Global Search DocType,Global Search DocType,DocType de pesquisa global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                    New {{ doc.doctype }} #{{ doc.name }}
                                                                                    ","Para adicionar assunto dinâmico, use jinja tags como
                                                                                     New {{ doc.doctype }} #{{ doc.name }} 
                                                                                    " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Evento de Doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Você DocType: Braintree Settings,Braintree Settings,Configurações Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Criou {0} registros com sucesso. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Salvar filtro DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Não é possível excluir {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Insira o parâmetro url da apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Repetição automática criada para este documento apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Exibir relatório no seu navegador apps/frappe/frappe/config/desk.py,Event and other calendars.,Evento e outros calendários. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 linha obrigatória) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Todos os campos são necessários para enviar o comentário. DocType: Custom Script,Adds a client custom script to a DocType,Adiciona um script personalizado do cliente a um DocType DocType: Print Settings,Printer Name,Nome da impressora @@ -254,7 +261,6 @@ DocType: Bulk Update,Bulk Update,Atualização em Massa DocType: Workflow State,chevron-up,chevron para cima DocType: DocType,Allow Guest to View,Permitir convidado para Ver apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} não deve ser o mesmo que {1} -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: Webhook,on_change,em mudança apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Excluir {0} itens permanentemente? apps/frappe/frappe/utils/oauth.py,Not Allowed,Não Desejados @@ -270,6 +276,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Visualização DocType: Email Group,Total Subscribers,Total de Assinantes apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Número da linha apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Se uma função não tem acesso ao Nível 0, então não faz sentido ter aceso aos níveis mais altos." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Salvar como DocType: Comment,Seen,Visto @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Define o status do fluxo de trabalho e as regras para um documento. DocType: Workflow State,Filter,Filtro @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Fechado DocType: Blog Settings,Blog Title,Título do Blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Funções padrão não pode ser desativado apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Tipo de bate-papo +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Colunas do mapa DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"não pode usar sub-consulta, a fim de" @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Adicionar uma coluna apps/frappe/frappe/www/contact.html,Your email address,Seu endereço de email DocType: Desktop Icon,Module,Módulo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Registros {0} atualizados com sucesso em {1}. DocType: Notification,Send Alert On,Enviar Alert On DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Personalizar Rótulo, Ocultar na Impressão, Padrão etc." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Descompactando arquivos ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,O utiliz DocType: System Settings,Currency Precision,Precisão de moeda DocType: System Settings,Currency Precision,Precisão de moeda apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,"Outra transação está a bloquear esta. Por favor, tente novamente após alguns segundos." +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Limpar filtros DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Os anexos não puderam ser vinculados corretamente ao novo documento DocType: Chat Message Attachment,Attachment,Anexo @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Não é poss apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Agenda - Não foi possível atualizar o Evento {0} no Google Agenda, código de erro {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Pesquisar ou digite um comando DocType: Activity Log,Timeline Name,Nome Timeline +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Somente um {0} pode ser definido como primário. DocType: Email Account,e.g. smtp.gmail.com,ex: smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Adicionar uma Nova Regra DocType: Contact,Sales Master Manager,Gestor de Vendas Master @@ -441,7 +453,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Campo de nome do meio LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importando {0} de {1} DocType: GCalendar Account,Allow GCalendar Access,Permitir acesso ao GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} é um campo obrigatório +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} é um campo obrigatório apps/frappe/frappe/templates/includes/login/login.js,Login token required,É necessário o token de login apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Classificação Mensal: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Selecione vários itens da lista @@ -471,6 +483,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Não é possível conect apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Uma palavra que por si só é fácil de adivinhar. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Atribuição automática falhou: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Pesquisa... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Por favor, selecione a Empresa" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Só é possível efetuar a união entre Grupo ou entre Nó de Folha apps/frappe/frappe/utils/file_manager.py,Added {0},Adicionado {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Não há registros correspondentes. Procurar algo novo @@ -483,7 +496,6 @@ DocType: Google Settings,OAuth Client ID,ID do cliente OAuth DocType: Auto Repeat,Subject,Assunto apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,De volta à mesa DocType: Web Form,Amount Based On Field,Montante baseado em campo -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Para Partilhar é obrigatório um utilizador DocType: DocField,Hidden,Oculto DocType: Web Form,Allow Incomplete Forms,Permitir formulários incompletos @@ -520,6 +532,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} e {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Comece uma conversa. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Sempre adicionar "Rascunho" Direcção para projectos de impressão de documentos apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Erro na notificação: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ano (s) atrás DocType: Data Migration Run,Current Mapping Start,Início do mapeamento atual apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,O email foi marcado como spam DocType: Comment,Website Manager,Site Gerente @@ -557,6 +570,7 @@ DocType: Workflow State,barcode,código de barras apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,O uso de subconsulta ou função é restrito apps/frappe/frappe/config/customization.py,Add your own translations,Adicione as suas próprias traduções DocType: Country,Country Name,Nome do País +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Modelo em branco DocType: About Us Team Member,About Us Team Member,Sobre Nós - Membros de Equipa apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","As Permissões são estabelecidas nas Funções e Tipos de Documentos (chamados DocTypes), ao definir direitos como Ler, Escrever , Criar, Eliminar, Enviar , Cancelar, Alterar, Comunicar, Importar, Exportar, Imprimir , Enviar Email e Definir Permissões de Utilizador." DocType: Event,Wednesday,Quarta-feira @@ -568,6 +582,7 @@ DocType: Website Settings,Website Theme Image Link,Link website Tema da imagem DocType: Web Form,Sidebar Items,Itens Sidebar DocType: Web Form,Show as Grid,Mostrar como grade apps/frappe/frappe/installer.py,App {0} already installed,O aplicativo {0} já está instalado +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Os usuários atribuídos ao documento de referência receberão pontos. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Não há visualização DocType: Workflow State,exclamation-sign,sinal de exclamação apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Arquivos descompactados {0} @@ -603,6 +618,7 @@ DocType: Notification,Days Before,Dias Antes apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Os eventos diários devem terminar no mesmo dia. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Editar... DocType: Workflow State,volume-down,volume baixo +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Acesso não permitido deste endereço IP 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 @@ -658,6 +674,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Desenvolvedor apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Criado apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} na linha {1} não pode ter ao mesmo tempo URL e subitens +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Deve haver pelo menos uma linha para as seguintes tabelas: {0} DocType: Print Format,Default Print Language,Idioma de impressão padrão apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Antepassados De apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,A fonte {0} não pode ser eliminada @@ -700,6 +717,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,Disco Rígido DocType: Integration Request,Host,Anfitrião +DocType: Data Import Beta,Import File,Importar arquivo apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Coluna {0} já existe. DocType: ToDo,High,Alto apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Novo evento @@ -728,8 +746,6 @@ DocType: User,Send Notifications for Email threads,Envie notificações para enc apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Não Está no Modo de Desenvolvedor apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,O backup do arquivo está pronto -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Número máximo de pontos permitido após a multiplicação de pontos pelo valor multiplicador (Nota: para o valor definido sem limite como 0) DocType: DocField,In Global Search,Em Global Search DocType: System Settings,Brute Force Security,Segurança da força bruta DocType: Workflow State,indent-left,travessão-esquerdo @@ -771,6 +787,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',User '{0}' já tem o papel '{1}' DocType: System Settings,Two Factor Authentication method,Método de autenticação de dois fatores apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"Primeiro, defina o nome e salve o registro." +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 registros apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Compartilhado com {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Cancelar subscrição DocType: View Log,Reference Name,Nome de Referência @@ -820,6 +837,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Acompanhar status de e-mail DocType: Note,Notify Users On Every Login,Notificar utilizadores em cada login DocType: Note,Notify Users On Every Login,Notificar utilizadores em cada login +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Não é possível combinar a coluna {0} com nenhum campo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Registros {0} atualizados com sucesso. DocType: PayPal Settings,API Password,API senha apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Insira o módulo python ou selecione o tipo de conector apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Não foi definido o Nome de Campo para o Campo Personalizado @@ -848,9 +867,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Nome duplicado {0} {1} -DocType: Email Queue,Retry,Repetir +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Repetir +DocType: Contact Phone,Number,Número DocType: Web Form Field,Web Form Field,Campo de formulário Web apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Você tem uma nova mensagem de: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Editar HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Digite o URL de redirecionamento apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -876,7 +897,7 @@ DocType: Notification,View Properties (via Customize Form),Exibir propriedades ( apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Clique em um arquivo para selecioná-lo. DocType: Note Seen By,Note Seen By,Nota Visto por apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Tente usar um padrão de teclado mais tempo com mais voltas -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Entre os melhores +,LeaderBoard,Entre os melhores DocType: DocType,Default Sort Order,Ordem de classificação padrão DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Reply Help @@ -911,6 +932,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cêntimo apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Escrever um email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Membros para o fluxo de trabalho (por exemplo, o projecto, aprovado , Cancelado ) ." DocType: Print Settings,Allow Print for Draft,Permitir Impressão para Rascunho +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/link_selector.js,Set Quantity,Definir Quantidade apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Submeter este documento para confirmar DocType: Contact,Unsubscribed,Inscrição cancelada @@ -942,6 +964,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Unidade Organizacional para ,Transaction Log Report,Relatório de log de transações DocType: Custom DocPerm,Custom DocPerm,DocPerm personalizado DocType: Newsletter,Send Unsubscribe Link,Enviar Cancelar subscrição link +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Existem alguns registros vinculados que precisam ser criados antes que possamos importar seu arquivo. Deseja criar os seguintes registros ausentes automaticamente? DocType: Access Log,Method,Método DocType: Report,Script Report,Relatório de Script DocType: OAuth Authorization Code,Scopes,Scopes @@ -982,6 +1005,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Carregado com sucesso apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Você está conectado à internet. DocType: Social Login Key,Enable Social Login,Ativar Login Social +DocType: Data Import Beta,Warnings,Advertências DocType: Communication,Event,Evento apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Em {0}, {1} escreveu:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Não é possível eliminar o campo padrão. Se desejar pode ocultá-lo @@ -1037,6 +1061,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Inserir A DocType: Kanban Board Column,Blue,Azul apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,"Todas as personalizações serão removidas. Por favor, confirme." DocType: Page,Page HTML,Página HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Exportar linhas com erro apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,O nome do grupo não pode estar vazio. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Só podem ser criados subgrupos em subgrupos do tipo 'Grupo' DocType: SMS Parameter,Header,Cabeçalho @@ -1076,13 +1101,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Solicitação Expirada apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Ativar / Desativar Domínios DocType: Role Permission for Page and Report,Allow Roles,permitir Roles +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} importados com sucesso de {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Expressão Python simples, exemplo: status em ("inválido")" DocType: User,Last Active,Última Atividade DocType: Email Account,SMTP Settings for outgoing emails,Configurações de SMTP para enviar e-mails apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,escolha um DocType: Data Export,Filter List,Lista de filtros DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Sua senha foi atualizada. Aqui está a sua nova senha 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 @@ -1091,7 +1116,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID de Utiliz. DocType: Communication,Sent,Enviado DocType: Address,Kerala,Kerala -DocType: File,Lft,Esq apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administração DocType: User,Simultaneous Sessions,Sessões simultâneas DocType: Social Login Key,Client Credentials,Credenciais no cliente @@ -1123,7 +1147,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Atualiz apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mestre DocType: DocType,User Cannot Create,Utilizador não pode criar apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Feito com sucesso -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,A Pasta {0} não existe apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Acesso Dropbox é aprovado! DocType: Customize Form,Enter Form Type,Insira o Tipo de Formulário DocType: Google Drive,Authorize Google Drive Access,Autorizar acesso ao Google Drive @@ -1131,7 +1154,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Não há registos marcados. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Remover campo apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Você não está conectado à Internet. Tente novamente após algum tempo. -DocType: User,Send Password Update Notification,Enviar senha Notificação Actualização apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",Está a permitir DocType. Tenha cuidado ! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formatos Personalizados para Impressão, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Soma de {0} @@ -1217,6 +1239,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Código de verifica apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,A integração de contatos do Google está desativada. DocType: Assignment Rule,Description,Descrição DocType: Print Settings,Repeat Header and Footer in PDF,Repetir Cabeçalho e Rodapé em PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Falha DocType: Address Template,Is Default,É Padrão DocType: Data Migration Connector,Connector Type,Tipo de conector apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Nome da coluna não pode estar vazio @@ -1229,6 +1252,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Ir para {0} Página DocType: LDAP Settings,Password for Base DN,Senha para DN de base apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,O campo Tabela 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/model/document.py,Action Failed,Ação Falhada apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Para o Utilizador @@ -1282,6 +1306,7 @@ DocType: Print Settings,Enable Raw Printing,Ativar impressão bruta DocType: Website Route Redirect,Source,Fonte apps/frappe/frappe/templates/includes/list/filters.html,clear,limpar apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Acabado +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuração> Usuário DocType: Prepared Report,Filter Values,Valores de filtro DocType: Communication,User Tags,Etiquetas de utilizador DocType: Data Migration Run,Fail,Falhou @@ -1338,6 +1363,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Segu ,Activity,Atividade DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Ajuda: Para vincular a outro registo no sistema, utilize ""#Formulário/Nota/[Nome da Nota]"" como o Link URL. (Não utilize ""http://"")" DocType: User Permission,Allow,Permitir +DocType: Data Import Beta,Update Existing Records,Atualizar registros existentes apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Vamos evitar palavras e caracteres repetidos DocType: Energy Point Rule,Energy Point Rule,Regra do ponto de energia DocType: Communication,Delayed,Atrasado @@ -1350,9 +1376,7 @@ DocType: Milestone,Track Field,Trilha de corrida DocType: Notification,Set Property After Alert,Definir propriedade após o alerta apps/frappe/frappe/config/customization.py,Add fields to forms.,Adicione campos aos formulários. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Parece que algo está errado com a configuração do Paypal deste site. -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/sidebar/review.js,Add Review,Adicione uma avaliação -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Tamanho da fonte (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Somente DocTypes padrão podem ser personalizados no Custom Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1389,6 +1413,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fal apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Desculpa! Você não pode excluir comentários gerados automaticamente DocType: Google Settings,Used For Google Maps Integration.,Usado para integração com o Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DocType de Referência +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Nenhum registro será exportado DocType: User,System User,Utilizador do Sistema DocType: Report,Is Standard,É Padrão DocType: Desktop Icon,_report,_relatório @@ -1404,6 +1429,7 @@ DocType: Workflow State,minus-sign,sinal-de-menos apps/frappe/frappe/public/js/frappe/request.js,Not Found,Não Encontrado apps/frappe/frappe/www/printview.py,No {0} permission,Sem permissão {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportação permissões personalizadas +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nenhum item encontrado. DocType: Data Export,Fields Multicheck,Campos Multicheck DocType: Activity Log,Login,Iniciar Sessão DocType: Web Form,Payments,Pagamentos @@ -1464,8 +1490,9 @@ DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Entrada Padrão DocType: Workflow State,repeat,repetir DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},O valor deve ser um dos {0} DocType: Role,"If disabled, this role will be removed from all users.",Se esta função for desativada será removida em todos os utilizadores. -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Ir para a {0} lista +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Ir para a {0} lista 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" @@ -1479,6 +1506,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Nome do campo local DocType: DocType,Track Changes,Registar alterações DocType: Workflow State,Check,Verificar DocType: Chat Profile,Offline,Off-line +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} importado com sucesso DocType: User,API Key,Key API DocType: Email Account,Send unsubscribe message in email,Enviar mensagem de cancelamento de inscrição no e-mail apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Editar Título @@ -1505,11 +1533,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} já atribuiu o valor padrão para {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                    No results found for '

                                                                                    ,

                                                                                    Nenhum resultado encontrado para '

                                                                                    DocType: DocField,Attach Image,Anexar Imagem DocType: Workflow State,list-alt,alt-lista apps/frappe/frappe/www/update-password.html,Password Updated,Senha Atualizada @@ -1530,8 +1558,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Não permitido 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 de relatório válido. formato do relatório deve \ um dos seguintes% s DocType: Chat Message,Chat,Conversar +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuração> Permissões do Usuário DocType: LDAP Group Mapping,LDAP Group Mapping,Mapeamento do Grupo LDAP DocType: Dashboard Chart,Chart Options,Opções de gráfico +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Coluna sem título apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} a partir de {1} a {2} na fileira # {3} DocType: Communication,Expired,Expirado apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Parece token que você está usando é inválido! @@ -1541,6 +1571,7 @@ DocType: DocType,System,Sistema DocType: Web Form,Max Attachment Size (in MB),Max tamanho do anexo (em MB) apps/frappe/frappe/www/login.html,Have an account? Login,Ter uma conta? Entrar DocType: Workflow State,arrow-down,seta-para-baixo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Linha {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},O Utilizador não tem permissão para remover {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} de {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Última Atualização Em @@ -1558,6 +1589,7 @@ DocType: Custom Role,Custom Role,Papel personalizado apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Início/Pasta de Teste 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Insira a sua senha DocType: Dropbox Settings,Dropbox Access Secret,Segredo de Acesso à Dropbox +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obrigatório) 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. @@ -1632,6 +1664,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Mostrar pa apps/frappe/frappe/desk/form/assign_to.py,New Message,Nova mensagem DocType: File,Preview HTML,Pré-visualizar HTML DocType: Desktop Icon,query-report,relatório-de-consulta +DocType: Data Import Beta,Template Warnings,Avisos do modelo apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filtros salvos DocType: DocField,Percent,Por Cento apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,"Por favor, defina os filtros" @@ -1653,6 +1686,7 @@ DocType: Custom Field,Custom,Personalizado DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Se ativado, os usuários que fizerem login a partir do Endereço IP restrito não serão solicitados para autenticação de dois fatores" DocType: Auto Repeat,Get Contacts,Obter contatos apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Posts arquivados em {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Ignorando coluna sem título DocType: Notification,Send alert if date matches this field's value,Enviar alerta se a data corresponde valor deste campo DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} a {2} @@ -1676,6 +1710,7 @@ DocType: Workflow State,step-backward,passo para trás- apps/frappe/frappe/utils/boilerplate.py,{app_title},{título_da_app} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Por favor, defina as teclas de acesso da Dropbox na config do seu site" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Eliminar este registo para permitir o envio para este endereço de email +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Se porta não padrão (por exemplo, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Personalizar atalhos apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Só são os campos obrigatórios é que são necessários para efetuar novos registos. Se desejar pode eliminar as colunas não obrigatórias. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Mostrar mais atividade @@ -1783,7 +1818,9 @@ DocType: Note,Seen By Table,Visto por tabela apps/frappe/frappe/www/third_party_apps.html,Logged in,Sessão Iniciada apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Envio e Caixa de Entrada Padrão DocType: System Settings,OTP App,Aplicação OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Registro {0} atualizado com sucesso em {1}. DocType: Google Drive,Send Email for Successful Backup,Enviar email para backup bem-sucedido +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,O agendador está inativo. Não é possível importar dados. DocType: Print Settings,Letter,Carta DocType: DocType,"Naming Options:
                                                                                    1. field:[fieldname] - By Field
                                                                                    2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                    3. Prompt - Prompt user for a name
                                                                                    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                    5. @@ -1797,6 +1834,7 @@ DocType: GCalendar Account,Next Sync Token,Próximo token de sincronização DocType: Energy Point Settings,Energy Point Settings,Configurações de ponto de energia DocType: Async Task,Succeeded,Sucedido apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Os campos obrigatórios exigidos em {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                      No results found for '

                                                                                      ,

                                                                                      Nenhum resultado encontrado para '

                                                                                      apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Repor permissões para {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Utilizadores e Permissões DocType: S3 Backup Settings,S3 Backup Settings,Configurações de backup S3 @@ -1868,6 +1906,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Em DocType: Notification,Value Change,Valor Variação DocType: Google Contacts,Authorize Google Contacts Access,Autorizar o acesso dos Contatos do Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Mostrando apenas campos numéricos do relatório +DocType: Data Import Beta,Import Type,Tipo de Importação DocType: Access Log,HTML Page,Página HTML DocType: Address,Subsidiary,Subsidiário apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Tentando conexão com a bandeja QZ ... @@ -1878,7 +1917,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Servidor o DocType: Custom DocPerm,Write,Escrever apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Só o Administrador é que está autorizado a criar Consultas / Relatórios de Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Actualização -DocType: File,Preview,Pré-visualização +DocType: Data Import Beta,Preview,Pré-visualização apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","O campo "valor" é obrigatória. Por favor, especifique o valor a ser atualizado" DocType: Customize Form,Use this fieldname to generate title,Utilize este fieldname para gerar título apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importar Email de @@ -1963,6 +2002,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Navegador não DocType: Social Login Key,Client URLs,URLs do cliente apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Algumas informações está faltando apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} criado com sucesso +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Ignorando {0} de {1}, {2}" DocType: Custom DocPerm,Cancel,Cancelar apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Excluir em massa apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,O ficheiro {0} não existe @@ -1990,7 +2030,6 @@ DocType: GCalendar Account,Session Token,Token de Sessão DocType: Currency,Symbol,Símbolo apps/frappe/frappe/model/base_document.py,Row #{0}:,Linha #{0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Confirme a exclusão de dados -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nova senha enviada por email apps/frappe/frappe/auth.py,Login not allowed at this time,Neste momento não é permitido iniciar sessão DocType: Data Migration Run,Current Mapping Action,Ação de Mapeamento atual DocType: Dashboard Chart Source,Source Name,Nome da Fonte @@ -2003,6 +2042,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Fixa apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Seguido por DocType: LDAP Settings,LDAP Email Field,LDAP Campo Email apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exportar {0} registros apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Já está na Lista de Tarefas do utilizador DocType: User Email,Enable Outgoing,Ativar Enviar DocType: Address,Fax,Fax @@ -2062,8 +2102,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Imprimir documentos apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Ir para o campo DocType: Contact Us Settings,Forward To Email Address,Encaminhar para o Email +DocType: Contact Phone,Is Primary Phone,É o telefone principal apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envie um e-mail para {0} para vinculá-lo aqui. DocType: Auto Email Report,Weekdays,Dias da semana +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} registros serão exportados apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Campo Título deve ser um nome de campo válido DocType: Post Comment,Post Comment,Publicar comentário apps/frappe/frappe/config/core.py,Documents,Documentos @@ -2081,7 +2123,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Este campo aparecerá apenas se o nome do campo definido aqui tem valor ou as regras são verdadeiros (exemplos): myfield eval: doc.myfield == 'Meu Valor' eval: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hoje +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Depois de ter definido isso, os utilizadores só poderão ser capazes de aceder a documentos (ex: Post de Blog) onde existir a ligação (ex: Blogger)." +DocType: Data Import Beta,Submit After Import,Enviar após importação DocType: Error Log,Log of Scheduler Errors,Registo de Erros de Programador DocType: User,Bio,Biografia DocType: OAuth Client,App Client Secret,App Cliente secreto @@ -2100,10 +2144,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Desativar o link de Inscrição de Cliente e a página de Início de Sessão apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Atribuído A/Proprietário DocType: Workflow State,arrow-left,seta-para-a-esquerda +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Exportar 1 registro DocType: Workflow State,fullscreen,ecrã inteiro DocType: Chat Token,Chat Token,Token de bate-papo apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Criar gráfico apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Não importe DocType: Web Page,Center,Centro DocType: Notification,Value To Be Set,Valor a ser definido apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Edite {0} @@ -2123,6 +2169,7 @@ DocType: Print Format,Show Section Headings,Mostrar Seção Títulos DocType: Bulk Update,Limit,Limite apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Recebemos uma solicitação para exclusão de {0} dados associados a: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Adicione uma nova seção +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Registros Filtrados apps/frappe/frappe/www/printview.py,No template found at path: {0},Não foi encontrado nenhum modelo no caminho: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Sem conta de email DocType: Comment,Cancelled,Cancelado @@ -2210,10 +2257,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Redefinir tipos de documentos de pesquisa global. ,Lead Conversion Time,Lead Conversion Time apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Criar Relatório DocType: Note,Notify users with a popup when they log in,Notificar os utilizadores com um pop-up quando eles entram +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Os módulos principais {0} não podem ser pesquisados na Pesquisa Global. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Abrir Chat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} não existe, efetue uma nova seleção para unir" DocType: Data Migration Connector,Python Module,Módulo Python @@ -2230,8 +2280,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Fechar 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuração> Permissões do Usuário -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Atualizar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Atualizar DocType: Transaction Log,Transaction Hash,Hash de transação DocType: Error Snapshot,Snapshot View,Snapshot Vista apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Por favor, guarde a Newsletter antes de a enviar" @@ -2247,6 +2296,7 @@ DocType: Data Import,In Progress,Em progresso apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Na fila para da cópia de segurança. Pode demorar entre alguns minutos e uma hora. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,A permissão do usuário já existe +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mapeando a coluna {0} para o campo {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Ver {0} DocType: User,Hourly,De hora em hora apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registar OAuth da aplicação cliente @@ -2259,7 +2309,6 @@ DocType: SMS Settings,SMS Gateway URL,URL de Portal de SMS apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} não pode ser ""{2}"". Deve ser um dos ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ganho por {0} via regra automática {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ou {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Atualização da Senha DocType: Workflow State,trash,reciclagem DocType: System Settings,Older backups will be automatically deleted,Cópias de segurança mais antigos serão apagados automaticamente apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID de chave de acesso inválido ou chave de acesso secreto. @@ -2288,6 +2337,7 @@ DocType: Address,Preferred Shipping Address,Endereço de Envio Preferido apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Com a cabeça Letter apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} criou {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Não permitido para {0}: {1} na linha {2}. Campo restrito: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Se isso estiver marcado, linhas com dados válidos serão importadas e linhas inválidas serão despejadas em um novo arquivo para você importar mais tarde." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,O Documento só pode ser editado pelos utilizadores com a função @@ -2314,6 +2364,7 @@ DocType: Custom Field,Is Mandatory Field,É um Campo Obrigatório DocType: User,Website User,Utilizador de Website apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Algumas colunas podem ser cortadas ao imprimir em PDF. Tente manter o número de colunas abaixo de 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Diferente +DocType: Data Import Beta,Don't Send Emails,Não envie emails DocType: Integration Request,Integration Request Service,Pedido Integration Service DocType: Access Log,Access Log,Log de acesso DocType: Website Script,Script to attach to all web pages.,Script para anexar a todas as páginas web. @@ -2353,6 +2404,7 @@ DocType: Contact,Passive,Passivo DocType: Auto Repeat,Accounts Manager,Gestor de Contas apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Atribuição para {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Seu pagamento está cancelado. +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/views/reports/report_view.js,Select File Type,Selecionar Tipo de Arquivo apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Ver tudo DocType: Help Article,Knowledge Base Editor,Conhecimento do Editor Base de Dados @@ -2385,6 +2437,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Dados apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Status do Documento apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Aprovação necessária +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Os seguintes registros precisam ser criados antes que possamos importar seu arquivo. DocType: OAuth Authorization Code,OAuth Authorization Code,Código de autorização OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Não é permitido Importar DocType: Deleted Document,Deleted DocType,DocType eliminado @@ -2438,8 +2491,8 @@ DocType: System Settings,System Settings,Configurações do sistema DocType: GCalendar Settings,Google API Credentials,Credenciais da API do Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Falha ao iniciar a sessão apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Este e-mail foi enviado para {0} e copiados para {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},enviou este documento {0} DocType: Workflow State,th,ª -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ano (s) atrás DocType: Social Login Key,Provider Name,Nome do provedor apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Criar um novo {0} DocType: Contact,Google Contacts,Contatos do Google @@ -2447,6 +2500,7 @@ DocType: GCalendar Account,GCalendar Account,Conta do GCalendar DocType: Email Rule,Is Spam,é Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Relatório {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Abrir {0} +DocType: Data Import Beta,Import Warnings,Avisos de importação DocType: OAuth Client,Default Redirect URI,Padrão de redirecionamento URI DocType: Auto Repeat,Recipients,Destinatários DocType: System Settings,Choose authentication method to be used by all users,Escolha o método de autenticação a ser usado por todos os usuários @@ -2565,6 +2619,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Relatório a apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Erro Slack Webhook DocType: Email Flag Queue,Unread,Não lida DocType: Bulk Update,Desk,Secretária +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Ignorando a coluna {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),O filtro deve ser uma tupla ou lista (em uma lista) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Escreva uma consulta SELECT. Nota resultado não é paginada (todos os dados são enviados de uma só vez). DocType: Email Account,Attachment Limit (MB),Limite de Anexo (MB) @@ -2579,6 +2634,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Criar Novo DocType: Workflow State,chevron-down,chevron para baixo apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),O Email não foi enviado para {0} (inscrição anulada / desativado) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Selecione os campos para exportar DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Menor Preço Moeda Fração apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Preparando Relatório @@ -2587,6 +2643,7 @@ DocType: Workflow State,th-list,ª-lista DocType: Web Page,Enable Comments,Ativar Comentários apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notas DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Restringir utilizador a partir deste endereço IP. Podem ser adicionados vários endereços IP ao separá-los com vírgulas. Também aceita endereços IP parciais como (111.111.111) +DocType: Data Import Beta,Import Preview,Visualização de importação DocType: Communication,From,De apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Selecione um nó de grupo em primeiro lugar. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Localizar {0} em {1} @@ -2686,6 +2743,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Entre DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Em Fila +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuração> Personalizar formulário DocType: Braintree Settings,Use Sandbox,Use Sandbox apps/frappe/frappe/utils/goal.py,This month,Este mês apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Novo Formato de Impressão Personalizado @@ -2701,6 +2759,7 @@ DocType: Session Default,Session Default,Default da Sessão DocType: Chat Room,Last Message,Última mensagem DocType: OAuth Bearer Token,Access Token,Símbolo de Acesso DocType: About Us Settings,Org History,História da Org. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Cerca de {0} minutos restantes DocType: Auto Repeat,Next Schedule Date,Próximo horário Data DocType: Workflow,Workflow Name,Nome de fluxo de trabalho DocType: DocShare,Notify by Email,Notificar por Email @@ -2730,6 +2789,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,retomar o envio apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Reabrir +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Mostrar avisos apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Utilizador de Compra DocType: Data Migration Run,Push Failed,Push Failed @@ -2768,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Pesqui apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Você não tem permissão para visualizar o boletim informativo. DocType: User,Interests,Juros apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,As instruções de redefinição de senha foram enviadas para o seu email +DocType: Energy Point Rule,Allot Points To Assigned Users,Atribuir pontos aos usuários atribuídos apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nível 0 é para permissões de nível de documento, \ níveis mais altos para permissões de nível de campo." DocType: Contact Email,Is Primary,É primário @@ -2791,6 +2852,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Chave publicável DocType: Stripe Settings,Publishable Key,Chave publicável apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Iniciar importação +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Tipo de exportação DocType: Workflow State,circle-arrow-left,círculo com seta para a esquerda DocType: System Settings,Force User to Reset Password,Forçar usuário a redefinir a senha apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Para obter o relatório atualizado, clique em {0}." @@ -2804,13 +2866,16 @@ DocType: Contact,Middle Name,Nome do Meio DocType: Custom Field,Field Description,Descrição de Campo apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nome não definido através de Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Atualizando {0} de {1}, {2}" DocType: Auto Email Report,Filters Display,filtros de exibição apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",O campo "alterado_de" deve estar presente para fazer uma alteração. +DocType: Contact,Numbers,Números apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} apreciou seu trabalho em {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Salvar filtros DocType: Address,Plant,Planta apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Responder todos DocType: DocType,Setup,Configurações +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Todos os registros DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Endereço de e-mail cujos contatos do Google devem ser sincronizados. DocType: Email Account,Initial Sync Count,Contagem de sincronização inicial DocType: Workflow State,glass,vidro @@ -2835,7 +2900,7 @@ DocType: Workflow State,font,tipo de letra DocType: DocType,Show Preview Popup,Mostrar pop-up de pré-visualização apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Esta é uma senha comum top-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Por favor, ative os pop-ups" -DocType: User,Mobile No,Nr. de Telemóvel +DocType: Contact,Mobile No,Nr. de Telemóvel DocType: Communication,Text Content,conteúdo de texto DocType: Customize Form Field,Is Custom Field,É um Campo Personalizado DocType: Workflow,"If checked, all other workflows become inactive.","Se for selecionado, todos os outros fluxos de trabalho tornam-se inativos." @@ -2881,6 +2946,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Adici apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Nome do novo Formato de Impressão apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar DocType: Data Migration Run,Pull Insert,Inserir puxar +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Número máximo de pontos permitido após a multiplicação de pontos pelo valor multiplicador (Nota: para sem limite, deixe este campo vazio ou defina 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Modelo inválido apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Consulta SQL ilegal apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obrigatório: DocType: Chat Message,Mentions,Menções @@ -2895,6 +2963,7 @@ DocType: User Permission,User Permission,Permissão do utilizador apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP não instalado apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Transferir com dados +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valores alterados para {0} {1} DocType: Workflow State,hand-right,mão-direita DocType: Website Settings,Subdomain,Subdomínio DocType: S3 Backup Settings,Region,Região @@ -2922,10 +2991,12 @@ DocType: Braintree Settings,Public Key,Chave pública DocType: GSuite Settings,GSuite Settings,Configurações GSuite DocType: Address,Links,Links DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Usa o nome do endereço de e-mail mencionado nesta conta como o nome do remetente para todos os e-mails enviados usando esta conta. +DocType: Energy Point Rule,Field To Check,Campo a verificar apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Contatos do Google - Não foi possível atualizar o contato nos Contatos do Google {0}, código de erro {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Selecione o Tipo de documento. apps/frappe/frappe/model/base_document.py,Value missing for,Valor em falta para apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Adicionar Subgrupo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Progresso da importação DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Se a condição for satisfeita, o usuário será recompensado com os pontos. por exemplo. doc.status == 'Closed'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: O Registo Enviado não pode ser eliminado. @@ -2962,6 +3033,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizar acesso ao Go apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,A página que você está procurando está faltando. Isto poderia ser porque ele é movido ou se houver um erro de digitação no link. apps/frappe/frappe/www/404.html,Error Code: {0},Código de erro: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descrição da página de anúncios, em texto simples, somente algumas linhas. (max. 140 caracteres)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} são campos obrigatórios DocType: Workflow,Allow Self Approval,Permitir auto-aprovação DocType: Event,Event Category,Categoria do Evento apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3009,8 +3081,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Mover para DocType: Address,Preferred Billing Address,Endereço de Faturação Preferido apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Muitos escreve em um pedido. Por favor, enviar pedidos de menores" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,O Google Drive foi configurado. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,O tipo de documento {0} foi repetido. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Os valores alterados DocType: Workflow State,arrow-up,seta-para-cima +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Deve haver pelo menos uma linha para a tabela {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Para configurar a repetição automática, ative "Permitir repetição automática" de {0}." DocType: OAuth Bearer Token,Expires In,Expira em DocType: DocField,Allow on Submit,Permitir ao Enviar @@ -3097,6 +3171,7 @@ DocType: Custom Field,Options Help,Ajuda de Opções 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 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 @@ -3114,6 +3189,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Código de verificação DocType: Webhook,Webhook Request,Pedido Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Falha: de {0} para {1}: {2} DocType: Data Migration Mapping,Mapping Type,Tipo de mapeamento +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Selecione Obrigatório apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Pesquisar apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Não há necessidade de símbolos, dígitos ou letras maiúsculas." DocType: DocField,Currency,Moeda @@ -3144,11 +3220,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Carta de cabeça com base em apps/frappe/frappe/utils/oauth.py,Token is missing,Token está ausente apps/frappe/frappe/www/update-password.html,Set Password,Wachtwoord instellen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Registros {0} importados com sucesso. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Nota: Alterar o Nome da Página irá interromper o URL anterior para esta página. apps/frappe/frappe/utils/file_manager.py,Removed {0},{0} Foi Removido DocType: SMS Settings,SMS Settings,Definições de SMS DocType: Company History,Highlight,Realçar DocType: Dashboard Chart,Sum,Soma +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,via importação de dados DocType: OAuth Provider Settings,Force,Força apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Última sincronização {0} DocType: DocField,Fold,Dobrar @@ -3185,6 +3263,7 @@ DocType: Workflow State,Home,Início DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,O usuário pode fazer login usando o ID de e-mail ou o Nome de usuário DocType: Workflow State,question-sign,ponto-de-interrogação +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} está desativado apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",O campo "rota" é obrigatório para Web Views apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Inserir coluna antes de {0} DocType: Energy Point Rule,The user from this field will be rewarded points,O usuário deste campo será recompensado pontos @@ -3218,6 +3297,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Itens DocType: Notification,Print Settings,Definições de Impressão DocType: Page,Yes,Sim DocType: DocType,Max Attachments,Anexos Máx. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Cerca de {0} segundos restantes DocType: Calendar View,End Date Field,Campo de data final apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Atalhos Globais DocType: Desktop Icon,Page,Página @@ -3330,6 +3410,7 @@ DocType: GSuite Settings,Allow GSuite access,Permitir acesso GSuite DocType: DocType,DESC,DEC DocType: DocType,Naming,A Atribuir Nome apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Selecionar tudo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Coluna {0} apps/frappe/frappe/config/customization.py,Custom Translations,Traduções Personalizadas apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Progresso apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,por Função @@ -3372,11 +3453,13 @@ DocType: Stripe Settings,Stripe Settings,Configurações de listra DocType: Stripe Settings,Stripe Settings,Configurações de listra DocType: Data Migration Mapping,Data Migration Mapping,Mapeamento de migração de dados DocType: Auto Email Report,Period,Período +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Cerca de {0} minuto restante apps/frappe/frappe/www/login.py,Invalid Login Token,Símbolo de Início de Sessão Inválido apps/frappe/frappe/public/js/frappe/chat.js,Discard,Descartar apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,há 1 hora atrás DocType: Website Settings,Home Page,Página Inicial DocType: Error Snapshot,Parent Error Snapshot,Instantâneo de Erro Principal +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Mapeie colunas de {0} para campos em {1} DocType: Access Log,Filters,Filtros DocType: Workflow State,share-alt,partes alt- apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},A fila deve ser uma de {0} @@ -3407,6 +3490,7 @@ DocType: Calendar View,Start Date Field,Campo de Data de Início DocType: Role,Role Name,Nome da Função apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Ir para o Ambiente de Trabalho apps/frappe/frappe/config/core.py,Script or Query reports,Script ou consulta relatórios +DocType: Contact Phone,Is Primary Mobile,É o celular principal DocType: Workflow Document State,Workflow Document State,Status do Documento no Fluxo de Trabalho apps/frappe/frappe/public/js/frappe/request.js,File too big,Ficheiro demasiado grande apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-mail Conta adicionado várias vezes @@ -3452,6 +3536,7 @@ DocType: DocField,Float,Vírgula Flutuante DocType: Print Settings,Page Settings,Configurações da página apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Salvando ... apps/frappe/frappe/www/update-password.html,Invalid Password,senha inválida +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Registro {0} importado com sucesso de {1}. DocType: Contact,Purchase Master Manager,Gestor Definidor de Compra apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Clique no ícone de cadeado para alternar entre público / privado DocType: Module Def,Module Name,Nome do Módulo @@ -3486,6 +3571,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Alguns dos recursos podem não funcionar no seu navegador. Atualize o navegador para a versão mais recente. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Alguns dos recursos podem não funcionar no seu navegador. Atualize o navegador para a versão mais recente. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Não sei, pergunte à 'ajuda'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},cancelou este documento {0} DocType: DocType,Comments and Communications will be associated with this linked document,Os Comentários e Comunicações irão ser associados a este documento ligado apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtrar... DocType: Workflow State,bold,negrito @@ -3504,6 +3590,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Adicionar / G DocType: Comment,Published,Publicado apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Obrigado pelo seu e-mail DocType: DocField,Small Text,Texto Pequeno +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,O número {0} não pode ser definido como principal para o telefone e o número do celular. DocType: Workflow,Allow approval for creator of the document,Permitir aprovação para o criador do documento apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Salvar o relatorio DocType: Webhook,on_cancel,on_cancel @@ -3561,6 +3648,7 @@ DocType: Print Settings,PDF Settings,Definições de PDF DocType: Kanban Board Column,Column Name,Nome da Coluna DocType: Language,Based On,Baseado Em DocType: Email Account,"For more information, click here.","Para mais informações, clique aqui ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,O número de colunas não corresponde aos dados apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Tornar Padrão apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Tempo de Execução: {0} seg apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Caminho de inclusão inválido @@ -3651,7 +3739,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Carregar {0} arquivos 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/config/settings.py,Export Data,Exportar dados +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportar dados 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." @@ -3669,7 +3757,6 @@ DocType: Report,Disable Prepared Report,Desativar relatório preparado apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,O usuário {0} solicitou a exclusão de dados apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,"Ilegal acesso token. Por favor, tente novamente" apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","O aplicativo foi atualizado para uma nova versão, por favor, atualize esta página" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,Opcional: O alerta será enviado se esta expressão for verdadeira DocType: Data Migration Plan,Plan Name,Nome do Plano DocType: Print Settings,Print with letterhead,Imprimir com timbrado @@ -3710,6 +3797,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Não é possível Alterar sem Cancelar apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Página Completa DocType: DocType,Is Child Table,É uma Subtabela +DocType: Data Import Beta,Template Options,Opções de modelo apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} deve ser um dos {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} está atualmente a visualizar este documento apps/frappe/frappe/config/core.py,Background Email Queue,Fila de email em segundo plano @@ -3717,7 +3805,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Redefinição de Sen DocType: Communication,Opened,Aberto DocType: Workflow State,chevron-left,chevron para a esq. DocType: Communication,Sending,Transmissão -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Não é permitido neste Endereço IP DocType: Website Slideshow,This goes above the slideshow.,Isto vai acima do slideshow. DocType: Contact,Last Name,Sobrenome DocType: Event,Private,Privado @@ -3731,7 +3818,6 @@ DocType: Workflow Action,Workflow Action,Ação de fluxo de trabalho apps/frappe/frappe/utils/bot.py,I found these: ,Eu encontrei estes: DocType: Event,Send an email reminder in the morning,Enviar um e-mail lembrete na parte da manhã DocType: Blog Post,Published On,Publicado Em -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 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} @@ -3752,7 +3838,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,sinal de alerta- DocType: Prepared Report,Prepared Report,Relatório preparado apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Adicione meta tags às suas páginas da web -DocType: Contact,Phone Nos,Nº de telefone 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 @@ -3770,6 +3855,7 @@ DocType: Data Migration Connector,Data Migration,Migração de dados DocType: User,API Key cannot be regenerated,A chave da API não pode ser regenerada apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Algo deu errado DocType: System Settings,Number Format,Formato de Número +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Registro {0} importado com sucesso. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Resumo DocType: Event,Event Participants,Participantes do Evento DocType: Auto Repeat,Frequency,Frequência @@ -3777,7 +3863,7 @@ DocType: Custom Field,Insert After,Inserir Depois DocType: Event,Sync with Google Calendar,Sincronize com o Google Agenda DocType: Access Log,Report Name,Nome do Relatório DocType: Desktop Icon,Reverse Icon Color,Inverter Cor de Ícone -DocType: Notification,Save,Salvar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Salvar apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Próxima data agendada apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Atribuir a quem tem menos atribuições apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,cabeçalho da seção @@ -3800,11 +3886,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuração> Personalizar formulário 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 DocType: Desktop Icon,Category,Categoria +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Valor {0} ausente para {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Adicionar contatos apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Panorama apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensões de script laterais do cliente em Javascript @@ -3827,6 +3913,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Atualização do ponto de energia apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Selecione outra forma de pagamento. O PayPal não suporta transações em moeda '{0}' DocType: Chat Message,Room Type,Tipo de sala +DocType: Data Import Beta,Import Log Preview,Visualização do registro de importação apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,campo de pesquisa {0} não é válido apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,arquivo enviado DocType: Workflow State,ok-circle,círculo-ok @@ -3895,6 +3982,7 @@ DocType: DocType,Allow Auto Repeat,Permitir repetição automática apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nenhum valor para mostrar DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Modelo de email +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Registro {0} atualizado com sucesso. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},O usuário {0} não tem acesso ao tipo de documento via permissão de função para o documento {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,É necessário colocar o nome e a senha apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Por favor, efetue uma atualização para obter os documentos mais recentes." diff --git a/frappe/translations/pt_br.csv b/frappe/translations/pt_br.csv index 951fe5a6c3..f68f364638 100644 --- a/frappe/translations/pt_br.csv +++ b/frappe/translations/pt_br.csv @@ -269,7 +269,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js,Add Subscribers,Adic apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,por exemplo (55 + 434) / 4 ou = Math.sin (Math.PI / 2) ... DocType: Workflow State,Workflow state represents the current state of a document.,O Status do Fluxo de Trabalho representa o status atual de um documento. DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),O número de colunas para um campo numa Grelha (O Total de Colunas em um grid deve ser inferior a 11) -DocType: Data Migration Run,Insert,Insert +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insert apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Remover Campo apps/frappe/frappe/email/doctype/notification/notification.py,Please specify which date field must be checked,Por favor especificar qual campo de data deve ser verificado DocType: DocField,Long Text,Texto Longo @@ -352,6 +352,7 @@ DocType: Translation,Source Text,Texto Original 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 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" @@ -426,7 +427,7 @@ DocType: Workflow State,Download,Baixar DocType: Web Form,Allow Delete,Permitir Excluir apps/frappe/frappe/utils/csvutils.py,File not attached,Arquivo não anexado DocType: DocField,Display Depends On,Visualização depende -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Ranking de Desempenho +,LeaderBoard,Ranking de Desempenho apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Show Tags,Mostrar Tags apps/frappe/frappe/website/doctype/website_theme/website_theme.py,Please Duplicate this Website Theme to customize.,Por favor Duplicar este site Tema para personalizar. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Configurações não encontradas @@ -578,7 +579,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Setup Auto Ema DocType: User,Email Settings,Configurações de Email ,Background Jobs,Tarefas em Segundo Plano apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl+Enter para adicionar comentário -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipos de documento +DocType: Global Search Settings,Document Types,Tipos de documento apps/frappe/frappe/contacts/doctype/address/address.py,There is an error in your Address Template {0},Há um erro no seu modelo de endereço {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Repor permissões para {0} ? apps/frappe/frappe/utils/password_strength.py,This is similar to a commonly used password.,Isso é parecido com uma senha comum. @@ -627,7 +628,7 @@ DocType: DocType,Editable Grid,Grid Editável apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Colunas baseadas em DocType: Chat Token,Chat Token,Token do bate-papo apps/frappe/frappe/desk/form/assign_to.py,New Message from {0},Nova Mensagem de {0} -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Restaurar +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Restaurar DocType: Workflow State,Refresh,Atualizar DocType: Help Article,Knowledge Base Contributor,Colaborador da Base de Conhecimento DocType: Event,Send an email reminder in the morning,Enviar um email lembrete na parte da manhã @@ -636,7 +637,6 @@ apps/frappe/frappe/public/js/frappe/form/quick_entry.js,{0} Name,{0} Nome apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Please save the document before assignment,"Por favor, salve o documento antes da atribuição" DocType: System Settings,Enable Scheduled Jobs,Ativar Tarefas Agendadas apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending,Padrão Envio -DocType: User,Send Password Update Notification,Enviar notificação de alteração de senha DocType: About Us Settings,About Us Settings,Configurações do Quem Somos apps/frappe/frappe/utils/nestedset.py,{0} {1} cannot be a leaf node as it has children,"{0} {1} não pode ser um nó de extremidade , uma vez que tem filhos" DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Como essa moeda deve ser formatada? Se não for definido, serão usados os padrões do sistema" @@ -701,6 +701,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Users with apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Ctrl + Up,Ctrl + Seta para cima apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be of type Attach Image,Campo de imagem deve ser do tipo Anexar Imagem apps/frappe/frappe/core/doctype/doctype/doctype.py,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Opções 'Dynamic Link' tipo de campo deve apontar para um outro campo Ligação com opções como ""TipoDoc '" +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Por favor, selecione Empresa" ,Permitted Documents For User,Documentos Permitidos para Usuário apps/frappe/frappe/email/doctype/email_account/email_account.py,Login Id is required,ID de login é necessária apps/frappe/frappe/public/js/frappe/list/list_view.js,Refreshing,Atualizando @@ -760,7 +761,7 @@ DocType: Data Migration Run,Logs,Logs apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Currently Viewing,Atualmente Exibindo DocType: DocField,Column Break,Quebra de coluna apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Permitir acesso Google Drive -DocType: User,Mobile No,Telefone Celular +DocType: Contact,Mobile No,Telefone Celular DocType: Contact Us Settings,"Default: ""Contact Us""","Padrão: ""Fale Conosco""" apps/frappe/frappe/core/doctype/version/version_view.html,New Value,Novo Valor apps/frappe/frappe/www/third_party_apps.html,Logged in,Logado @@ -846,7 +847,6 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_colum apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importar Inscritos 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. (Este valor pode vir a ser inferior em alguns casos) DocType: Web Form,Amount Based On Field,Total Baseado no Campo -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Atualização de Senha apps/frappe/frappe/utils/password_strength.py,Capitalization doesn't help very much.,"A senha não é boa o suficiente, mas será aceita." apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Nome do campo que será o DocType para este campo link. DocType: Web Form,Web Page Link Text,Link de Texto para Página Web @@ -879,7 +879,6 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: Print Settings,Print with letterhead,Imprimir com o timbre apps/frappe/frappe/config/website.py,Embed image slideshows in website pages.,Incorporar apresentações de imagem em páginas do site. ,Address and Contacts,Endereços e Contatos -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Não é permitido a partir deste endereço IP apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} compartilhou este documento com {1} DocType: Workflow Action,Workflow Action,Ação do Fluxo de Trabalho apps/frappe/frappe/core/doctype/user/user.py,Sign Up is disabled,O cadastro esta desativado @@ -1008,7 +1007,6 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Doctype required,Doc DocType: Workflow State,circle-arrow-down,círculo de seta para baixo DocType: Error Snapshot,Snapshot View,Ver Snapshot DocType: Country,Time Zones,Fusos horários -DocType: File,Lft,LFT apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Tornar padrão DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Não há registros correspondentes. Procure algo novo @@ -1107,7 +1105,7 @@ DocType: Email Account,Check this to pull emails from your mailbox,Marque para b DocType: System Settings,yyyy-mm-dd,dd/mm/yyyy DocType: OAuth Client, Advanced Settings,Configurações Avançadas apps/frappe/frappe/config/website.py,Settings for About Us Page.,Configurações para a Página Sobre Nós. -apps/frappe/frappe/www/login.py,Email Address,Endereço de Email +DocType: Address,Email Address,Endereço de Email DocType: Address,Purchase User,Usuário de Compras apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Erro conjunto aninhado . Entre em contato com o administrador. DocType: Report,Report Builder,Criar/Editar Relatório @@ -1185,7 +1183,6 @@ DocType: Email Account,Email Addresses,Endereço de Email apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Envie este documento para confirmar apps/frappe/frappe/www/update-password.html,New Password Required.,É necessário uma nova senha. DocType: Chat Profile,Chat Background,Wallpaper do chat -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Pasta {0} não existe apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment.,"Por exemplo, se você cancelar e corrigir o INV004, ele vai se tornar um novo documento chamado INV004-1. Isso ajuda você a manter o controle de cada alteração." apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Assignment Complete,Atribuição Concluída DocType: DocType,Default Print Format,Formato de impressão padrão diff --git a/frappe/translations/ro.csv b/frappe/translations/ro.csv index 940e36c563..17642b4271 100644 --- a/frappe/translations/ro.csv +++ b/frappe/translations/ro.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Sunt disponibile noi versiuni {} pentru următoarele aplicații apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vă rugăm să selectați o Suma de câmp. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Se încarcă fișierul de import ... DocType: Assignment Rule,Last User,Ultimul utilizator apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","O nouă sarcină, {0}, v-a fost atribuită de catre {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Salvarea implicită a sesiunii +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Reîncărcați fișierul DocType: Email Queue,Email Queue records.,înregistrări de e-mail coadă. DocType: Post,Post,Publică DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Lunar DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Activați intrare apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Pericol -apps/frappe/frappe/www/login.py,Email Address,Adresa De E-Mail +DocType: Address,Email Address,Adresa De E-Mail DocType: Workflow State,th-large,th-mare DocType: Communication,Unread Notification Sent,Notificare necitit Trimis apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export nu este permisă. Ai nevoie de {0} rolul de a exporta. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opțiuni de contact, cum ar fi ""Vanzari interogare, interogare Support"", etc fiecare pe o linie nouă sau separate prin virgule." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Adăugă o etichetă ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret -DocType: Data Migration Run,Insert,Introduceți +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Introduceți apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Permiteţi accesul Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Selectați {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Introduceți adresa URL de bază @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,in urma cu 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 DocType: Company History,Company History,Istoricul companiei -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Resetează +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Resetează DocType: Workflow State,volume-up,volum-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks care apelează solicitările API în aplicațiile web +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Afișare Traceback DocType: DocType,Default Print Format,Implicit Print Format DocType: Workflow State,Tags,Etichete apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nici una: Sfârșitul de flux de lucru apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} câmpul nu poate fi setat ca unic în {1}, deoarece sunt valori existente non-unice" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Tipuri de Documente +DocType: Global Search Settings,Document Types,Tipuri de Documente DocType: Address,Jammu and Kashmir,Jammu și Kashmir DocType: Workflow,Workflow State Field,Flux de lucru de stat Domeniul -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configurare> Utilizator DocType: Language,Guest,Oaspete DocType: DocType,Title Field,Titlu de câmp DocType: Error Log,Error Log,eroare Log @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Repetări, cum ar fi "abcabcabc" sunt doar puțin mai greu de ghicit decât "abc"" DocType: Notification,Channel,Canal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Dacă credeți că acest lucru este neautorizată, vă rugăm să schimbați parola de administrator." +DocType: Data Import Beta,Data Import Beta,Beta de import de date apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} este obligatoriu DocType: Assignment Rule,Assignment Rules,Reguli de atribuire DocType: Workflow State,eject,evacua @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Flux de lucru Acțiune Nume apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType nu se pot uni DocType: Web Form Field,Fieldtype,Tip câmp apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nu este un fișier zip +DocType: Global Search DocType,Global Search DocType,Căutare globală DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                      New {{ doc.doctype }} #{{ doc.name }}
                                                                                      ","Pentru a adăuga subiect dinamic, utilizați etichete de tip jinja
                                                                                       New {{ doc.doctype }} #{{ doc.name }} 
                                                                                      " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Eveniment Doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Tu DocType: Braintree Settings,Braintree Settings,Setările Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,S-au creat {0} înregistrări cu succes. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Salvați filtrul DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Nu se poate șterge {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Introduceți parametru url apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Repetare automată creată pentru acest document apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Vizualizați raportul în browserul dvs. apps/frappe/frappe/config/desk.py,Event and other calendars.,Eveniment și alte calendare. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 rând obligatoriu) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Toate câmpurile sunt necesare pentru a trimite comentariul. DocType: Custom Script,Adds a client custom script to a DocType,Adaugă un script personalizat de client la un DocType DocType: Print Settings,Printer Name,Numele imprimantei @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Actualizare în bloc DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Se lasă la View oaspeți apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} nu trebuie să fie la fel ca {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Ștergeți definitiv {0} elemente? apps/frappe/frappe/utils/oauth.py,Not Allowed,Nu permise @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Afişaj DocType: Email Group,Total Subscribers,Abonații totale apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Numărul de rând apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","În cazul în care un rol nu are acces la nivel de 0, apoi niveluri mai ridicate sunt lipsite de sens." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Salvează ca DocType: Comment,Seen,Văzut @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Definește state flux de lucru și reguli de un document. DocType: Workflow State,Filter,filtru @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Închis DocType: Blog Settings,Blog Title,Titlu blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Rolurile standard nu pot fi dezactivate apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Tip de chat +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Coloane de hartă DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Nu se pot utiliza sub-interogare în scopul de @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Adăugați o coloană apps/frappe/frappe/www/contact.html,Your email address,Adresa dvs. de e-mail DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Actualizate cu succes {0} înregistrări din {1}. DocType: Notification,Send Alert On,Trimite Alert On DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Personaliza Label, Print Hide, Default, etc" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Decuplarea fișierelor ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Utilizat DocType: System Settings,Currency Precision,Precizia monedei DocType: System Settings,Currency Precision,Precizia monedei apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,O altă tranzactie blochează tranzacţia curentă. Vă rugăm să încercați din nou în câteva secunde. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Șterge filtrele DocType: Test Runner,App,Aplicaţie apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Atasamentele nu au putut fi corelate corect cu noul document DocType: Chat Message Attachment,Attachment,Atașament @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nu s-au putu apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar - Nu s-a putut actualiza Evenimentul {0} în Google Calendar, codul de eroare {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Căutare sau tastați o comandă DocType: Activity Log,Timeline Name,Nume cronologie +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Doar unul {0} poate fi setat ca principal. DocType: Email Account,e.g. smtp.gmail.com,"de exemplu, smtp.gmail.com" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Adăuga o regulă nouă DocType: Contact,Sales Master Manager,Vânzări Maestru de Management @@ -441,7 +453,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Câmpul Nume mediu LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importarea {0} din {1} DocType: GCalendar Account,Allow GCalendar Access,Permiteți accesul GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} este un câmp obligatoriu +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} este un câmp obligatoriu apps/frappe/frappe/templates/includes/login/login.js,Login token required,Este necesar un jeton de conectare apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rang lunar: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Selectați mai multe articole din listă @@ -471,6 +483,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Nu se poate conecta: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Un cuvânt în sine este ușor de ghicit. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Alocarea automată a eșuat: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Căutare... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Vă rugăm să selectați Company apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Fuzionarea este posibil numai între Group-la-grup sau Leaf Nod-a-Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Adăugat {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Nu exista inregistrari care sa se potriveasca. Caută ceva nou @@ -483,7 +496,6 @@ DocType: Google Settings,OAuth Client ID,ID client OAuth DocType: Auto Repeat,Subject,Subiect apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Înapoi la birou DocType: Web Form,Amount Based On Field,Suma bazată pe câmp -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Utilizatorul este obligatorie pentru cota DocType: DocField,Hidden,ascuns DocType: Web Form,Allow Incomplete Forms,Permiteţi Formulare Incomplete @@ -520,6 +532,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} și {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Începeți o conversație. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Întotdeauna adăugați Rubrica ""Schiţă"" pentru schiţa de imprimare documente" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Eroare în notificare: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} an (i) în urmă DocType: Data Migration Run,Current Mapping Start,Înregistrarea curentă a cartografierii apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mailul a fost marcat ca spam DocType: Comment,Website Manager,Site-ul Manager de @@ -558,6 +571,7 @@ DocType: Workflow State,barcode,Cod de bare apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Utilizarea sub-interogării sau funcției este restricționată apps/frappe/frappe/config/customization.py,Add your own translations,Adăugați propriile traduceri DocType: Country,Country Name,Nume Tara +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Șablon gol DocType: About Us Team Member,About Us Team Member,"Membru echipă ""Despre noi""" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Permisiunile sunt setate pe Roluri și Tipuri de Documente (numite DocTypes) prin stabilirea drepturilor precum Citire, Scriere, Creare, Ștergere, Trimitere, Anulare, Modificare, Raport, Import, Export, Tipărire, E-mail și Setează Permisiuni Utilizator." DocType: Event,Wednesday,Miercuri @@ -569,6 +583,7 @@ DocType: Website Settings,Website Theme Image Link,Site-ul Theme Image Link DocType: Web Form,Sidebar Items,Articole Sidebar DocType: Web Form,Show as Grid,Afișați ca Grilă apps/frappe/frappe/installer.py,App {0} already installed,Aplicatia {0} deja instalata +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Utilizatorii alocați documentului de referință vor primi puncte. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Fără previzualizare DocType: Workflow State,exclamation-sign,semn de exclamare apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Fișiere dezafectate {0} @@ -604,6 +619,7 @@ DocType: Notification,Days Before,Zilele Înainte de apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Evenimentele zilnice ar trebui să termine în aceeași zi. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Editați | ×... DocType: Workflow State,volume-down,volum-jos +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Accesul nu este permis de la această adresă IP apps/frappe/frappe/desk/reportview.py,No Tags,Fără Etichete DocType: Email Account,Send Notification to,Trimite Notificarea DocType: DocField,Collapsible,Rabatabil @@ -660,6 +676,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Dezvoltator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Creat apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} din rândul {1} nu poate avea atât URL cât și articole copil +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Trebuie să existe cel puțin un rând pentru următoarele tabele: {0} DocType: Print Format,Default Print Language,Limbă de imprimare implicită apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Strămoșii din apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Rădăcină {0} nu poate fi ștearsă @@ -702,6 +719,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Gazdă +DocType: Data Import Beta,Import File,Fișier de import apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Coloana {0} există deja. DocType: ToDo,High,Ridicat apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Eveniment nou @@ -730,8 +748,6 @@ DocType: User,Send Notifications for Email threads,Trimiteți notificări pentru apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nu în modul Developer apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Suportul de fișiere este gata -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Puncte maxime permise după înmulțirea punctelor cu valoarea multiplicatorului (Notă: Pentru nicio valoare limită setată ca 0) DocType: DocField,In Global Search,În căutare globală DocType: System Settings,Brute Force Security,Siguranța Forței de Securitate DocType: Workflow State,indent-left,liniuța-stânga @@ -774,6 +790,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Utilizator '{0}' are deja rolul "{1} ' DocType: System Settings,Two Factor Authentication method,Două metode de autentificare a factorilor apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Mai întâi setați numele și salvați înregistrarea. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 înregistrări apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},În comun cu {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Dezabonare DocType: View Log,Reference Name,Nume Referință @@ -824,6 +841,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Urmăriți starea e-mailului DocType: Note,Notify Users On Every Login,Notificați Utilizatorii La Fiecare Conectare DocType: Note,Notify Users On Every Login,Notificați Utilizatorii La Fiecare Conectare +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Nu se poate potrivi coloana {0} cu niciun câmp +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Actualizate cu succes {0} înregistrări. DocType: PayPal Settings,API Password,Parola API apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Introduceți modulul python sau selectați tipul de conector apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Nume câmp nu este setat pentru camp @@ -852,9 +871,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplicat nume {0} {1} -DocType: Email Queue,Retry,Reîncercă +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Reîncercă +DocType: Contact Phone,Number,Număr DocType: Web Form Field,Web Form Field,Câmp formular Web apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Aveți un nou mesaj de la: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Editați HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Introduceți URL-ul de redirecționare apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -879,7 +900,7 @@ DocType: Notification,View Properties (via Customize Form),Vezi Properties (prin apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Faceți clic pe un fișier pentru a-l selecta. DocType: Note Seen By,Note Seen By,Notă văzut de apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Încercați să utilizați un model de tastatură cu mai multe viraje -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LEADERBOARD +,LeaderBoard,LEADERBOARD DocType: DocType,Default Sort Order,Comanda de sortare implicită DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Răspundeți Ajutor @@ -914,6 +935,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Scrie un email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Statele de flux de lucru (de exemplu Schiţă, Aprobat, Anulat)." DocType: Print Settings,Allow Print for Draft,Se lasă pentru imprimare Proiect +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 funcționată, pentru a utiliza funcția 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/link_selector.js,Set Quantity,Set Cantitate apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Să prezinte acest document pentru a confirma DocType: Contact,Unsubscribed,Nesubscrise @@ -945,6 +967,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Unitate organizatorică pen ,Transaction Log Report,Raportul jurnalului de tranzacții DocType: Custom DocPerm,Custom DocPerm,personalizat DocPerm DocType: Newsletter,Send Unsubscribe Link,Trimite Dezabonare Link +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Există câteva înregistrări legate, care trebuie create înainte de a putea importa fișierul dvs. Doriți să creați automat următoarele înregistrări lipsă?" DocType: Access Log,Method,Metoda DocType: Report,Script Report,Script Raport DocType: OAuth Authorization Code,Scopes,Scopes @@ -986,6 +1009,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,S-a încărcat cu succes apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Sunteți conectat la internet. DocType: Social Login Key,Enable Social Login,Activați Conectarea socială +DocType: Data Import Beta,Warnings,Avertizări DocType: Communication,Event,Eveniment apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","La {0}, {1} a scris:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Nu se poate șterge domeniu dotare standard. Puteți să-l ascunde, dacă doriți" @@ -1041,6 +1065,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Introduce DocType: Kanban Board Column,Blue,Albastru apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Toate personalizările vor fi eliminate. Vă rugăm să confirmați. DocType: Page,Page HTML,Pagină HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Export eșuate rânduri apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Numele grupului nu poate fi gol. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Noduri suplimentare pot fi create numai în noduri de tip 'Grup' DocType: SMS Parameter,Header,Antet @@ -1080,13 +1105,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Cererea a expirat apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Activați / dezactivați domenii DocType: Role Permission for Page and Report,Allow Roles,să permită rolurilor +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Importate cu succes {0} înregistrări din {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Expresie simplă Python, Exemplu: Stare în („Invalid”)" DocType: User,Last Active,Ultimul activ DocType: Email Account,SMTP Settings for outgoing emails,Setări SMTP pentru e-mailurile trimise apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,alege un DocType: Data Export,Filter List,Filtrați lista DocType: Data Export,Excel,excela -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Parola dvs. a fost actualizată. Iată noua parolă 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 @@ -1095,7 +1120,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID-ul de utilizator DocType: Communication,Sent,Trimis DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administrare DocType: User,Simultaneous Sessions,Sesiuni simultane DocType: Social Login Key,Client Credentials,Atestări client @@ -1127,7 +1151,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Actuali apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Utilizatorul nu poate crea apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Realizat cu succes -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Dosar {0} nu există apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,acces Dropbox este aprobat! DocType: Customize Form,Enter Form Type,Introduceți tip formular DocType: Google Drive,Authorize Google Drive Access,Autorizați Google Drive Access @@ -1135,7 +1158,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Nici o inregistrare etichetată. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Elimină Câmp apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Nu sunteți conectat la Internet. Reîncercați după ceva timp. -DocType: User,Send Password Update Notification,Solicitare parolă actualizare Notificare apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permiterea Tip Document, Tip Document. Fiți atent!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formate personalizate pentru imprimare, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Suma {0} @@ -1221,6 +1243,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Cod incorect de veri apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrarea Contacte Google este dezactivată. DocType: Assignment Rule,Description,Descriere DocType: Print Settings,Repeat Header and Footer in PDF,Se repetă antet și subsol în format PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,eșec DocType: Address Template,Is Default,Este Implicit DocType: Data Migration Connector,Connector Type,Tip conector apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Nume coloană nu poate fi gol @@ -1233,6 +1256,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Accesați pagina {0} DocType: LDAP Settings,Password for Base DN,Parola pentru Baza DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabel Câmp 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/model/document.py,Action Failed,Acţiune Eșuată apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,pentru utilizator @@ -1286,6 +1310,7 @@ DocType: Print Settings,Enable Raw Printing,Activați imprimarea brută DocType: Website Route Redirect,Source,Sursă apps/frappe/frappe/templates/includes/list/filters.html,clear,clar apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Terminat +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configurare> Utilizator DocType: Prepared Report,Filter Values,Valoarea filtrului DocType: Communication,User Tags,Etichete Utilizator DocType: Data Migration Run,Fail,eșua @@ -1342,6 +1367,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Urma ,Activity,Activitate DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Ajutor: Pentru a va relationa la o altă înregistrare în sistem, utilizați ""#Formular / Nota / [Denumire Nota]"" ca URL de legatura. (Nu folositi ""http://"")" DocType: User Permission,Allow,Permite +DocType: Data Import Beta,Update Existing Records,Actualizați înregistrările existente apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Hai să evităm cuvintele și caracterele repetate DocType: Energy Point Rule,Energy Point Rule,Regula punctului energetic DocType: Communication,Delayed,Întârziat @@ -1354,9 +1380,7 @@ DocType: Milestone,Track Field,Pista de alergat DocType: Notification,Set Property After Alert,Setați proprietatea după alertă apps/frappe/frappe/config/customization.py,Add fields to forms.,Adăugați câmpuri în formulare. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Se pare că ceva nu este în neregulă cu configurația PayPal a acestui site. -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 funcționată, pentru a utiliza funcția 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/sidebar/review.js,Add Review,Adăugați recenzia -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Dimensiunea fontului (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Doar DocTypes standard este permis să fie personalizat din Formularizare personalizată. DocType: Email Account,Sendgrid,Sendgrid @@ -1393,6 +1417,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Ne pare rău! Nu puteți șterge comentariile generate automat DocType: Google Settings,Used For Google Maps Integration.,Folosit pentru integrarea Google Maps apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DocType referință +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Nu se vor exporta înregistrări DocType: User,System User,Sistem de utilizare DocType: Report,Is Standard,Este standard DocType: Desktop Icon,_report,_raport @@ -1408,6 +1433,7 @@ DocType: Workflow State,minus-sign,minus-sign apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nu a fost găsit apps/frappe/frappe/www/printview.py,No {0} permission,Nu {0} permisiunea apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export personalizate Permisiuni +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nu au fost gasite articolele. DocType: Data Export,Fields Multicheck,Câmpurile Multicheck DocType: Activity Log,Login,Conectare DocType: Web Form,Payments,Plăți @@ -1468,8 +1494,9 @@ DocType: Address,Postal,Poștal DocType: Email Account,Default Incoming,Implicit intrare DocType: Workflow State,repeat,repetă DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Valoarea trebuie să fie una dintre {0} DocType: Role,"If disabled, this role will be removed from all users.","Dacă este dezactivat, acest rol va fi eliminat de la toți utilizatorii." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Accesați lista {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Accesați lista {0} 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 @@ -1483,6 +1510,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Numele câmpului local DocType: DocType,Track Changes,Urmareste schimbarile DocType: Workflow State,Check,Ceck DocType: Chat Profile,Offline,Deconectat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importat cu succes {0} DocType: User,API Key,Cheie API DocType: Email Account,Send unsubscribe message in email,Trimite mesajul dezabonare de e-mail apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Editează Titlu @@ -1509,11 +1537,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} a atribuit deja o valoare implicită pentru {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                      No results found for '

                                                                                      ,

                                                                                      Nu există rezultate pentru '

                                                                                      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 @@ -1534,8 +1562,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nu este permis pentru 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configurare> Permisii utilizator DocType: LDAP Group Mapping,LDAP Group Mapping,Cartografierea grupului LDAP DocType: Dashboard Chart,Chart Options,Opțiuni grafic +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Coloana fără titlu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} de la {1} pana la {2} în randul #{3} DocType: Communication,Expired,Expirat apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Se pare că simbolul pe care îl utilizați este nevalid! @@ -1545,6 +1575,7 @@ DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),Dimensiunea maximă a atașamentului (în MB) apps/frappe/frappe/www/login.html,Have an account? Login,Ai un cont? Conecta DocType: Workflow State,arrow-down,săgeată-în jos +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rândul {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Utilizatorul nu este permis pentru a șterge {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} din {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Ultima actualizare pe @@ -1562,6 +1593,7 @@ DocType: Custom Role,Custom Role,Rolul personalizat apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Prima / Folder Testul 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Introduceți parola DocType: Dropbox Settings,Dropbox Access Secret,Secret pentru Acces Dropbox +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatoriu) 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. @@ -1636,6 +1668,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Show Dashb apps/frappe/frappe/desk/form/assign_to.py,New Message,Mesaj Nou DocType: File,Preview HTML,Previzualizare HTML DocType: Desktop Icon,query-report,interogare raport +DocType: Data Import Beta,Template Warnings,Avertismente șablon apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtre salvate DocType: DocField,Percent,La sută apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Vă rugăm să setați filtre @@ -1657,6 +1690,7 @@ DocType: Custom Field,Custom,Personalizat DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Dacă este activată, utilizatorii care se conectează la adresa IP restricționată nu vor fi înștiințați pentru Two Factor Auth" DocType: Auto Repeat,Get Contacts,Obțineți contacte apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Posturile de depusă în conformitate cu {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Sărind coloana fără titlu DocType: Notification,Send alert if date matches this field's value,Trimite alertă în cazul în care data meciurile valoarea acestui câmp DocType: Workflow,Transitions,Tranziții apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} to {2} @@ -1680,6 +1714,7 @@ DocType: Workflow State,step-backward,pas-înapoi apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Vă rugăm să setați tastele de acces Dropbox pe site-ul dvs. de configurare apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,"Ștergeți acest record, pentru a permite trimiterea de la această adresă de e-mail" +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Dacă portul standard (de exemplu, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Personalizați comenzi rapide apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Numai câmpurile obligatorii sunt necesare pentru noi recorduri. Puteți șterge coloane care nu sunt obligatorii, dacă doriți." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Afișați mai multe activități @@ -1787,7 +1822,9 @@ DocType: Note,Seen By Table,Văzut în tabelul apps/frappe/frappe/www/third_party_apps.html,Logged in,Conectat la apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Implicit Trimiterea și Inbox DocType: System Settings,OTP App,App OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Actualizare cu succes {0} înregistrare din {1}. DocType: Google Drive,Send Email for Successful Backup,Trimiteți un e-mail pentru copierea de rezervă reușită +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Planificatorul este inactiv. Nu se pot importa date. DocType: Print Settings,Letter,Scrisoare DocType: DocType,"Naming Options:
                                                                                      1. field:[fieldname] - By Field
                                                                                      2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                      3. Prompt - Prompt user for a name
                                                                                      4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                      5. @@ -1801,6 +1838,7 @@ DocType: GCalendar Account,Next Sync Token,Următorul cod de sincronizare DocType: Energy Point Settings,Energy Point Settings,Setări punct de energie DocType: Async Task,Succeeded,Reușit apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Campuri obligatorii prevăzute în {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                        No results found for '

                                                                                        ,

                                                                                        Nu există rezultate pentru '

                                                                                        apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Resetați Permisiunile pentru {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Utilizatori și permisiuni DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1871,6 +1909,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Î DocType: Notification,Value Change,Valoarea variației DocType: Google Contacts,Authorize Google Contacts Access,Autorizați Accesul Google Contacte apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Se afișează numai câmpurile Numeric din raport +DocType: Data Import Beta,Import Type,Tip import DocType: Access Log,HTML Page,Pagina HTML DocType: Address,Subsidiary,Filială apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Încercarea conexiunii la tava QZ ... @@ -1881,7 +1920,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Invalid se DocType: Custom DocPerm,Write,Scrie apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Numai Administrator permis de a crea Cautare / Script Rapoarte apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Actualizarea -DocType: File,Preview,Previzualizați +DocType: Data Import Beta,Preview,Previzualizați apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Câmp "Valoarea" este obligatorie. Vă rugăm să specificați o valoare care urmează să fie actualizată DocType: Customize Form,Use this fieldname to generate title,Utilizați acest Nume câmp pentru a genera titlu apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import Email la @@ -1965,6 +2004,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browserul nu e DocType: Social Login Key,Client URLs,Adresele URL ale clienților apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Lipsesc unele informații apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} a fost creat cu succes +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Saltul {0} din {1}, {2}" DocType: Custom DocPerm,Cancel,Anulează apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Delete apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Fișier {0} nu există @@ -1992,7 +2032,6 @@ DocType: GCalendar Account,Session Token,Sesiunea Token DocType: Currency,Symbol,Simbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Rând # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Confirmați Ștergerea datelor -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Noua parolă prin e-mail apps/frappe/frappe/auth.py,Login not allowed at this time,Autentificare nu este permis în acest moment DocType: Data Migration Run,Current Mapping Action,Acțiune actuală de cartografiere DocType: Dashboard Chart Source,Source Name,sursa Nume @@ -2005,6 +2044,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Urmat de DocType: LDAP Settings,LDAP Email Field,LDAP E-mail Câmp apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exportați {0} înregistrări apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Există deja lista de sarcini a utilizatorului DocType: User Email,Enable Outgoing,Activați ieșire DocType: Address,Fax,Fax @@ -2064,8 +2104,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Imprimați documente apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Salt la câmp DocType: Contact Us Settings,Forward To Email Address,Mai departe la adresa de email +DocType: Contact Phone,Is Primary Phone,Este telefon primar apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Trimiteți un e-mail la {0} pentru a-l lega aici. DocType: Auto Email Report,Weekdays,Zilele saptamanii +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Înregistrările {0} vor fi exportate apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Câmp titlu trebuie să fie un fieldname valid DocType: Post Comment,Post Comment,posteaza comentariu apps/frappe/frappe/config/core.py,Documents,Documente @@ -2083,7 +2125,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Acest câmp va apărea numai în cazul în care numele_campului definit aici are valoare sau regulile sunt adevărate (exemple): myfield eval: doc.myfield == 'Valoarea mea' eval: doc.age> 18 DocType: Social Login Key,Office 365,Biroul 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Astăzi +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> Model de adrese. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","După ce ați stabilit acest lucru, utilizatorii vor fi doar documente de acces capabile (ex. Blog post), în cazul în care există link-ul (de exemplu, Blogger)." +DocType: Data Import Beta,Submit After Import,Trimiteți după import DocType: Error Log,Log of Scheduler Errors,Log de erori Scheduler DocType: User,Bio,Biografie DocType: OAuth Client,App Client Secret,Aplicația Client Secret @@ -2102,10 +2146,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Dezactiva client link Inregistrare in Intrare pagină apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Atribuit pentru/Proprietar DocType: Workflow State,arrow-left,săgeată-în stânga +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Exportă 1 înregistrare DocType: Workflow State,fullscreen,fullscreen DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Creați grafic apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Nu importați DocType: Web Page,Center,Centru DocType: Notification,Value To Be Set,Valoare de setat apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Editați {0} @@ -2125,6 +2171,7 @@ DocType: Print Format,Show Section Headings,Afișați Secțiunea Pozițiile DocType: Bulk Update,Limit,Limită apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Am primit o solicitare de ștergere a {0} date asociate cu: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Adăugă o secțiune nouă +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Înregistrări filtrate apps/frappe/frappe/www/printview.py,No template found at path: {0},Nu a fost gasit la cale șablon: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nu există un cont de e-mail DocType: Comment,Cancelled,Anulat @@ -2212,10 +2259,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Tipuri de documente de căutare globală resetate. ,Lead Conversion Time,Timp Conversie Pistă apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Întocmiţi raport DocType: Note,Notify users with a popup when they log in,Notificați utilizatorii cu un pop-up atunci când se autentifică +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Modulele de bază {0} nu pot fi căutate în Căutarea globală. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Deschide chat apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nu există, selectează un nou obiectiv pentru fuzionare" DocType: Data Migration Connector,Python Module,Modulul Python @@ -2232,8 +2282,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Închideți 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configurare> Permisii utilizator -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Actualizare +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Actualizare DocType: Transaction Log,Transaction Hash,Tranșa de tranzacționare DocType: Error Snapshot,Snapshot View,Vizualizare instantaneu apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Vă rugăm să salvați Newsletter înainte de a trimite @@ -2249,6 +2298,7 @@ DocType: Data Import,In Progress,In progres apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Pentru backup coada de așteptare. Aceasta poate dura câteva minute până la o oră. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Permisiunea utilizatorului există deja +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Maparea coloanei {0} în câmpul {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Vizualizați {0} DocType: User,Hourly,ore apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Înregistrează Aplicație client OAuth @@ -2261,7 +2311,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nu poate fi ""{2}"". Ar trebui să fie unul dintre ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},câștigat de {0} prin regula automată {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} sau {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Parola Actualizare DocType: Workflow State,trash,gunoi DocType: System Settings,Older backups will be automatically deleted,backup-uri mai vechi vor fi șterse automat apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Codul cheie de acces invalid sau cheia de acces secret. @@ -2290,6 +2339,7 @@ DocType: Address,Preferred Shipping Address,Preferat Adresa Shipping apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Cu cap Scrisoare apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} a creat acest {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Nu este permis pentru {0}: {1} în rândul {2}. Câmp restricționat: {3} +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 DocType: S3 Backup Settings,eu-west-1,UE-vest-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Dacă aceasta este bifată, vor fi importate rânduri cu date valide și rândurile nevalide vor fi aruncate într-un fișier nou pentru a le importa mai târziu." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Documentul este editabil doar de către utilizatorii de rol @@ -2316,6 +2366,7 @@ DocType: Custom Field,Is Mandatory Field,Este câmp obligatoriu DocType: User,Website User,Site-ul utilizatorului apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Unele coloane ar putea fi tăiate la imprimarea în format PDF. Încercați să păstrați numărul de coloane sub 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Nu egali +DocType: Data Import Beta,Don't Send Emails,Nu trimiteți e-mailuri DocType: Integration Request,Integration Request Service,Integrarea Solicitare de servicii DocType: Access Log,Access Log,Jurnal de acces DocType: Website Script,Script to attach to all web pages.,Script pentru a atașa la toate paginile web. @@ -2356,6 +2407,7 @@ DocType: Contact,Passive,Pasiv DocType: Auto Repeat,Accounts Manager,Manager de Conturi apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Alocarea pentru {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Plata dvs. este anulată. +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/views/reports/report_view.js,Select File Type,Selectați tipul de fișier apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,A vedea tot DocType: Help Article,Knowledge Base Editor,Baza de cunoștințe Editor @@ -2388,6 +2440,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Date apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Stare Document apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Aprobarea necesară +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Următoarele înregistrări trebuie create înainte de a putea importa fișierul dvs. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Cod de autorizare apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Nu este permis sa importe DocType: Deleted Document,Deleted DocType,DocType șters @@ -2442,8 +2495,8 @@ DocType: GCalendar Settings,Google API Credentials,Acreditare API Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesiunea Start nu a reușit apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesiunea Start nu a reușit apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Acest e-mail a fost trimis la {0} și copiat la {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},a trimis acest document {0} DocType: Workflow State,th,-lea -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} an (i) în urmă DocType: Social Login Key,Provider Name,Numele furnizorului apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Creează un nou {0} DocType: Contact,Google Contacts,Contacte Google @@ -2451,6 +2504,7 @@ DocType: GCalendar Account,GCalendar Account,Contul GCalendar DocType: Email Rule,Is Spam,este Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Raport {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Deschide {0} +DocType: Data Import Beta,Import Warnings,Importați avertismente DocType: OAuth Client,Default Redirect URI,Implicit Redirecționarea URI DocType: Auto Repeat,Recipients,Destinatarii DocType: System Settings,Choose authentication method to be used by all users,Alegeți metoda de autentificare pentru a fi utilizată de toți utilizatorii @@ -2568,6 +2622,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Raport actua apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slăbiți eroarea Webhook DocType: Email Flag Queue,Unread,necitită DocType: Bulk Update,Desk,Birou +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Salt la coloana {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtrul trebuie să fie un pachet sau o listă (într-o listă) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Scrie o interogare SELECT. Rezultat notă nu este chemat (toate datele sunt trimise într-un du-te). DocType: Email Account,Attachment Limit (MB),Limita ataşament (MB) @@ -2582,6 +2637,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Creeaza Nou DocType: Workflow State,chevron-down,Chevron-jos apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Nu e-mail trimis la {0} (nesubscrise / dezactivat) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Selectați câmpurile de exportat DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Cel mai mic valutar Fracțiunea Valoare apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Pregătirea raportului @@ -2590,6 +2646,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Activați Comentarii apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Observații DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Restricționa utilizator de numai această adresă IP. Adrese IP multiple pot fi adăugate prin separarea cu virgule. De asemenea, acceptă adrese IP parțiale ca (111.111.111)" +DocType: Data Import Beta,Import Preview,Previzualizare import DocType: Communication,From,De la apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Selectați un nod grup prim. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Găsi {0} din {1} @@ -2689,6 +2746,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Între DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Coada de așteptare +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurare> Formularizare personalizare DocType: Braintree Settings,Use Sandbox,utilizare Sandbox apps/frappe/frappe/utils/goal.py,This month,Luna aceasta apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nou format personalizat Print @@ -2704,6 +2762,7 @@ DocType: Session Default,Session Default,Sesiune implicită DocType: Chat Room,Last Message,Ultimul mesaj DocType: OAuth Bearer Token,Access Token,Acces Token DocType: About Us Settings,Org History,Org Istorie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Au mai rămas aproximativ {0} minute DocType: Auto Repeat,Next Schedule Date,Data următoare a programării DocType: Workflow,Workflow Name,Flux de lucru Nume DocType: DocShare,Notify by Email,Notifică prin E-mail @@ -2733,6 +2792,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Reluare Trimiterea apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Redeschide +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Afișați avertismente apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Cumpărare de utilizare DocType: Data Migration Run,Push Failed,Push a eșuat @@ -2771,6 +2831,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Cautar apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nu aveți permisiunea de a vizualiza buletinul informativ. DocType: User,Interests,interese apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Instrucțiuni de resetare a parolei au fost trimise la adresa dvs. de email +DocType: Energy Point Rule,Allot Points To Assigned Users,Alocați puncte utilizatorilor alocați apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nivelul 0 este pentru permisiunile la nivel de document, \ niveluri mai ridicate pentru permisiunile la nivel de câmp." DocType: Contact Email,Is Primary,Este primar @@ -2794,6 +2855,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Cheia publicabilă DocType: Stripe Settings,Publishable Key,Cheia publicabilă apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Porniți importul +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Tipul de export DocType: Workflow State,circle-arrow-left,cerc-săgeată stânga- DocType: System Settings,Force User to Reset Password,Forțați utilizatorul să reseteze parola apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Pentru a obține raportul actualizat, faceți clic pe {0}." @@ -2807,13 +2869,16 @@ DocType: Contact,Middle Name,Al doilea nume DocType: Custom Field,Field Description,Descriere câmp apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nume nu a stabilit prin Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox E-mail +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Actualizarea {0} din {1}, {2}" DocType: Auto Email Report,Filters Display,filtre de afișare apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Câmpul „amendat_de la„ trebuie să fie prezent pentru a face o modificare. +DocType: Contact,Numbers,numere apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} a apreciat munca ta în {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Salvați filtrele DocType: Address,Plant,Instalarea apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Răspunde Tuturor DocType: DocType,Setup,Configurare +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Toate înregistrările DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adresa de e-mail ale cărei contacte Google trebuie sincronizate. DocType: Email Account,Initial Sync Count,Contele sincronizarea inițială DocType: Workflow State,glass,sticlă @@ -2838,7 +2903,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Afișare previzualizare pop-up apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Aceasta este o parolă comună de top-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Vă rugăm să activați pop-up-uri -DocType: User,Mobile No,Numar de mobil +DocType: Contact,Mobile No,Numar de mobil DocType: Communication,Text Content,Conținut text DocType: Customize Form Field,Is Custom Field,Este personalizat câmp DocType: Workflow,"If checked, all other workflows become inactive.","În cazul în care verificat, toate celelalte fluxuri de lucru devin inactive." @@ -2884,6 +2949,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Adău apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Numele de noul format de imprimare apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Comutați bara laterală DocType: Data Migration Run,Pull Insert,Trageți inserați +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Puncte maxime permise după înmulțirea punctelor cu valoarea multiplicatorului (Notă: Pentru nicio limită nu lăsați acest câmp gol sau setați 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Șablon nevalid apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Interogare SQL ilegală apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obligatoriu: DocType: Chat Message,Mentions,menţionează @@ -2898,6 +2966,7 @@ DocType: User Permission,User Permission,Permisiunea de utilizare apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nu este instalat apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Descarcă cu date +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},valori modificate pentru {0} {1} DocType: Workflow State,hand-right,mana-dreapta DocType: Website Settings,Subdomain,Subdomeniu DocType: S3 Backup Settings,Region,Regiune @@ -2925,10 +2994,12 @@ DocType: Braintree Settings,Public Key,Cheia publică DocType: GSuite Settings,GSuite Settings,Setările GSuite DocType: Address,Links,Link-uri DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Utilizează numele adresei de e-mail menționate în acest cont ca numele expeditorului pentru toate e-mailurile trimise utilizând acest cont. +DocType: Energy Point Rule,Field To Check,Câmp de verificat apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Contacte Google - Nu s-a putut actualiza contactul din Contacte Google {0}, cod de eroare {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Selectați tipul documentului. apps/frappe/frappe/model/base_document.py,Value missing for,Valoare lipsă pentru apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Adăugă Copil +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Progresul importului DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Dacă condiția este satisfăcută, utilizatorul va fi recompensat cu punctele. de exemplu. doc.status == 'Închis'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Înregistrarea introdusă nu poate fi ștearsă. @@ -2965,6 +3036,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizați Google Cal apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Pagina pe care o căutați lipsesc. Acest lucru ar putea fi, pentru că este mutat sau există o greșeală de scriere în link-ul." apps/frappe/frappe/www/404.html,Error Code: {0},Cod de eroare: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descriere pentru pagina de listare, în text simplu, doar o pereche de linii. (Maxim 140 de caractere)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sunt câmpuri obligatorii DocType: Workflow,Allow Self Approval,Permiteți aprobarea de sine DocType: Event,Event Category,Categorie Eveniment apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3013,8 +3085,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Treceți la DocType: Address,Preferred Billing Address,Adresa de facturare preferat apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Prea multe, scrie într-o singură cerere. Vă rugăm să trimiteți cereri mai mici" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive a fost configurat. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Tipul de document {0} a fost repetat. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,valori schimbată DocType: Workflow State,arrow-up,săgeată-în sus +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Ar trebui să existe cel puțin un rând pentru tabela {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Pentru a configura repetarea automată, activați „Permite repetarea automată” de la {0}." DocType: OAuth Bearer Token,Expires In,Expira in DocType: DocField,Allow on Submit,Permiteţi după introducere @@ -3101,6 +3175,7 @@ DocType: Custom Field,Options Help,Opțiuni Ajutor 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ă 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 @@ -3118,6 +3193,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Codul de verificare DocType: Webhook,Webhook Request,Cerere Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Eșuat: {0} la {1}: {2} DocType: Data Migration Mapping,Mapping Type,Tipul de tipărire +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Obligatoriu selectați apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Parcurgere apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Nu este nevoie de simboluri, cifre sau litere majuscule." DocType: DocField,Currency,Valută @@ -3148,11 +3224,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Cap de scrisoare bazat pe apps/frappe/frappe/utils/oauth.py,Token is missing,Token lipsește apps/frappe/frappe/www/update-password.html,Set Password,Set Password +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Importate cu succes {0} înregistrări. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Notă: Schimbarea numelui paginii va duce la ruperea adresei URL anterioare la această pagină. apps/frappe/frappe/utils/file_manager.py,Removed {0},Eliminat {0} DocType: SMS Settings,SMS Settings,Setări SMS DocType: Company History,Highlight,Evidențiați DocType: Dashboard Chart,Sum,Sumă +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,prin importul de date DocType: OAuth Provider Settings,Force,Forta apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Ultima sincronizare {0} DocType: DocField,Fold,Plia @@ -3189,6 +3267,7 @@ DocType: Workflow State,Home,Acasă DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Utilizatorul se poate conecta utilizând id-ul de e-mail sau numele de utilizator DocType: Workflow State,question-sign,întrebare-semn +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} este dezactivat apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Calea "traseu" este obligatorie pentru vizualizările Web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Inserați o coloană înainte de {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Utilizatorul din acest câmp va primi puncte recompensate @@ -3222,6 +3301,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Articole DocType: Notification,Print Settings,Setări de imprimare DocType: Page,Yes,Da DocType: DocType,Max Attachments,Max atașament +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Au mai rămas aproximativ {0} secunde DocType: Calendar View,End Date Field,Sfârșitul câmpului apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Comenzi rapide la nivel global DocType: Desktop Icon,Page,Pagină @@ -3334,6 +3414,7 @@ DocType: GSuite Settings,Allow GSuite access,Permiteți accesul GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Naming apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Selectează toate +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Coloana {0} apps/frappe/frappe/config/customization.py,Custom Translations,Traduceri personalizate apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,progres apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,prin normă @@ -3376,11 +3457,13 @@ DocType: Stripe Settings,Stripe Settings,Setări Stripe DocType: Stripe Settings,Stripe Settings,Setări Stripe DocType: Data Migration Mapping,Data Migration Mapping,Mapare Migrare Date DocType: Auto Email Report,Period,Perioada +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,A rămas aproximativ {0} minute apps/frappe/frappe/www/login.py,Invalid Login Token,Invalid Autentificare Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Renunţa apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,in urma cu 1 ora DocType: Website Settings,Home Page,Pagina principală DocType: Error Snapshot,Parent Error Snapshot,Mamă Instantaneu Eroare +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Harta coloanelor de la {0} la câmpurile din {1} DocType: Access Log,Filters,Filtre DocType: Workflow State,share-alt,cota-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Coada ar trebui să fie una dintre {0} @@ -3411,6 +3494,7 @@ DocType: Calendar View,Start Date Field,Câmp cu data de începere DocType: Role,Role Name,Rol Nume apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Comutare Pentru Birou apps/frappe/frappe/config/core.py,Script or Query reports,Script sau Query rapoarte +DocType: Contact Phone,Is Primary Mobile,Este mobil primar DocType: Workflow Document State,Workflow Document State,Document flux de lucru de stat apps/frappe/frappe/public/js/frappe/request.js,File too big,Fișierul este prea mare apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Contul de e-mail adăugat de mai multe ori @@ -3456,6 +3540,7 @@ DocType: DocField,Float,Plutitor DocType: Print Settings,Page Settings,Setări Pagină apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Economisire... apps/frappe/frappe/www/update-password.html,Invalid Password,Parolă Invalidă +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importă cu succes {0} înregistrare din {1}. DocType: Contact,Purchase Master Manager,Cumpărare Maestru de Management apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Faceți clic pe pictograma de blocare pentru a comuta public / privat DocType: Module Def,Module Name,Modulul Name @@ -3490,6 +3575,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Este posibil ca unele dintre caracteristici să nu funcționeze în browserul dvs. Actualizați browserul la cea mai recentă versiune. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Este posibil ca unele dintre caracteristici să nu funcționeze în browserul dvs. Actualizați browserul la cea mai recentă versiune. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Nu știu, întrebați "ajutor"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},a anulat acest document {0} DocType: DocType,Comments and Communications will be associated with this linked document,Comentarii și Comunicațiilor vor fi asociate cu acest document legat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtru ... DocType: Workflow State,bold,îngroşat @@ -3508,6 +3594,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Adăugați / DocType: Comment,Published,Data publicării apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Vă mulțumim pentru e-mail DocType: DocField,Small Text,Mic Text +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Numărul {0} nu poate fi setat ca primar pentru telefon, precum și pentru numărul mobil." DocType: Workflow,Allow approval for creator of the document,Permiteți aprobarea creatorului documentului apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Salvează raportul DocType: Webhook,on_cancel,on_cancel @@ -3565,6 +3652,7 @@ DocType: Print Settings,PDF Settings,Setări PDF DocType: Kanban Board Column,Column Name,Coloana Nume DocType: Language,Based On,Bazat pe DocType: Email Account,"For more information, click here.","Pentru mai multe informații, faceți clic aici ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Numărul de coloane nu se potrivește cu datele apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Face implicit apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Timp de execuție: {0} sec apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Calea include calea nevalidă @@ -3655,7 +3743,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Încărcați {0} fișiere DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Raportați Oră de Începere -apps/frappe/frappe/config/settings.py,Export Data,Export de date +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Export de date 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. @@ -3673,7 +3761,6 @@ DocType: Report,Disable Prepared Report,Dezactivați raportul pregătit apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Utilizatorul {0} a solicitat ștergerea datelor apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Indicativul ilegală de acces. Vă rugăm să încercați din nou apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplicația a fost actualizată la o nouă versiune, te rugăm să reîmprospătezi această pagină" -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> Model de adrese. DocType: Notification,Optional: The alert will be sent if this expression is true,Optional: Alerta va fi trimis în cazul în care această expresie este adevărat DocType: Data Migration Plan,Plan Name,Numele planului DocType: Print Settings,Print with letterhead,Printați cu antet @@ -3714,6 +3801,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: nu se poate configura modificați fără anulați apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Page DocType: DocType,Is Child Table,Este masa pentru copii +DocType: Data Import Beta,Template Options,Opțiuni de șabloane apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} trebuie sa fie unul din {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} vizualizează acum acest document apps/frappe/frappe/config/core.py,Background Email Queue,Fundal Email Queue @@ -3721,7 +3809,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Password Reset DocType: Communication,Opened,Deschis DocType: Workflow State,chevron-left,Chevron-stânga DocType: Communication,Sending,Trimitere -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Nu este permis de la această adresă IP DocType: Website Slideshow,This goes above the slideshow.,Acest lucru este valabil mai sus prezentarea. DocType: Contact,Last Name,Nume DocType: Event,Private,Privat @@ -3735,7 +3822,6 @@ DocType: Workflow Action,Workflow Action,Flux de lucru de acțiune apps/frappe/frappe/utils/bot.py,I found these: ,Am găsit astea: DocType: Event,Send an email reminder in the morning,Trimite un memento e-mail în dimineața DocType: Blog Post,Published On,Publicat în data de -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 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} @@ -3756,7 +3842,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,semn de avertizare DocType: Prepared Report,Prepared Report,Raportul pregătit apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Adăugați meta tag-uri la paginile dvs. web -DocType: Contact,Phone Nos,Nr. De telefon 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 @@ -3774,6 +3859,7 @@ DocType: Data Migration Connector,Data Migration,Migrație Date DocType: User,API Key cannot be regenerated,Cheia API nu poate fi regenerată apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Ceva n-a mers bine DocType: System Settings,Number Format,Număr Format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Înregistrare cu succes {0}. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Rezumat DocType: Event,Event Participants,Participanții la eveniment DocType: Auto Repeat,Frequency,Frecvență @@ -3781,7 +3867,7 @@ DocType: Custom Field,Insert After,Introduceți După DocType: Event,Sync with Google Calendar,Sincronizare cu Google Calendar DocType: Access Log,Report Name,Nume Raport DocType: Desktop Icon,Reverse Icon Color,Culoare inversă Icon -DocType: Notification,Save,Salvează +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Salvează apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Următoarea dată programată apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Alocați celui care are cele mai puține misiuni apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,secöiunea @@ -3804,11 +3890,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurare> Formularizare personalizare 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 DocType: Desktop Icon,Category,Categorie +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Valoarea {0} lipsește pentru {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Adaugă Contacte apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Peisaj apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Extensii script partea de client în Javascript @@ -3832,6 +3918,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Actualizare punct energetic apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Vă rugăm să selectați o altă metodă de plată. PayPal nu acceptă tranzacții în valută „{0}“ DocType: Chat Message,Room Type,Tip Cameră +DocType: Data Import Beta,Import Log Preview,Importați previzualizarea jurnalului apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,câmp de căutare {0} nu este validă apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,fișier încărcat DocType: Workflow State,ok-circle,ok-cerc @@ -3900,6 +3987,7 @@ DocType: DocType,Allow Auto Repeat,Permiteți repetarea automată apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nu există valori de afișat DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Șablon de e-mail +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Înregistrare actualizată cu succes {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Utilizatorul {0} nu are acces doctype prin permisiunea rolului pentru documentul {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Atât logarea cât și parola sunt necesare apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vă rugăm să reîmprospătați pentru a obține cel mai recent document. diff --git a/frappe/translations/ru.csv b/frappe/translations/ru.csv index d3f79869f4..211de624d9 100644 --- a/frappe/translations/ru.csv +++ b/frappe/translations/ru.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Доступны новые {} выпуски для следующих приложений. apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Пожалуйста, выберите поле Сумма." +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Загрузка файла импорта ... DocType: Assignment Rule,Last User,Последний пользователь apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Новая задача, {0}, была назначена Вам {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Сеансы по умолчанию сохранены +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Перезагрузить файл DocType: Email Queue,Email Queue records.,Записи очереди электронной почты DocType: Post,Post,Опубликовать DocType: Address,Punjab,Пенджаб @@ -44,6 +46,7 @@ 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,Параметр @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Ежемесячно DocType: Address,Uttarakhand,Уттаракханд DocType: Email Account,Enable Incoming,Включение входящей apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Опасность -apps/frappe/frappe/www/login.py,Email Address,Адрес Электронной Почты +DocType: Address,Email Address,Адрес Электронной Почты DocType: Workflow State,th-large,й по величине DocType: Communication,Unread Notification Sent,Не читать уведомления об отправке apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Экспорт не допускается. Вам нужно {0} роль для экспорта. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Админ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Параметры контакта, как ""Sales Query, поддержки Query"" и т.д. каждого с новой строки или через запятую." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Добавить тег ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет -DocType: Data Migration Run,Insert,Вставить +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Вставить apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Разрешить доступ Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Выберите {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Введите базовый URL-адрес @@ -119,17 +122,17 @@ 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,Настроить тему DocType: Company History,Company History,История компании -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Сброс +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Сброс DocType: Workflow State,volume-up,Объем-до apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,"Webhooks, вызывающие запросы API в веб-приложениях" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Показать трассировку DocType: DocType,Default Print Format,Печатная форма по умолчанию DocType: Workflow State,Tags,теги apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ни один: Конец потока apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Поле {0} не может быть установлено как уникальное в {1}, так как не являются уникальными существующие значения" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Типы документов +DocType: Global Search Settings,Document Types,Типы документов DocType: Address,Jammu and Kashmir,Джамму и Кашмир DocType: Workflow,Workflow State Field,Поле Статуса Процесса -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Пользователь DocType: Language,Guest,Гость DocType: DocType,Title Field,Название поля DocType: Error Log,Error Log,Журнал ошибок @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Повторы, как "abcabcabc" лишь немного труднее угадать, чем "Азбуки"" DocType: Notification,Channel,канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Если вы думаете, что это несанкционированное, пожалуйста, измените пароль администратора." +DocType: Data Import Beta,Data Import Beta,Бета-импорт данных apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} является обязательным DocType: Assignment Rule,Assignment Rules,Правила назначения DocType: Workflow State,eject,выбрасывать @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Название Дейст apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType не могут быть объединены DocType: Web Form Field,Fieldtype,Тип поля apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Не архивный файл +DocType: Global Search DocType,Global Search DocType,Глобальный поиск DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                        New {{ doc.doctype }} #{{ doc.name }}
                                                                                        ","Чтобы добавить динамический объект, используйте теги jinja, например
                                                                                         New {{ doc.doctype }} #{{ doc.name }} 
                                                                                        " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Событие Doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Вы DocType: Braintree Settings,Braintree Settings,Настройки Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Создано {0} записей успешно. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Сохранить фильтр DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Не удается удалить {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Введите URL-пар apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Автоповтор создан для этого документа apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Просмотр отчета в вашем браузере apps/frappe/frappe/config/desk.py,Event and other calendars.,Событие и другие календари. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 строка обязательна) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Все поля обязательны для отправки комментария. DocType: Custom Script,Adds a client custom script to a DocType,Добавляет клиентский пользовательский скрипт в DocType DocType: Print Settings,Printer Name,Имя принтера @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Массовое обновление DocType: Workflow State,chevron-up,шеврона до DocType: DocType,Allow Guest to View,"Разрешить для гостей, чтобы посмотреть" apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} не должен совпадать с {1} -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: Webhook,on_change,по изменению apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Удалить {0} продуктов навсегда? apps/frappe/frappe/utils/oauth.py,Not Allowed,Не разрешено @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Показать DocType: Email Group,Total Subscribers,Всего Подписчики apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Топ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Номер строки apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Если Роль не имеет доступа на уровне 0, то более высокие уровни не имеют смысла." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Сохранить как DocType: Comment,Seen,Посещение @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,Пример: DocType: Workflow,Defines workflow states and rules for a document.,Определяет статусы бизнес-процесса и правила их перехода для документа. DocType: Workflow State,Filter,фильтр @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Закрыт DocType: Blog Settings,Blog Title,Название блога apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Стандартные роли не могут быть отключены apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Тип чата +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Столбцы карты DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Рассылка новостей apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Невозможно использовать подзапрос в порядке @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Добавить столбец apps/frappe/frappe/www/contact.html,Your email address,Ваш адрес электронной почты DocType: Desktop Icon,Module,Модуль +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Успешно обновлено {0} записей из {1}. DocType: Notification,Send Alert On,Отправить оповещение о DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Настроить Label, распечатать спрятать, Default т.д." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Распаковка файлов ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Поль DocType: System Settings,Currency Precision,Точность валюты DocType: System Settings,Currency Precision,Точность валюты apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,"Другой сделка блокирования этот. Пожалуйста, попробуйте еще раз через несколько секунд." +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Очистить фильтры DocType: Test Runner,App,Приложение apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Вложения не могут быть правильно связаны с новым документом DocType: Chat Message Attachment,Attachment,Вложение @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Невозм apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Календарь Google - не удалось обновить событие {0} в Календаре Google, код ошибки {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Поиск либо введите команду DocType: Activity Log,Timeline Name,Сроки Имя +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Только один {0} может быть установлен в качестве основного. DocType: Email Account,e.g. smtp.gmail.com,например smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Добавить новое правило DocType: Contact,Sales Master Manager,Руководитель продаж @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Поле второго имени LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Импорт {0} из {1} DocType: GCalendar Account,Allow GCalendar Access,Разрешить доступ к GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} является обязательным полем +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} является обязательным полем apps/frappe/frappe/templates/includes/login/login.js,Login token required,Требуется токен входа apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Ежемесячный рейтинг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Выберите несколько элементов списка @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Не удается по apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,"Слово, по которому нетрудно догадаться." apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Автоматическое назначение не выполнено: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Поиск... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Пожалуйста, выберите компанию" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Слияние возможно только между Группа-в-группе или Leaf узел-листовой узел apps/frappe/frappe/utils/file_manager.py,Added {0},Добавлено {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Нет соответствующих записей. Поиск что-то новое @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,Идентификатор клиент DocType: Auto Repeat,Subject,Тема apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Вернуться к списку DocType: Web Form,Amount Based On Field,Сумма На основании поле -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Настройте учетную запись электронной почты по умолчанию в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты». apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Пользователь является обязательным для Поделиться DocType: DocField,Hidden,Скрытый DocType: Web Form,Allow Incomplete Forms,Разрешить Неполные формы @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Начните разговор. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Всегда добавляйте "Черновик" Заголовок для печати проектов документов apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Ошибка в уведомлении: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} год (лет) назад DocType: Data Migration Run,Current Mapping Start,Текущий запуск картографирования apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Электронная почта отмечена как спам DocType: Comment,Website Manager,Менеджер сайта @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,Штрих-код apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Использование подзапроса или функции ограничено apps/frappe/frappe/config/customization.py,Add your own translations,Добавить свои собственные переводы DocType: Country,Country Name,Название страны +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Пустой шаблон DocType: About Us Team Member,About Us Team Member,О члене комманды apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Разрешения устанавливаются в Ролях и Типах Документов (называемые DocTypes) путем наделения правами Чтение, Запись, Создание, Удаление, Проведение, Отмена, Изменение, Создание отчета, Импорт, Экпорт, Печать, Отправка email и Назначение прав пользователя." DocType: Event,Wednesday,Среда @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,Сайт Тема Ссылк DocType: Web Form,Sidebar Items,Продукты боковой панели DocType: Web Form,Show as Grid,Показать как сетку apps/frappe/frappe/installer.py,App {0} already installed,Приложение {0} уже установлено +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Пользователи, назначенные для справочного документа, получат баллы." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Нет предварительного просмотра DocType: Workflow State,exclamation-sign,восклицательный знак- apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Распакованные файлы {0} @@ -605,6 +620,7 @@ DocType: Notification,Days Before,Дней до apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Ежедневные события должны заканчиваться в тот же день. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Редактировать... DocType: Workflow State,volume-down,Объем вниз +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Доступ с этого IP-адреса запрещен apps/frappe/frappe/desk/reportview.py,No Tags,Нет меток DocType: Email Account,Send Notification to,Отправить уведомление DocType: DocField,Collapsible,Складной @@ -660,6 +676,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Разработчик apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Созданный 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,Язык печати по умолчанию apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Предки apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Корневая {0} не может быть удален @@ -702,6 +719,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","целевых = ""_blank""" DocType: Workflow State,hdd,жесткий диск DocType: Integration Request,Host,Хозяин +DocType: Data Import Beta,Import File,Импортировать файл apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Столбец {0} уже существует. DocType: ToDo,High,Высокий apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Новое событие @@ -730,8 +748,6 @@ DocType: User,Send Notifications for Email threads,Отправлять увед apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Проф. apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не в режиме разработчика apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Готово резервное копирование файлов -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)","Максимальное количество баллов, допустимое после умножения баллов на значение множителя (Примечание. Для ограничения без ограничения установлено значение 0)" DocType: DocField,In Global Search,В глобальном поиске DocType: System Settings,Brute Force Security,Защита от Брутфорса DocType: Workflow State,indent-left,отступ левого @@ -774,6 +790,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Пользователь '{0}' уже играет роль '{1}' DocType: System Settings,Two Factor Authentication method,Двухфакторный метод проверки подлинности apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Сначала задайте имя и сохраните запись. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 записей apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Общий с {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Отказаться от подписки DocType: View Log,Reference Name,Имя ссылки @@ -824,6 +841,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Статус отслеживания электронной почты DocType: Note,Notify Users On Every Login,Уведомлять пользователей о каждом входе в систему DocType: Note,Notify Users On Every Login,Уведомлять пользователей о каждом входе в систему +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Невозможно сопоставить столбец {0} ни с одним полем +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Успешно обновлено {0} записей. DocType: PayPal Settings,API Password,API Пароль apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Введите модуль python или выберите тип разъема apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Имя поля не определено для настраиваемого поля @@ -852,9 +871,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,Значение Изменен apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Дубликат имя {0} {1} -DocType: Email Queue,Retry,Retry +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Retry +DocType: Contact Phone,Number,Число DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,У вас есть новое сообщение от: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Изменить HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Введите URL-адрес переадресации apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -880,7 +901,7 @@ DocType: Notification,View Properties (via Customize Form),Просмотр св apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Нажмите на файл, чтобы выбрать его." DocType: Note Seen By,Note Seen By,Примечание увиденных apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Попробуйте использовать более длинный шаблон клавиатуры с большим количеством витков -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Доска почёта +,LeaderBoard,Доска почёта DocType: DocType,Default Sort Order,Порядок сортировки по умолчанию DocType: Address,Rajasthan,Раджастхан DocType: Email Template,Email Reply Help,Ответить на Email Помощь @@ -915,6 +936,7 @@ apps/frappe/frappe/utils/data.py,Cent,Цент apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Написать письмо apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Статусы бизнес-процесса (например: черновик, утверждён, отменён)." DocType: Print Settings,Allow Print for Draft,Разрешить печать для проекта +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 .
                                                                                        Нажмите здесь, чтобы узнать больше о Raw Printing ." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Установите Количество apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Провести этот документ для подтверждения DocType: Contact,Unsubscribed,Отписался @@ -946,6 +968,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Организационн ,Transaction Log Report,Отчет о транзакционном журнале DocType: Custom DocPerm,Custom DocPerm,Пользовательские DocPerm DocType: Newsletter,Send Unsubscribe Link,Отправить ссылку Отказаться +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Есть несколько связанных записей, которые необходимо создать, прежде чем мы сможем импортировать ваш файл. Вы хотите автоматически создать следующие отсутствующие записи?" DocType: Access Log,Method,Метод DocType: Report,Script Report,Программируемый отчёт DocType: OAuth Authorization Code,Scopes,Области применения @@ -986,6 +1009,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Загружен успешно apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Вы подключены к Интернету. DocType: Social Login Key,Enable Social Login,Включить социальный вход +DocType: Data Import Beta,Warnings,Предупреждения DocType: Communication,Event,Событие apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","На {0}, {1} писал:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Не удается удалить стандартное поле. Вы можете скрыть его, если вы хотите" @@ -1041,6 +1065,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Вста DocType: Kanban Board Column,Blue,Синий apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,"Все настройки будут удалены. Пожалуйста, подтвердите." DocType: Page,Page HTML,Страница HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Экспорт строк с ошибками apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Имя группы не может быть пустым. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Дальнейшие узлы могут быть созданы только под узлами типа «Группа» DocType: SMS Parameter,Header,Шапка @@ -1080,13 +1105,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Истекло время запроса apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Включить / отключить домены DocType: Role Permission for Page and Report,Allow Roles,Разрешить роли +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Успешно импортировано {0} записей из {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Простое выражение Python, пример: статус в («Неверный»)" DocType: User,Last Active,Последнее посещение DocType: Email Account,SMTP Settings for outgoing emails,Настройки SMTP для исходящих писем apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,выбрать DocType: Data Export,Filter List,Список фильтров DocType: Data Export,Excel,превосходить -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Ваш пароль был обновлён. Вот ваш новый пароль DocType: Email Account,Auto Reply Message,Автоматический ответ DocType: Data Migration Mapping,Condition,Условия apps/frappe/frappe/utils/data.py,{0} hours ago,{0} часов назад @@ -1095,7 +1120,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID пользователя DocType: Communication,Sent,Отправлено DocType: Address,Kerala,Керала -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,администрация DocType: User,Simultaneous Sessions,одновременных сессий DocType: Social Login Key,Client Credentials,Учетные данные клиента @@ -1127,7 +1151,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Обн apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Магистр DocType: DocType,User Cannot Create,Пользователь не может создавать apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно сделано -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Папка {0} не существует apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,доступ Dropbox утвержден! DocType: Customize Form,Enter Form Type,Введите Form Тип DocType: Google Drive,Authorize Google Drive Access,Авторизовать Google Drive Access @@ -1135,7 +1158,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Записи отсутствуют помечены. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Удалить поле apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Вы не подключены к Интернету. Повторите попытку через некоторое время. -DocType: User,Send Password Update Notification,Отправить напоминание об обновлении пароля apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Разрешение DocType, DocType. Осторожно!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Индивидуальные форматы для печати, электронной почты" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Сумма {0} @@ -1221,6 +1243,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Неверный к apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Интеграция с контактами Google отключена. DocType: Assignment Rule,Description,Описание DocType: Print Settings,Repeat Header and Footer in PDF,Повторите Колонтитулы в PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,недостаточность DocType: Address Template,Is Default,По умолчанию DocType: Data Migration Connector,Connector Type,Тип соединителя apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Имя столбца не может быть пустым @@ -1233,6 +1256,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Перейти на DocType: LDAP Settings,Password for Base DN,Пароль для 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,Колонки на основе… +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/model/document.py,Action Failed,Ошибка действия apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Для пользователей @@ -1286,6 +1310,7 @@ DocType: Print Settings,Enable Raw Printing,Включить необработ DocType: Website Route Redirect,Source,Источник apps/frappe/frappe/templates/includes/list/filters.html,clear,ясно apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Законченный +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Пользователь DocType: Prepared Report,Filter Values,Значение фильтра DocType: Communication,User Tags,Метки пользователя DocType: Data Migration Run,Fail,Потерпеть неудачу @@ -1342,6 +1367,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,сл ,Activity,Активность DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Помощь: Чтобы связать с другой записью в системе, используйте «# Form/Note/[Название статьи]», в виде ссылки URL. (Не используйте «http://»)" DocType: User Permission,Allow,Позволять +DocType: Data Import Beta,Update Existing Records,Обновить существующие записи apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Давайте избегать повторяющихся слов и символов DocType: Energy Point Rule,Energy Point Rule,Правило энергетической точки DocType: Communication,Delayed,Задерживается @@ -1354,9 +1380,7 @@ DocType: Milestone,Track Field,Трек Поле DocType: Notification,Set Property After Alert,Задать свойство после оповещения apps/frappe/frappe/config/customization.py,Add fields to forms.,Добавление полей в формах. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Похоже, что что-то не так с конфигурацией Paypal этого сайта." -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 .
                                                                                        Нажмите здесь, чтобы узнать больше о Raw Printing ." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Добавить отзыв -DocType: File,rgt,РТГ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Размер шрифта (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Только стандартные типы документов могут быть настроены из формы настройки. DocType: Email Account,Sendgrid,Sendgrid @@ -1393,6 +1417,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Ф apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Сожалею! Вы не можете удалять автоматически генерируемые комментарии DocType: Google Settings,Used For Google Maps Integration.,Используется для интеграции с Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Ссылка DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Никакие записи не будут экспортированы DocType: User,System User,Пользователь системы DocType: Report,Is Standard,Стандартный отчёт DocType: Desktop Icon,_report,_report @@ -1408,6 +1433,7 @@ DocType: Workflow State,minus-sign,минус-знак apps/frappe/frappe/public/js/frappe/request.js,Not Found,Не найдено apps/frappe/frappe/www/printview.py,No {0} permission,Нет {0} разрешение apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Разрешения Экспорт пользовательских +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ничего не найдено. DocType: Data Export,Fields Multicheck,Поле Multicheck DocType: Activity Log,Login,Войти DocType: Web Form,Payments,Оплата @@ -1467,8 +1493,9 @@ DocType: Address,Postal,Почтовый DocType: Email Account,Default Incoming,По умолчанию Входящий DocType: Workflow State,repeat,повторить DocType: Website Settings,Banner,Баннер +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Значение должно быть одним из {0} DocType: Role,"If disabled, this role will be removed from all users.","Если эта функция отключена, эта роль будет удалена от всех пользователей." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Перейти к списку {0} +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,Помощь в Поиске DocType: Milestone,Milestone Tracker,Milestone Tracker apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Зарегистрированный но отключен @@ -1482,6 +1509,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Локальное имя DocType: DocType,Track Changes,Отслеживать изменения DocType: Workflow State,Check,чек DocType: Chat Profile,Offline,Не в сети +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Успешно импортировано {0} DocType: User,API Key,API Ключ DocType: Email Account,Send unsubscribe message in email,Отправить сообщение об отказе от подписки на электронную почту apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Редактировать @@ -1508,11 +1536,11 @@ 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/form/footer/timeline.js,changed value of {0} {1},измененное значение {0} {1} 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,Всего страниц apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} уже назначил значение по умолчанию для {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                        No results found for '

                                                                                        ,

                                                                                        Нет результатов для '

                                                                                        DocType: DocField,Attach Image,Прикрепить изображение DocType: Workflow State,list-alt,Список-альт apps/frappe/frappe/www/update-password.html,Password Updated,Пароль обновлён @@ -1533,8 +1561,10 @@ apps/frappe/frappe/permissions.py,Not allowed 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 не является допустимым форматом отчета. Формат отчета должен быть одним из следующих %s DocType: Chat Message,Chat,Чат +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Полномочия пользователя DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP Group Mapping DocType: Dashboard Chart,Chart Options,Параметры диаграммы +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Колонка без названия apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} с {1} на {2} в строке № {3} DocType: Communication,Expired,Истек срок действия apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Кажется, токен, который вы используете, недействителен!" @@ -1544,6 +1574,7 @@ DocType: DocType,System,Система DocType: Web Form,Max Attachment Size (in MB),Максимальный размер вложения (в МБ) apps/frappe/frappe/www/login.html,Have an account? Login,Иметь аккаунт? Авторизоваться DocType: Workflow State,arrow-down,Стрелка вниз +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ряд {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Пользователь не имеет права удалить {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} из {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Обновлено @@ -1561,6 +1592,7 @@ DocType: Custom Role,Custom Role,Пользовательские роли apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Главная/Тестовая Папка 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Введите ваш пароль DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Секретный ключ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Обязательное) 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.,В файле нет данных. Перезагрузите новый файл данными. @@ -1635,6 +1667,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Показ apps/frappe/frappe/desk/form/assign_to.py,New Message,Новое сообщение DocType: File,Preview HTML,Предварительный HTML DocType: Desktop Icon,query-report,запрос-отчет +DocType: Data Import Beta,Template Warnings,Шаблон предупреждений apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Фильтры сохранены DocType: DocField,Percent,Процент apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,"Пожалуйста, установите фильтры" @@ -1656,6 +1689,7 @@ DocType: Custom Field,Custom,Пользовательские DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Если включено, пользователи, которые подключаются с ограниченным IP-адресом, не будут запрашиваться для Two Factor Auth" DocType: Auto Repeat,Get Contacts,Получить контакты apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},"Сообщения, поданные в соответствии с {0}" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Пропуск столбца без названия DocType: Notification,Send alert if date matches this field's value,"Отправить уведомление, если дата соответствует значению этого поля" DocType: Workflow,Transitions,Переходы apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} до {2} @@ -1679,6 +1713,7 @@ DocType: Workflow State,step-backward,шаг назад apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Пожалуйста, установите ключи доступа Dropbox на своем сайте конфигурации" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,"Удалить эту запись, чтобы разрешить отправку на этот адрес электронной почты" +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Если нестандартный порт (например, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Настроить ярлыки apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Только обязательные поля необходимы для новых записей. Вы можете удалить необязательные столбцы, если хотите." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Показать больше активности @@ -1786,7 +1821,9 @@ 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}.,Успешно обновлена запись {0} из {1}. 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,Письмо DocType: DocType,"Naming Options:
                                                                                        1. field:[fieldname] - By Field
                                                                                        2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                        3. Prompt - Prompt user for a name
                                                                                        4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                        5. @@ -1800,6 +1837,7 @@ DocType: GCalendar Account,Next Sync Token,Следующий токен син DocType: Energy Point Settings,Energy Point Settings,Настройки энергетической точки DocType: Async Task,Succeeded,Преемник apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Обязательные поля, необходимые в {0}" +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                          No results found for '

                                                                                          ,

                                                                                          Нет результатов для '

                                                                                          apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Сброс разрешений для {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Пользователи и разрешения DocType: S3 Backup Settings,S3 Backup Settings,Настройки резервного копирования S3 @@ -1871,6 +1909,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,В DocType: Notification,Value Change,Стоимость Изменение DocType: Google Contacts,Authorize Google Contacts Access,Авторизовать доступ к контактам Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Отображение только числовых полей из отчета +DocType: Data Import Beta,Import Type,Тип импорта DocType: Access Log,HTML Page,HTML-страница DocType: Address,Subsidiary,Филиал apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Попытка подключения к QZ Tray ... @@ -1881,7 +1920,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Невер DocType: Custom DocPerm,Write,Написать apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Только администратор может создавать отчёт-выборку / программируемый отчёт apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Обновление -DocType: File,Preview,Просмотр +DocType: Data Import Beta,Preview,Просмотр apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Поле ""Значение"" является обязательным. Пожалуйста, укажите значение, чтобы обновить" DocType: Customize Form,Use this fieldname to generate title,Используйте этот имя_поля генерировать название apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Импортировать электронную почту из @@ -1966,6 +2005,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Браузер DocType: Social Login Key,Client URLs,URL-адреса клиентов apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Некоторая информация отсутствует apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} создано успешно +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Пропуск {0} из {1}, {2}" DocType: Custom DocPerm,Cancel,Отмена apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Массовое удаление apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Файл {0} не существует @@ -1993,7 +2033,6 @@ DocType: GCalendar Account,Session Token,Идентификатор сеанса DocType: Currency,Symbol,Символ apps/frappe/frappe/model/base_document.py,Row #{0}:,Строка #{0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Подтвердите удаление данных -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Новый пароль выслан на email apps/frappe/frappe/auth.py,Login not allowed at this time,Войти не допускается в это время DocType: Data Migration Run,Current Mapping Action,Текущие действия по составлению карт DocType: Dashboard Chart Source,Source Name,Имя источника @@ -2006,6 +2045,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,С последующим DocType: LDAP Settings,LDAP Email Field,LDAP Email Поле apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Список +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Экспорт {0} записей apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Уже в списке дел пользователя DocType: User Email,Enable Outgoing,Включить исходящие DocType: Address,Fax,Факс @@ -2065,8 +2105,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Печать документов apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Перейти к полю DocType: Contact Us Settings,Forward To Email Address,Переслать на адрес электронной почты +DocType: Contact Phone,Is Primary Phone,Основной телефон apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Отправьте письмо на {0}, чтобы связать его здесь." DocType: Auto Email Report,Weekdays,Будни +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} записей будут экспортированы apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Название поля должно быть допустимым имя_поля DocType: Post Comment,Post Comment,Оставьте комментарий apps/frappe/frappe/config/core.py,Documents,Документы @@ -2084,7 +2126,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","Это поле появляется только в случае, если имя_поля определено здесь имеет значение или правила являются истинными (примеры): MyField Eval: doc.myfield == 'My Value' Eval: doc.age> 18" DocType: Social Login Key,Office 365,Офис 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Cегодня +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","После такой установки, пользователи получат доступ только к документам (например, сообщениям в блоге), связанным с этими разрешениями пользователя (например, блоггера)." +DocType: Data Import Beta,Submit After Import,Отправить после импорта DocType: Error Log,Log of Scheduler Errors,Журнал ошибок Scheduler DocType: User,Bio,Биография DocType: OAuth Client,App Client Secret,App Client Secret @@ -2103,10 +2147,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Отключение клиента Регистрация ссылку в странице входа apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Назначено / Владельца DocType: Workflow State,arrow-left,стрелка налево +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Экспортировать 1 запись DocType: Workflow State,fullscreen,полноэкранный DocType: Chat Token,Chat Token,Чат-токен apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Создать диаграмму apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не импортировать DocType: Web Page,Center,Центр DocType: Notification,Value To Be Set,"Значение, которое должно быть установлено" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Изменить {0} @@ -2126,6 +2172,7 @@ DocType: Print Format,Show Section Headings,Показать Заголовки DocType: Bulk Update,Limit,предел apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},"Мы получили запрос на удаление {0} данных, связанных с: {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Добавить новый раздел +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Отфильтрованные записи apps/frappe/frappe/www/printview.py,No template found at path: {0},Нет шаблона по адресу: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Нет аккаунта электронной почты DocType: Comment,Cancelled,Отменено @@ -2213,10 +2260,13 @@ 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} 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,Будет ли ваш идентификатор входа в систему +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Сброс типов документов глобального поиска. ,Lead Conversion Time,Время конверсии Обращения apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Построить отчет DocType: Note,Notify users with a popup when they log in,"Сообщите пользователям всплывающего окна, когда они войти" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Основные модули {0} не могут быть найдены в глобальном поиске. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Открытый чат apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не существует, выберите новую цель для объединения" DocType: Data Migration Connector,Python Module,Модуль Python @@ -2233,8 +2283,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Закрыть apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Нельзя изменить статус документа с 0 на 2 DocType: File,Attached To Field,Прикрепленный к полю -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Полномочия пользователя -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Обновить +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Обновить DocType: Transaction Log,Transaction Hash,Сделка транзакций DocType: Error Snapshot,Snapshot View,Снимок Посмотреть apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Пожалуйста, сохраните бюллетень перед отправкой" @@ -2250,6 +2299,7 @@ DocType: Data Import,In Progress,Выполняется apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Queued для резервного копирования. Это может занять несколько минут до часа. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Пользовательское разрешение уже существует +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Отображение столбца {0} в поле {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Просмотреть {0} DocType: User,Hourly,почасовой apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Регистрация OAuth Client App @@ -2262,7 +2312,6 @@ DocType: SMS Settings,SMS Gateway URL,URL СМС-шлюза apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не может быть ""{2}"". Это должно быть одним из ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},получено {0} через автоматическое правило {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} или {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Обновление пароля DocType: Workflow State,trash,мусор DocType: System Settings,Older backups will be automatically deleted,Более старые резервные копии будут автоматически удалены apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Недействительный ключ ключа доступа или секретный ключ доступа. @@ -2291,6 +2340,7 @@ DocType: Address,Preferred Shipping Address,Популярные Адрес до apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,С головой Письмо apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},Создано {0} {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Недопустимо для {0}: {1} в строке {2}. Запрещенное поле: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Учетная запись электронной почты не настроена. Пожалуйста, создайте новую учетную запись электронной почты в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты»." DocType: S3 Backup Settings,eu-west-1,ес-запад-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Если этот флажок установлен, строки с достоверными данными будут импортированы, а недопустимые строки будут сбрасываться в новый файл для последующего импорта." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ может редактироваться только пользователями роли @@ -2317,6 +2367,7 @@ DocType: Custom Field,Is Mandatory Field,Является обязательны DocType: User,Website User,Пользователь сайта apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,"Некоторые столбцы могут быть обрезаны при печати в PDF. Старайтесь, чтобы количество столбцов было меньше 10." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Не равно +DocType: Data Import Beta,Don't Send Emails,Не отправлять электронные письма DocType: Integration Request,Integration Request Service,Интеграция заявки на обслуживание DocType: Access Log,Access Log,Журнал доступа DocType: Website Script,Script to attach to all web pages.,Сценарий для подключения к всех веб-страниц. @@ -2357,6 +2408,7 @@ DocType: Contact,Passive,Пассивный DocType: Auto Repeat,Accounts Manager,Диспетчер учетных записей apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Назначение для {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Ваш платёж отменён. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Настройте учетную запись электронной почты по умолчанию в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты». apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Выберите тип файла apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Посмотреть все DocType: Help Article,Knowledge Base Editor,Редактор базы знаний @@ -2389,6 +2441,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Данные apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Статус документа apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Требуется подтверждение +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Следующие записи должны быть созданы, прежде чем мы сможем импортировать ваш файл." DocType: OAuth Authorization Code,OAuth Authorization Code,Код авторизации OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Не разрешается импортировать DocType: Deleted Document,Deleted DocType,Удаляется DocType @@ -2443,8 +2496,8 @@ DocType: GCalendar Settings,Google API Credentials,Учетные данные A apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Сбой запуска сеанса apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Сбой запуска сеанса apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Это письмо было отправлено на адрес {0} и его копии на {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},отправил этот документ {0} DocType: Workflow State,th,й -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} год (лет) назад DocType: Social Login Key,Provider Name,Имя провайдера apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Создать {0} DocType: Contact,Google Contacts,Контакты Google @@ -2452,6 +2505,7 @@ DocType: GCalendar Account,GCalendar Account,Аккаунт GCalendar DocType: Email Rule,Is Spam,Спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Сообщить {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Открыть {0} +DocType: Data Import Beta,Import Warnings,Импорт предупреждений DocType: OAuth Client,Default Redirect URI,По умолчанию Перенаправление URI DocType: Auto Repeat,Recipients,Получатели DocType: System Settings,Choose authentication method to be used by all users,"Выберите метод аутентификации, который будет использоваться всеми пользователями." @@ -2570,6 +2624,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Отчет apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Ошибка слабой ошибки Webhook DocType: Email Flag Queue,Unread,Не прочитано DocType: Bulk Update,Desk,Стол +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Пропуск столбца {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Фильтр должен быть кортежем или списком (в списке) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,"Напишите SELECT-запрос. Учтите, что пагинация результата не производится (все данные передаются за один раз)." DocType: Email Account,Attachment Limit (MB),Лимит Вложение (MB) @@ -2584,6 +2639,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Создать DocType: Workflow State,chevron-down,шеврона вниз apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Письмо не отправлено {0} (отписан / отключено) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Выберите поля для экспорта DocType: Async Task,Traceback,Диагностика DocType: Currency,Smallest Currency Fraction Value,Минимальное дробное значение apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Подготовка отчета @@ -2592,6 +2648,7 @@ DocType: Workflow State,th-list,го-лист DocType: Web Page,Enable Comments,Включить Комментарии apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Заметки DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Разрешить пользователю только этот IP-адрес. Несколько IP-адресов могут быть добавлены через запятую. Принимает также частичные IP-адреса, например 111.111.111" +DocType: Data Import Beta,Import Preview,Предварительный просмотр импорта DocType: Communication,From,От apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Выберите узел группы в первую очередь. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Найти {0} в {1} @@ -2691,6 +2748,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Между DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,В очереди +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Настройка формы DocType: Braintree Settings,Use Sandbox,Использовать «песочницу» apps/frappe/frappe/utils/goal.py,This month,Этот месяц apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Новый пользовательский Формат печати @@ -2706,6 +2764,7 @@ DocType: Session Default,Session Default,Сессия по умолчанию DocType: Chat Room,Last Message,Последнее сообщение DocType: OAuth Bearer Token,Access Token,Маркер доступа DocType: About Us Settings,Org History,Org История +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Около {0} минут осталось DocType: Auto Repeat,Next Schedule Date,Следующая дата расписания DocType: Workflow,Workflow Name,Название потока DocType: DocShare,Notify by Email,Уведомление по почте @@ -2735,6 +2794,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,автор apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Резюме Отправка apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Возобновить +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Показать предупреждения apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},На: {0} DocType: Address,Purchase User,Специалист поставок DocType: Data Migration Run,Push Failed,Ошибка нажата @@ -2773,6 +2833,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Рас apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,У Вас нет прав для просмотра данной новостной ленты DocType: User,Interests,интересы apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Инструкции по восстановлению пароля были отправлены на ваш email +DocType: Energy Point Rule,Allot Points To Assigned Users,Выделить очки назначенным пользователям apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Уровень 0 - для разрешений уровня документа, \ более высоких уровней для разрешений на уровне поля." DocType: Contact Email,Is Primary,Первичный @@ -2795,6 +2856,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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,Начать импорт +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Тип экспорта DocType: Workflow State,circle-arrow-left,Круг со стрелкой налево DocType: System Settings,Force User to Reset Password,Заставить пользователя сбросить пароль apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Чтобы получить обновленный отчет, нажмите {0}." @@ -2807,13 +2869,16 @@ DocType: Contact,Middle Name,Второе имя DocType: Custom Field,Field Description,Описание Поля apps/frappe/frappe/model/naming.py,Name not set via Prompt,Имя не установлено через строки apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Входящая почта +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Обновление {0} из {1}, {2}" DocType: Auto Email Report,Filters Display,Фильтры Показать apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Поле "amend_from" должно присутствовать для внесения изменений. +DocType: Contact,Numbers,чисел apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} оценил вашу работу по {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Сохранить фильтры DocType: Address,Plant,Завод apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Ответить всем DocType: DocType,Setup,Настройки +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Все записи DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Адрес электронной почты, чьи контакты Google должны быть синхронизированы." DocType: Email Account,Initial Sync Count,Первоначальная синхронизация Count DocType: Workflow State,glass,стекло @@ -2838,7 +2903,7 @@ DocType: Workflow State,font,Шрифт (font) DocType: DocType,Show Preview Popup,Предварительный просмотр apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Это обычный пароль топ-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Пожалуйста, включите всплывающие окна" -DocType: User,Mobile No,Мобильный номер +DocType: Contact,Mobile No,Мобильный номер DocType: Communication,Text Content,Text Content DocType: Customize Form Field,Is Custom Field,На заказ поле DocType: Workflow,"If checked, all other workflows become inactive.","Если этот флажок установлен, все остальные рабочие процессы становятся неактивными." @@ -2884,6 +2949,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,До apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Название новой печатной формы apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Переключить боковую панель DocType: Data Migration Run,Pull Insert,Вставить вкладыш +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Максимальное количество баллов, допустимое после умножения баллов на значение множителя (Примечание: для ограничения не оставляйте это поле пустым или установите 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Неверный шаблон apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Неверный SQL-запрос apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Обязательно: DocType: Chat Message,Mentions,Упоминания @@ -2898,6 +2966,7 @@ DocType: User Permission,User Permission,Пользователь Введено apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP не установлен apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Скачать с данными +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},измененные значения для {0} {1} DocType: Workflow State,hand-right,ручной право DocType: Website Settings,Subdomain,Субдомен DocType: S3 Backup Settings,Region,Область @@ -2925,10 +2994,12 @@ DocType: Braintree Settings,Public Key,Открытый ключ DocType: GSuite Settings,GSuite Settings,Настройки GSuite DocType: Address,Links,Связи DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,"Использует имя адреса электронной почты, указанное в этой учетной записи, в качестве имени отправителя для всех электронных писем, отправленных с использованием этой учетной записи." +DocType: Energy Point Rule,Field To Check,Поле для проверки apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Контакты Google - не удалось обновить контакт в Контактах Google {0}, код ошибки {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Выберите Тип документа. apps/frappe/frappe/model/base_document.py,Value missing for,Нет значения для apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Добавить потомка +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Импорт прогресса DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Если условие выполнено, пользователь будет вознагражден баллами. например. doc.status == 'Закрыто'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Проведенная Запись не может быть удалена. @@ -2965,6 +3036,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Авторизоват apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Страница, которую вы ищете, не найдена. Возможно, она перемещена, или в ссылке допущена опечатка" apps/frappe/frappe/www/404.html,Error Code: {0},Код ошибки: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Описание для листинга странице, в виде обычного текста, только пару строк. (Макс. 140 символов)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} обязательные поля DocType: Workflow,Allow Self Approval,Разрешить самостоятельное утверждение DocType: Event,Event Category,Категория события apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,Джон Доу @@ -3013,8 +3085,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Перемести DocType: Address,Preferred Billing Address,Популярные Адрес для выставления счета apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Слишком много пишет в одном запросе. Пожалуйста, пришлите меньшие запросы" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Диск Google был настроен. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Тип документа {0} был повторен. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Значения Изменено DocType: Workflow State,arrow-up,Стрелка вверх +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Должна быть хотя бы одна строка для таблицы {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Чтобы настроить автоматический повтор, включите «Разрешить автоматический повтор» из {0}." DocType: OAuth Bearer Token,Expires In,Истекает DocType: DocField,Allow on Submit,Разрешить проведение @@ -3101,6 +3175,7 @@ DocType: Custom Field,Options Help,Опции Помощь 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 запись будет экспортирована 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,Ограничить доступ к домену @@ -3118,6 +3193,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Код проверки DocType: Webhook,Webhook Request,Запрос на оповещения apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Не удалось: {0} до {1}: {2} DocType: Data Migration Mapping,Mapping Type,Тип отображения +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Выберите Обязательный apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Обзор apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Нет необходимости для символов, цифр или букв в верхнем регистре." DocType: DocField,Currency,Валюта @@ -3148,11 +3224,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Письмо на основе apps/frappe/frappe/utils/oauth.py,Token is missing,Маркер отсутствует apps/frappe/frappe/www/update-password.html,Set Password,Установите пароль +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Успешно импортировано {0} записей. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Примечание. Изменение имени страницы разбивает предыдущий URL на эту страницу. apps/frappe/frappe/utils/file_manager.py,Removed {0},Удалены {0} DocType: SMS Settings,SMS Settings,Настройки СМС DocType: Company History,Highlight,Выделить DocType: Dashboard Chart,Sum,сумма +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,через импорт данных DocType: OAuth Provider Settings,Force,Принудительно apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Последняя синхронизация {0} DocType: DocField,Fold,Сложить @@ -3189,6 +3267,7 @@ DocType: Workflow State,Home,Главная DocType: OAuth Provider Settings,Auto,Авто DocType: System Settings,User can login using Email id or User Name,Пользователь может войти в систему с использованием Email-идентификатора или имени пользователя DocType: Workflow State,question-sign,Вопрос-знак +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} отключен apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Поле «маршрут» обязательно для веб-представлений apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Вставить столбец до {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Пользователь из этого поля будет вознагражден баллами @@ -3222,6 +3301,7 @@ DocType: Website Settings,Top Bar Items,Пункты верхнего меню DocType: Notification,Print Settings,Настройки печати DocType: Page,Yes,Да DocType: DocType,Max Attachments,Максимальное Вложения +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Осталось {0} секунд DocType: Calendar View,End Date Field,Поле конечной даты apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобальные ярлыки DocType: Desktop Icon,Page,Страница @@ -3334,6 +3414,7 @@ DocType: GSuite Settings,Allow GSuite access,Разрешить доступ GSu DocType: DocType,DESC,DESC DocType: DocType,Naming,Название apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Выбрать Все +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Столбец {0} apps/frappe/frappe/config/customization.py,Custom Translations,Пользовательские Переводы apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Готовность apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,по Роли @@ -3376,11 +3457,13 @@ DocType: Stripe Settings,Stripe Settings,Настройки Stripe DocType: Stripe Settings,Stripe Settings,Настройки Stripe DocType: Data Migration Mapping,Data Migration Mapping,Миграция данных DocType: Auto Email Report,Period,Период обновления +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Около {0} минут осталось apps/frappe/frappe/www/login.py,Invalid Login Token,Неверный Логин маркера 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,Доля-альт apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Очередь должна быть одной из {0} @@ -3411,6 +3494,7 @@ DocType: Calendar View,Start Date Field,Поле начальной даты DocType: Role,Role Name,Имя роли apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Переключение на рабочий стол apps/frappe/frappe/config/core.py,Script or Query reports,Отчёты-выборка или программируемый отчёт +DocType: Contact Phone,Is Primary Mobile,Основной мобильный DocType: Workflow Document State,Workflow Document State,Состояние документа потока apps/frappe/frappe/public/js/frappe/request.js,File too big,Файл слишком большой apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Аккаунт электронной почты добавлен несколько раз @@ -3456,6 +3540,7 @@ DocType: DocField,Float,Сплавы DocType: Print Settings,Page Settings,Настройки страницы apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Сохранение ... apps/frappe/frappe/www/update-password.html,Invalid Password,Неверный пароль +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Успешно импортирована запись {0} из {1}. DocType: Contact,Purchase Master Manager,Руководитель поставок apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,"Нажмите на значок замка, чтобы переключить публичный / приватный" DocType: Module Def,Module Name,Название модуля @@ -3490,6 +3575,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Некоторые из функций могут не работать в вашем браузере. Обновите браузер до последней версии. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Некоторые из функций могут не работать в вашем браузере. Обновите браузер до последней версии. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Не знаю, спросите 'помощь'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},отменил этот документ {0} DocType: DocType,Comments and Communications will be associated with this linked document,Комментарии и коммуникации будут связаны с этой связанного документа apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Фильтр ... DocType: Workflow State,bold,храбрый самоуверенный @@ -3508,6 +3594,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Добавл DocType: Comment,Published,Опубликовано apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Спасибо за ваше письмо! DocType: DocField,Small Text,Маленьикий текст +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Номер {0} не может быть установлен как основной для телефона, так же как и номер мобильного телефона." DocType: Workflow,Allow approval for creator of the document,Разрешает утверждать создателю документа apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Сохранить отчет DocType: Webhook,on_cancel,on_cancel @@ -3565,6 +3652,7 @@ DocType: Print Settings,PDF Settings,Настройки PDF DocType: Kanban Board Column,Column Name,Имя столбца DocType: Language,Based On,На основании DocType: Email Account,"For more information, click here.","Для получения дополнительной информации нажмите здесь ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Количество столбцов не совпадает с данными apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Использовать по умолчанию apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Время выполнения: {0} сек apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Неверный путь включения @@ -3655,7 +3743,7 @@ 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: Deleted Document,GCalendar Sync ID,Идентификатор синхронизации GCalendar DocType: Prepared Report,Report Start Time,Время начала отчета -apps/frappe/frappe/config/settings.py,Export Data,Экспорт данных +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Экспорт данных 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.,"Это фоновый отчет. Пожалуйста, установите соответствующие фильтры, а затем сгенерируйте новый." @@ -3673,7 +3761,6 @@ DocType: Report,Disable Prepared Report,Отключить подготовле apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Пользователь {0} запросил удаление данных apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,"Неправильный токен доступа. Пожалуйста, попробуйте еще раз" apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Приложение был обновлен до новой версии, пожалуйста, обновите эту страницу" -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.,"Шаблон адреса по умолчанию не найден. Создайте новый, выбрав «Настройка»> «Печать и брендинг»> «Шаблон адреса»." DocType: Notification,Optional: The alert will be sent if this expression is true,"Дополнительно: предупреждение будет отправлено, если это выражение истинно" DocType: Data Migration Plan,Plan Name,Название плана DocType: Print Settings,Print with letterhead,Печать с помощью фирменных бланков @@ -3714,6 +3801,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Не удается установить Изменить без Отменить apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Полная страница DocType: DocType,Is Child Table,Является дочерней таблице +DocType: Data Import Beta,Template Options,Параметры шаблона apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} должен быть одним из {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} в настоящее время просмотривает этот документ apps/frappe/frappe/config/core.py,Background Email Queue,Фоновая очередь электронной почты @@ -3721,7 +3809,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Сброс паро DocType: Communication,Opened,Открыт DocType: Workflow State,chevron-left,шеврона оставили DocType: Communication,Sending,Отправка -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Не допускается с этого IP-адреса DocType: Website Slideshow,This goes above the slideshow.,Это идет над слайд-шоу. DocType: Contact,Last Name,Фамилия DocType: Event,Private,Личные @@ -3735,7 +3822,6 @@ DocType: Workflow Action,Workflow Action,Действия бизнес-проц apps/frappe/frappe/utils/bot.py,I found these: ,Я нашел следующее: DocType: Event,Send an email reminder in the morning,Отправить утром напоминание по электронной почте DocType: Blog Post,Published On,Опубликовано на -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Учетная запись электронной почты не настроена. Пожалуйста, создайте новую учетную запись электронной почты в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты»." 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} @@ -3756,7 +3842,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,знак-предупреждения DocType: Prepared Report,Prepared Report,Подготовленный отчет apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Добавьте метатеги на свои веб-страницы -DocType: Contact,Phone Nos,Номера телефонов DocType: Workflow State,User,Пользователь DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Показать название в окне браузера как "префикс - название" DocType: Payment Gateway,Gateway Settings,Настройки шлюза @@ -3774,6 +3859,7 @@ DocType: Data Migration Connector,Data Migration,Перенос данных DocType: User,API Key cannot be regenerated,API-ключ нельзя восстановить apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Что-то пошло не так DocType: System Settings,Number Format,Формат числа +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Успешно импортирована запись {0}. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Резюме DocType: Event,Event Participants,Участники мероприятия DocType: Auto Repeat,Frequency,частота @@ -3781,7 +3867,7 @@ DocType: Custom Field,Insert After,Вставьте После DocType: Event,Sync with Google Calendar,Синхронизировать с календарем Google DocType: Access Log,Report Name,Название отчета DocType: Desktop Icon,Reverse Icon Color,Обратный цвет значка -DocType: Notification,Save,Сохранить +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Сохранить apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Следующая дата по расписанию apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Назначьте тому, у кого меньше всего заданий" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Заголовок раздела @@ -3804,11 +3890,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Настройка формы DocType: Google Contacts,Last Sync On,Последняя синхронизация DocType: Deleted Document,Deleted Document,Удаляется документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Упс! Что-то пошло не так. DocType: Desktop Icon,Category,Категория +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Значение {0} отсутствует для {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Добавить контакты apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пейзаж apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Расширения клиентский сценарий в Javascript @@ -3832,6 +3918,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Обновление энергетической точки apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Пожалуйста, выберите другой способ оплаты. PayPal не поддерживает транзакции в валюте «{0}»" DocType: Chat Message,Room Type,Тип номера +DocType: Data Import Beta,Import Log Preview,Предварительный просмотр журнала импорта apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Поле поиска {0} не является действительным apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,загруженный файл DocType: Workflow State,ok-circle,в порядке круга @@ -3900,6 +3987,7 @@ DocType: DocType,Allow Auto Repeat,Разрешить автоматическо apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Нет значений для отображения DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Шаблон электронной почты +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Успешно обновлена запись {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Пользователь {0} не имеет доступа к типу документа через разрешение роли для документа {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Необходимо ввести логин и пароль apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Обновите, чтобы получить последнюю документ." diff --git a/frappe/translations/si.csv b/frappe/translations/si.csv index abde901064..adf9fab72c 100644 --- a/frappe/translations/si.csv +++ b/frappe/translations/si.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,පහත සඳහන් යෙදුම් සඳහා නව {} නිකුත් කිරීම් තිබේ apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,කරුණාකර මුදල ක්ෂේත්ර තෝරන්න. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,ආයාත ගොනුව පූරණය වෙමින් ... DocType: Assignment Rule,Last User,අවසන් පරිශීලකයා apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","නව කාර්ය, {0}, ඔබට {1} විසින් පවරා තිබේ. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,සැසි පෙරනිමි සුරකින ලදි +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ගොනුව නැවත පූරණය කරන්න DocType: Email Queue,Email Queue records.,විද්යුත් පෝලිමේ වාර්තා. DocType: Post,Post,තැපැල් DocType: Address,Punjab,පන්ජාබ් @@ -44,6 +46,7 @@ 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,පරාමිතිය @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,මාසික DocType: Address,Uttarakhand,උත්තරාකන්ඩ් DocType: Email Account,Enable Incoming,එන සබල කරන්න apps/frappe/frappe/core/doctype/version/version_view.html,Danger,අනතුර -apps/frappe/frappe/www/login.py,Email Address,විද්යුත් තැපැල් ලිපිනය +DocType: Address,Email Address,විද්යුත් තැපැල් ලිපිනය DocType: Workflow State,th-large,වන-විශාල DocType: Communication,Unread Notification Sent,නොකියවූ නිවේදනය යැවූ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,අපනයන ඉඩ දෙනු නොලැබේ. ඔබ {0} අපනයනය කිරීමට භූමිකාව අවශ්යයි. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,පරි DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""විකුණුම් විමසුම්, සහාය විමසුම්" ආදිය මෙන් අමතන්න විකල්ප, නව රේඛාවක් එක් එක් හෝ කොමාවකින් වෙන්." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,ටැග් එක් කරන්න ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ආලේඛ්‍ය චිත්‍රය -DocType: Data Migration Run,Insert,ඇතුළු කරන්න +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,ඇතුළු කරන්න apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,ගූගල් ඩ්‍රයිව් ප්‍රවේශයට ඉඩ දෙන්න apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},තෝරන්න {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,කරුණාකර මූලික URL ඇතුලත් කරන්න @@ -117,17 +120,17 @@ 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.","මීට අමතරව පද්ධතිය කළමනාකරු සිට, Set පරිශීලක අවසර සමඟ චරිත අයිතිය බව ලේඛන වර්ගය සඳහා අනෙකුත් පරිශීලකයන් සඳහා අවසර සැකසිය හැක." apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Configure Theme,තේමාව වින්‍යාස කරන්න DocType: Company History,Company History,සමාගම ඉතිහාසය -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,නැවත සකසන්න +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,නැවත සකසන්න DocType: Workflow State,volume-up,පරිමාව-අප් apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,වෙබ් යෙදුම් API ඉල්ලීම් වෙබ් යෙදුම් බවට ඇමතීම +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ලුහුබැඳීම පෙන්වන්න DocType: DocType,Default Print Format,පෙරනිමි මුද්රණය ආකෘතිය DocType: Workflow State,Tags,ඇමිණුම් apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,කිසිවක් නැත: කාර්ය ප්රවාහ අවසානය apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} ක්ෂේත්ර සුවිශේෂී නොවන පවතින වටිනාකම් පවතින ලෙස, {1} තුළ අද්විතීය ලෙස සැකසීම කළ නොහැකි" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ලේඛන වර්ග +DocType: Global Search Settings,Document Types,ලේඛන වර්ග DocType: Address,Jammu and Kashmir,ජම්මු හා කාශ්මීර් DocType: Workflow,Workflow State Field,කාර්ය ප්රවාහ රාජ්ය ක්ෂේත්ර -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,සැකසුම> පරිශීලකයා DocType: Language,Guest,අමුත්තන්ගේ DocType: DocType,Title Field,මාතෘකාව ක්ෂේත්ර DocType: Error Log,Error Log,දෝෂ ලොග් @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" පමණක් තරමක් "ඒබීසී" වඩා අනුමාන කිරීමට අපහසු වැනි දරුවා DocType: Notification,Channel,නාලිකාව apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","ඔබ මෙම අනවසර හිතන්නේ නම්, පරිපාලක මුරපදය වෙනස් කරන්න." +DocType: Data Import Beta,Data Import Beta,දත්ත ආයාත බීටා apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} අනිවාර්ය වේ DocType: Assignment Rule,Assignment Rules,පැවරුම් රීති DocType: Workflow State,eject,කැරෙන @@ -161,6 +165,7 @@ DocType: Workflow Action Master,Workflow Action Name,කාර්ය ප්ර apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ඒකාබද්ධ කළ නොහැකි DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,නොව zip ගොනුව +DocType: Global Search DocType,Global Search DocType,ගෝලීය සෙවුම් ඩොක්ටයිප් DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                          New {{ doc.doctype }} #{{ doc.name }}
                                                                                          ","ගතික විෂය එකතු කිරීම සඳහා, ජින්ජාඩ් ටැග් භාවිතා කරන්න
                                                                                           New {{ doc.doctype }} #{{ doc.name }} 
                                                                                          " @@ -182,6 +187,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc සිද්ධිය apps/frappe/frappe/public/js/frappe/utils/user.js,You,ඔබට DocType: Braintree Settings,Braintree Settings,බ්රයිට්ටි සැකසීම් +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} වාර්තා සාර්ථකව නිර්මාණය කරන ලදි. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ෆිල්ටරය සුරකින්න DocType: Print Format,Helvetica,ට්චබඥ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} මකා දැමිය නොහැක @@ -208,6 +214,7 @@ DocType: SMS Settings,Enter url parameter for message,පණිවිඩය ස apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,මෙම ලේඛනය සඳහා ස්වයංක්‍රීය පුනරාවර්තනය නිර්මාණය කර ඇත apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,ඔබගේ බ්රවුසරයේ වාර්තාව බලන්න apps/frappe/frappe/config/desk.py,Event and other calendars.,සිද්ධියක් හා අනෙකුත් දින දර්ශන. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 පේළිය අනිවාර්යයි) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,සියළු ක්ෂේත්ර එම ප්රකාශය ඉදිරිපත් කිරීමට අවශ්ය වේ. DocType: Custom Script,Adds a client custom script to a DocType,DocType වෙත ග්‍රාහක අභිරුචි ස්ක්‍රිප්ට් එක් කරයි DocType: Print Settings,Printer Name,මුද්රණ නාමය @@ -249,7 +256,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ජ DocType: Bulk Update,Bulk Update,තොග යාවත්කාලීන DocType: Workflow State,chevron-up,Chevron-අප් DocType: DocType,Allow Guest to View,අමුත්තා බලන්න ඉඩ දෙන්න -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,ස්ථිර {0} භාණ්ඩ මකන්නද? apps/frappe/frappe/utils/oauth.py,Not Allowed,අවසර නැත @@ -265,6 +271,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,ප්රදර්ශනය DocType: Email Group,Total Subscribers,මුළු පැකේජය apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},ඉහළට {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,පේළි අංකය apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","භූමිකාවක් 0 පෙළ ප්රවේශ නොමැති නම්, එවිට ඉහල මට්ටමක අර්ථ වේ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,සුරකින්න ලෙස DocType: Comment,Seen,දැක @@ -305,6 +312,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,උදාහරණයක්: DocType: Workflow,Defines workflow states and rules for a document.,ලියවිල්ලක් සඳහා කාර්ය ප්රවාහ රාජ්යයන් හා නීති සහ කොන්දේසි සකසයි. DocType: Workflow State,Filter,පෙරහන @@ -327,6 +335,7 @@ DocType: Activity Log,Closed,වසා DocType: Blog Settings,Blog Title,බ්ලොග් හිමිකම් apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,සම්මත චරිත අක්රිය කල නොහැකි apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,චැට් වර්ගය +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,සිතියම් තීරු DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,පුවත් ලිපියක් apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,විසින් නම් උප විමසුම භාවිතා කළ නොහැකි @@ -394,6 +403,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,පර DocType: System Settings,Currency Precision,ව්යවහාර මුදල් නිරවද්යතාව DocType: System Settings,Currency Precision,ව්යවහාර මුදල් නිරවද්යතාව apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,තවත් ගනුදෙනුව මෙම එක් අවහිර කර ඇත. තත්පර කිහිපයකින් පසුව නැවත උත්සාහ කරන්න. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,පෙරහන් ඉවත් කරන්න DocType: Test Runner,App,යෙදුම apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,ඇමුණුම් නව ලේඛනයට නිවැරදිව සම්බන්ධ විය නොහැක DocType: Chat Message Attachment,Attachment,ඇමුණුම් @@ -434,7 +444,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html,"Your query has been receive apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ස්වයංක්‍රීය සම්බන්ධතා සක්‍රිය කළ හැක්කේ ඉන්කමින් සක්‍රීය කර ඇත්නම් පමණි. DocType: LDAP Settings,LDAP Middle Name Field,LDAP මැද නම ක්ෂේත්‍රය DocType: GCalendar Account,Allow GCalendar Access,GCalendar ප්රවේශය සඳහා ඉඩ දෙන්න -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} අනිවාර්ය ක්ෂේත්රයකි +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} අනිවාර්ය ක්ෂේත්රයකි apps/frappe/frappe/templates/includes/login/login.js,Login token required,අවශ්ය ටෝකනය අවශ්යයි apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,මාසික ශ්‍රේණිය: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,බහු ලැයිස්තු අයිතම තෝරන්න @@ -464,6 +474,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},සම්බන්ධ apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,ම විසින් වචනය අනුමාන කිරීමට පහසු වේ. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},ස්වයංක්‍රීය පැවරුම අසාර්ථක විය: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,සෙවීම... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,කරුණාකර සමාගම තෝරා apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,ඉහල යනවාත් සමූහ-කිරීමට සමූහ හෝ අමු තේ දළු node එකක් මතම ඊට අදාල-කිරීමට අමු තේ දළු node එකක් මතම ඊට අදාල අතර පමණි apps/frappe/frappe/utils/file_manager.py,Added {0},එකතු {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,ගැලපෙන වාර්තා. අලුත් දෙයක් සොයන්න @@ -476,7 +487,6 @@ DocType: Google Settings,OAuth Client ID,OAuth සේවාලාභී හැ DocType: Auto Repeat,Subject,විෂය apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ඩෙස්ක්ටොප් වෙත ආපසු DocType: Web Form,Amount Based On Field,ක්ෂේත්ර මත පදනම් මුදල -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර පෙරනිමි ඊමේල් ගිණුම සැකසුම> විද්‍යුත් තැපෑල> විද්‍යුත් තැපැල් ගිණුමෙන් සකසන්න apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,පරිශීලක මෙම දැන්වීම සඳහා අනිවාර්ය වේ DocType: DocField,Hidden,සඟවා DocType: Web Form,Allow Incomplete Forms,අසම්පූර්ණ ආකෘති පත්ර ඉඩ දෙන්න @@ -513,6 +523,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} සහ {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,සංවාදය ආරම්භ කරන්න. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",සෑම විටම මුද්රණය කෙටුම්පත ලේඛන සඳහා ගමන් "කෙටුම්පත්" එකතු apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},දැනුම්දීමේ දෝෂය: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} වසර (න්) පෙර DocType: Data Migration Run,Current Mapping Start,වර්තමාන සිතියම් ආරම්භ කිරීම apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ඊ-තැපැල් ස්පෑම් ලෙස සලකුණු කර ඇත DocType: Comment,Website Manager,වෙබ් අඩවිය කළමනාකරු @@ -550,6 +561,7 @@ DocType: Workflow State,barcode,පච්චයක් apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,උප-විමසුම හෝ ක්රියාකාරිත්වය භාවිතය සීමා කරනු ලැබේ apps/frappe/frappe/config/customization.py,Add your own translations,ඔබේ ම පරිවර්තනය එකතු කරන්න DocType: Country,Country Name,රටේ නම +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,හිස් අච්චුව DocType: About Us Team Member,About Us Team Member,අප ගැන කණ්ඩායම් සාමාජික apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","අවසර, කියවන්න වැනි හිමිකම් සැකසීමෙන් භූමිකාවන් හා ලේඛන වර්ග (DocTypes හැඳින්වේ) මත සකසා ඇත ලියන්න, නිර්මාණය කිරීම, මකා දමන්න, යොමු, අවලංගු කරන්න, සංශෝධනය කරමි, වාර්තාව, ආනයන, අපනයන, මුද්රණය, විද්යුත් හා Set පරිශීලක අවසර." DocType: Event,Wednesday,බදාදා @@ -560,6 +572,7 @@ DocType: Website Settings,Website Theme Image Link,වෙබ් අඩවිය DocType: Web Form,Sidebar Items,වැඩේටත් අයිතම DocType: Web Form,Show as Grid,ග්රිඩ් ලෙස පෙන්වන්න apps/frappe/frappe/installer.py,App {0} already installed,යෙදුම {0} දැනටමත් ස්ථාපනය කර +DocType: Energy Point Rule,Users assigned to the reference document will get points.,යොමු ලේඛනයට අනුයුක්ත කර ඇති පරිශීලකයින්ට ලකුණු ලැබෙනු ඇත. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,පෙරදසුනක් නැත DocType: Workflow State,exclamation-sign,විශ්මයාර්ථ-ලකුණක් apps/frappe/frappe/public/js/frappe/form/controls/link.js,empty,හිස් @@ -594,6 +607,7 @@ DocType: Notification,Days Before,පෙර දින apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,දෛනික සිදුවීම් එකම දිනයකින් අවසන් කළ යුතුය. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,සංස්කරණය කරන්න... DocType: Workflow State,volume-down,පරිමාව පහළ +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,මෙම IP ලිපිනයෙන් ප්‍රවේශ වීමට අවසර නැත apps/frappe/frappe/desk/reportview.py,No Tags,කිසිදු ඇමිණුම් DocType: Email Account,Send Notification to,කිරීමට නිවේදනය යවන්න DocType: DocField,Collapsible,කොටසේ @@ -650,6 +664,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,සංවර්ධක apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,නිර්මාණය 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,පෙරනිමි මුද්‍රණ භාෂාව apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,මුතුන් මිත්තන් apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,මූල {0} ඉවත් කල නොහැක @@ -691,6 +706,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,සත්කාරක රට +DocType: Data Import Beta,Import File,ගොනුව ආයාත කරන්න apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,තීරුව {0} දැනටමත් පවතී. DocType: ToDo,High,අධි apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,අලුත් සිදුවීමක් @@ -719,8 +735,6 @@ DocType: User,Send Notifications for Email threads,ඊමේල් නූල් apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,මහාචාර්ය apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,නෑ සංවර්ධක ප්රකාරය apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ගොනු බැකප් සූදානම් -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",ගුණක අගය සමඟ ලකුණු ගුණ කිරීමෙන් පසු උපරිම ලකුණු ලබා ගත හැක (සටහන: සීමාවක් සඳහා 0 ක් ලෙස නියම කර නැත) DocType: DocField,In Global Search,ගෝලීය සොයන්න දී DocType: System Settings,Brute Force Security,බලවත් හමුදා ආරක්ෂාව DocType: Workflow State,indent-left,ඉන්ඩෙන්ට් වාම @@ -763,6 +777,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',පරිශීලක '{0}' දැනටමත් භූමිකාව '{1}' ඇත DocType: System Settings,Two Factor Authentication method,සාධක සහතික කිරීමේ ක්රම දෙකක් apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"පළමුවෙන්ම නම තබන්න, වාර්තාව තබා ගන්න." +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 වාර්තා apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} සමඟ බෙදාහදා apps/frappe/frappe/email/queue.py,Unsubscribe,"වනවාද," DocType: View Log,Reference Name,විමර්ශන නම @@ -812,6 +827,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,ඊ-මේල් තත්වය බලන්න DocType: Note,Notify Users On Every Login,සෑම ලොගින් වන්න පරිශීලකයන් වෙත දැනුම් දෙන්න DocType: Note,Notify Users On Every Login,සෑම ලොගින් වන්න පරිශීලකයන් වෙත දැනුම් දෙන්න +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} වාර්තා සාර්ථකව යාවත්කාලීන කරන ලදි. DocType: PayPal Settings,API Password,API මුරපදය apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Python මොඩියුලය හෝ සම්බන්ධක වර්ගය තෝරන්න apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname රේගු ක්ෂේත්ර සඳහා පිහිටුවා නැත @@ -840,9 +856,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,අගය වෙනස් apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},නම අනුපිටපත් {0} {1} -DocType: Email Queue,Retry,නැවත උත්සාහ කරන්න +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,නැවත උත්සාහ කරන්න +DocType: Contact Phone,Number,අංකය DocType: Web Form Field,Web Form Field,වෙබ් ආකෘති පත්රය ක්ෂේත්ර apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,ඔබට නව පණිවිඩයක් තිබේ: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,සංස්කරණය කරන්න HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,කරුණාකර යළි-යොමුවීම් URL ඇතුලත් කරන්න apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Restore Original Permissions,මුල් අවසර පිළිනැගුම @@ -866,7 +884,7 @@ DocType: Notification,View Properties (via Customize Form),දැක්ම Prope apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ගොනුවක් තේරීමට එය මත ක්ලික් කරන්න. DocType: Note Seen By,Note Seen By,සටහන මගින් දැක apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,වැඩි මාරුවෙන් මාරුවට සමඟ තවදුරටත් යතුරු පුවරුව රටාව භාවිතා කිරීමට උත්සාහ -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,ප්රමුඛ +,LeaderBoard,ප්රමුඛ DocType: DocType,Default Sort Order,පෙරනිමි වර්ග කිරීමේ ඇණවුම DocType: Address,Rajasthan,රාජස්ථාන් DocType: Email Template,Email Reply Help,ඊ-මේල් පිළිතුරු උදව් @@ -901,6 +919,7 @@ apps/frappe/frappe/utils/data.py,Cent,සියයට apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,රචනා විද්යුත් apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","කාර්ය ප්රවාහ සඳහා ජනපදයේ (උදා: කෙටුම්පත්, අනුමත, අහෝසි)." DocType: Print Settings,Allow Print for Draft,කෙටුම්පත් සඳහා මුද්රණය ඉඩ දෙන්න +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/link_selector.js,Set Quantity,සකසන්න ප්රමාණ apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,තහවුරු කර ගැනීමට මෙම ලේඛනය ඉදිරිපත් කළ DocType: Contact,Unsubscribed,කෙරෙනු @@ -931,6 +950,7 @@ DocType: LDAP Settings,Organizational Unit for Users,පරිශීලකයි ,Transaction Log Report,ගනුදෙනු වාර්තා සටහන DocType: Custom DocPerm,Custom DocPerm,අභිරුචි DocPerm DocType: Newsletter,Send Unsubscribe Link,"වනවාද, Link යවන්න" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,ඔබගේ ගොනුව ආයාත කිරීමට පෙර සම්බන්ධ කළ යුතු වාර්තා කිහිපයක් තිබේ. පහත සඳහන් වාර්තා ස්වයංක්‍රීයව නිර්මාණය කිරීමට ඔබට අවශ්‍යද? DocType: Access Log,Method,ක්රමය DocType: Report,Script Report,කේත රචනය වාර්තාව DocType: OAuth Authorization Code,Scopes,විෂය පථ @@ -972,6 +992,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,උඩුගත කරන ලදි apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,ඔබ අන්තර්ජාලය සමඟ සම්බන්ධ වී ඇත. DocType: Social Login Key,Enable Social Login,සමාජ ලොගිනය සක්රීය කරන්න +DocType: Data Import Beta,Warnings,අනතුරු ඇඟවීම් DocType: Communication,Event,උත්සවය apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} මත, {1} මෙසේ ලිවීය:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,සම්මත ක්ෂේත්රය මකා නොහැක. ඔබට අවශ්ය නම් ඔබට එය සැඟවීමට හැකි @@ -1027,6 +1048,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,පහත DocType: Kanban Board Column,Blue,නිල් apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,සියලු අභිමතකරණ ඉවත් වනු ඇත. කරුණාකර තහවුරු කරන්න. DocType: Page,Page HTML,පිටුව HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,දෝෂ සහිත පේළි අපනයනය කරන්න apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,කණ්ඩායම් නාම හිස් විය නොහැක. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,තවදුරටත් මංසල පමණි 'සමූහය වර්ගය මංසල යටතේ නිර්මාණය කිරීම ද කළ හැක DocType: SMS Parameter,Header,ශීර්ෂකය @@ -1072,7 +1094,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,පිටතට යන apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,එකක් තෝරන්න DocType: Data Export,Filter List,පෙරහන් ලැයිස්තුව DocType: Data Export,Excel,එක්සෙල් -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,ඔබගේ මුර පදය යාවත්කාලීන කර ඇත. මෙන්න ඔබගේ නව රහස් පදය DocType: Email Account,Auto Reply Message,වාහන ඊ-මේල් මගින් පිලිතුරු දෙන්න පණිවුඩය DocType: Data Migration Mapping,Condition,තත්වය apps/frappe/frappe/utils/data.py,{0} hours ago,පැය {0} කට පෙර @@ -1081,7 +1102,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,පරිශීලක ID DocType: Communication,Sent,එවා DocType: Address,Kerala,කේරල -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,පරිපාලනය DocType: User,Simultaneous Sessions,සමගාමී සැසිවාරය DocType: Social Login Key,Client Credentials,සේවාලාභියා අක්තපත්ර @@ -1113,7 +1133,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},යා apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ස්වාමියා DocType: DocType,User Cannot Create,පරිශීලක නිර්මාණය කළ නොහැක apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,සාර්ථකව සිදු විය -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,ෆෝල්ඩරය {0} නොපවතියි apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,නාමාවලි එකක් ප්රවේශ අනුමත කරයි! DocType: Customize Form,Enter Form Type,වර්ගය ආකෘතිය ඇතුලත් කරන්න DocType: Google Drive,Authorize Google Drive Access,ගූගල් ඩ්‍රයිව් ප්‍රවේශයට අවසර දෙන්න @@ -1121,7 +1140,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,කිසිදු වාර්තා tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ක්ෂේත්ර ඉවත් කරන්න apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,ඔබ අන්තර්ජාලයට සම්බන්ධ නොවේ. ටිකකට පසු නැවත උත්සාහ කරන්න. -DocType: User,Send Password Update Notification,මුරපදය යාවත්කාලීන නිවේදනය යවන්න apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType ඉඩ. පරෙස්සම් වෙන්න!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","මුද්රණ, විද්යුත් පාරිභෝගිකයාට ආකෘති" apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,නව වෙළුමට යාවත් @@ -1203,6 +1221,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,වැරදි ස apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,ගූගල් සම්බන්ධතා ඒකාබද්ධ කිරීම අක්‍රීය කර ඇත. DocType: Assignment Rule,Description,විස්තර DocType: Print Settings,Repeat Header and Footer in PDF,PDF දී ශීර්ෂකය සහ පාදකය නැවත නැවත +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,අසමත් වීම DocType: Address Template,Is Default,පෙරනිමි වේ DocType: Data Migration Connector,Connector Type,සම්බන්ධක වර්ගය apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,තීරුව නම හිස් විය නොහැක @@ -1266,6 +1285,7 @@ DocType: Print Settings,Enable Raw Printing,අමු මුද්‍රණය DocType: Website Route Redirect,Source,මූලාශ්රය apps/frappe/frappe/templates/includes/list/filters.html,clear,පැහැදිලිව apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,අවසන් +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,සැකසුම> පරිශීලකයා DocType: Prepared Report,Filter Values,පෙරහන් අගයන් DocType: Communication,User Tags,පරිශීලක ඇමිණුම් DocType: Data Migration Run,Fail,අසමත් විය @@ -1322,6 +1342,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,අ ,Activity,ක්රියාකාරකම් DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","උදවු: තවත් වාර්තාවක් පද්ධතිය තුළ, භාවිතා කරන්න "# ආකෘතිය / සටහන / [සටහන නම]" යන සබැඳි ලිපිනය ලෙස සබැඳෙයි කිරීම. ( "Http: //" පාවිච්චි කරන්න එපා)" DocType: User Permission,Allow,ඉඩ දෙන්න +DocType: Data Import Beta,Update Existing Records,පවතින වාර්තා යාවත්කාලීන කරන්න apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,යලි යලිත් වචන සහ අක්ෂර වළක්වා ගනිමු DocType: Energy Point Rule,Energy Point Rule,ශක්ති ලක්ෂ්‍ය රීතිය DocType: Communication,Delayed,ප්රමාද @@ -1334,9 +1355,7 @@ DocType: Milestone,Track Field,ධාවන පථය DocType: Notification,Set Property After Alert,ඉඩකඩම් සකසන්න ඇලර්ට් පසු apps/frappe/frappe/config/customization.py,Add fields to forms.,ආකෘති වෙත ක්ෂේත්ර එකතු කරන්න. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,යමක් මෙම අඩවියේ පේපෑල් වින්යාස වැරැද්ද වගේ. -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/sidebar/review.js,Add Review,සමාලෝචනය එක් කරන්න -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),අකුරු ප්‍රමාණය (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,අභිරුචිකරණ පෝරමයෙන් අභිරුචිකරණය කිරීමට අවසර දී ඇත්තේ සම්මත ඩොක්ටයිප් පමණි. DocType: Email Account,Sendgrid,Sendgrid @@ -1372,6 +1391,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ප apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,සමාවන්න! ඔබ ස්වයංක්රීය-ජනනය අදහස් මකා දැමිය නොහැකි DocType: Google Settings,Used For Google Maps Integration.,ගූගල් සිතියම් ඒකාබද්ධ කිරීම සඳහා භාවිතා වේ. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,විමර්ශන DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,කිසිදු වාර්තාවක් අපනයනය නොකරනු ඇත DocType: User,System User,ධ DocType: Report,Is Standard,සම්මත වේ DocType: Desktop Icon,_report,_වාර්තාව @@ -1386,6 +1406,7 @@ DocType: Workflow State,minus-sign,ඍණ-ලකුණක් apps/frappe/frappe/public/js/frappe/request.js,Not Found,සොයා ගත නොහැක apps/frappe/frappe/www/printview.py,No {0} permission,කිසිදු {0} අවසරය apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,අපනයන රේගු අවසර +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,අයිතම හමු නොවිනි. DocType: Data Export,Fields Multicheck,ෆීල්ස් බහුචෙක් DocType: Activity Log,Login,ඇතුල් වන්න DocType: Web Form,Payments,ගෙවීම @@ -1446,7 +1467,7 @@ DocType: Email Account,Default Incoming,පෙරනිමි දියවී DocType: Workflow State,repeat,නැවත DocType: Website Settings,Banner,බැනරය DocType: Role,"If disabled, this role will be removed from all users.","ආබාධිත නම්, මෙම භූමිකාව සියළු පරිශීලකයන් ඉවත් කරනු ඇත." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} ලැයිස්තුවට යන්න +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,සොයන්න උදවු DocType: Milestone,Milestone Tracker,සන්ධිස්ථාන ට්රැකර් apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,ලියාපදිංචි නමුත් ආබාධිත @@ -1460,6 +1481,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,දේශීය ක්ෂ DocType: DocType,Track Changes,මාර්ගය වෙනස් DocType: Workflow State,Check,පරීක්ෂා කරන්න DocType: Chat Profile,Offline,නොබැඳි +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},සාර්ථකව ආනයනය කළ {0} DocType: User,API Key,API යතුර DocType: Email Account,Send unsubscribe message in email,"විද්යුත් තැපැල් වනවාද, ට පණිවුඞයක් යවන්න" apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,සංස්කරණය කරන්න හිමිකම් @@ -1489,7 +1511,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ 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,සම්පූර්ණ පිටු -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                          No results found for '

                                                                                          ,

                                                                                          සඳහා ප්‍රති results ල හමු නොවීය.

                                                                                          DocType: DocField,Attach Image,රූප අමුණන්න DocType: Workflow State,list-alt,ලැයිස්තුව-alt apps/frappe/frappe/www/update-password.html,Password Updated,මුරපදය යාවත්කාලීන කිරීම @@ -1510,8 +1531,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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,චැට් +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,සැකසුම> පරිශීලක අවසර DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP කණ්ඩායම් සිතියම්කරණය DocType: Dashboard Chart,Chart Options,ප්‍රස්ථාර විකල්ප +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,නම් නොකළ තීරුව apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} {1} සිට {2} වෙත පේළිය # තුළ {3} DocType: Communication,Expired,කල් ඉකුත් apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,ඔබ පාවිච්චි කරන ටෝකනයක් පෙනෙන්නේ වැරදියි! @@ -1521,6 +1544,7 @@ DocType: DocType,System,පද්ධතිය DocType: Web Form,Max Attachment Size (in MB),මැක්ස් ඇමුණුම් ප්රමාණය (MB දී) apps/frappe/frappe/www/login.html,Have an account? Login,ගිණුමක් තිබේද? ඇතුල් වන්න DocType: Workflow State,arrow-down,ඊතල පහළ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},පේළිය {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},{1}: පරිශීලක {0} මැකීමට අවසර නැත apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,අවසන් වරට යාවත්කාලීන කලේ @@ -1538,6 +1562,7 @@ DocType: Custom Role,Custom Role,අභිරුචි කාර්යභාර apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,මුල් පිටුව / ටෙස්ට් ෆෝල්ඩරය 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ඔබගේ මුර පදය ඇතුලත් කරන්න DocType: Dropbox Settings,Dropbox Access Secret,නාමාවලි එකක් ප්රවේශ රහස් +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(අනිවාර්ය) 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.,ගොනුව තුල දත්ත නොමැත. කරුණාකර නව ගොනුවක් දත්ත සමඟ ප්රතිස්ථාපනය කරන්න. @@ -1607,6 +1632,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,උපක apps/frappe/frappe/desk/form/assign_to.py,New Message,නව පණිවිඩය DocType: File,Preview HTML,පෙරදසුන HTML DocType: Desktop Icon,query-report,විමසුම-වාර්තාව +DocType: Data Import Beta,Template Warnings,ආකෘති අනතුරු ඇඟවීම් apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,පෙරහන් ගැලවීම DocType: DocField,Percent,සියයට apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,පෙරහන් ඇතුළත් කරන්න @@ -1628,6 +1654,7 @@ DocType: Custom Field,Custom,රේගු DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","සක්රිය නම්, සීමාසහිත IP ලිපින වලින් පිවිසෙන පරිශීලකයින් සඳහා, ෆයිටරර් ෆෝට් දෙකක් සඳහා විමසනු නොලැබේ" DocType: Auto Repeat,Get Contacts,සබඳතා ලබා ගන්න apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} යටතේ නඩු තැපැල් +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,නම් නොකළ තීරුව මඟ හැරීම DocType: Notification,Send alert if date matches this field's value,දිනය මෙම ක්ෂේත්රය වටිනාකම තරග නම් සීරුවෙන් යවන්න DocType: Workflow,Transitions,සංක්රමණය apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} {2} වෙත @@ -1651,6 +1678,7 @@ DocType: Workflow State,step-backward,පියවර පසුගාමී apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,ඔබේ වෙබ් අඩවිය config දී හෝ නාමාවලි ප්රවේශ යතුර තබා කරුණාකර apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,මෙම ඊ-තැපැල් ලිපිනය වෙත යැවීමට මෙම වාර්තාව මකන්න +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","සම්මත නොවන වරාය නම් (උදා: POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,කෙටිමං අභිරුචිකරණය කරන්න apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"නව වාර්තා අනිවාර්ය ක්ෂේත්ර පමණක් අවශ්ය වේ. ඔබ කැමති නම්, ඔබ-අනිවාර්ය නොවන තීරු මකා දැමිය හැකිය." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,තවත් ක්‍රියාකාරකම් පෙන්වන්න @@ -1755,6 +1783,7 @@ 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 ඇප් DocType: Google Drive,Send Email for Successful Backup,සාර්ථක Backup සඳහා ඊ-තැපෑල යවන්න +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,උපලේඛකයා අක්‍රීයයි. දත්ත ආයාත කළ නොහැක. DocType: Print Settings,Letter,ලිපිය DocType: DocType,"Naming Options:
                                                                                          1. field:[fieldname] - By Field
                                                                                          2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                          3. Prompt - Prompt user for a name
                                                                                          4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                          5. @@ -1768,6 +1797,7 @@ DocType: GCalendar Account,Next Sync Token,ඊළඟ සින්ක් ටෙ DocType: Energy Point Settings,Energy Point Settings,ශක්ති ලක්ෂ්‍ය සැකසුම් DocType: Async Task,Succeeded,අනුප්රාප්තිකයා apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} අවශ්ය අනිවාර්ය ක්ෂේත්ර +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                            No results found for '

                                                                                            ,

                                                                                            සඳහා ප්‍රති results ල හමු නොවීය.

                                                                                            apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} සඳහා නැවත සකසන්න අවසර? apps/frappe/frappe/config/desktop.py,Users and Permissions,පරිශීලකයන් හා අවසර DocType: S3 Backup Settings,S3 Backup Settings,S3 බැකප් සැකසුම් @@ -1838,6 +1868,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,තුළ DocType: Notification,Value Change,අගය වෙනස් DocType: Google Contacts,Authorize Google Contacts Access,ගූගල් සම්බන්ධතා ප්‍රවේශයට අවසර දෙන්න apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,වාර්තාවෙන් සංඛ්යාත්මක ක්ෂේත්ර පමණක් පෙන්වයි +DocType: Data Import Beta,Import Type,ආනයන වර්ගය DocType: Access Log,HTML Page,HTML පිටුව DocType: Address,Subsidiary,අනුබද්ධිත සමාගමක් apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ තැටි සමඟ සම්බන්ධ වීමට උත්සාහ කිරීම ... @@ -1848,7 +1879,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,වලං DocType: Custom DocPerm,Write,ලියන්න apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,පරිපාලක පමණක් විමසුම් / කේත රචනය වාර්තා නිර්මාණය කිරීමට අවසර apps/frappe/frappe/public/js/frappe/form/save.js,Updating,යාවත්කාලීන කිරීම -DocType: File,Preview,පෙරදසුන +DocType: Data Import Beta,Preview,පෙරදසුන apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ක්ෂේත්ර "අගය" අනිවාර්ය වේ. යාවත්කාලීන කළ යුතු අගය නියම කරන්න DocType: Customize Form,Use this fieldname to generate title,මාතෘකාව නිර්මාණය කිරීමට මෙම fieldname භාවිතා කරන්න apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,සිට ආනයනය විද්යුත් @@ -1959,7 +1990,6 @@ DocType: GCalendar Account,Session Token,සැසිවාරය DocType: Currency,Symbol,සංකේතය apps/frappe/frappe/model/base_document.py,Row #{0}:,ෙරෝ # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,දත්ත මකාදැමීම තහවුරු කරන්න -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,නව මුරපදය ඊ-තැපැල් apps/frappe/frappe/auth.py,Login not allowed at this time,ලොගින් වන්න මෙම කාලයේ දී අවසර නැත DocType: Data Migration Run,Current Mapping Action,වත්මන් සිතියම් ක්රියාවලිය DocType: Dashboard Chart Source,Source Name,මූලාශ්රය නම @@ -1972,6 +2002,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ග apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,අනුගත DocType: LDAP Settings,LDAP Email Field,LDAP විද්යුත් ක්ෂේත්ර apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} ලැයිස්තු +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} වාර්තා අපනයනය කරන්න apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,දැනටමත් පරිශීලක එක්කෙනාගේ ලැයිස්තුවේ DocType: User Email,Enable Outgoing,ඇමතුම් සක්රිය කරන්න DocType: Address,Fax,ෆැක්ස් @@ -2031,7 +2062,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,මුද්රිත ලේඛන apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ක්ෂේත්‍රයට පනින්න DocType: Contact Us Settings,Forward To Email Address,ඉදිරි විද්යුත් තැපැල් ලිපිනය කිරීම +DocType: Contact Phone,Is Primary Phone,ප්‍රාථමික දුරකථනය වේ DocType: Auto Email Report,Weekdays,සතියේ දිනවල +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} වාර්තා අපනයනය කෙරේ apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,හිමිකම් ක්ෂේත්රයේ වලංගු fieldname විය යුතුය DocType: Post Comment,Post Comment,අදහස් දක්වන්න apps/frappe/frappe/config/core.py,Documents,ලිපි ලේඛන @@ -2050,7 +2083,9 @@ eval:doc.age>18",myfield eval: doc.myfield == '' මාගේ අග DocType: Social Login Key,Office 365,කාර්යාලය 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,අද apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,අද +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ඔබ මෙම තබා ඇත පසු, එම පරිශීලකයන් පමණක් හැකි ප්රවේශ ලේඛන (උදා. බ්ලොග් පෝස්ට්) සබැඳිය පවතී කොතැන (උදා. Blogger)." +DocType: Data Import Beta,Submit After Import,ආයාත කිරීමෙන් පසු ඉදිරිපත් කරන්න DocType: Error Log,Log of Scheduler Errors,නියමාකාරකය පත්රයක වරදක් ලඝු-සටහන DocType: User,Bio,ජෛව DocType: OAuth Client,App Client Secret,යෙදුම සේවාදායක රහස @@ -2069,10 +2104,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,ලොගින් වන්න පිටුවේ පාරිභෝගික ගොණුව ලින්ක් අක්රිය apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,අයිතිකරුෙග් / අයිතිකරුවන්ෙග් පවරා DocType: Workflow State,arrow-left,ඊතලය වාම +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,අපනයන 1 වාර්තාව DocType: Workflow State,fullscreen,පුන් තිරය DocType: Chat Token,Chat Token,කථාබහ ටෝකනය apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,වගුව සාදන්න apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ආයාත නොකරන්න DocType: Web Page,Center,මධ්යස්ථානය DocType: Notification,Value To Be Set,අගය සකස් කළ යුතු apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},සංස්කරණය කරන්න {0} @@ -2092,6 +2129,7 @@ DocType: Print Format,Show Section Headings,වගන්තිය ශීර් DocType: Bulk Update,Limit,සීමාව apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},මේ හා සම්බන්ධ {0} දත්ත මකාදැමීම සඳහා අපට ඉල්ලීමක් ලැබී ඇත: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,නව කොටසක් එක් කරන්න +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,පෙරහන් කළ වාර්තා apps/frappe/frappe/www/printview.py,No template found at path: {0},සැකිල්ල මඟක් නොමැත සොයා: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,කිසිදු විද්යුත් ගිණුම DocType: Comment,Cancelled,අවලංගු කළා @@ -2177,7 +2215,9 @@ 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} 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,ඔබේ පිවිසුම් අංකය වනු ඇත +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,ගෝලීය සෙවුම් ලේඛන වර්ග යළි පිහිටුවන්න. ,Lead Conversion Time,මූලික පරිවර්ථන කාලය apps/frappe/frappe/desk/page/activity/activity.js,Build Report,වාර්තාව ගොඩනගනු DocType: Note,Notify users with a popup when they log in,ඔවුන් login විට උත්පතන ඇති පරිශීලකයන් වෙත දැනුම් @@ -2197,8 +2237,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,සමීප 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,සැකසුම> පරිශීලක අවසර -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,යාවත්කාලීන +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,යාවත්කාලීන DocType: Transaction Log,Transaction Hash,ගනුදෙනුව හැෂ් DocType: Error Snapshot,Snapshot View,සැණරුව දැක්ම apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,යැවීමට පෙර එම පුවත් කරුනාකර @@ -2225,7 +2264,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,ලක්ෂ්‍ DocType: SMS Settings,SMS Gateway URL,කෙටි පණිවුඩ ගේට්වේ URL එක apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" විය නොහැක. එය "{3}" එකක් විය යුතුය apps/frappe/frappe/utils/data.py,{0} or {1},{0} හෝ {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,මුරපදය යාවත්කාලීන DocType: Workflow State,trash,කුණු කූඩයට DocType: System Settings,Older backups will be automatically deleted,"පැරණි භාවිතා කලද, ස්වයංක්රීයව මකා දමනු ඇත" apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,අවලංගු ප්රවේශ යතුර හෝ රහස් ප්රවේශ යතුර. @@ -2253,6 +2291,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,ප DocType: Address,Preferred Shipping Address,කැමති නැව් ලිපිනය apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,ලිපිය හිස apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} මෙම නිර්මාණය {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,විද්‍යුත් තැපැල් ගිණුම සැකසෙන්නේ නැත. සැකසුම> විද්‍යුත් තැපෑල> විද්‍යුත් තැපැල් ගිණුමෙන් කරුණාකර නව විද්‍යුත් තැපැල් ගිණුමක් සාදන්න DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","මෙය පරික්ෂා කර ඇත්නම්, වලංගු දත්ත සහිත පේළි ආනයනය කරනු ලබන අතර පසුව ආයාත කිරීමට ඔබට නව ගොනුවක් තුළදී වලංගු පේළි අළුත් කරනු ලැබේ." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ලේඛන භූමිකාව පරිශීලකයන් විසින් පමණක් සංස්කරණය වේ @@ -2279,6 +2318,7 @@ DocType: Custom Field,Is Mandatory Field,අනිවාර්ය ක්ෂේ DocType: User,Website User,වෙබ් අඩවිය පරිශීලක apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,පී.ඩී.එෆ් වෙත මුද්‍රණය කිරීමේදී සමහර තීරු කපා දැමිය හැකිය. තීරු ගණන 10 ට අඩු තබා ගැනීමට උත්සාහ කරන්න. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,නැති එක සමානයන් +DocType: Data Import Beta,Don't Send Emails,ඊමේල් යවන්න එපා DocType: Integration Request,Integration Request Service,ඒකාබද්ධතා ඉල්ලීම් සේවා DocType: Access Log,Access Log,ප්‍රවේශ ලොගය DocType: Website Script,Script to attach to all web pages.,සියලු වෙබ් පිටු සඳහා අනුයුක්ත කිරීමට කේත රචනය. @@ -2318,6 +2358,7 @@ DocType: Contact,Passive,උදාසීන DocType: Auto Repeat,Accounts Manager,ගිණුම් කළමනාකරු apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} සඳහා පැවරුම apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,ඔබගේ ගෙවීම් අවලංගු කර ඇත. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර පෙරනිමි ඊමේල් ගිණුම සැකසුම> විද්‍යුත් තැපෑල> විද්‍යුත් තැපැල් ගිණුමෙන් සකසන්න apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,ගොනුව වර්ගය තෝරන්න apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,සියල්ල බලන්න DocType: Help Article,Knowledge Base Editor,දැනුම මූලික කර්තෘ @@ -2349,6 +2390,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,දත්ත apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,ලේඛන තත්ත්වය apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,අනුමැතිය අවශ්‍යයි +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,ඔබගේ ගොනුව ආයාත කිරීමට පෙර පහත වාර්තා සෑදිය යුතුය. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth බලය පවරන සංග්රහයේ apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,ආනයන කිරීමට ඉඩ දෙනු නොලැබේ DocType: Deleted Document,Deleted DocType,මකා දමන ලදී DocType @@ -2401,8 +2443,8 @@ DocType: System Settings,System Settings,පද්ධති සැකසීම DocType: GCalendar Settings,Google API Credentials,Google API අක්තපත්ර apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,සැසිය අරඹන්න අසාර්ථක විය apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},මෙම ඊ-තැපෑල {0} වෙත යවන සහ {1} පිටපත් විය +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},මෙම ලේඛනය ඉදිරිපත් කළේ {0} DocType: Workflow State,th,වන -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} වසර (න්) පෙර DocType: Social Login Key,Provider Name,සැපයුම්කරුගේ නම apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},නව {0} නිර්මාණය DocType: Contact,Google Contacts,ගූගල් සම්බන්ධතා @@ -2410,6 +2452,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar ගිණුම DocType: Email Rule,Is Spam,අයාචිත තැපැල් වේ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},වාර්තාව {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},විවෘත {0} +DocType: Data Import Beta,Import Warnings,ආනයන අනතුරු ඇඟවීම් DocType: OAuth Client,Default Redirect URI,පෙරනිමි යළි-යොමුවීම් URI DocType: Auto Repeat,Recipients,ලබන්නන් DocType: System Settings,Choose authentication method to be used by all users,සියළුම පරිශීලකයින් විසින් භාවිතා කළ යුතු සත්යාපන ක්රම තෝරන්න @@ -2526,6 +2569,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,වාර් apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack වෙබ් කෝලා දෝෂයකි DocType: Email Flag Queue,Unread,නොකියවූ DocType: Bulk Update,Desk,මේසය +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},තීරුව මඟ හැරීම {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),පෙරහන් (අ ලැයිස්තුව තුළ) tuple හෝ ලැයිස්තුවක් විය යුතු apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,ද තේරීම් විමසුම ලියන්න. සටහන ප්රතිඵලයක් paged නැත (සියලු දත්ත එක අතක යවා ඇත) ඇත. DocType: Email Account,Attachment Limit (MB),ඇමුණුම් සීමාව (MB) @@ -2540,6 +2584,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,නව නිර්මාණය DocType: Workflow State,chevron-down,Chevron පහළ apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),විද්යුත් {0} (කෙරෙනු / ආබාධිත) යවා නැත +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,අපනයනය කිරීමට ක්ෂේත්‍ර තෝරන්න DocType: Async Task,Traceback,traceback DocType: Currency,Smallest Currency Fraction Value,ලොව කුඩාම ව්යවහාර මුදල් භාගය අගය apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,වාර්තාව සකස් කිරීම @@ -2548,6 +2593,7 @@ DocType: Workflow State,th-list,වන-ලැයිස්තුව DocType: Web Page,Enable Comments,අදහස් සබල කරන්න apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,සටහන් DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),මෙම අන්තර්ජාල ලිපිනය පමණක් පරිශීලක සීමා කරන්න. බහු IP ලිපිනයන් කොමා වෙන් කරන්න එකතු කළ හැක. ද (111.111.111) වැනි අර්ධ IP ලිපිනයන් පිළිගන්නා +DocType: Data Import Beta,Import Preview,ආනයන පෙරදසුන DocType: Communication,From,සිට apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,පළමු පිරිසක් node එකක් මතම ඊට අදාල තෝරන්න. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} {1} සොයා @@ -2644,6 +2690,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,අතර DocType: Social Login Key,fairlogin,සාධාරණයි DocType: Async Task,Queued,පේළි +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,සැකසුම> පෝරමය අභිරුචිකරණය කරන්න DocType: Braintree Settings,Use Sandbox,වැලිපිල්ල භාවිතා apps/frappe/frappe/utils/goal.py,This month,මේ මාසයේ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,නව රේගු මුද්රණය ආකෘතිය @@ -2687,6 +2734,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,කර්තෘ apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,යැවීම ආරම්භ apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,යළි විවෘත +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,අනතුරු ඇඟවීම් පෙන්වන්න apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,පරිශීලක මිලදී ගැනීම DocType: Data Migration Run,Push Failed,Push අසාර්ථකයි @@ -2724,6 +2772,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,ගැ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,ඔබට පුවත් ලිපි බැලීමට අවසර නොමැත. DocType: User,Interests,උනන්දුව දක්වන ක්ෂෙත්ර: apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,මුරපද යළි උපදෙස් ඔබගේ ඊ-තැපැල් ලිපිනය වෙත යොමු කර ඇති +DocType: Energy Point Rule,Allot Points To Assigned Users,පවරා ඇති පරිශීලකයින්ට ලකුණු ලබා දෙන්න apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","0 මට්ටමේ ක්ෂේත්ර මට්ටමේ අවසර සඳහා ඉහළ මට්ටම් \, ලේඛනය මට්ටමේ අවසර සඳහා වේ." DocType: Contact Email,Is Primary,ප්‍රාථමිකයි @@ -2747,6 +2796,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Publishable කී DocType: Stripe Settings,Publishable Key,Publishable කී apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,ආයාත කරන්න +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,අපනයන වර්ගය DocType: Workflow State,circle-arrow-left,රවුම-ඊතලය වාම DocType: System Settings,Force User to Reset Password,මුරපදය නැවත සැකසීමට පරිශීලකයා බල කරන්න apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,ක්රියාත්මක නොවේ Redis පූර්වාපේක්ෂි සේවාදායකය. පරිපාලක / Tech කරුණාකර සහාය සම්බන්ධ කරගන්න @@ -2761,10 +2811,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,නම ප්රො apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ඊ-තැපැල් එන ලිපි DocType: Auto Email Report,Filters Display,පෙරහන් පෙන්වන්න apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",සංශෝධනයක් සිදු කිරීම සඳහා "සංශෝධිත_ප්‍රොම්" ක්ෂේත්‍රය තිබිය යුතුය. +DocType: Contact,Numbers,අංක apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,පෙරහන් සුරකින්න DocType: Address,Plant,ශාක apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,සියලුම ඊ-මේල් මගින් පිලිතුරු දෙන්න DocType: DocType,Setup,පිහිටුවීම +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,සියලුම වාර්තා DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ගූගල් සම්බන්ධතා සමමුහුර්ත කළ යුතු ඊමේල් ලිපිනය. DocType: Email Account,Initial Sync Count,මූලික සමමුහුර්ත කරන්න උසාවි DocType: Workflow State,glass,වීදුරු @@ -2789,7 +2841,7 @@ DocType: Workflow State,font,අකුරු DocType: DocType,Show Preview Popup,පෙරදසුන උත්පතන පෙන්වන්න apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,මෙම ඉහළ-100 පොදු මුරපදයකි. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,pop-ups සක්රීය කරන්න -DocType: User,Mobile No,ජංගම නොමැත +DocType: Contact,Mobile No,ජංගම නොමැත DocType: Communication,Text Content,පෙළ අන්තර්ගත DocType: Customize Form Field,Is Custom Field,රේගු ක්ෂේත්ර වේ DocType: Workflow,"If checked, all other workflows become inactive.","පරීක්ෂා නම්, අන් සියලුම workflows අක්රීය බවට පත් වේ." @@ -2835,6 +2887,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ආ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,නව මුද්රණය ආකෘතිය නම apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Sidebar ටොගලනය කරන්න DocType: Data Migration Run,Pull Insert,අදින්න ඇතුල් කරන්න +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",ගුණක අගය සමඟ ලකුණු ගුණ කිරීමෙන් පසු උපරිම ලකුණු ලබා ගත හැක (සටහන: සීමාවක් නොමැතිව මෙම ක්ෂේත්‍රය හිස්ව තබන්න හෝ 0 සකසන්න) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,අවලංගු ආකෘතිය apps/frappe/frappe/model/db_query.py,Illegal SQL Query,නීති විරෝධී SQL විමසුම apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,අනිවාර්ය: DocType: Chat Message,Mentions,කතාව @@ -2875,9 +2930,11 @@ DocType: Braintree Settings,Public Key,පොදු යතුර DocType: GSuite Settings,GSuite Settings,GSuite සැකසුම් DocType: Address,Links,සබැඳි DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,මෙම ගිණුම භාවිතා කර යවන සියලුම විද්‍යුත් තැපැල් සඳහා යවන්නාගේ නම ලෙස මෙම ගිණුමේ සඳහන් ඊමේල් ලිපින නාමය භාවිතා කරයි. +DocType: Energy Point Rule,Field To Check,පරීක්ෂා කිරීමට ක්ෂේත්‍රය apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,කරුණාකර ලේඛන වර්ගය තෝරන්න. apps/frappe/frappe/model/base_document.py,Value missing for,අගය සඳහා අතුරුදහන් apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,ළමා එකතු කරන්න +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,ආනයන ප්‍රගතිය DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",කොන්දේසිය සෑහීමකට පත්වේ නම් පරිශීලකයාට ලකුණු සමඟ ත්‍යාග ලැබේ. උදා. doc.status == 'වසා ඇත' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ඉදිරිපත් වාර්තා ඉවත් කල නොහැක. @@ -2914,6 +2971,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google දින ද apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,ඔබ සොයන පිටුව අතුරුදහන් කර ඇත. එය චලනය හෝ මෙම සබැඳිය මුද්රණ දෝෂයක් නොමැති නිසා මෙම විය හැක. apps/frappe/frappe/www/404.html,Error Code: {0},දෝෂ කේතය: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","පාඨ, රේඛා කිහිපයක් පමණක්, පිටුව ලැයිස්තුගත වීම පිළිබඳව විස්තරය. (උපරිම අක්ෂර 140)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} අනිවාර්ය ක්ෂේත්‍ර වේ DocType: Workflow,Allow Self Approval,ස්වයං අනුමැතිය සඳහා ඉඩ දෙන්න DocType: Event,Event Category,සිදුවීම් වර්ගය apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,ජෝන් ඩෝ @@ -2963,6 +3021,7 @@ apps/frappe/frappe/database/database.py,Too many writes in one request. Please s apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,ගූගල් ඩ්‍රයිව් වින්‍යාස කර ඇත. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,වෙනස් අගයන් DocType: Workflow State,arrow-up,ඊතලය-අප් +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} වගුව සඳහා අවම වශයෙන් එක් පේළියක් තිබිය යුතුය DocType: OAuth Bearer Token,Expires In,දී කල් ඉකුත් DocType: DocField,Allow on Submit,ඉදිරිපත් මත ඉඩ දෙන්න DocType: DocField,HTML,HTML @@ -3048,6 +3107,7 @@ DocType: Custom Field,Options Help,විකල්ප උදවු 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 වාර්තාවක් අපනයනය කෙරේ 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,වසම් සීමා @@ -3064,6 +3124,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,සංඥා සංග්රහ DocType: Webhook,Webhook Request,වෙබ් ෂෝක ඉල්ලීම apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},"** අසාර්ථක විය: {0} කර ගැනීම සඳහා, {1}: {2}" DocType: Data Migration Mapping,Mapping Type,සිතියම්කරණ වර්ගය +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,අනිවාර්ය තෝරන්න apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,ගවේශක apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","සංකේත අංක, හෝ කැපිටල් අක්ෂර සඳහා කිසිදු අවශ්යතාවයක්." DocType: DocField,Currency,මුදල් @@ -3094,11 +3155,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,ලිපි ශීර්ෂය මත පදනම්ව apps/frappe/frappe/utils/oauth.py,Token is missing,සංකේත අතුරුදහන් apps/frappe/frappe/www/update-password.html,Set Password,මුරපදය සකසන්න +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,ආනයනය කළ {0} වාර්තා. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,සටහන: පිටු නම වෙනස් මෙම පිටුව වෙත පෙර URL එක කඩා බිඳ දමනු ඇත. apps/frappe/frappe/utils/file_manager.py,Removed {0},ඉවත් {0} DocType: SMS Settings,SMS Settings,කෙටි පණිවුඩ සැකසුම් DocType: Company History,Highlight,මොරටු DocType: Dashboard Chart,Sum,එකතුව +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,දත්ත ආයාත හරහා DocType: OAuth Provider Settings,Force,හමුදා apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},අවසන් වරට සමමුහුර්ත කරන ලද්දේ {0} DocType: DocField,Fold,නමන්න @@ -3274,6 +3337,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite පිවිසීමට අ DocType: DocType,DESC,DESC DocType: DocType,Naming,නම් කිරීම apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,සියලු තෝරන්න +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},තීරුව {0} apps/frappe/frappe/config/customization.py,Custom Translations,රේගු පරිවර්තන apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,ප්රගතිය apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,කාර්යභාරය විසින් @@ -3340,6 +3404,7 @@ DocType: Calendar View,Start Date Field,ආරම්භක දිනය ක් DocType: Role,Role Name,කාර්යභාරය නම apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,අංශය සඳහා මාරු apps/frappe/frappe/config/core.py,Script or Query reports,කේත රචනය හෝ විමසුම් වාර්තා +DocType: Contact Phone,Is Primary Mobile,ප්‍රාථමික ජංගම වේ DocType: Workflow Document State,Workflow Document State,කාර්ය ප්රවාහ ලේඛන රාජ්ය apps/frappe/frappe/public/js/frappe/request.js,File too big,ගොනුව ඉතා විශාල apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ඊ-තැපැල් ගිණුම වාර කිහිපයක් එකතු @@ -3417,6 +3482,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,විශේෂාංග සමහර ඔබගේ බ්රවුසරයේ වැඩ නොහැකි විය. නවතම අනුවාදය කිරීමට ඔබට ඔබේ බ්රව්සරයේ යාවත්කාලීන කරන්න. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,විශේෂාංග සමහර ඔබගේ බ්රවුසරයේ වැඩ නොහැකි විය. නවතම අනුවාදය කිරීමට ඔබට ඔබේ බ්රව්සරයේ යාවත්කාලීන කරන්න. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","දන්නේ නැහැ, අහන්න 'උදව්'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},මෙම ලේඛනය අවලංගු කරන ලදි {0} DocType: DocType,Comments and Communications will be associated with this linked document,අදහස් හා සන්නිවේදන මෙම සම්බන්ධ ලේඛනය සමග සංෙයෝජිත ෙකෙර් apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,පෙරහන... DocType: Workflow State,bold,තද @@ -3491,6 +3557,7 @@ DocType: Print Settings,PDF Settings,PDF සැකසුම් DocType: Kanban Board Column,Column Name,වැනි තීරුෙවහි නම DocType: Language,Based On,මත පදනම්ව DocType: Email Account,"For more information, click here.","වැඩි විස්තර සඳහා මෙහි ක්ලික් කරන්න ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,තීරු ගණන දත්ත සමඟ නොගැලපේ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,පෙරනිමි කරන්න apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,ක්‍රියාත්මක කිරීමේ වේලාව: {0} තත් apps/frappe/frappe/model/utils/__init__.py,Invalid include path,අවලංගු මාර්ගය ඇතුළත් වේ @@ -3578,7 +3645,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar සමමුහුර්ත හැඳුනුම DocType: Prepared Report,Report Start Time,ආරම්භක කාලය වාර්තා කරන්න -apps/frappe/frappe/config/settings.py,Export Data,අපනයන දත්ත +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,අපනයන දත්ත 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.,මෙය පසුබිම් වාර්තාවකි. කරුණාකර සුදුසු පෙරහන් සකසා පසුව නව එකක් ජනනය කරන්න. @@ -3595,7 +3662,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},{0} නිර DocType: Report,Disable Prepared Report,සකස් කළ වාර්තාව අක්‍රීය කරන්න apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,නීති විරෝධී ටෝකනය. කරුණාකර නැවත උත්සාහ කරන්න apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","අයදුම්පත නව වෙළුමට යාවත් කර ඇත, මෙම පිටුව refresh කරන්න" -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.,පෙරනිමි ලිපින සැකිල්ලක් හමු නොවීය. සැකසුම> මුද්‍රණය සහ වෙළඳ නාම> ලිපින සැකිල්ලෙන් කරුණාකර නව එකක් සාදන්න. DocType: Notification,Optional: The alert will be sent if this expression is true,විකල්ප: මෙම සීරුවෙන් මෙම ප්රකාශනය සත්ය නම් යවනු ලැබේ DocType: Data Migration Plan,Plan Name,සැලසුම් නම DocType: Print Settings,Print with letterhead,ලිපි සමඟ මුද්රණය @@ -3634,6 +3700,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: අවලංගු කරන්න තොරව සංශෝධනය කරමි සිටුවම් කල නොහැක apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,සම්පූර්ණ පිටුවට DocType: DocType,Is Child Table,ළමා වගුව වේ +DocType: Data Import Beta,Template Options,ආකෘති විකල්ප apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} {1} එකක් විය යුතුය apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} දැනට මෙම ලියවිල්ල නැරඹීම ඇත apps/frappe/frappe/config/core.py,Background Email Queue,පසුබිම විද්යුත් පෝලිමේ @@ -3641,7 +3708,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,මුරපදය DocType: Communication,Opened,විවෘත DocType: Workflow State,chevron-left,Chevron වාම DocType: Communication,Sending,යැවීම -apps/frappe/frappe/auth.py,Not allowed from this IP Address,මෙම අන්තර්ජාල ලිපිනය සිට අවසර නැත DocType: Website Slideshow,This goes above the slideshow.,මෙය අතිබහුතරයකගේ ඉහත යයි. DocType: Contact,Last Name,අවසන් නම DocType: Event,Private,පුද්ගලික @@ -3655,7 +3721,6 @@ DocType: Workflow Action,Workflow Action,කාර්ය ප්රවාහ ක apps/frappe/frappe/utils/bot.py,I found these: ,මම මේ සොයා ගත්තේ ය: DocType: Event,Send an email reminder in the morning,උදෑසන ඊ-තැපැල් මතක් යවන්න DocType: Blog Post,Published On,දා ප්රකාශයට පත් -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,විද්‍යුත් තැපැල් ගිණුම සැකසෙන්නේ නැත. සැකසුම> ඊමේල්> විද්‍යුත් තැපැල් ගිණුමෙන් කරුණාකර නව විද්‍යුත් තැපැල් ගිණුමක් සාදන්න DocType: Contact,Gender,ස්ත්රී පුරුෂ භාවය apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,අනිවාර්ය තොරතුරු අතුරුදහන්: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,ඉල්ලීම් URL ලිපිනය පරීක්ෂා කරන්න @@ -3675,7 +3740,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,අනතුරු ඇඟවීමක්-ලකුණක් DocType: Prepared Report,Prepared Report,වාර්තාව සකස් කිරීම apps/frappe/frappe/config/website.py,Add meta tags to your web pages,ඔබගේ වෙබ් පිටුවලට මෙටා ටැග් එක් කරන්න -DocType: Contact,Phone Nos,දුරකථන අංක DocType: Workflow State,User,පරිශීලක DocType: Website Settings,"Show title in browser window as ""Prefix - title""",බ්රව්සර් කවුළුවක මාතෘකාව ලෙස පෙන්වන්න "උපසර්ගය - මාතෘකාව" DocType: Payment Gateway,Gateway Settings,ගේට්වේ සැකසුම් @@ -3693,6 +3757,7 @@ DocType: Data Migration Connector,Data Migration,දත්ත සංක්රම DocType: User,API Key cannot be regenerated,API යතුර නැවත ලබා ගත නොහැක apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,මොකක්හරි වැරද්දක් වෙලා DocType: System Settings,Number Format,අංකය ආකෘතිය +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,ආනයනය කළ {0} වාර්තාව. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,සාරාංශය DocType: Event,Event Participants,සහභාගී වන්නන් DocType: Auto Repeat,Frequency,සංඛ්යාත @@ -3700,7 +3765,7 @@ DocType: Custom Field,Insert After,ඇතුළු කරන්න පසු DocType: Event,Sync with Google Calendar,ගූගල් දින දර්ශනය සමඟ සමමුහුර්ත කරන්න DocType: Access Log,Report Name,වාර්තාව නම DocType: Desktop Icon,Reverse Icon Color,අයිකන වර්ණ ආපසු හැරවීමට -DocType: Notification,Save,සුරකින්න +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,සුරකින්න apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,ඊලඟ උපලේඛනගත දිනය apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,අවම පැවරුම් ඇති තැනැත්තාට පවරන්න apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,වගන්තිය ශීර්ෂය @@ -3723,11 +3788,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,සැකසුම> පෝරමය අභිරුචිකරණය කරන්න DocType: Google Contacts,Last Sync On,අවසාන සමමුහුර්ත කිරීම DocType: Deleted Document,Deleted Document,මකා දමන ලදී ලේඛන apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,අපොයි! මොකක්හරි වැරද්දක් වෙලා DocType: Desktop Icon,Category,වර්ගය +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},{1} සඳහා {0} අගය අස්ථානගත වී ඇත apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,සම්බන්ධතා එකතු කරන්න apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,භූ දර්ශනය apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,කරුණාකර Javascript අනුග්රාහකයෙක් පැත්තේ තිර රචනය දිගු @@ -3751,6 +3816,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ශක්ති ලක්ෂ්‍ය යාවත්කාලීන කිරීම apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',කරුණාකර වෙනත් ගෙවීමේ ක්රමයක් තෝරාගන්න. පේපෑල් මුදල් ගනුදෙනු සඳහා පහසුකම් සපයන්නේ නැත '{0}' DocType: Chat Message,Room Type,කාමර වර්ගය +DocType: Data Import Beta,Import Log Preview,ලොග් පෙරදසුන ආයාත කරන්න apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,සොයන්න ක්ෂේත්ර {0} වලංගු නොවේ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,උඩුගත කරන ලද ගොනුව DocType: Workflow State,ok-circle,හරි-රවුම diff --git a/frappe/translations/sk.csv b/frappe/translations/sk.csv index 956ff0ba7d..4c72b070aa 100644 --- a/frappe/translations/sk.csv +++ b/frappe/translations/sk.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Nové verzie {} pre nasledujúce aplikácie sú k dispozícii apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vyberte pole Hodnota. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Načítava sa importovaný súbor ... DocType: Assignment Rule,Last User,Posledný užívateľ apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nová úloha, {0}, bola priradená k vám od {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Predvolené hodnoty relácie boli uložené +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Znovu načítať súbor DocType: Email Queue,Email Queue records.,Email fronty záznamov. DocType: Post,Post,Príspevok DocType: Address,Punjab,Pandžáb @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Měsíčně DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Povolení příchozích apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Nebezpečie -apps/frappe/frappe/www/login.py,Email Address,E-mailová adresa +DocType: Address,Email Address,E-mailová adresa DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Neprečítané oznámenia Odoslané apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export není povolen. Potřebujete roli {0} pro exportování. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrá DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Možnosti kontaktu, např.: ""Dotaz prodeje, dotaz podpory"" atd., každý na novém řádku nebo oddělené čárkami." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Pridať značku ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,portrét -DocType: Data Migration Run,Insert,Vložit +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Vložit apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Povolit Google disku přístup apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Vyberte {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Zadajte základnú adresu URL @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,pred 1 min 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 DocType: Company History,Company History,História organizácie -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Reštartovať +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Reštartovať DocType: Workflow State,volume-up,volume-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,"Webhook, ktorý volá žiadosti API do webových aplikácií" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Zobraziť Traceback DocType: DocType,Default Print Format,Predvolený formát tlače DocType: Workflow State,Tags,tagy apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nič: Koniec toku apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Pole {0} nemôže byť nastavené ako jedinečné v {1}, pretože obsahuje nejedinečné hodnoty" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Typy dokumentů +DocType: Global Search Settings,Document Types,Typy dokumentů DocType: Address,Jammu and Kashmir,Džammú a Kašmír DocType: Workflow,Workflow State Field,Pole stavu toku (workflow) -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavenie> Používateľ DocType: Language,Guest,Host DocType: DocType,Title Field,Nadpis poľa DocType: Error Log,Error Log,error Log @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Opakuje ako "abcabcabc" sú len o niečo ťažšie odhadnúť, ako "abc"" DocType: Notification,Channel,Kanál apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ak si myslíte, že to je oprávnené, prosím, zmeňte heslo správcu." +DocType: Data Import Beta,Data Import Beta,Import údajov Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} je povinné DocType: Assignment Rule,Assignment Rules,Pravidlá priradenia DocType: Workflow State,eject,eject @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Název akce toku (workflow) apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DokTyp nemôže byť zlúčený DocType: Web Form Field,Fieldtype,Typ pole apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nejedná sa o súbor zip +DocType: Global Search DocType,Global Search DocType,Typ globálneho vyhľadávania DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                            New {{ doc.doctype }} #{{ doc.name }}
                                                                                            ","Ak chcete pridať dynamický objekt, použite značky ako napríklad
                                                                                             New {{ doc.doctype }} #{{ doc.name }} 
                                                                                            " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Event Doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Vy DocType: Braintree Settings,Braintree Settings,Nastavenia Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Úspešne bolo vytvorených {0} záznamov. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Uložiť filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Nie je možné odstrániť {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Zadejte url parametr zprá apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Automatické opakovanie vytvorené pre tento dokument apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Zobraziť prehľad v prehliadači apps/frappe/frappe/config/desk.py,Event and other calendars.,Event a iné kalendáre. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (povinný je 1 riadok) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Všetky polia sú potrebné na odoslanie komentára. DocType: Custom Script,Adds a client custom script to a DocType,Pridá vlastný skript klienta do typu DocType DocType: Print Settings,Printer Name,Názov tlačiarne @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Hromadná aktualizácia DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Dovoliť hosťami zobraziť apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} by nemalo byť rovnaké ako {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Zmazať {0} položky natrvalo? apps/frappe/frappe/utils/oauth.py,Not Allowed,Není povoleno @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Zobraziť DocType: Email Group,Total Subscribers,Celkom Odberatelia apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Číslo riadku apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Pakliže role nemá přístup na úrovni 0, pak vyšší úrovně nemají efekt." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Uložiť ako DocType: Comment,Seen,Zhliadnuté @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Vymezuje jednotlivé stavy toků. DocType: Workflow State,Filter,filtr @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Zavreté DocType: Blog Settings,Blog Title,Titulok blogu apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Štandardné role nemôže byť zakázaný apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Typ rozhovoru +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Stĺpce mapy DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Nemožno použiť sub-query v poradí @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Pridať stĺpec apps/frappe/frappe/www/contact.html,Your email address,Vaša e-mailová adresa DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Úspešne aktualizovaných {0} záznamov z {1}. DocType: Notification,Send Alert On,Odeslat upozornění (kdy) DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Přizpůsobit popisek, skrýt tisk, výchozí atd." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Rozbaľujú sa súbory ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Nie je m DocType: System Settings,Currency Precision,Precíznosť meny DocType: System Settings,Currency Precision,Precíznosť meny apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Ďalšie transakcie blokuje tento jeden. Skúste to znova o niekoľko sekúnd. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Vymazať filtre DocType: Test Runner,App,app apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Prílohy sa nedajú správne prepojiť s novým dokumentom DocType: Chat Message Attachment,Attachment,Príloha @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Nelze odesla apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Kalendár Google - Nepodarilo sa aktualizovať udalosť {0} v Kalendári Google, kód chyby {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Vyhľadávajte alebo zadajte príkaz DocType: Activity Log,Timeline Name,Časová os Name +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Ako primárne je možné nastaviť iba jedno {0}. DocType: Email Account,e.g. smtp.gmail.com,např. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Pridať nové pravidlo DocType: Contact,Sales Master Manager,Nadriadený manažér predaja @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Pole stredného názvu LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importuje sa {0} z {1} DocType: GCalendar Account,Allow GCalendar Access,Povoliť prístup GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} je povinné pole +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je povinné pole apps/frappe/frappe/templates/includes/login/login.js,Login token required,Požadovaný token prihlásenia apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mesačné hodnotenie: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Vyberte viac položiek zoznamu @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Nie je možné sa pripoj apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Slovo samo o sebe je ľahko uhádnuť. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Automatické priradenie zlyhalo: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Vyhľadávanie... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Prosím, vyberte spoločnosť" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Slučování je možné pouze mezi skupinami (skupina-skupina) nebo mezi uzlem typu stránka a jiným uzlem typu stránka apps/frappe/frappe/utils/file_manager.py,Added {0},Pridané: {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Bez príslušných záznamov. Hľadať niečo nové @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,ID klienta OAuth DocType: Auto Repeat,Subject,Predmet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Späť na pracovnú plochu DocType: Web Form,Amount Based On Field,Suma z terénneho -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Užívateľ je povinný pre Share DocType: DocField,Hidden,skrytý DocType: Web Form,Allow Incomplete Forms,Umožniť Neúplné formuláre @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} a {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Začnite konverzáciu. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Vždy pridať "Koncept" Okruh pre tlač konceptov dokumentov apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Chyba v upozornení: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pred {0} rokmi DocType: Data Migration Run,Current Mapping Start,Aktualizácia aktuálneho mapovania apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-mail bol označený ako spam DocType: Comment,Website Manager,Správce webu @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,Barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Použitie vedľajšieho dopytu alebo funkcie je obmedzené apps/frappe/frappe/config/customization.py,Add your own translations,Pridajte svoj vlastný preklady DocType: Country,Country Name,Názov krajiny +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Prázdna šablóna DocType: About Us Team Member,About Us Team Member,O nás – člen týmu apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Oprávnění se nastavují na rolích a typech dokumentů (nazýváme je DocTypes) nastavením práv jako číst, Zapsat, Vytvořit, Smazat, Vložit, Zrušit, Změnit, Výpis, Import, Export, Tisk, Email a Nastavení uživatelských oprávnění." DocType: Event,Wednesday,Středa @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,Internetové stránky Téma I DocType: Web Form,Sidebar Items,Položky postranného panelu DocType: Web Form,Show as Grid,Zobraziť ako mriežka apps/frappe/frappe/installer.py,App {0} already installed,Aplikácia {0} už bola nainštalovaná +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Používatelia priradení k referenčnému dokumentu získajú body. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Žiadna náhľad DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Unzipped {0} files @@ -605,6 +620,7 @@ DocType: Notification,Days Before,Dni pred apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Denné udalosti by sa mali skončiť v ten istý deň. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Upraviť ... DocType: Workflow State,volume-down,volume-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Prístup z tejto adresy IP nie je povolený apps/frappe/frappe/desk/reportview.py,No Tags,žiadne tagy DocType: Email Account,Send Notification to,Odoslať oznámenia na DocType: DocField,Collapsible,Skladacie @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Vývojár apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Vytvorené apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} v riadku {1} nemôžu byť zároveň URL a podriadené položky +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},V nasledujúcich tabuľkách by mal byť aspoň jeden riadok: {0} DocType: Print Format,Default Print Language,Predvolený jazyk tlače apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Predkovia apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Kořen (nejvyšší úroveň): {0} nelze smazat @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Hostiteľ +DocType: Data Import Beta,Import File,Importovať súbor apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Stĺpec {0} už existujú. DocType: ToDo,High,Vysoké apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nová udalosť @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,Odoslať upozornenia pre e-ma apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,profesor apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Nie v režime pre vývojárov apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Zálohovanie súborov je pripravené -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maximálny povolený počet bodov po vynásobení bodov multiplikátorom (Poznámka: Žiadna limitná hodnota nie je 0) DocType: DocField,In Global Search,V globálnom vyhľadávaní DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-left @@ -775,6 +791,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Užívateľ '{0}' už má za úlohu '{1}' DocType: System Settings,Two Factor Authentication method,Metóda overovania dvoch faktorov apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najprv nastavte názov a uložte záznam. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 záznamov apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Spoločná pracovisko s {0} apps/frappe/frappe/email/queue.py,Unsubscribe,odhlásiť DocType: View Log,Reference Name,Názov referencie @@ -825,6 +842,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Sledovať stav e-mailu DocType: Note,Notify Users On Every Login,Informujte používateľov pri každom prihlásení DocType: Note,Notify Users On Every Login,Informujte používateľov pri každom prihlásení +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Stĺpec {0} sa nemôže zhodovať so žiadnym poľom +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Úspešne aktualizovaných {0} záznamov. DocType: PayPal Settings,API Password,API Password apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Zadajte modul python alebo vyberte typ konektora apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Přizpůsobené pole nemá nastaven název @@ -853,9 +872,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplicitné meno {0} {1} -DocType: Email Queue,Retry,Skúsiť znova +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Skúsiť znova +DocType: Contact Phone,Number,číslo DocType: Web Form Field,Web Form Field,Pole webového formuláře apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Máte novú správu od: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Upravit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Zadajte adresu URL presmerovania apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -881,7 +902,7 @@ DocType: Notification,View Properties (via Customize Form),Zobrazenie vlastnost apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Kliknutím na súbor ho vyberte. DocType: Note Seen By,Note Seen By,Poznámka videný apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Skúste použiť dlhší klávesnica vzor s viacerými závitov -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Nástenka lídrov +,LeaderBoard,Nástenka lídrov DocType: DocType,Default Sort Order,Predvolené poradie zoradenia DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-mailová odpoveď Pomocník @@ -916,6 +937,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Vytvoriť e-mail apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Stavy toků jako např.: Rozpracováno, Schváleno, Zrušeno." DocType: Print Settings,Allow Print for Draft,Umožňujú tlač pre Draft +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/link_selector.js,Set Quantity,Nastaviť Množstvo apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Predloží dokument potvrdiť DocType: Contact,Unsubscribed,Odhlášen z odběru @@ -947,6 +969,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organizačná jednotka pre ,Transaction Log Report,Prehľad denníka transakcií DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Poslať odkaz pre odhlásenie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Pred importom súboru je potrebné vytvoriť niekoľko prepojených záznamov. Chcete vytvoriť nasledujúce chýbajúce záznamy automaticky? DocType: Access Log,Method,Metoda DocType: Report,Script Report,Skriptovaný výpis DocType: OAuth Authorization Code,Scopes,Scopes @@ -988,6 +1011,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Nahrávanie bolo úspešne apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Ste pripojení na internet. DocType: Social Login Key,Enable Social Login,Povoliť sociálne prihlásenie +DocType: Data Import Beta,Warnings,varovanie DocType: Communication,Event,Událost apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Dne {0}, {1} napsal:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Nemožno zmazať štandardné polia. Môžete ju skryť, ak chcete" @@ -1043,6 +1067,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Vložit p DocType: Kanban Board Column,Blue,Modrý apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Všechna přizpůsobení budou odebrána. Prosím potvrďte. DocType: Page,Page HTML,HTML kód stránky +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Exportovať chybné riadky apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Názov skupiny nesmie byť prázdny. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,"Další uzly mohou být pouze vytvořena v uzlech typu ""skupiny""" DocType: SMS Parameter,Header,Záhlavie @@ -1082,13 +1107,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Vypršal časový limit žiadosti apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Povolenie / Zakázať domény DocType: Role Permission for Page and Report,Allow Roles,povoliť role +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Úspešne importovaných {0} záznamov z {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Jednoduchý výraz Python, príklad: Stav v („Neplatné“)" DocType: User,Last Active,Naposledy aktívny DocType: Email Account,SMTP Settings for outgoing emails,SMTP nastavenie pre odchádzajúce e-maily apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,vyberte si DocType: Data Export,Filter List,Zoznam filtrov DocType: Data Export,Excel,vynikať -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Vaše heslo bolo aktualizované. Toto je Vaše nové heslo 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 @@ -1097,7 +1122,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,User ID DocType: Communication,Sent,Odoslané DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,podávanie DocType: User,Simultaneous Sessions,súbežných relácií DocType: Social Login Key,Client Credentials,klientskej poverenia @@ -1129,7 +1153,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Aktuali apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Hlavné DocType: DocType,User Cannot Create,Uživatel nemůže Vytvořit apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Úspešne hotovo -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Priečinok {0} neexistuje apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Prístup Dropbox je schválený! DocType: Customize Form,Enter Form Type,Vložte typ formuláře DocType: Google Drive,Authorize Google Drive Access,Autorizujte prístup na Disk Google @@ -1137,7 +1160,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Není oštítkován žádný záznam apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,odobrať pole apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Nie ste pripojení na Internet. Opakujte niekedy. -DocType: User,Send Password Update Notification,Poslať oznámenie o aktualizácii hesla apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Povoluji DocType, DocType. Buďte opatrní!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Upravené formáty pre tlač, e-mail" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Súčet {0} @@ -1223,6 +1245,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Nesprávny kód over apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrácia kontaktov Google je zakázaná. DocType: Assignment Rule,Description,Popis DocType: Print Settings,Repeat Header and Footer in PDF,Opakovať hlavičky a päty vo formáte PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,zlyhanie DocType: Address Template,Is Default,Je Výchozí DocType: Data Migration Connector,Connector Type,Typ konektora apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Názov stĺpca nemôže byť prázdny @@ -1235,6 +1258,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Prejdite na stránku DocType: LDAP Settings,Password for Base DN,Heslo pre základné DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabuľka Field 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/model/document.py,Action Failed,akcie zlyhalo apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,pre Užívateľa @@ -1288,6 +1312,7 @@ DocType: Print Settings,Enable Raw Printing,Povoliť surovú tlač DocType: Website Route Redirect,Source,Zdroj apps/frappe/frappe/templates/includes/list/filters.html,clear,jasný apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,dokončené +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavenie> Používateľ DocType: Prepared Report,Filter Values,Hodnoty filtra DocType: Communication,User Tags,Uživatelské štítky DocType: Data Migration Run,Fail,zlyhať @@ -1344,6 +1369,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,nasl ,Activity,Aktivita DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Nápověda: Pro odkaz na jiný záznam v systému, použijte ""# Form / Note / [Poznámka: name]"" jako URL odkazu. (Nepoužívejte ""http: //"")" DocType: User Permission,Allow,dovoliť +DocType: Data Import Beta,Update Existing Records,Aktualizácia existujúcich záznamov apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Poďme sa zabránilo opakovanému slová a znaky DocType: Energy Point Rule,Energy Point Rule,Pravidlo energetického bodu DocType: Communication,Delayed,Oneskorené @@ -1356,9 +1382,7 @@ DocType: Milestone,Track Field,Pole sledovania DocType: Notification,Set Property After Alert,Nastaviť vlastnosť po upozornení apps/frappe/frappe/config/customization.py,Add fields to forms.,Pridať polia do formulárov apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Zdá sa, že nie je v tejto konfigurácii služby Paypal niečo zlé." -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/sidebar/review.js,Add Review,Pridať recenziu -DocType: File,rgt,Rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Veľkosť písma (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Z štandardného formulára môžu byť upravené iba štandardné typy dokumentov. DocType: Email Account,Sendgrid,Sendgrid @@ -1395,6 +1419,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Je nám ľúto! Nemožno odstrániť automaticky generovaná komentáre DocType: Google Settings,Used For Google Maps Integration.,Používa sa na integráciu Máp Google. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Reference DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Nebudú exportované žiadne záznamy DocType: User,System User,Systémový používateľ DocType: Report,Is Standard,Je standardní DocType: Desktop Icon,_report,_správa @@ -1410,6 +1435,7 @@ DocType: Workflow State,minus-sign,znaménko mínus apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nenájdené apps/frappe/frappe/www/printview.py,No {0} permission,Bez oprávnenia: {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export užívateľských oprávnení +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Nenašli sa žiadne položky. DocType: Data Export,Fields Multicheck,Polia Multicheck DocType: Activity Log,Login,Prihlásenie DocType: Web Form,Payments,Platby @@ -1469,8 +1495,9 @@ DocType: Address,Postal,Poštovní DocType: Email Account,Default Incoming,Výchozí Příchozí DocType: Workflow State,repeat,repeat DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Hodnota musí byť jedna z {0} DocType: Role,"If disabled, this role will be removed from all users.","Ak je vypnutá, táto úloha bude odstránený zo všetkých užívateľov." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Prejdite na zoznam {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Prejdite na zoznam {0} 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ý" @@ -1484,6 +1511,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Miestny názov poľa DocType: DocType,Track Changes,Sledovanie zmien DocType: Workflow State,Check,Skontrolovať DocType: Chat Profile,Offline,offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Úspešne importované {0} DocType: User,API Key,kľúč API DocType: Email Account,Send unsubscribe message in email,Odoslať odhlásiť správu do e-mailu apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Upraviť názov @@ -1510,11 +1538,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} už priradil predvolenú hodnotu pre {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                            No results found for '

                                                                                            ,

                                                                                            Nenašli sa žiadne výsledky pre dopyt „

                                                                                            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é @@ -1535,8 +1563,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nie je povolené pre 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavenie> Používateľské oprávnenia DocType: LDAP Group Mapping,LDAP Group Mapping,Mapovanie skupín LDAP DocType: Dashboard Chart,Chart Options,Možnosti grafu +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Stĺpec bez názvu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} z {1} až {2} v rade # {3} DocType: Communication,Expired,Vypršela apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Zdá sa, že použitý token je neplatný!" @@ -1546,6 +1576,7 @@ DocType: DocType,System,Systém DocType: Web Form,Max Attachment Size (in MB),Maximálna veľkosť príloh (v MB) apps/frappe/frappe/www/login.html,Have an account? Login,Máte účet? Prihlásiť sa DocType: Workflow State,arrow-down,šipka-dolů +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Riadok {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Uživatel nemá povoleno mazat {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} z {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Naposledy aktualizované @@ -1563,6 +1594,7 @@ DocType: Custom Role,Custom Role,Custom Role apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Home / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Zadajte heslo DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Povinné) 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. @@ -1637,6 +1669,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Zobraziť apps/frappe/frappe/desk/form/assign_to.py,New Message,Nová správa DocType: File,Preview HTML,Náhľad HTML DocType: Desktop Icon,query-report,query-report +DocType: Data Import Beta,Template Warnings,Varovania šablóny apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filtre uložené DocType: DocField,Percent,Percento apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Prosím nastavte filtre @@ -1658,6 +1691,7 @@ DocType: Custom Field,Custom,Zvyk DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ak je táto možnosť povolená, používatelia, ktorí sa prihlásia z obmedzenej IP adresy, nebudú vyzvaní na povolenie Two Factor Auth" DocType: Auto Repeat,Get Contacts,Získajte kontakty apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Príspevky podané v rámci {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Preskočenie stĺpca bez názvu DocType: Notification,Send alert if date matches this field's value,Odeslat upozornění pokud datum souhlasí s hodnotou tohoto pole DocType: Workflow,Transitions,Přechody apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} až {2} @@ -1681,6 +1715,7 @@ DocType: Workflow State,step-backward,step-backward apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Prosím, nastavení přístupových klíčů Dropbox ve vašem webu config" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Zmazať tento záznam povoliť odosielanie na túto e-mailovú adresu +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ak ide o neštandardný port (napr. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Prispôsobenie odkazov apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Pouze povinná pole jsou potřeba pro nové záznamy. Můžete smazat nepovinné sloupce přejete-li si. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Zobraziť viac aktivity @@ -1788,7 +1823,9 @@ DocType: Note,Seen By Table,videný tabuľke apps/frappe/frappe/www/third_party_apps.html,Logged in,Prihlásený/á apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Výchozí Odeslání a Inbox DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Úspešne aktualizovaný záznam {0} z {1}. DocType: Google Drive,Send Email for Successful Backup,Odoslať e-mail na úspešné zálohovanie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Plánovač je neaktívny. Nie je možné importovať údaje. DocType: Print Settings,Letter,Dopis DocType: DocType,"Naming Options:
                                                                                            1. field:[fieldname] - By Field
                                                                                            2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                            3. Prompt - Prompt user for a name
                                                                                            4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                            5. @@ -1802,6 +1839,7 @@ DocType: GCalendar Account,Next Sync Token,Ďalší symbol synchronizácie DocType: Energy Point Settings,Energy Point Settings,Nastavenia bodu energie DocType: Async Task,Succeeded,Uspel apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Povinné pole vyžadované pre {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                              No results found for '

                                                                                              ,

                                                                                              Nenašli sa žiadne výsledky pre dopyt „

                                                                                              apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Obnoviť oprávnenia pre: {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Uživatelé a oprávnění DocType: S3 Backup Settings,S3 Backup Settings,Nastavenia zálohovania S3 @@ -1872,6 +1910,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,V DocType: Notification,Value Change,Změnit hodnotu DocType: Google Contacts,Authorize Google Contacts Access,Autorizujte prístup Google Contacts apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Zobrazuje sa len polia Numeric z reportu +DocType: Data Import Beta,Import Type,Typ importu DocType: Access Log,HTML Page,HTML stránka DocType: Address,Subsidiary,Dceřiný apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Pokus o pripojenie k zásobníku QZ ... @@ -1882,7 +1921,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Neplatný DocType: Custom DocPerm,Write,Zapsat apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Pouze administrátor má povoleno vytvářet Dotazy (query) / skriptované výpisy (script reports) apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Aktualizácie -DocType: File,Preview,Náhľad +DocType: Data Import Beta,Preview,Náhľad apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Pole "hodnota" je povinná. Prosím, uveďte hodnotu, ktorá sa aktualizuje" DocType: Customize Form,Use this fieldname to generate title,Pomocou tohto fieldname na generovanie názvu apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importovať e-maily z @@ -1967,6 +2006,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Prehliadač ni DocType: Social Login Key,Client URLs,Klientské adresy URL apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Niektoré informácie chýbajú apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} bola úspešne vytvorená +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Preskočenie {0} z {1}, {2}" DocType: Custom DocPerm,Cancel,Zrušit apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Hromadné odstránenie apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Súbor {0} neexistuje @@ -1994,7 +2034,6 @@ DocType: GCalendar Account,Session Token,Token relácie DocType: Currency,Symbol,Symbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Řádek #{0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Potvrďte vymazanie údajov -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nové heslo zaslané emailom apps/frappe/frappe/auth.py,Login not allowed at this time,Přihlášení není povoleno v tuto dobu DocType: Data Migration Run,Current Mapping Action,Aktuálna mapová akcia DocType: Dashboard Chart Source,Source Name,Názov zdroja @@ -2007,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Glob apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Nasledovaný DocType: LDAP Settings,LDAP Email Field,LDAP Email Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Zoznam +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exportovať {0} záznamy apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Je již v uživatelském seznamu úkolů DocType: User Email,Enable Outgoing,Povolit odchozí DocType: Address,Fax,Fax @@ -2066,8 +2106,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Tlač dokumentov apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skočiť na pole DocType: Contact Us Settings,Forward To Email Address,Preposlať na emailovú adresu +DocType: Contact Phone,Is Primary Phone,Je primárny telefón apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošlite e-mail na adresu {0} a prepojte ho tu. DocType: Auto Email Report,Weekdays,Dni v týždni +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Exportuje sa {0} záznamov apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Nadpis musí obsahovať správny názov poľa DocType: Post Comment,Post Comment,Odoslať komentár apps/frappe/frappe/config/core.py,Documents,Dokumenty @@ -2085,7 +2127,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18","Toto pole sa objaví len v prípade, že fieldname tu definované má hodnotu OR pravidlá sú pravými (príklady): myfield eval: doc.myfield == "Môj Value 'eval: doc.age> 18" DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,dnes +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Pakliže toto nastavíte, uživatelé budou moci přistoupit pouze na dokumenty (např.: příspěvky blogu), kam existují odkazy (např.: blogger)." +DocType: Data Import Beta,Submit After Import,Odoslať po importe DocType: Error Log,Log of Scheduler Errors,Log chyb plánovače. DocType: User,Bio,Biografie DocType: OAuth Client,App Client Secret,App Client Secret @@ -2104,10 +2148,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Vypnout odkaz pro registraci zákazníků na přihlašovací stránce apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Priradené (komu)/Majiteľ DocType: Workflow State,arrow-left,šipka-vlevo +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Exportovať 1 záznam DocType: Workflow State,fullscreen,celá obrazovka DocType: Chat Token,Chat Token,Chatový tok apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Vytvoriť graf apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Neimportovať DocType: Web Page,Center,Stred DocType: Notification,Value To Be Set,"Hodnota, ktorú chcete nastaviť" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Upraviť {0} @@ -2127,6 +2173,7 @@ DocType: Print Format,Show Section Headings,Ukázať § Nadpisy DocType: Bulk Update,Limit,limit apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Dostali sme žiadosť o vymazanie {0} údajov spojených s: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Pridajte novú sekciu +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrované záznamy apps/frappe/frappe/www/printview.py,No template found at path: {0},Žádná šablona nenalezena na cestě: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Žiadne e-mailové konto DocType: Comment,Cancelled,Zrušené @@ -2214,10 +2261,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Obnovenie typov dokumentov globálneho vyhľadávania. ,Lead Conversion Time,Lead Conversion Time apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Sestav Report DocType: Note,Notify users with a popup when they log in,"Informovať užívateľa s pop-up, keď sa prihlási" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Základné moduly {0} nie je možné prehľadávať v globálnom vyhľadávaní. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Otvorte čet apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} neexistuje, vyberte nový cieľ pre zlúčenie" DocType: Data Migration Connector,Python Module,Python modul @@ -2234,8 +2284,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zavrieť 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavenie> Používateľské oprávnenia -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Aktualizovat +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Aktualizovat DocType: Transaction Log,Transaction Hash,Hash transakcie DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Uložte Newsletter před odesláním @@ -2251,6 +2300,7 @@ DocType: Data Import,In Progress,Pokrok apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Vo fronte pre zálohovanie. To môže trvať niekoľko minút až hodinu. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Používateľské oprávnenie už existuje +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Mapujúci stĺpec {0} do poľa {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Zobraziť {0} DocType: User,Hourly,hodinový apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrovať OAuth klienta App @@ -2263,7 +2313,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS brána URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nemôže byť ""{2}"". Malo by byť jedno z ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},získané {0} automatickým pravidlom {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} alebo {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Aktualizovať heslo DocType: Workflow State,trash,koš DocType: System Settings,Older backups will be automatically deleted,Staršie zálohy budú automaticky zmazané apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Neplatný identifikátor prístupového kľúča alebo tajný prístupový kľúč. @@ -2292,6 +2341,7 @@ DocType: Address,Preferred Shipping Address,Preferovaná dodacia adresa apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,písmenom hlavy apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} vytvoril tento {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Nie je povolené pre {0}: {1} v riadku {2}. Obmedzené pole: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-západ-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ak je začiarknuté, budú importované riadky s platnými údajmi a neplatné riadky budú odstránené do nového súboru, aby ste mohli neskôr importovať." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Document je upravovatelný pouze pro uživatele s rolí @@ -2318,6 +2368,7 @@ DocType: Custom Field,Is Mandatory Field,Je Povinné Pole DocType: User,Website User,Uživatel webu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Niektoré stĺpce sa môžu pri tlači do PDF orezať. Pokúste sa udržať počet stĺpcov pod 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Není rovno +DocType: Data Import Beta,Don't Send Emails,Neodosielať e-maily DocType: Integration Request,Integration Request Service,Integrácia Service Request DocType: Access Log,Access Log,Prístupový denník DocType: Website Script,Script to attach to all web pages.,Skript pro přidání na všechny www stránky. @@ -2358,6 +2409,7 @@ DocType: Contact,Passive,Pasívny DocType: Auto Repeat,Accounts Manager,Manažér účtov apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Priradenie pre {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Vaša platba je zrušená. +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/views/reports/report_view.js,Select File Type,Vyberte typ súboru apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Zobraziť všetko DocType: Help Article,Knowledge Base Editor,Základné Editor znalosti @@ -2390,6 +2442,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Údaje apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Stav dokumentu apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Vyžaduje sa schválenie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Predtým, ako môžeme importovať váš súbor, je potrebné vytvoriť nasledujúce záznamy." DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Autorizačný kód apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Není povoleno importovat DocType: Deleted Document,Deleted DocType,vypúšťa DOCTYPE @@ -2444,8 +2497,8 @@ DocType: GCalendar Settings,Google API Credentials,Poverenia API Google apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Začiatok relácie zlyhal apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Začiatok relácie zlyhal apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Tento e-mail bol odoslaný na adresu {0} a skopírovať do {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},odoslal tento dokument {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Pred {0} rokmi DocType: Social Login Key,Provider Name,Názov poskytovateľa apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Vytvoriť: {0} DocType: Contact,Google Contacts,Kontakty Google @@ -2453,6 +2506,7 @@ DocType: GCalendar Account,GCalendar Account,Účet GCalendar DocType: Email Rule,Is Spam,je Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Správa {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Otvoriť {0} +DocType: Data Import Beta,Import Warnings,Upozornenia na import DocType: OAuth Client,Default Redirect URI,Predvolené Presmerovanie URI DocType: Auto Repeat,Recipients,Príjemcovia DocType: System Settings,Choose authentication method to be used by all users,"Vyberte metódu overovania, ktorú majú používať všetci používatelia" @@ -2571,6 +2625,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Prehľad bol apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook Chyba DocType: Email Flag Queue,Unread,neprečítaný DocType: Bulk Update,Desk,Plocha +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Preskočenie stĺpca {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter musí byť n-tava alebo zoznam (v zozname) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Napište SQL dotaz SELECT. Poznámka: výsledky nebudou stránkovány (všechna data budou odeslána najednou). DocType: Email Account,Attachment Limit (MB),Omezit přílohu (MB) @@ -2585,6 +2640,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Vytvoriť nové DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email nie je poslaný do {0} (odhlásili / vypnuté) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Vyberte polia na export DocType: Async Task,Traceback,Vystopovať DocType: Currency,Smallest Currency Fraction Value,Najmenší Mena Frakcia Hodnota apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Príprava správy @@ -2593,6 +2649,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Zapnout komentáře apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Poznámky DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Omezit přístup uživatele pouze z této IP adresy. Můžete přidat více IP adres, oddělených čárkou. Je možno zadat dílčí IP adresy jako (111.111.111)." +DocType: Data Import Beta,Import Preview,Importovať ukážku DocType: Communication,From,Od apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Vyberte první uzel skupinu. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Hľadať: {0} v: {1} @@ -2691,6 +2748,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,medzi DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Vo fronte +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavenie> Prispôsobiť formulár DocType: Braintree Settings,Use Sandbox,použitie Sandbox apps/frappe/frappe/utils/goal.py,This month,Tento mesiac apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New Custom Print Format @@ -2706,6 +2764,7 @@ DocType: Session Default,Session Default,Predvolená relácia DocType: Chat Room,Last Message,Posledná správa DocType: OAuth Bearer Token,Access Token,Přístupový Token DocType: About Us Settings,Org History,Historie organizace +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Zostáva asi {0} minút DocType: Auto Repeat,Next Schedule Date,Nasledujúci dátum plánovania DocType: Workflow,Workflow Name,Názov pracovného toku DocType: DocShare,Notify by Email,Upozorniť emailom @@ -2735,6 +2794,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,obnoví odosielanie apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Znovu otvoriť +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Zobraziť upozornenia apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Nákup Uživatel DocType: Data Migration Run,Push Failed,Push sa nepodarilo @@ -2773,6 +2833,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Rozš apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nemáte povolenie prezerať si newsletter. DocType: User,Interests,záujmy apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email +DocType: Energy Point Rule,Allot Points To Assigned Users,Pridelte body priradeným používateľom apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Úroveň 0 je pre oprávnenia na úrovni dokumentu, \ vyššie úrovne pre oprávnenia na úrovni poľa." DocType: Contact Email,Is Primary,Je primárny @@ -2796,6 +2857,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Kľúč na zverejnenie DocType: Stripe Settings,Publishable Key,Kľúč na zverejnenie apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Spustite import +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Typ exportu DocType: Workflow State,circle-arrow-left,circle-arrow-left DocType: System Settings,Force User to Reset Password,Vynútiť vynulovanie hesla používateľom apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Ak chcete získať aktualizovaný prehľad, kliknite na {0}." @@ -2808,13 +2870,16 @@ DocType: Contact,Middle Name,Stredné meno DocType: Custom Field,Field Description,Popis poľa apps/frappe/frappe/model/naming.py,Name not set via Prompt,Název není nastaven pomocí prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,e-mailová schránka +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Aktualizuje sa {0} z {1}, {2}" DocType: Auto Email Report,Filters Display,filtre Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Na vykonanie zmeny a doplnenia musí byť k dispozícii pole „zmenené a doplnené“. +DocType: Contact,Numbers,čísla apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ocenil vašu prácu na {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Uložte filtre DocType: Address,Plant,Rostlina apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odpovedať všetkým DocType: DocType,Setup,Nastavenie +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Všetky záznamy DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-mailová adresa, ktorej kontakty Google sa majú synchronizovať." DocType: Email Account,Initial Sync Count,Počiatočné synchronizácia Count DocType: Workflow State,glass,glass @@ -2839,7 +2904,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Zobraziť kontextové okno s ukážkou apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Jedná sa o spoločný heslo top-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Prosím povoľte vyskakovacie okná -DocType: User,Mobile No,Mobile No +DocType: Contact,Mobile No,Mobile No DocType: Communication,Text Content,Text Obsah DocType: Customize Form Field,Is Custom Field,Je Vlastné pole DocType: Workflow,"If checked, all other workflows become inactive.","Pakliže je toto zaškrtnuto, všechny ostatní toky (workflow) se stanou neaktivními." @@ -2885,6 +2950,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Přid apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Názov nového tlačového formátu apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Prepnúť bočný panel DocType: Data Migration Run,Pull Insert,Vytiahnite Vložiť +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maximálny povolený počet bodov po vynásobení bodov multiplikátorom (Poznámka: Toto pole nesmie byť prázdne alebo nastavené na 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Neplatná šablóna apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Neplatný dopyt SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Povinné: DocType: Chat Message,Mentions,zmieňuje @@ -2899,6 +2967,7 @@ DocType: User Permission,User Permission,Uživatelská oprávnění apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP nie je nainštalovaný apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Ke stažení s daty +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},zmenené hodnoty pre {0} {1} DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Subdomain,Sub doména DocType: S3 Backup Settings,Region,Kraj @@ -2925,10 +2994,12 @@ DocType: Braintree Settings,Public Key,Verejný kľúč DocType: GSuite Settings,GSuite Settings,Nastavenia GSuite DocType: Address,Links,Odkazy DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Používa meno e-mailovej adresy uvedené v tomto účte ako meno odosielateľa pre všetky e-maily odoslané pomocou tohto účtu. +DocType: Energy Point Rule,Field To Check,Polia na kontrolu apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Kontakty Google - kontakt v kontaktoch Google sa nepodarilo aktualizovať {0}, kód chyby {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Vyberte typ dokumentu. apps/frappe/frappe/model/base_document.py,Value missing for,Chybí hodnota pro apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Pridať potomka +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Priebeh importu DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Ak je podmienka splnená, užívateľ bude odmenený bodmi. eg. doc.status == 'Uzavreté'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Odoslaný záznam nemôže byť vymazaný. @@ -2965,6 +3036,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizujte prístup d apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Stránka, ktorú hľadáte, nebola nájdená. Mohla byť presunutá alebo je preklep v adrese." apps/frappe/frappe/www/404.html,Error Code: {0},Kód chyby: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Popis pro stránku výpisů, v čistém textu, pouze pár řádek. (max 140 znaků)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} sú povinné polia DocType: Workflow,Allow Self Approval,Povolenie vlastného schválenia DocType: Event,Event Category,Kategória udalosti apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3013,8 +3085,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Presunúť do DocType: Address,Preferred Billing Address,Preferovaná fakturačná adresa apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Velmi mnoho zápisů v jednom požadavku. Prosím pošlete menší požadavek apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Disk Google bol nakonfigurovaný. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Typ dokumentu {0} bol opakovaný. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,hodnoty Zmenil DocType: Workflow State,arrow-up,šipka-nahoru +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Pre {0} tabuľku by mal byť aspoň jeden riadok apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Ak chcete nakonfigurovať automatické opakovanie, povoľte možnosť „Povoliť automatické opakovanie“ od {0}." DocType: OAuth Bearer Token,Expires In,V vyprší DocType: DocField,Allow on Submit,Povolit při Odeslání @@ -3101,6 +3175,7 @@ DocType: Custom Field,Options Help,Možnosti nápovědy 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 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 @@ -3118,6 +3193,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verifikačný kód DocType: Webhook,Webhook Request,Požiadavka Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Zlyhalo {0} až {1}: {2} DocType: Data Migration Mapping,Mapping Type,Typ mapovania +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,vyberte Povinné apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Prehliadať apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Nie je potrebné pre symboly, číslice, alebo veľkými písmenami." DocType: DocField,Currency,Mena @@ -3148,11 +3224,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Hlavica na základe apps/frappe/frappe/utils/oauth.py,Token is missing,Token chýba apps/frappe/frappe/www/update-password.html,Set Password,Nastavit heslo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Úspešne importovaných {0} záznamov. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Poznámka: Zmena názvu stránky rozbije predchádzajúcu adresu URL na túto stránku. apps/frappe/frappe/utils/file_manager.py,Removed {0},Odebráno: {0} DocType: SMS Settings,SMS Settings,Nastavenie SMS DocType: Company History,Highlight,Zvýraznit DocType: Dashboard Chart,Sum,súčet +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,prostredníctvom importu údajov DocType: OAuth Provider Settings,Force,sila apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Naposledy synchronizované {0} DocType: DocField,Fold,Fold @@ -3189,6 +3267,7 @@ DocType: Workflow State,Home,Domov DocType: OAuth Provider Settings,Auto,auto DocType: System Settings,User can login using Email id or User Name,Používateľ sa môže prihlásiť pomocou ID e-mailu alebo User Name DocType: Workflow State,question-sign,question-sign +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je zakázaný apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Pole "trasa" je povinná pre webové zobrazenia apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Vložiť stĺpec pred {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Užívateľovi z tohto poľa budú pridelené body @@ -3222,6 +3301,7 @@ DocType: Website Settings,Top Bar Items,Položky horního panelu DocType: Notification,Print Settings,Nastavenie tlače DocType: Page,Yes,Ano DocType: DocType,Max Attachments,Max příloh +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Zostáva asi {0} sekúnd DocType: Calendar View,End Date Field,Pole Dátum ukončenia apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globálne skratky DocType: Desktop Icon,Page,Stránka @@ -3334,6 +3414,7 @@ DocType: GSuite Settings,Allow GSuite access,Povoliť prístup GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Pomenovanie apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Označiť všetko +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Stĺpec {0} apps/frappe/frappe/config/customization.py,Custom Translations,vlastné Preklady apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,pokrok apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,Rolou @@ -3376,11 +3457,13 @@ DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Data Migration Mapping,Data Migration Mapping,Mapovanie migrácie údajov DocType: Auto Email Report,Period,Obdobie +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Zostáva asi {0} minúta apps/frappe/frappe/www/login.py,Invalid Login Token,Neplatný Prihlásenie Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,odhodiť apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 hodina DocType: Website Settings,Home Page,Domovská stránka DocType: Error Snapshot,Parent Error Snapshot,Parent Chyba Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Mapujte stĺpce od {0} do polí v {1} DocType: Access Log,Filters,Filtry DocType: Workflow State,share-alt,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Fronta by mala byť jedna z {0} @@ -3411,6 +3494,7 @@ DocType: Calendar View,Start Date Field,Pole Dátum začiatku DocType: Role,Role Name,Názov role apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Prepnúť na plochu apps/frappe/frappe/config/core.py,Script or Query reports,Script alebo Query správy +DocType: Contact Phone,Is Primary Mobile,Je primárny mobil DocType: Workflow Document State,Workflow Document State,Stav toku (workflow) dokumentu apps/frappe/frappe/public/js/frappe/request.js,File too big,Súbor je príliš veľký apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-mailový účet pridaný viackrát @@ -3456,6 +3540,7 @@ DocType: DocField,Float,Desetinné číslo DocType: Print Settings,Page Settings,Nastavenia stránky apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Úsporné ... apps/frappe/frappe/www/update-password.html,Invalid Password,nesprávne heslo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} záznam z {1} bol úspešne importovaný. DocType: Contact,Purchase Master Manager,Nadriadený manažér nákupu apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Kliknutím na ikonu zámku môžete prepínať medzi verejným / súkromným DocType: Module Def,Module Name,Názov modulu @@ -3490,6 +3575,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Niektoré funkcie nemusia fungovať vo vašom prehliadači. Aktualizujte svoj prehliadač na najnovšiu verziu. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Niektoré funkcie nemusia fungovať vo vašom prehliadači. Aktualizujte svoj prehliadač na najnovšiu verziu. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Neviem, spýtajte sa 'help'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},zrušil tento dokument {0} DocType: DocType,Comments and Communications will be associated with this linked document,Komentáre a komunikácia bude spojená s týmto prepojeným dokumentom apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtr ... DocType: Workflow State,bold,tučně @@ -3508,6 +3594,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Pridanie / Sp DocType: Comment,Published,Zverejnené apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Děkujeme za váš e-mail DocType: DocField,Small Text,Krátký text +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Číslo {0} nie je možné nastaviť ako primárne pre telefónne číslo ani číslo mobilného telefónu. DocType: Workflow,Allow approval for creator of the document,Povoliť schválenie pre tvorcu dokumentu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Uložiť prehľad DocType: Webhook,on_cancel,on_cancel @@ -3565,6 +3652,7 @@ DocType: Print Settings,PDF Settings,Nastavenie PDF DocType: Kanban Board Column,Column Name,Názov stĺpca DocType: Language,Based On,Založené na DocType: Email Account,"For more information, click here.","Pre viac informácií kliknite sem ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Počet stĺpcov sa nezhoduje s údajmi apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Nastaviť ako predvolený apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Čas vykonania: {0} sec apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Neplatná cesta zahrnutia @@ -3655,7 +3743,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Odovzdajte {0} súborov DocType: Deleted Document,GCalendar Sync ID,ID synchronizácie GCalendar DocType: Prepared Report,Report Start Time,Nahlásiť čas spustenia -apps/frappe/frappe/config/settings.py,Export Data,Exportovať údaje +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportovať údaje 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ý. @@ -3673,7 +3761,6 @@ DocType: Report,Disable Prepared Report,Vypnúť pripravenú správu apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Používateľ {0} požiadal o vymazanie údajov apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Nezákonné Access Token. Prosím skúste znova apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikácia bola aktualizovaná na novú verziu, prosím, obnovte túto stránku" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,Volitelné: Upozornění bude zasláno pokud je tento výraz pravdivý DocType: Data Migration Plan,Plan Name,Názov plánu DocType: Print Settings,Print with letterhead,Tlač s hlavičkový @@ -3714,6 +3801,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Nie je možné dopĺňať bez zrušenia apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Page DocType: DocType,Is Child Table,Je podtabulka +DocType: Data Import Beta,Template Options,Možnosti šablón apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} musí byť jedno z {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} práve prezerá tento dokument apps/frappe/frappe/config/core.py,Background Email Queue,Pozadie Email fronty @@ -3721,7 +3809,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Obnoviť heslo DocType: Communication,Opened,Otvorené DocType: Workflow State,chevron-left,chevron-left DocType: Communication,Sending,Odosielanie -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Není povoleno z této IP adresy DocType: Website Slideshow,This goes above the slideshow.,Toto přijde nad promítání obrázků. DocType: Contact,Last Name,Priezvisko DocType: Event,Private,Súkromné @@ -3735,7 +3822,6 @@ DocType: Workflow Action,Workflow Action,Akce toků apps/frappe/frappe/utils/bot.py,I found these: ,"Zistil som, tieto:" DocType: Event,Send an email reminder in the morning,Ráno odeslat upozornění emailem DocType: Blog Post,Published On,Zverejnené (kedy) -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 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} @@ -3756,7 +3842,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,warning-sign DocType: Prepared Report,Prepared Report,Pripravená správa apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Pridajte na svoje webové stránky metaznačky -DocType: Contact,Phone Nos,Telefónne čísla 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 @@ -3774,6 +3859,7 @@ DocType: Data Migration Connector,Data Migration,Migrácia údajov DocType: User,API Key cannot be regenerated,Kľúč rozhrania API nie je možné obnoviť apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Niečo sa pokazilo DocType: System Settings,Number Format,Formát čísiel +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Záznam {0} bol úspešne importovaný. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,zhrnutie DocType: Event,Event Participants,Účastníci podujatia DocType: Auto Repeat,Frequency,Frekvencia @@ -3781,7 +3867,7 @@ DocType: Custom Field,Insert After,Vložit za DocType: Event,Sync with Google Calendar,Synchronizácia s Kalendárom Google DocType: Access Log,Report Name,Názov reportu DocType: Desktop Icon,Reverse Icon Color,Reverzný farebná ikona -DocType: Notification,Save,Uložiť +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Uložiť apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Nasledujúci plánovaný dátum apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Priradiť tomu, kto má najmenšie úlohy" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Nadpis sekcie @@ -3804,11 +3890,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavenie> Prispôsobiť formulár 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 :( DocType: Desktop Icon,Category,Kategória +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Hodnota {0} chýba pre {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Pridať kontakty apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,krajina apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Rozšírenie na strane klienta skriptu v jazyku JavaScript @@ -3832,6 +3918,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aktualizácia bodu energie apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Prosím, vyberte iný spôsob platby. PayPal nepodporuje transakcií s obeživom, {0} '" DocType: Chat Message,Room Type,Typ izby +DocType: Data Import Beta,Import Log Preview,Import protokolu ukážok apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Vyhľadávacie pole {0} nie je platný apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,nahraný súbor DocType: Workflow State,ok-circle,ok-circle @@ -3900,6 +3987,7 @@ DocType: DocType,Allow Auto Repeat,Povoliť automatické opakovanie apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Žiadne hodnoty na zobrazenie DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Šablóna e-mailu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Úspešne aktualizovaný záznam {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Používateľ {0} nemá oprávnenie na prístup k typu prostredníctvom oprávnenia role pre dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,"Oboje, prihlasovacie meno a heslo je vyžadované" apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Prosím kliknite na obnoviť pre získanie najnovšej verzie dokumentu. diff --git a/frappe/translations/sl.csv b/frappe/translations/sl.csv index 2fc85ce28d..62efa3cf59 100644 --- a/frappe/translations/sl.csv +++ b/frappe/translations/sl.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Na voljo so nova izdaja {{} za naslednje programe apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Izberite Znesek polje. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Nalaganje datoteke za uvoz ... DocType: Assignment Rule,Last User,Zadnji uporabnik apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Nova naloga, {0}, je bila dodeljena vam jo {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Privzete nastavitve seje shranjene +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Ponovno naloži datoteko DocType: Email Queue,Email Queue records.,Email Queue evidence. DocType: Post,Post,Objavi DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Mesečni DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Omogoči Dohodni apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Nevarnost -apps/frappe/frappe/www/login.py,Email Address,Email naslov +DocType: Address,Email Address,Email naslov DocType: Workflow State,th-large,th-velika DocType: Communication,Unread Notification Sent,Neprebrano Obvestilo Poslano apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Izvoz ni dovoljeno. Morate {0} vlogo izvoz. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt možnosti, kot so "Sales poizvedbo Podpora Query" itd vsak na novo progo ali ločeni z vejicami." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Dodaj oznako ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret -DocType: Data Migration Run,Insert,Insert +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Insert apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Dovoli dostop do Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Izberite {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Vnesite osnovni URL @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Pred 1 min 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 DocType: Company History,Company History,Zgodovina podjetja -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Ponastavi +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Ponastavi DocType: Workflow State,volume-up,Obseg-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,"Webhooks, ki kličejo zahteve API v spletne aplikacije" +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Pokaži sled DocType: DocType,Default Print Format,Privzeto Print Format DocType: Workflow State,Tags,Oznake apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Brez: Konec Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polje ne more biti edinstveno v {1}, ker obstajajo podvojene vrednosti" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Vrste dokumentov +DocType: Global Search Settings,Document Types,Vrste dokumentov DocType: Address,Jammu and Kashmir,Džamu in Kašmir DocType: Workflow,Workflow State Field,Workflow država Field -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavitev> Uporabnik DocType: Language,Guest,Gost DocType: DocType,Title Field,Naslov Field DocType: Error Log,Error Log,Error Log @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Ponavljanja kot ""abcabcabc"" je le nekoliko težje uganiti kot ""abc""" DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Če menite, da je nedovoljena, prosimo spremenite skrbniško geslo." +DocType: Data Import Beta,Data Import Beta,Beta za uvoz podatkov apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} je obvezna DocType: Assignment Rule,Assignment Rules,Pravila dodelitve DocType: Workflow State,eject,izmet @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Workflow Action Name apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE ni mogoče združiti DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Ni datoteka zip +DocType: Global Search DocType,Global Search DocType,DocType globalnega iskanja DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                              New {{ doc.doctype }} #{{ doc.name }}
                                                                                              ","Če želite dodati dinamični predmet, uporabite oznake z oznako
                                                                                               New {{ doc.doctype }} #{{ doc.name }} 
                                                                                              " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc dogodek apps/frappe/frappe/public/js/frappe/utils/user.js,You,Vi DocType: Braintree Settings,Braintree Settings,Nastavitve Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Ustvarjeno je bilo {0} zapisov. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Shrani filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Ne morem izbrisati {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Vnesite url parameter za s apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Za ta dokument je bila ustvarjena samodejna ponovitev apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Ogled poročila v vašem brskalniku apps/frappe/frappe/config/desk.py,Event and other calendars.,Dogodek in drugih koledarjev. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 vrstica obvezna) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,"Vsa polja so potrebni, da predloži pripombe." DocType: Custom Script,Adds a client custom script to a DocType,Doda skript odjemalca po meri v DocType DocType: Print Settings,Printer Name,Ime tiskalnika @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Bulk Update DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Dovoli Gost Ogled apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ne sme biti isti kot {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Brisanje {0} zadetka trajno? apps/frappe/frappe/utils/oauth.py,Not Allowed,Ni dovoljeno @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Display DocType: Email Group,Total Subscribers,Skupaj Naročniki apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Na vrh {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Številka vrstice apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Če vloga nima dostopa na ravni 0, nato pa višje ravni so nesmiselne." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Shrani kot DocType: Comment,Seen,Seen @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Definira države potek dela in pravila za dokument. DocType: Workflow State,Filter,Filter @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Zaprto DocType: Blog Settings,Blog Title,Blog Naslov apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standardne vloge ni mogoče onemogočiti apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Tip klepeta +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Stolpci zemljevidov DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Glasilo apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"ni mogoče uporabiti sub-poizvedbe, da bi ga" @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Dodaj stolpec apps/frappe/frappe/www/contact.html,Your email address,Vaš email naslov DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} posnetkov od {1} uspešno posodobljenih. DocType: Notification,Send Alert On,Pošlji Alert on DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Prilagodite Label, Print Hide, Privzeti itd" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Odstranjevanje datotek ... @@ -399,6 +409,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Uporabnik {0} ni mogoče izbrisati DocType: System Settings,Currency Precision,valuta Precision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,"Druga transakcija blokira tole. Prosimo, poskusite znova v nekaj sekundah." +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Počistite filtre DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Priloge ni bilo mogoče pravilno povezati z novim dokumentom DocType: Chat Message Attachment,Attachment,Attachment @@ -424,6 +435,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,"Ne morem po apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Koledar - Dogodka {0} v Google Koledarju ni bilo mogoče posodobiti, koda napake {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Iskanje ali vnesite ukaz DocType: Activity Log,Timeline Name,Časovnica Ime +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Samo eno {0} lahko nastavite kot primarno. DocType: Email Account,e.g. smtp.gmail.com,npr smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Dodaj novo pravilo DocType: Contact,Sales Master Manager,Prodaja Master Manager @@ -441,7 +453,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Polje z imenom srednjega imena LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Uvoz {0} od {1} DocType: GCalendar Account,Allow GCalendar Access,Dovoli dostop do GCalendarja -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} je obvezno polje +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} je obvezno polje apps/frappe/frappe/templates/includes/login/login.js,Login token required,Prijava žetona je obvezna apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Mesečna uvrstitev: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Izberite več elementov seznama @@ -471,6 +483,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Ne more povezati: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Besedo sama po sebi ni težko uganiti. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Samodejna dodelitev ni uspela: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Iskanje... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Prosimo, izberite Company" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Spajanje je mogoče le med Group-to-skupine ali Leaf Node-to-Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Dodana {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Ni ustreznih zapisov. Iskanje nekaj novega @@ -483,7 +496,6 @@ DocType: Google Settings,OAuth Client ID,ID stranke OAuth DocType: Auto Repeat,Subject,Predmet apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Nazaj na Desk DocType: Web Form,Amount Based On Field,"Znesek, ki temelji na terenskem" -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Uporabnik je obvezna za delnico DocType: DocField,Hidden,Skrito DocType: Web Form,Allow Incomplete Forms,Dovoli Nepopolne Obrazci @@ -520,6 +532,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} in {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Začnite pogovor. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Vedno dodati "osnutek", razdelek za tiskanje osnutkov dokumentov" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Napaka v obvestilu: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} leto nazaj DocType: Data Migration Run,Current Mapping Start,Začni načrtovanje zemljevidov apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-pošta je bila označena kot spam DocType: Comment,Website Manager,Spletna stran Manager @@ -558,6 +571,7 @@ DocType: Workflow State,barcode,črtna koda apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Uporaba podizvajalske funkcije ali funkcije je omejena apps/frappe/frappe/config/customization.py,Add your own translations,Dodajte svoje prevode DocType: Country,Country Name,Ime Države +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Prazna predloga DocType: About Us Team Member,About Us Team Member,O podjetju Team Član apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Dovoljenja so določene na Vloge in vrst dokumentov (imenovani DocTypes) z določitvijo pravic, kot so branje, pisanje, ustvarjanje, brisanje, Submit Cancel, se spremeni, poročilo, uvoz, izvoz, Print, Email in Set dovoljenja uporabnika." DocType: Event,Wednesday,Sreda @@ -569,6 +583,7 @@ DocType: Website Settings,Website Theme Image Link,Spletna stran Tema Povezava s DocType: Web Form,Sidebar Items,Sidebar Items DocType: Web Form,Show as Grid,Prikaži kot Mreža apps/frappe/frappe/installer.py,App {0} already installed,Aplikacija {0} že nameščen +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Uporabniki, dodeljeni referenčnemu dokumentu, bodo dobili točke." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Ni predogleda DocType: Workflow State,exclamation-sign,vzklik-znak apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Neporabljene datoteke {0} @@ -604,6 +619,7 @@ DocType: Notification,Days Before,Dni pred apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dnevni dogodki naj bi se končali na isti dan. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Uredi... DocType: Workflow State,volume-down,Obseg navzdol +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Dostop ni dovoljen s tega naslova IP 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 @@ -659,6 +675,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Razvijalec apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Ustvarjeno apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} v vrstici {1} ne more imeti URL in podrejene elemente +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Za naslednje tabele mora biti vsaj ena vrstica: {0} DocType: Print Format,Default Print Language,Privzeti jezik tiskanja apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Predniki Of apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} ni mogoče izbrisati @@ -701,6 +718,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,trdi disk DocType: Integration Request,Host,Gostitelj +DocType: Data Import Beta,Import File,Uvozi datoteko apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Stolpec {0} že obstaja. DocType: ToDo,High,Visoka apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nov dogodek @@ -729,8 +747,6 @@ DocType: User,Send Notifications for Email threads,Pošlji obvestila za teme e-p apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Ni v načinu za razvijalce apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Varnostno kopiranje datotek je pripravljeno -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Največje dovoljene točke po množenju točk z multiplikatorjem (Opomba: Za omejitev ni dovoljeno kot 0) DocType: DocField,In Global Search,Globalno iskanje DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,alinea-levo @@ -773,6 +789,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Uporabnik "{0}" že ima vlogo "{1}" DocType: System Settings,Two Factor Authentication method,Dve metodi za avtentifikacijo faktorjev apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najprej nastavite ime in shranite zapis. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Zapisi apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Delijo z {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Odjava DocType: View Log,Reference Name,Referenca Ime @@ -823,6 +840,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Sledi stanju e-pošte DocType: Note,Notify Users On Every Login,Obvesti uporabnike na vsaki Prijava DocType: Note,Notify Users On Every Login,Obvesti uporabnike na vsaki Prijava +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Stolpec {0} se ne more ujemati z nobenim poljem +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} zapisov je uspešno posodobljen. DocType: PayPal Settings,API Password,API geslo apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Vnesite modul python ali izberite vrsto konektorja apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname ni nastavljen za meri Field @@ -851,9 +870,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplicate name {0} {1} -DocType: Email Queue,Retry,Ponovno poskusi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Ponovno poskusi +DocType: Contact Phone,Number,Številka DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Novo sporočilo ste prejeli od: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Vnesite URL za preusmeritev apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -878,7 +899,7 @@ DocType: Notification,View Properties (via Customize Form),Poglejte nepremičnin apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Kliknite datoteko, da jo izberete." DocType: Note Seen By,Note Seen By,Opomba vidijo apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Poskusite uporabiti daljši vzorec tipkovnico z več zavoji -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,leaderboard +,LeaderBoard,leaderboard DocType: DocType,Default Sort Order,Privzeti vrstni red razvrščanja DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Pomoč za e-pošto @@ -913,6 +934,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Sestavi e- apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Države za potek dela (npr Osnutek, Odobren, Preklicano)." DocType: Print Settings,Allow Print for Draft,Dovoli Print za osnutek +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/link_selector.js,Set Quantity,Nastavite Količina apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Predloži ta dokument za potrditev DocType: Contact,Unsubscribed,Odjavljeni @@ -944,6 +966,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organizacijska enota za upo ,Transaction Log Report,Poročilo o dnevniku transakcij DocType: Custom DocPerm,Custom DocPerm,meri DocPerm DocType: Newsletter,Send Unsubscribe Link,Pošlji povezavo za odjavo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Obstaja nekaj povezanih zapisov, ki jih je treba ustvariti, preden lahko uvozimo vašo datoteko. Ali želite samodejno ustvariti naslednje manjkajoče zapise?" DocType: Access Log,Method,Metoda DocType: Report,Script Report,Script Poročilo DocType: OAuth Authorization Code,Scopes,področji @@ -985,6 +1008,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Naložba je uspešno apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Povezani ste s spletom. DocType: Social Login Key,Enable Social Login,Omogoči družabno prijavo +DocType: Data Import Beta,Warnings,Opozorila DocType: Communication,Event,Dogodek apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Na {0}, {1} je napisal:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Ne morete izbrisati standardne polje. Lahko ga skrijete, če želite" @@ -1040,6 +1064,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Vstavite DocType: Kanban Board Column,Blue,Modra apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Vse prilagoditve bodo odstranjeni. Prosim potrdite. DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Izvozi napačne vrstice apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Ime skupine ne sme biti prazno. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Nadaljnje vozlišča lahko ustvari samo na podlagi tipa vozlišča "skupina" DocType: SMS Parameter,Header,Glava @@ -1084,7 +1109,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,Nastavitve SMTP za odho apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,izberi DocType: Data Export,Filter List,Seznam filtrov DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Vaše geslo je bilo posodobljeno. Tukaj je novo geslo 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 @@ -1093,7 +1117,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Uporabniško ime DocType: Communication,Sent,Pošlje DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,Uprava DocType: User,Simultaneous Sessions,Simultano seje DocType: Social Login Key,Client Credentials,Client akreditivi @@ -1125,7 +1148,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Posodob apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Master DocType: DocType,User Cannot Create,Uporabnik ne more ustvariti apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Uspešno končano -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Mapa {0} ne obstaja apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dostop Dropbox je odobril! DocType: Customize Form,Enter Form Type,Vnesite Form Type DocType: Google Drive,Authorize Google Drive Access,Pooblastite dostop do Google Drive @@ -1133,7 +1155,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Ni zapisov označeni. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Odstrani polje apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Niste povezani z internetom. Poskusi se enkrat. -DocType: User,Send Password Update Notification,Pošlji geslo Update Notification apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Dopuščanje DOCTYPE, DOCTYPE. Bodi previden!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Prilagojene Formati za tiskanje, e-pošte" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Vsota {0} @@ -1219,6 +1240,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Napačna koda za pre apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Integracija stikov je onemogočena. DocType: Assignment Rule,Description,Opis DocType: Print Settings,Repeat Header and Footer in PDF,Ponovite Glava in noga v PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Neuspeh DocType: Address Template,Is Default,Je Privzeto DocType: Data Migration Connector,Connector Type,Vrsta priključka apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Stolpec Ime ne more biti prazno @@ -1231,6 +1253,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Pojdite na stran {0} DocType: LDAP Settings,Password for Base DN,Geslo za osnovno DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabela Polje 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/model/document.py,Action Failed,Dejanje ni uspelo apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,za člane @@ -1284,6 +1307,7 @@ DocType: Print Settings,Enable Raw Printing,Omogoči surovo tiskanje DocType: Website Route Redirect,Source,Vir apps/frappe/frappe/templates/includes/list/filters.html,clear,Jasno apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Končana +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavitev> Uporabnik DocType: Prepared Report,Filter Values,Vrednosti filtrov DocType: Communication,User Tags,Uporabniške Tags DocType: Data Migration Run,Fail,Ne uspe @@ -1340,6 +1364,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Sled ,Activity,Dejavnost DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Pomoč: Če želite povezati z drugim zapisom v sistemu, uporabite ""#Obrazec/Opomba/[Naziv opombe]"" kot povezavo URL. (ne uporabljajte ""http://"")" DocType: User Permission,Allow,Dovoli +DocType: Data Import Beta,Update Existing Records,Posodobiti obstoječe zapise apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Oglejmo se izognili večkratnim besede in znake DocType: Energy Point Rule,Energy Point Rule,Pravilo energijske točke DocType: Communication,Delayed,Zapoznelo @@ -1352,9 +1377,7 @@ DocType: Milestone,Track Field,Sledilno polje DocType: Notification,Set Property After Alert,Nastavite Nepremičnine Po Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Dodaj polj na obrazcih. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Izgleda, da je nekaj narobe s konfiguracijo Paypal te spletne strani." -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/sidebar/review.js,Add Review,Dodaj pregled -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Velikost pisave (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Iz Prilagoditve obrazca je dovoljeno prilagajanje samo standardnih DocTypes. DocType: Email Account,Sendgrid,Sendgrid @@ -1391,6 +1414,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,"Žal! Ne, ne moreš brisati samodejno ustvarjena komentarje" DocType: Google Settings,Used For Google Maps Integration.,Uporablja se za integracijo Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referenčna DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Nobenih zapisov ne bomo izvozili DocType: User,System User,Sistem Uporabnik DocType: Report,Is Standard,Je Standard DocType: Desktop Icon,_report,_report @@ -1406,6 +1430,7 @@ DocType: Workflow State,minus-sign,minus-znak apps/frappe/frappe/public/js/frappe/request.js,Not Found,Ni najdeno apps/frappe/frappe/www/printview.py,No {0} permission,Ne {0} dovoljenje apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izvoz meri Dovoljenja +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Ni elementov. DocType: Data Export,Fields Multicheck,Polja za večkratno preverjanje DocType: Activity Log,Login,Vpiši se DocType: Web Form,Payments,Plačila @@ -1466,8 +1491,9 @@ DocType: Address,Postal,Postal DocType: Email Account,Default Incoming,Privzeto Dohodni DocType: Workflow State,repeat,Ponavljanje DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Vrednost mora biti ena od {0} DocType: Role,"If disabled, this role will be removed from all users.","Če je onemogočeno, bo to vlogo je treba odstraniti iz vseh uporabnikov." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Pojdite na {0} Seznam +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Pojdite na {0} Seznam 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" @@ -1481,6 +1507,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Lokalno ime polja DocType: DocType,Track Changes,Sledenje spremembam DocType: Workflow State,Check,Check DocType: Chat Profile,Offline,Offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Uvoženo {0} DocType: User,API Key,ključ API DocType: Email Account,Send unsubscribe message in email,Pošlji odjavo sporočilo v e-pošto apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Uredi naslov @@ -1507,11 +1534,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} je že dodeljena privzeta vrednost za {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                              No results found for '

                                                                                              ,

                                                                                              Ni rezultatov za '

                                                                                              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 @@ -1532,8 +1559,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ni dovoljeno za {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 ni veljaven format izpisa. Format izpisa mora \ eno od naslednjih %s DocType: Chat Message,Chat,Klepet +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavitev> Uporabniška dovoljenja DocType: LDAP Group Mapping,LDAP Group Mapping,Kartiranje skupine LDAP DocType: Dashboard Chart,Chart Options,Možnosti grafikona +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Brez naslova apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} od {1} do {2} v vrstici {3} DocType: Communication,Expired,Potekel apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Zdi se, da žeton, ki ga uporabljate, ni veljaven!" @@ -1543,6 +1572,7 @@ DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),Max Attachment Size (v MB) apps/frappe/frappe/www/login.html,Have an account? Login,Imate račun? Prijava DocType: Workflow State,arrow-down,Puščica navzdol +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Vrstica {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Uporabnik ne sme izbrisati {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} od {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Zadnjič posodobljeno @@ -1560,6 +1590,7 @@ DocType: Custom Role,Custom Role,Vloga meri apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Domov/Testna mapa 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Vnesite geslo DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Dostop Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obvezno) 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." @@ -1634,6 +1665,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Pokaži na apps/frappe/frappe/desk/form/assign_to.py,New Message,Novo sporočilo DocType: File,Preview HTML,Predogled HTML DocType: Desktop Icon,query-report,poizvedba-poročilo +DocType: Data Import Beta,Template Warnings,Opozorila predloge apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filtri shranjene DocType: DocField,Percent,Odstotek apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Prosim nastavite filtre @@ -1655,6 +1687,7 @@ DocType: Custom Field,Custom,Po meri DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Če je omogočeno, se uporabniki, ki se prijavijo iz omejenega naslova IP, ne bodo pozvani k dvema dejavnikoma faktorja" DocType: Auto Repeat,Get Contacts,Get Contacts apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Prispevkov vložene po {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Preskok brez stolpca brez naslova DocType: Notification,Send alert if date matches this field's value,"Pošlji opozorilo, če datum se ujema z vrednostjo tega področja je" DocType: Workflow,Transitions,Prehodi apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} do {2} @@ -1678,6 +1711,7 @@ DocType: Workflow State,step-backward,korak nazaj apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Prosim, nastavite tipke za dostop Dropbox v vašem mestu config" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Izbriši ta zapis omogoča pošiljanje na ta e-poštni naslov +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Če so nestandardna vrata (npr. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Prilagodite bližnjice apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Samo obvezna polja so potrebni za nove zapise. Lahko izbrišete neobvezujočih stolpce, če želite." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Pokaži več dejavnosti @@ -1785,7 +1819,9 @@ DocType: Note,Seen By Table,Gledano s tabeli apps/frappe/frappe/www/third_party_apps.html,Logged in,Prijavljeni apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Privzeta Pošiljanje in Prejeto DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} posodobljen zapis od {1} uspešno. DocType: Google Drive,Send Email for Successful Backup,Pošlji e-pošto za uspešno varnostno kopiranje +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Planer je neaktiven. Podatkov ni mogoče uvoziti. DocType: Print Settings,Letter,Pismo DocType: DocType,"Naming Options:
                                                                                              1. field:[fieldname] - By Field
                                                                                              2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                              3. Prompt - Prompt user for a name
                                                                                              4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                              5. @@ -1799,6 +1835,7 @@ DocType: GCalendar Account,Next Sync Token,Next Sync Token DocType: Energy Point Settings,Energy Point Settings,Nastavitve energijske točke DocType: Async Task,Succeeded,Naslednik apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Obvezna polja, ki se zahtevajo v {0}" +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                No results found for '

                                                                                                ,

                                                                                                Ni rezultatov za '

                                                                                                apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Ponastavi Dovoljenja za {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Uporabniki in dovoljenja DocType: S3 Backup Settings,S3 Backup Settings,S3 varnostne nastavitve @@ -1869,6 +1906,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,V DocType: Notification,Value Change,Vrednost Spremeni DocType: Google Contacts,Authorize Google Contacts Access,Pooblastite dostop do Google Stikov apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Prikazujejo samo številčna polja iz poročila +DocType: Data Import Beta,Import Type,Vrsta uvoza DocType: Access Log,HTML Page,Stran HTML DocType: Address,Subsidiary,Hčerinska družba apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Poskus povezave s pladnjem QZ ... @@ -1879,7 +1917,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Neveljavna DocType: Custom DocPerm,Write,Napišite apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,"Le administrator dovoli, da ustvarite poizvedbe / script Poročila" apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Posodabljanje -DocType: File,Preview,Predogled +DocType: Data Import Beta,Preview,Predogled apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Polje "vrednost" je obvezna. Prosimo, navedite vrednost, je treba posodobiti" DocType: Customize Form,Use this fieldname to generate title,Uporabite ta fieldname ustvarjati naslov apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Uvoz Email Od @@ -1964,6 +2002,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Brskalnik ne p DocType: Social Login Key,Client URLs,URL-ji strank apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Nekateri podatki manjkajo apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} uspešno ustvarjen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Preskok {0} od {1}, {2}" DocType: Custom DocPerm,Cancel,Prekliči apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Skupno brisanje apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Datoteka {0} ne obstaja @@ -1991,7 +2030,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,Symbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Vrstica # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Potrdite brisanje podatkov -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Novo geslo po e-pošti apps/frappe/frappe/auth.py,Login not allowed at this time,Prijava ni dovoljeno v tem času DocType: Data Migration Run,Current Mapping Action,Trenutna kartografska akcija DocType: Dashboard Chart Source,Source Name,Source Name @@ -2004,6 +2042,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Prip apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Sledi DocType: LDAP Settings,LDAP Email Field,LDAP E-Polje apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Seznam +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Izvozi {0} zapisov apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Že v uporabniški storiti seznam DocType: User Email,Enable Outgoing,Omogoči Odhodni DocType: Address,Fax,Fax @@ -2063,8 +2102,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Natisni dokumente apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skoči na polje DocType: Contact Us Settings,Forward To Email Address,Posreduj na elektronski naslov +DocType: Contact Phone,Is Primary Phone,Je primarni telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Pošljite e-poštno sporočilo {0}, da ga povežete tukaj." DocType: Auto Email Report,Weekdays,Delovni dnevi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} bodo izvoženi zapisi apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Naslov polje mora biti veljaven fieldname DocType: Post Comment,Post Comment,Objavi komentar apps/frappe/frappe/config/core.py,Documents,Dokumenti @@ -2083,7 +2124,9 @@ eval:doc.age>18","To polje se pojavi le, če ima fieldname tu opredeljena vre DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,danes apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,danes +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 privzetega naslova ni bila najdena. Ustvarite novo iz Nastavitve> Tiskanje in trženje blagovne znamke> Predloga naslova. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Ko ste to nastavljeno, bodo uporabniki lahko le dostop do dokumentov (npr. Blog post), kjer je povezava obstaja (npr. Blogger)." +DocType: Data Import Beta,Submit After Import,Pošlji po uvozu DocType: Error Log,Log of Scheduler Errors,Dnevnik Scheduler Napake DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App Client Secret @@ -2102,10 +2145,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Onemogoči članstvo Customer povezava na stran za prijavo apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Dodeljeno / Lastnik DocType: Workflow State,arrow-left,puščica levo +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Izvozi 1 zapis DocType: Workflow State,fullscreen,celozaslonski način DocType: Chat Token,Chat Token,Tok klepeta apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Ustvari grafikon apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Ne uvažaj DocType: Web Page,Center,Center DocType: Notification,Value To Be Set,"Vrednost, ki jo določi" apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Uredi {0} @@ -2125,6 +2170,7 @@ DocType: Print Format,Show Section Headings,Prikaži razdelkov DocType: Bulk Update,Limit,Limit apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},"Prejeli smo zahtevo za izbris {0} podatkov, povezanih z: {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Dodaj nov razdelek +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrirani zapisi apps/frappe/frappe/www/printview.py,No template found at path: {0},Ne predlogo najdete na poti: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ne E-račun DocType: Comment,Cancelled,Preklicana @@ -2212,10 +2258,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Ponastavitev vrst dokumentov globalnega iskanja. ,Lead Conversion Time,Vodilni čas konverzije apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Zgradite poročilo DocType: Note,Notify users with a popup when they log in,"Obvesti uporabnikom ljudstvo, ko se prijavite" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Osnovnih modulov {0} v globalnem iskanju ni mogoče iskati. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Odprite klepet apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ne obstaja, izberite nov cilj za združevanje" DocType: Data Migration Connector,Python Module,Modul Python @@ -2232,8 +2281,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zapri 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavitev> Uporabniška dovoljenja -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Update +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Update DocType: Transaction Log,Transaction Hash,Transakcijski Hash DocType: Error Snapshot,Snapshot View,Posnetek View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Prosimo, shranite Newsletter pred pošiljanjem" @@ -2249,6 +2297,7 @@ DocType: Data Import,In Progress,V delu apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Čakalni vrsti za varnostno kopiranje. To lahko traja nekaj minut do ene ure. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Uporabniško dovoljenje že obstaja +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Preslikava stolpca {0} v polje {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Ogled {0} DocType: User,Hourly,Na uro apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Vnos OAuth Client aplikacijo @@ -2261,7 +2310,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ne more biti "{2}". To bi morala biti ena od "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},pridobljeno z {0} z avtomatskim pravilom {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} ali {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Geslo Update DocType: Workflow State,trash,smeti DocType: System Settings,Older backups will be automatically deleted,Starejši varnostne kopije bodo samodejno izbrisani apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Neveljaven ID ključa za dostop ali tajni dostopni ključ. @@ -2290,6 +2338,7 @@ DocType: Address,Preferred Shipping Address,Želeni Shipping Address apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,S pisemsko glavo apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} ustvaril ta {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Ni dovoljeno za {0}: {1} v vrstici {2}. Polje z omejitvami: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-zahod-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Če je to označeno, bodo vrstice z veljavnimi podatki uvožene in neveljavne vrstice bodo dane v novo datoteko, ki jo boste kasneje uvozili." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokument je mogoče urejati le uporabniki vloge @@ -2316,6 +2365,7 @@ DocType: Custom Field,Is Mandatory Field,Je obvezno polje DocType: User,Website User,Spletna stran Uporabnik apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Nekateri stolpci se lahko med tiskanjem v PDF odsekajo. Poskusite ohraniti število stolpcev pod 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Ne Ene +DocType: Data Import Beta,Don't Send Emails,Ne pošiljajte e-poštnih sporočil DocType: Integration Request,Integration Request Service,Integracija Service Request DocType: Access Log,Access Log,Dnevnik dostopa DocType: Website Script,Script to attach to all web pages.,Script za pritrditev na vseh spletnih straneh. @@ -2356,6 +2406,7 @@ DocType: Contact,Passive,Pasivna DocType: Auto Repeat,Accounts Manager,Accounts Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Dodelitev za {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Vaše plačilo je odpovedan. +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/views/reports/report_view.js,Select File Type,Izberite vrsto datoteke apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Poglej vse DocType: Help Article,Knowledge Base Editor,Znanje Osnovna Editor @@ -2388,6 +2439,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Podatki apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Stanje dokumenta apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Zahtevana je odobritev +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Pred uvozom vaše datoteke je treba ustvariti naslednje zapise. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Dovoljenje Code apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Ni dovoljeno uvoziti DocType: Deleted Document,Deleted DocType,izbrisan DOCTYPE @@ -2441,8 +2493,8 @@ DocType: System Settings,System Settings,Sistemske nastavitve DocType: GCalendar Settings,Google API Credentials,Google Credentials za API apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Začetek seje ni uspelo apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ta e-pošta je bila poslana na {0} in kopira na {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},predložil ta dokument {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} leto nazaj DocType: Social Login Key,Provider Name,Ime ponudnika apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Ustvari nov {0} DocType: Contact,Google Contacts,Google Stiki @@ -2450,6 +2502,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar račun DocType: Email Rule,Is Spam,je Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Poročilo {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Odpri {0} +DocType: Data Import Beta,Import Warnings,Uvozna opozorila DocType: OAuth Client,Default Redirect URI,Privzeti Preusmeritev URI DocType: Auto Repeat,Recipients,Prejemniki DocType: System Settings,Choose authentication method to be used by all users,"Izberite način overjanja, ki ga bodo uporabili vsi uporabniki" @@ -2568,6 +2621,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Poročilo je apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook Error DocType: Email Flag Queue,Unread,neprebrano DocType: Bulk Update,Desk,Desk +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Preskok stolpca {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter mora biti zapisa ali seznam (na seznamu) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Napišite SELECT poizvedbo. Opomba rezultat ni Poklicala (vsi podatki se pošljejo naenkrat). DocType: Email Account,Attachment Limit (MB),Attachment Limit (MB) @@ -2582,6 +2636,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Ustvari novo DocType: Workflow State,chevron-down,Chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email ne pošlje na {0} (odjavili / onemogočeno) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Izberite polja za izvoz DocType: Async Task,Traceback,Izslediti DocType: Currency,Smallest Currency Fraction Value,Najmanjša Valuta Frakcija Vrednost apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Priprava poročila @@ -2590,6 +2645,7 @@ DocType: Workflow State,th-list,th-seznam DocType: Web Page,Enable Comments,Omogoči Komentarji apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Opombe DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Omeji uporabnika samo iz tega IP naslova. Multiple IP naslove lahko doda ločite z vejicami. Sprejema tudi delne IP naslove, kot so (111.111.111)" +DocType: Data Import Beta,Import Preview,Uvozi predogled DocType: Communication,From,iz apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Izberite skupino vozlišče prvi. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Poišči {0} v {1} @@ -2689,6 +2745,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,med DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,V čakalni vrsti +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavitev> Prilagodite obrazec DocType: Braintree Settings,Use Sandbox,uporaba Sandbox apps/frappe/frappe/utils/goal.py,This month,Ta mesec apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,New meri Print Format @@ -2704,6 +2761,7 @@ DocType: Session Default,Session Default,Seja privzeto DocType: Chat Room,Last Message,Zadnje sporočilo DocType: OAuth Bearer Token,Access Token,Dostopni žeton DocType: About Us Settings,Org History,Org Zgodovina +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Še približno {0} minut DocType: Auto Repeat,Next Schedule Date,Naslednji datum načrta DocType: Workflow,Workflow Name,Workflow Name DocType: DocShare,Notify by Email,Obvesti po e-pošti @@ -2733,6 +2791,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Avtor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Nadaljevanje pošiljanja apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Ponovno odpre +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Prikaži opozorila apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Nakup Uporabnik DocType: Data Migration Run,Push Failed,Push Failed @@ -2771,6 +2830,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,napred apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nimate dovoljenja za ogled glasila. DocType: User,Interests,Zanima apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Navodila za ponastavitev gesla so bila poslana na vaš email +DocType: Energy Point Rule,Allot Points To Assigned Users,Dodelite točke dodeljenim uporabnikom apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Stopnja 0 je za dovoljenja na ravni dokumenta, \ višjih ravneh za dovoljenja ravni polje." DocType: Contact Email,Is Primary,Je primarna @@ -2794,6 +2854,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,za objavo Key DocType: Stripe Settings,Publishable Key,za objavo Key apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Začnite uvoz +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Izvozna vrsta DocType: Workflow State,circle-arrow-left,Krog-puščico levo DocType: System Settings,Force User to Reset Password,Prisilite uporabnika k ponastavitvi gesla apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Če želite dobiti posodobljeno poročilo, kliknite {0}." @@ -2806,13 +2867,16 @@ DocType: Contact,Middle Name,Srednje ime DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py,Name not set via Prompt,Ime ni nastavljena prek Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-pošta Prejeto +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Posodobitev {0} od {1}, {2}" DocType: Auto Email Report,Filters Display,filtri Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Za spremembo mora biti prisotno polje "spremenjeno od". +DocType: Contact,Numbers,Številke apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} cenil je vaše delo {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Shranite filtre DocType: Address,Plant,Rastlina apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odgovori vsem DocType: DocType,Setup,Nastavitve +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Vsi zapisi DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-poštni naslov, katerega Google Stike naj se sinhronizira." DocType: Email Account,Initial Sync Count,Začetno Sync Štetje DocType: Workflow State,glass,steklo @@ -2837,7 +2901,7 @@ DocType: Workflow State,font,Pisava DocType: DocType,Show Preview Popup,Prikaži predogled Popup apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,To je običajna gesla top-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Prosimo, omogočite pojavna okna" -DocType: User,Mobile No,Mobile No +DocType: Contact,Mobile No,Mobile No DocType: Communication,Text Content,Besedilo vsebine DocType: Customize Form Field,Is Custom Field,Je po meri Field DocType: Workflow,"If checked, all other workflows become inactive.","Če je označeno, vsi drugi, delovni procesi postanejo neaktivni." @@ -2883,6 +2947,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Dodaj apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Ime novega Print Format apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Preklopite stransko vrstico DocType: Data Migration Run,Pull Insert,Pull Insert +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Največje dovoljene točke po množenju točk z množiteljsko vrednostjo (Opomba: Če ni omejitve, pustite to polje prazno ali nastavite 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Neveljavna predloga apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Nezakonita poizvedba SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obvezno: DocType: Chat Message,Mentions,Mentions @@ -2897,6 +2964,7 @@ DocType: User Permission,User Permission,Dovoljenje uporabnika apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP ni nameščen apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Prenesete s podatki +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},spremenjene vrednosti za {0} {1} DocType: Workflow State,hand-right,ročno desno DocType: Website Settings,Subdomain,Poddomena DocType: S3 Backup Settings,Region,Regija @@ -2924,10 +2992,12 @@ DocType: Braintree Settings,Public Key,Javni ključ DocType: GSuite Settings,GSuite Settings,GSuite Nastavitve DocType: Address,Links,Povezave DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,"Za vsa e-poštna sporočila, poslana s tem računom, uporabite ime e-poštnega naslova, omenjeno v tem računu." +DocType: Energy Point Rule,Field To Check,Polje za preverjanje apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Stiki - Stikov ni bilo mogoče posodobiti v Googlovem stiku {0}, koda napake {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Izberite vrsto dokumenta. apps/frappe/frappe/model/base_document.py,Value missing for,Vrednost manjka za apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Dodaj Child +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Uvozi napredek DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Če je pogoj izpolnjen, bo uporabnik nagrajen s točkami. npr. doc.status == 'Zaprto'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Objavljenl zapis ni mogoče izbrisati. @@ -2964,6 +3034,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Pooblastite dostop do apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Stran, ki jo iščete, manjka. To bi lahko bilo, ker se je preselil ali pa je tipkarska napaka v povezavi." apps/frappe/frappe/www/404.html,Error Code: {0},Koda napake: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis za uvrstitev stran, v golo besedilo, le nekaj vrstic. (največ 140 znakov)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} so obvezna polja DocType: Workflow,Allow Self Approval,Dovoli samozavest DocType: Event,Event Category,Kategorija dogodka apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3011,8 +3082,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Premakni v DocType: Address,Preferred Billing Address,Želeni plačevanja Naslov apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Preveč piše v enem naročilu. Prosim, pošljite manjše zahteve" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive je konfiguriran. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Vrsta dokumenta {0} se je ponovila. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vrednosti Spremenjeno DocType: Workflow State,arrow-up,arrow-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Za tabelo {0} mora biti vsaj ena vrstica apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Če želite konfigurirati samodejno ponovitev, omogočite "Dovoli samodejno ponovitev" od {0}." DocType: OAuth Bearer Token,Expires In,poteče v DocType: DocField,Allow on Submit,Dovoli na Submit @@ -3099,6 +3172,7 @@ DocType: Custom Field,Options Help,Možnosti Pomoč 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 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 @@ -3116,6 +3190,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Koda za preverjanje DocType: Webhook,Webhook Request,Zahteva spletnega kitaro apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Ni uspelo: {0} do {1}: {2} DocType: Data Migration Mapping,Mapping Type,Vrsta mapiranja +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Izberite Obvezno apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Brskanje apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Ni potrebe za simbolov, številk ali velikimi črkami." DocType: DocField,Currency,Valuta @@ -3146,11 +3221,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Pismo na podlagi apps/frappe/frappe/utils/oauth.py,Token is missing,Žeton manjka apps/frappe/frappe/www/update-password.html,Set Password,Nastavi geslo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} zapisov uspešno uvoženih. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Opomba: Sprememba imena stran bo prekinil prejšnji naslov na tej strani. apps/frappe/frappe/utils/file_manager.py,Removed {0},Odstranjeno {0} DocType: SMS Settings,SMS Settings,Nastavitve SMS DocType: Company History,Highlight,Označi DocType: Dashboard Chart,Sum,Vsota +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,prek uvoza podatkov DocType: OAuth Provider Settings,Force,Force apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Nazadnje sinhronizirano {0} DocType: DocField,Fold,Zložite @@ -3187,6 +3264,7 @@ DocType: Workflow State,Home,Domov DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Uporabnik se lahko prijavite z uporabo e-poštnega naslova ali uporabniškega imena DocType: Workflow State,question-sign,Vprašanje-znak +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} je onemogočen apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Polje »pot« je obvezno za spletne oglede apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Vstavi stolpec pred {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Uporabnik iz tega polja bo prejel točke @@ -3331,6 +3409,7 @@ DocType: GSuite Settings,Allow GSuite access,Dovoli GSuite dostop DocType: DocType,DESC,DESC DocType: DocType,Naming,Poimenovanje apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Izberi vse +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Stolpec {0} apps/frappe/frappe/config/customization.py,Custom Translations,meri Prevodi apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,napredek apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,po vlogi @@ -3373,11 +3452,13 @@ DocType: Stripe Settings,Stripe Settings,Nastavitve trak DocType: Stripe Settings,Stripe Settings,Nastavitve trak DocType: Data Migration Mapping,Data Migration Mapping,Mapiranje migracij podatkov DocType: Auto Email Report,Period,Obdobje +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Še približno {0} minuta apps/frappe/frappe/www/login.py,Invalid Login Token,Neveljavna prijava Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Zavrzi apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,pred 1 uro DocType: Website Settings,Home Page,Domača stran DocType: Error Snapshot,Parent Error Snapshot,Parent Napaka Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Preslikajte stolpce od {0} do polj na {1} DocType: Access Log,Filters,Filtri DocType: Workflow State,share-alt,Delež-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Čakalna vrsta mora biti eden od {0} @@ -3397,6 +3478,7 @@ DocType: Calendar View,Start Date Field,Polje za začetno datum DocType: Role,Role Name,Vloga Name apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Stikalo Za Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script ali Query poročil +DocType: Contact Phone,Is Primary Mobile,Je primarni mobilni telefon DocType: Workflow Document State,Workflow Document State,Workflow država Document apps/frappe/frappe/public/js/frappe/request.js,File too big,Datoteka je prevelika apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-poštni račun dodal večkrat @@ -3442,6 +3524,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Nastavitve strani apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Shranjevanje ... apps/frappe/frappe/www/update-password.html,Invalid Password,Neveljavno geslo +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} uspešno uvožen zapis od {1}. DocType: Contact,Purchase Master Manager,Nakup Master Manager apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,"Kliknite ikono zaklepanja, če želite preklopiti javno / zasebno" DocType: Module Def,Module Name,Ime modula @@ -3476,6 +3559,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,"Nekatere funkcije morda ne bodo delovale v brskalniku. Prosimo, posodobite svoj brskalnik na najnovejšo različico." apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,"Nekatere funkcije morda ne bodo delovale v brskalniku. Prosimo, posodobite svoj brskalnik na najnovejšo različico." apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Ne vem, vprašajte "pomoč"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},preklical ta dokument {0} DocType: DocType,Comments and Communications will be associated with this linked document,Pripombe in komunikacije so povezane s tem povezanega dokumenta apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,krepko @@ -3494,6 +3578,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Dodaj / Uprav DocType: Comment,Published,Objavljeno apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Hvala za vaše e-pošte DocType: DocField,Small Text,Mala Besedilo +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Številke {0} ni mogoče nastaviti kot primarno tako za telefon kot za mobilno št. DocType: Workflow,Allow approval for creator of the document,Dovoli dovoljenje za ustvarjalca dokumenta apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Shrani poročilo DocType: Webhook,on_cancel,on_cancel @@ -3551,6 +3636,7 @@ DocType: Print Settings,PDF Settings,Nastavitve PDF DocType: Kanban Board Column,Column Name,Stolpec Name DocType: Language,Based On,Temelji na DocType: Email Account,"For more information, click here.","Za več informacij kliknite tukaj ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Število stolpcev se ne ujema s podatki apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Naredi Privzeto apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Čas izvedbe: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Neveljavna vključuje pot @@ -3641,7 +3727,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Prenesite datoteke {0} DocType: Deleted Document,GCalendar Sync ID,ID za GCalendar Sync DocType: Prepared Report,Report Start Time,Čas začetka poročila -apps/frappe/frappe/config/settings.py,Export Data,Izvoz podatkov +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Izvoz podatkov 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." @@ -3659,7 +3745,6 @@ DocType: Report,Disable Prepared Report,Onemogoči pripravljeno poročilo apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Uporabnik {0} je zahteval brisanje podatkov apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Žeton Nezakonit dostop. Prosim poskusite ponovno apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikacija je bil posodobljen na novo različico, prosimo osvežite to stran" -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 za naslov ni bila najdena. Ustvarite novo iz Nastavitve> Tiskanje in trženje blagovne znamke> Predloga naslova. DocType: Notification,Optional: The alert will be sent if this expression is true,"Neobvezno: opozorilo se pošlje, če je ta izraz res" DocType: Data Migration Plan,Plan Name,Ime načrta DocType: Print Settings,Print with letterhead,Tiskanje z glavo pisma @@ -3700,6 +3785,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Ne morem spremeniti brez preklica apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Celotna stran DocType: DocType,Is Child Table,Je Tabela Child +DocType: Data Import Beta,Template Options,Možnosti predloge apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} mora biti eden od {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} si trenutno ogleduje ta dokument apps/frappe/frappe/config/core.py,Background Email Queue,Ozadje Email Queue @@ -3707,7 +3793,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Geslo Ponastavi DocType: Communication,Opened,Odprt DocType: Workflow State,chevron-left,Chevron-levo DocType: Communication,Sending,Pošiljanje -apps/frappe/frappe/auth.py,Not allowed from this IP Address,"Ni dovoljeno, iz tega IP naslov" DocType: Website Slideshow,This goes above the slideshow.,To gre predvsem na diaprojekcijo. DocType: Contact,Last Name,Priimek DocType: Event,Private,Zasebno @@ -3721,7 +3806,6 @@ DocType: Workflow Action,Workflow Action,Workflow Action apps/frappe/frappe/utils/bot.py,I found these: ,Našel sem jih: DocType: Event,Send an email reminder in the morning,Pošlji opomnik e-zjutraj DocType: Blog Post,Published On,Objavljeno On -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 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} @@ -3742,7 +3826,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,opozorilni znak DocType: Prepared Report,Prepared Report,Pripravljeno poročilo apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Dodajte meta oznake na svoje spletne strani -DocType: Contact,Phone Nos,Številke telefona 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 @@ -3760,6 +3843,7 @@ DocType: Data Migration Connector,Data Migration,Prenos podatkov DocType: User,API Key cannot be regenerated,Ključa API ni mogoče obnoviti apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Nekaj je šlo narobe DocType: System Settings,Number Format,Oblika številk +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} zapis je bil uspešno uvožen. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Povzetek DocType: Event,Event Participants,Udeleženci prireditve DocType: Auto Repeat,Frequency,frekvenca @@ -3767,7 +3851,7 @@ DocType: Custom Field,Insert After,Vstavite Po DocType: Event,Sync with Google Calendar,Sinhronizacija z Google Koledarjem DocType: Access Log,Report Name,Ime poročila DocType: Desktop Icon,Reverse Icon Color,Povratne barvo ikone -DocType: Notification,Save,Shrani +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Shrani apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Naslednji načrtovani datum apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Dodelite tistemu, ki ima najmanj nalog" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Oddelek Postavka @@ -3790,11 +3874,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavitev> Prilagodite obrazec 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 DocType: Desktop Icon,Category,Kategorija +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Vrednost {0} manjka za {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Dodajanje stikov apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Pokrajina apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Razširitve Client stran skript Javascript @@ -3818,6 +3902,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Posodobitev energijske točke apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Izberite drug način plačila. PayPal ne podpira transakcije v valuti, "{0}"" DocType: Chat Message,Room Type,Tip sobe +DocType: Data Import Beta,Import Log Preview,Uvozi predogled dnevnika apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Iskanje polje {0} ni veljavna apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,naložena datoteka DocType: Workflow State,ok-circle,ok-krog @@ -3886,6 +3971,7 @@ DocType: DocType,Allow Auto Repeat,Dovoli samodejno ponovitev apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ni vrednosti za prikaz DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Predloga za e-pošto +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Posnetek {0} je uspešno posodobljen. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Uporabnik {0} nima dostopa doctype z dovoljenjem za vlogo dokumenta {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Oba ime in geslo potrebno apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Osvežite, da bi dobili najnovejši dokument." diff --git a/frappe/translations/sq.csv b/frappe/translations/sq.csv index beabc522e0..3743d271b9 100644 --- a/frappe/translations/sq.csv +++ b/frappe/translations/sq.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Lirimet e reja {} për aplikacionet në vijim janë të disponueshme apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Ju lutem zgjidhni një terren shumë. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Po ngarkon skedarin e importit ... DocType: Assignment Rule,Last User,Përdoruesi i fundit apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Një detyrë e re, {0}, ka qenë e caktuar për ju nga {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sesioni i parazgjedhur i ruajtur +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Rifreskoni skedarin DocType: Email Queue,Email Queue records.,Të dhënat Email Radhë. DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Mujor DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktivizo hyrëse apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Rrezik -apps/frappe/frappe/www/login.py,Email Address,Email Adresa +DocType: Address,Email Address,Email Adresa DocType: Workflow State,th-large,-të-mëdha DocType: Communication,Unread Notification Sent,Njoftimi palexuar dërguar apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksporti nuk lejohet. Ju duhet {0} rol për eksport. @@ -97,7 +100,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opsionet e kontaktit, si "Sales Query, Mbështetje Query" etj secili në një linjë të re ose të ndara me presje." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Shto një etiketë ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,portret -DocType: Data Migration Run,Insert,Fut +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Fut apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Lejo Google Drive qasje apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Zgjidh {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Ju lutem shkruani URL bazë @@ -117,17 +120,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,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.","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 DocType: Company History,Company History,Historia e kompanisë -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Reset +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Reset DocType: Workflow State,volume-up,Volumi-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks quan kërkesat API në aplikacione web +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Shfaq gjurmimin DocType: DocType,Default Print Format,Gabim Format Print DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Asnjë: Fundi i Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} fushë nuk mund të vendosen si unike në {1}, pasi ka vlera jo-unike ekzistuese" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Llojet dokument +DocType: Global Search Settings,Document Types,Llojet dokument DocType: Address,Jammu and Kashmir,Jammu dhe Kashmir DocType: Workflow,Workflow State Field,Fusha Workflow Shteti -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Konfigurimi> Përdoruesi DocType: Language,Guest,Mysafir DocType: DocType,Title Field,Titulli Fusha DocType: Error Log,Error Log,Error Log @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Përsërit si "abcabcabc" janë vetëm pak më e vështirë të mendoj se "abc" DocType: Notification,Channel,kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Nëse ju mendoni se kjo është e pa autorizuar, ju lutem ndryshoni Administrator fjalëkalimin." +DocType: Data Import Beta,Data Import Beta,Importi i të dhënave Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} është e detyrueshme DocType: Assignment Rule,Assignment Rules,Rregullat e caktimit DocType: Workflow State,eject,nxjerr @@ -161,6 +165,7 @@ DocType: Workflow Action Master,Workflow Action Name,Emri Workflow Veprimit apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE nuk mund të bashkohen DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Nuk është një skedar zip +DocType: Global Search DocType,Global Search DocType,DocType Kërkimi Global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                New {{ doc.doctype }} #{{ doc.name }}
                                                                                                ","Për të shtuar lëndë dinamike, përdorni etiketat jinja si
                                                                                                 New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                " @@ -208,6 +213,7 @@ DocType: SMS Settings,Enter url parameter for message,Shkruani parametër url pe apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Përsëritja automatike e krijuar për këtë dokument apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Shiko raportin në shfletuesin tënd apps/frappe/frappe/config/desk.py,Event and other calendars.,Ngjarje dhe kalendarët të tjera. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 rresht i detyrueshëm) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Të gjitha fushat janë të nevojshme për të paraqesë komentin. DocType: Custom Script,Adds a client custom script to a DocType,Shton një skenar me porosi të klientit në një DocType DocType: Print Settings,Printer Name,Emri i printerit @@ -248,7 +254,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS DocType: Bulk Update,Bulk Update,Update Bulk DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Lejo Guest të Shiko -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Fshij {0} artikuj përgjithmonë? apps/frappe/frappe/utils/oauth.py,Not Allowed,Nuk lejohet @@ -263,6 +268,7 @@ DocType: Data Import,Update records,Përditësoni të dhënat apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Invalid module path,Shtegu i modulit të pavlefshëm DocType: DocField,Display,Ekran DocType: Email Group,Total Subscribers,Totali i regjistruar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Numri i rreshtit apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Nëse një Roli nuk ka qasje në nivelin 0, nivelet më të larta atëherë janë të pakuptimta." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Save As DocType: Comment,Seen,Parë @@ -323,6 +329,7 @@ DocType: Activity Log,Closed,Mbyllur DocType: Blog Settings,Blog Title,Blog Titulli apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,rolet standarde nuk mund të çaktivizohet apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Lloji i bisedës +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kolonat e hartave DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,"nuk mund të përdorni nën-pyetje, në mënyrë nga" @@ -389,6 +396,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Përdoru DocType: System Settings,Currency Precision,Precision monedhë DocType: System Settings,Currency Precision,Precision monedhë apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Një transaksion është bllokuar këtë. Ju lutemi të provoni përsëri në disa sekonda. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Pastroni filtrat DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Bashkëngjitjet nuk mund të lidhen siç duhet me dokumentin e ri DocType: Chat Message Attachment,Attachment,Attachment @@ -430,7 +438,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Fusha e emrit të mesëm LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importimi i {0} nga {1} DocType: GCalendar Account,Allow GCalendar Access,Lejo hyrjen në GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} është një fushë e detyrueshme +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} është një fushë e detyrueshme apps/frappe/frappe/templates/includes/login/login.js,Login token required,Kërkohet shenjë identifikimi apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Rendi Mujor: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Zgjidhni artikuj të listave të shumta @@ -459,6 +467,7 @@ DocType: Domain Settings,Domain Settings,Domain Settings apps/frappe/frappe/email/receive.py,Cannot connect: {0},Nuk mund të lidhet: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Një fjalë në vetvete është e lehtë me mend. apps/frappe/frappe/templates/includes/search_box.html,Search...,Kërko ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Ju lutem, përzgjidhni Company" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Shkrirja është e mundur vetëm në mes Group-për-grupit ose fletë Nyja-për-fletë Nyja apps/frappe/frappe/utils/file_manager.py,Added {0},Shtuar {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Ka të dhëna përputhen. Kërko diçka të re @@ -471,7 +480,6 @@ DocType: Google Settings,OAuth Client ID,ID e Klientit OAuth DocType: Auto Repeat,Subject,Subjekt apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Kthehu tek Desk DocType: Web Form,Amount Based On Field,Shuma bazë On Field -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Përdoruesi është i detyrueshëm për Share DocType: DocField,Hidden,I fshehur DocType: Web Form,Allow Incomplete Forms,Lejo Format jo i plotë @@ -508,6 +516,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} dhe {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Filloni një bisedë. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Gjithmonë shtoni "Draft" Shkon për të printuar dokumente draft apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Gabim në njoftim: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vit më parë DocType: Data Migration Run,Current Mapping Start,Fillimi i hartës aktuale apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email është shënuar si spam DocType: Comment,Website Manager,Website Menaxher @@ -545,6 +554,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Përdorimi i nën-query ose funksioni është i kufizuar apps/frappe/frappe/config/customization.py,Add your own translations,Shto përkthimet tuaj DocType: Country,Country Name,Vendi Emri +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Model bosh DocType: About Us Team Member,About Us Team Member,Rreth Nesh Ekipi Anëtar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Drejtat janë të vendosur mbi Rolet dhe llojet e dokumenteve (të quajtura DocTypes) me vendosjen e të drejtave si lexojnë, shkruajnë, Krijo, Fshij, Paraqit, Cancel Ndreqni, Raporti, importit, eksportit, Print, Email dhe Set User Permissions." DocType: Event,Wednesday,E mërkurë @@ -556,6 +566,7 @@ DocType: Website Settings,Website Theme Image Link,Website Theme Image Link DocType: Web Form,Sidebar Items,Items Sidebar DocType: Web Form,Show as Grid,Trego si Grid apps/frappe/frappe/installer.py,App {0} already installed,App {0} instaluar +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Përdoruesit e caktuar në dokumentin e referencës do të marrin pikë. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Asnjë Preview DocType: Workflow State,exclamation-sign,thirrje-shenjë apps/frappe/frappe/public/js/frappe/form/controls/link.js,empty,bosh @@ -590,6 +601,7 @@ DocType: Notification,Days Before,Ditët e Para apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Ngjarjet ditore duhet të përfundojnë në të njëjtën ditë. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Edit ... DocType: Workflow State,volume-down,vëllimit-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Qasja nuk lejohet nga kjo Adresë IP 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 @@ -687,6 +699,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Mikpritës +DocType: Data Import Beta,Import File,Dosja e importit apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolonë {0} ekzistojnë. DocType: ToDo,High,I lartë apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Ngjarje e re @@ -715,8 +728,6 @@ DocType: User,Send Notifications for Email threads,Dërgoni njoftime për temat apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Jo në modë Zhvilluesish apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Rezervimi i skedarëve është i gatshëm -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Pika maksimale e lejuar pas shumëzimit të pikave me vlerën e shumëzuesit (Shënim: pa vlerë të caktuar kufi si 0) DocType: DocField,In Global Search,Global Kërko DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-majtë @@ -759,6 +770,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',User '{0}' tashmë e ka rolin '{1}' DocType: System Settings,Two Factor Authentication method,Dy metoda Authentication Factor apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Së pari vendosni emrin dhe ruani të dhënat. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 rekorde apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Ndahen me {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Unsubscribe DocType: View Log,Reference Name,Referenca Emri @@ -836,9 +848,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplicate Emri {0} {1} -DocType: Email Queue,Retry,rigjykoj +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,rigjykoj +DocType: Contact Phone,Number,numër DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Ju keni një mesazh të ri nga: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Edit HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Ju lutemi shkruani URL Redirect apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -864,7 +878,7 @@ DocType: Notification,View Properties (via Customize Form),Shiko Prona (nëpërm apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klikoni në një skedar për ta zgjedhur atë. DocType: Note Seen By,Note Seen By,Shënim Seen By apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Përpiquni të përdorni një model më të gjatë tastierë me shumë kthesa -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Fituesit +,LeaderBoard,Fituesit DocType: DocType,Default Sort Order,Renditja e rendit e paracaktuar DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Ndihmë për email @@ -899,6 +913,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Harto Email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Shtetet për workflow (p.sh. Draft, Miratuar, anuluar)." DocType: Print Settings,Allow Print for Draft,Lejo Print për Projekt- +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 ...

                                                                                                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/link_selector.js,Set Quantity,Sasia e përcaktuar apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Submit këtë dokument për të konfirmuar DocType: Contact,Unsubscribed,Unsubscribed @@ -929,6 +944,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Njësia Organizative për P ,Transaction Log Report,Raporti i Transaksionit DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Dërgo Unsubscribe Lidhje +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Ekzistojnë disa regjistrime të lidhura që duhen krijuar para se të mund të importojmë skedarin tuaj. A doni të krijoni regjistrimet e mëposhtme që mungojnë automatikisht? DocType: Access Log,Method,Metodë DocType: Report,Script Report,Script Raport DocType: OAuth Authorization Code,Scopes,Scopes @@ -970,6 +986,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,U ngarkua me sukses apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Je lidhur me internetin. DocType: Social Login Key,Enable Social Login,Aktivizo regjistrimin shoqëror +DocType: Data Import Beta,Warnings,Paralajmërimet DocType: Communication,Event,Ngjarje apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Në {0}, {1} shkroi:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Nuk mund të fshini fushë standarde. Ju mund të fshehin atë në qoftë se ju doni @@ -1025,6 +1042,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Fut posht DocType: Kanban Board Column,Blue,Blu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Të gjitha Përshtatje do të hiqet. Ju lutem konfirmoni. DocType: Page,Page HTML,Faqe HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Eksportoni rreshtat e gabuar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Emri i grupit nuk mund të jetë i zbrazët. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Nyjet e mëtejshme mund të krijohet vetëm në nyjet e tipit 'Grupit' DocType: SMS Parameter,Header,Arkitra @@ -1070,7 +1088,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,SMTP Parametrat për em apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,zgjidhni një DocType: Data Export,Filter List,Lista e filtrave DocType: Data Export,Excel,shquhem -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Fjalëkalimi juaj është përditësuar. Këtu është fjalëkalimin tuaj të re 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 @@ -1079,7 +1096,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,User ID DocType: Communication,Sent,Dërguar DocType: Address,Kerala,Kerala -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,administratë DocType: User,Simultaneous Sessions,Seancat njëkohshme DocType: Social Login Key,Client Credentials,Kredenciale të klientit @@ -1111,7 +1127,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Përdit apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mjeshtër DocType: DocType,User Cannot Create,Përdoruesi nuk mund të krijoni apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,U krye me sukses -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} nuk ekziston apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Qasje Dropbox është aprovuar! DocType: Customize Form,Enter Form Type,Shkruani Form Lloji DocType: Google Drive,Authorize Google Drive Access,Autorizoni Qasjen e Google Drive @@ -1119,7 +1134,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Nuk ka shënime të etiketuar. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Hiq Fusha apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Ju nuk jeni të lidhur në Internet. Përpiquni pas diku. -DocType: User,Send Password Update Notification,Dërgo Password Update Njoftim apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Lejimi DOCTYPE, DOCTYPE. Të jenë të kujdesshëm!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Formate përshtatur për printim, Email" apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,Përditësuar për versionin e ri @@ -1199,6 +1213,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Kodi i verifikimit i apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrimi i kontakteve të Google është i çaktivizuar. DocType: Assignment Rule,Description,Përshkrim DocType: Print Settings,Repeat Header and Footer in PDF,Përsëriteni Header dhe Footer në PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,dështim DocType: Address Template,Is Default,Është e albumit DocType: Data Migration Connector,Connector Type,Lloji i lidhësit apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Column Emri nuk mund të jetë bosh @@ -1211,6 +1226,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Shko tek {0} Faqja DocType: LDAP Settings,Password for Base DN,Password për Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Tabela Field 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/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 @@ -1263,6 +1279,7 @@ DocType: Print Settings,Enable Raw Printing,Aktivizo shtypjen e papërpunuar DocType: Website Route Redirect,Source,Burim apps/frappe/frappe/templates/includes/list/filters.html,clear,qartë apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,përfunduar +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Konfigurimi> Përdoruesi DocType: Prepared Report,Filter Values,Vlerat e filtrit DocType: Communication,User Tags,User Tags DocType: Data Migration Run,Fail,dështoj @@ -1319,6 +1336,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,ndje ,Activity,Aktivitet DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Ndihmë: Për të lidhur me një tjetër rekord në sistem, përdorni "# Forma / Shënim / [Shënim Emri]" si Link URL. (Nuk e përdorin "http: //")" DocType: User Permission,Allow,lejoj +DocType: Data Import Beta,Update Existing Records,Azhurnoni rekordet ekzistuese apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Le të shmangur fjalë të përsëritura dhe karaktere DocType: Energy Point Rule,Energy Point Rule,Rregulla e pikës së energjisë DocType: Communication,Delayed,I vonuar @@ -1331,9 +1349,7 @@ DocType: Milestone,Track Field,Fusha e pista DocType: Notification,Set Property After Alert,Set pasurisë pas Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Shtoni fushat e formave. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Duket si diçka është e gabuar me konfigurimin Paypal kësaj faqeje. -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 ...

                                                                                                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/sidebar/review.js,Add Review,Shtoni Shqyrtimin -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Madhësia e shkronjave (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Vetëm DocTypes standarde lejohen të personalizohen nga Formulari i Përshtatjes. DocType: Email Account,Sendgrid,Sendgrid @@ -1370,6 +1386,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Na vjen keq! Ju nuk mund të fshini auto-generated komente DocType: Google Settings,Used For Google Maps Integration.,Përdoret për Integrimin e Hartave Google. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DOCTYPE Referenca +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Asnjë rekord nuk do të eksportohet DocType: User,System User,Sistemi i përdoruesit DocType: Report,Is Standard,Është standard DocType: Desktop Icon,_report,_report @@ -1385,6 +1402,7 @@ DocType: Workflow State,minus-sign,minus-shenjë apps/frappe/frappe/public/js/frappe/request.js,Not Found,Not Found apps/frappe/frappe/www/printview.py,No {0} permission,Asnjë {0} leje apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksportit Custom Permissions +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Asnjë artikull nuk u gjet. DocType: Data Export,Fields Multicheck,Fushat Multicheck DocType: Activity Log,Login,Hyrje DocType: Web Form,Payments,Pagesat @@ -1444,7 +1462,7 @@ DocType: Email Account,Default Incoming,Gabim hyrëse DocType: Workflow State,repeat,përsëritje DocType: Website Settings,Banner,Flamur DocType: Role,"If disabled, this role will be removed from all users.","Nëse me aftësi të kufizuara, ky rol do të hiqet nga të gjithë përdoruesit." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Shkoni te {0} Lista +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Shkoni te {0} Lista 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 @@ -1487,7 +1505,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Shtimi i Sistemit Soccer këtij përdoruesi si nuk duhet të jetë atleast një Sistemi Menaxher DocType: Chat Message,URLs,URL DocType: Data Migration Run,Total Pages,Totali i faqeve -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                No results found for '

                                                                                                ,

                                                                                                Nuk u gjet asnjë rezultat për '

                                                                                                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 @@ -1507,8 +1524,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Lejet e Përdoruesit DocType: LDAP Group Mapping,LDAP Group Mapping,Hartimi i grupit LDAP DocType: Dashboard Chart,Chart Options,Opsionet e Grafikut +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Kolona pa titull apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} nga {1} për të {2} në rradhë # {3} DocType: Communication,Expired,Skaduar apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Duket shenjë që po përdorni është e pavlefshme! @@ -1534,6 +1553,7 @@ DocType: Custom Role,Custom Role,Custom roli apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Faqja Kryesore / Test Folder 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Fusni fjalëkalimin tuaj DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Qasja Sekret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Detyrueshëm) 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. @@ -1604,6 +1624,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Shfaq pult apps/frappe/frappe/desk/form/assign_to.py,New Message,Mesazh i ri DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,query-raporti +DocType: Data Import Beta,Template Warnings,Paralajmërimet e shablloneve apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filters ruajtur DocType: DocField,Percent,Përqind apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Ju lutemi të vendosur filtra @@ -1625,6 +1646,7 @@ DocType: Custom Field,Custom,Me porosi DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Nëse aktivizohet, përdoruesit që hyjnë nga adresa IP e kufizuar, nuk do të nxiten për Auth Auth Two Factor" DocType: Auto Repeat,Get Contacts,Merrni kontaktet apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Postimet e ngritur nën {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Kaloni kolonën pa titull DocType: Notification,Send alert if date matches this field's value,Dërgo alarm në qoftë se data ndeshjet vlerën e kësaj fushe për DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} në {2} @@ -1648,6 +1670,7 @@ DocType: Workflow State,step-backward,hap prapa apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Ju lutemi të vendosur çelësat Dropbox akses ne faqen config tuaj apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Fshije këtë rekord për të lejuar dërgimin në këtë adresë e-mail +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Nëse porti jo standard (p.sh. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Përshtatni shkurtoret apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Vetëm Fushat e detyrueshme janë të nevojshme për të dhënat e reja. Ju mund të fshini kolona jo-detyrueshme në qoftë se ju dëshironi. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Trego më shumë aktivitet @@ -1752,6 +1775,7 @@ apps/frappe/frappe/www/third_party_apps.html,Logged in,Regjistruar apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Gabim Dërgimi dhe Inbox DocType: System Settings,OTP App,OTP App DocType: Google Drive,Send Email for Successful Backup,Dërgo Email për Backup Suksesshëm +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Programuesi është joaktiv. Nuk mund të importohen të dhënat. DocType: Print Settings,Letter,Letër DocType: DocType,"Naming Options:
                                                                                                1. field:[fieldname] - By Field
                                                                                                2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                3. Prompt - Prompt user for a name
                                                                                                4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                5. @@ -1765,6 +1789,7 @@ DocType: GCalendar Account,Next Sync Token,Toka e ardhshme e sinkronizimit DocType: Energy Point Settings,Energy Point Settings,Cilësimet e pikës së energjisë DocType: Async Task,Succeeded,Sukses apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Fushat e detyrueshme të kërkuara në {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                  No results found for '

                                                                                                  ,

                                                                                                  Nuk u gjet asnjë rezultat për '

                                                                                                  apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Lejet reset për {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Përdoruesit dhe Lejet DocType: S3 Backup Settings,S3 Backup Settings,S3 Cilësimet e Ruajtjes @@ -1835,6 +1860,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Në DocType: Notification,Value Change,Vlera Ndryshimi DocType: Google Contacts,Authorize Google Contacts Access,Autorizoni Qasjen e Kontakteve të Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Shfaq vetëm fusha Numerike nga Raporti +DocType: Data Import Beta,Import Type,Lloji i importit DocType: Access Log,HTML Page,Faqe HTML DocType: Address,Subsidiary,Ndihmës apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Përpjekja e lidhjes me tabaka QZ ... @@ -1844,7 +1870,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Invalid Ma DocType: Custom DocPerm,Write,Shkruaj apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Vetëm Administrator lejuar për të krijuar Query / script Raportet apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Përditësimi -DocType: File,Preview,Preview +DocType: Data Import Beta,Preview,Preview apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Field "vlera" është e detyrueshme. Ju lutemi specifikoni vlerë të përditësuar DocType: Customize Form,Use this fieldname to generate title,Përdoreni këtë fieldname për të gjeneruar titullin apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Import Email Nga @@ -1929,6 +1955,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser nuk mb DocType: Social Login Key,Client URLs,URL-të e klientit apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Disa informata mungon apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} u krijua me sukses +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Kalimi {0} nga {1}, {2}" DocType: Custom DocPerm,Cancel,Anuloj apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Fshij pjesa më e madhe apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Paraqesë {0} nuk ekziston @@ -1956,7 +1983,6 @@ DocType: GCalendar Account,Session Token,Token e Sesionit DocType: Currency,Symbol,Simbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Konfirmoni fshirjen e të dhënave -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Fjalëkalimi i ri me email apps/frappe/frappe/auth.py,Login not allowed at this time,Hyr nuk lejohet në këtë kohë DocType: Data Migration Run,Current Mapping Action,Veprimi i Hartave aktuale DocType: Dashboard Chart Source,Source Name,burimi Emri @@ -2028,6 +2054,7 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Dokumentet e Printimit apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hidhen në fushë DocType: Contact Us Settings,Forward To Email Address,Forward Për Email Adresa +DocType: Contact Phone,Is Primary Phone,.Shtë telefon primar apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Dërgoni një email në {0} për ta lidhur këtu. DocType: Auto Email Report,Weekdays,gjatë ditëve të javës apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Titulli fushë duhet të jetë një fieldname vlefshme @@ -2048,7 +2075,9 @@ eval:doc.age>18",Kjo fushë do të shfaqet vetëm nëse fieldname përcaktuar DocType: Social Login Key,Office 365,Zyra 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,sot apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,sot +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.,Asnjë model i adresës së paracaktuar nuk u gjet. Ju lutemi krijoni një të re nga Setup> Printimi dhe Markimi> Modeli i Adresave. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Pasi të keni vendosur këtë, përdoruesit do të jetë vetëm dokumente në gjendje qasje (p.sh.. Blog post), ku ekziston lidhja (p.sh.. Blogger)." +DocType: Data Import Beta,Submit After Import,Paraqisni pas importit DocType: Error Log,Log of Scheduler Errors,Identifikohu i Gabimet scheduler DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App Klienti Secret @@ -2066,10 +2095,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Disable lidhje Regjistrohu Customer në faqen Login apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Caktuar në / pronarit DocType: Workflow State,arrow-left,shigjetë majtë +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Eksporti 1 rekord DocType: Workflow State,fullscreen,fullscreen DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Krijoni grafikun apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Mos importo DocType: Web Page,Center,Qendër DocType: Notification,Value To Be Set,Vlera të jetë vendosur apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Ndrysho {0} @@ -2088,6 +2119,7 @@ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under DocType: Print Format,Show Section Headings,Shfaq Neni Titujt DocType: Bulk Update,Limit,limit apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Shto një seksion të ri +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Rekordet e filtruara apps/frappe/frappe/www/printview.py,No template found at path: {0},Nuk template gjendet në rrugën: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,No Email Llogaria DocType: Comment,Cancelled,Anullohen @@ -2172,10 +2204,13 @@ DocType: Communication Link,Communication Link,Lidhje komunikimi apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Invalid Format Output apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},Nuk mund {0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplikoni këtë rregull në qoftë se përdoruesi është pronar +DocType: Global Search Settings,Global Search Settings,Cilësimet e kërkimit global apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Do të jetë ID tuaj login +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Rivendosni llojet e dokumenteve të kërkimit global. ,Lead Conversion Time,Koha e konvertimit të plumbit apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Të ndërtuar raportin DocType: Note,Notify users with a popup when they log in,Të njoftojë përdoruesit me një popup kur hyni +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Modulet kryesore {0} nuk mund të kërkohen në Kërkimin Global. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Biseda e hapur apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nuk ekziston, zgjidhni një objektiv të ri për të bashkojë" DocType: Data Migration Connector,Python Module,Moduli Python @@ -2191,8 +2226,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Afër apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Nuk mund të ndryshojë docstatus nga 0 në 2 DocType: File,Attached To Field,Bashkangjitur në fushë -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Lejet e Përdoruesit -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Update +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Update DocType: Transaction Log,Transaction Hash,Transaksion Hash DocType: Error Snapshot,Snapshot View,Snapshot Shiko apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Ju lutemi ruani Newsletter para se të dërgonte @@ -2219,7 +2253,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,Periodiciteti i ndar DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} nuk mund të jetë "{2}". Ajo duhet të jetë një nga "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} ose {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Fjalëkalimi Update DocType: Workflow State,trash,plehra DocType: System Settings,Older backups will be automatically deleted,backups të vjetra do të fshihen automatikisht apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID-ja e hyrjes së pavlefshme ose çelësi i qasjes sekrete. @@ -2247,6 +2280,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,Asnj DocType: Address,Preferred Shipping Address,Preferuar Transporti Adresa apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Me kokë Letër apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} krijuar kete {1} +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 DocType: S3 Backup Settings,eu-west-1,eu-west-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Nëse kjo është e kontrolluar, rreshta me të dhëna të vlefshme do të importohen dhe rreshtat e pavlefshëm do të hedhen në një skedar të ri për tu importuar më vonë." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumenti është vetëm editable nga përdoruesit e rolit @@ -2273,6 +2307,7 @@ DocType: Custom Field,Is Mandatory Field,Është terren i detyrueshëm DocType: User,Website User,Website i përdoruesit apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Disa kolona mund të prishen kur shtypni në PDF. Mundohuni të mbani numrin e kolonave nën 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Jo barabartë +DocType: Data Import Beta,Don't Send Emails,Mos Dërgoni Email DocType: Integration Request,Integration Request Service,Integrimi Kërkesa Shërbimi DocType: Access Log,Access Log,Regjistri i hyrjes DocType: Website Script,Script to attach to all web pages.,Script për të bashkëngjitni për të gjitha faqet e Internetit. @@ -2313,6 +2348,7 @@ DocType: Contact,Passive,Pasiv DocType: Auto Repeat,Accounts Manager,Llogaritë Menaxher apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Caktimi për {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,pagesa juaj është anuluar. +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/views/reports/report_view.js,Select File Type,Zgjidh Lloji i Skedarit apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Shiko te gjitha DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor @@ -2345,6 +2381,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Të dhëna apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumenti Statusi apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Miratimi i kërkuar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Të dhënat e mëposhtme duhet të krijohen para se të mund të importojmë skedarin tuaj. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Kodi Autorizimi apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Nuk lejohet që të importojë DocType: Deleted Document,Deleted DocType,DOCTYPE fshihen @@ -2400,7 +2437,6 @@ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesioni Fillimi apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesioni Fillimi Dështoi apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ky email është dërguar {0} për të dhe të kopjohet në {1} DocType: Workflow State,th,-të -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vit më parë DocType: Social Login Key,Provider Name,Emri i ofruesit apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Krijo një të ri {0} DocType: Contact,Google Contacts,Kontaktet Google @@ -2408,6 +2444,7 @@ DocType: GCalendar Account,GCalendar Account,Llogari GCalendar DocType: Email Rule,Is Spam,është Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Raporti {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Hapur {0} +DocType: Data Import Beta,Import Warnings,Paralajmërimet e importit DocType: OAuth Client,Default Redirect URI,Default Redirect URI DocType: Auto Repeat,Recipients,Marrësit DocType: System Settings,Choose authentication method to be used by all users,Zgjidh metodën e legalizimit që do të përdoret nga të gjithë përdoruesit @@ -2538,6 +2575,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Krijo ri DocType: Workflow State,chevron-down,Chevron-poshtë apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email mos dërguar për {0} (c'regjistruar / aftësi të kufizuara) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Zgjidhni fushat për eksport DocType: Async Task,Traceback,Gjurmim DocType: Currency,Smallest Currency Fraction Value,Vogël Valuta Vlera Fraksion apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Përgatitja e Raportit @@ -2546,6 +2584,7 @@ DocType: Workflow State,th-list,TH-lista DocType: Web Page,Enable Comments,Aktivizo Komente apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Shënime DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Kufizojë përdoruesit nga kjo adresë IP vetëm. IP adresat të shumta mund të shtohet duke ndarë me presje. Gjithashtu pranon adresat IP të pjesshme si (111.111.111) +DocType: Data Import Beta,Import Preview,Paraprakisht e importit DocType: Communication,From,Nga apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Zgjidh një nyje grupi i parë. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Gjej {0} në {1} @@ -2641,6 +2680,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Ndërmjet DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Queued +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Rregulloje formularin DocType: Braintree Settings,Use Sandbox,Përdorimi Sandbox apps/frappe/frappe/utils/goal.py,This month,Këtë muaj apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Re Format Custom Print @@ -2655,6 +2695,7 @@ DocType: Session Default,Session Default,Sesion i parazgjedhur DocType: Chat Room,Last Message,Mesazhi i fundit DocType: OAuth Bearer Token,Access Token,Qasja Token DocType: About Us Settings,Org History,Historia org +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Mbeten rreth {0} minuta DocType: Auto Repeat,Next Schedule Date,Data e ardhshme e orarit DocType: Workflow,Workflow Name,Workflow Emri DocType: DocShare,Notify by Email,Njoftojë me Email @@ -2684,6 +2725,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,autor apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Resume Dërgimi apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Rihap +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Shfaq paralajmërimet apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Blerje User DocType: Data Migration Run,Push Failed,Push Dështoi @@ -2719,6 +2761,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Kërki apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Nuk ju lejohet të shihni buletinin. DocType: User,Interests,interesat apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Udhëzime Password Reset janë dërguar në email-it tuaj +DocType: Energy Point Rule,Allot Points To Assigned Users,Ndarja e pikave për përdoruesit e caktuar apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Niveli 0 është për lejet e nivelit dokument, \ nivele më të larta për lejet e nivelit fushë." DocType: Contact Email,Is Primary,Primshtë Primar @@ -2741,6 +2784,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Lloji i eksportit DocType: Workflow State,circle-arrow-left,rrethi-shigjetë majtë DocType: System Settings,Force User to Reset Password,Forconi përdoruesin të rivendosni fjalëkalimin apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis cache server nuk running. Ju lutemi te kontaktoni Administrator / mbështetjen e teknologjisë @@ -2754,10 +2798,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,Emri nuk është cakt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox DocType: Auto Email Report,Filters Display,Filters Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",fusha "ndryshuar_from" duhet të jetë e pranishme për të bërë një ndryshim. +DocType: Contact,Numbers,numrat apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Ruani filtrat DocType: Address,Plant,Fabrikë apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Përgjigju All DocType: DocType,Setup,Setup +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Të gjitha rekordet DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adresa e Email-it Kontaktet e të cilit Google duhet të sinkronizohen. DocType: Email Account,Initial Sync Count,Numërimi fillestar Sync DocType: Workflow State,glass,gotë @@ -2782,7 +2828,7 @@ DocType: Workflow State,font,burim DocType: DocType,Show Preview Popup,Shfaq Paraprakisht Paraprakisht apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Kjo është një fjalëkalim top-100 të përbashkët. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Ju lutem aktivizoni pop-ups -DocType: User,Mobile No,Mobile Asnjë +DocType: Contact,Mobile No,Mobile Asnjë DocType: Communication,Text Content,Tekst Content DocType: Customize Form Field,Is Custom Field,Është Custom Field DocType: Workflow,"If checked, all other workflows become inactive.","Nëse kontrollohen, të gjitha menu tjera bëhen joaktive." @@ -2828,6 +2874,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Shtoj apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Emri i formatit të ri Shtyp apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Toggle Sidebar DocType: Data Migration Run,Pull Insert,Tërhiqeni Fut +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Pika maksimale e lejuar pas shumëzimit të pikave me vlerën e shumëzuesit (Shënim: pa asnjë kufij të lënë këtë fushë bosh ose të vendosur 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Model i pavlefshëm apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Query e paligjshme SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,E detyrueshme: DocType: Chat Message,Mentions,përmend @@ -2867,9 +2916,11 @@ DocType: Braintree Settings,Public Key,Çelësi publik DocType: GSuite Settings,GSuite Settings,GSuite Cilësimet DocType: Address,Links,Lidhjet DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Përdor Emrin e Adresës Email të përmendur në këtë Llogari si Emrin e Dërguesit për të gjitha postat elektronike të dërguara duke përdorur këtë Llogari. +DocType: Energy Point Rule,Field To Check,Fusha për të kontrolluar apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Ju lutem zgjidhni llojin e dokumentit. apps/frappe/frappe/model/base_document.py,Value missing for,Vlera e humbur për apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Shto Fëmija +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Përparimi i importit DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Nëse gjendja është e kënaqur, përdoruesi do të shpërblehet me pikë. psh. doc.status == 'Mbyllur'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Rekordi i Dërguar nuk mund të fshihet. @@ -2906,6 +2957,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Autorizoni Qasjen e Ka apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Faqja jeni duke kërkuar për të mungon. Kjo mund të jetë për shkak se ajo është lëvizur ose nuk është një typo në lidhje. apps/frappe/frappe/www/404.html,Error Code: {0},Error Code: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Përshkrim për listim faqe, në tekst të thjeshtë, vetëm një çift të linjave. (max 140 karaktere)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} janë fusha të detyrueshme DocType: Workflow,Allow Self Approval,Lejo Vetë Miratimin DocType: Event,Event Category,Kategoria e ngjarjes apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2953,6 +3005,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Leviz ne DocType: Address,Preferred Billing Address,Preferuar Faturimi Adresa apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Shumë shkruan në një kërkesë. Ju lutem dërgoni kërkesa më të vogla apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive është konfiguruar. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Lloji i dokumentit {0} është përsëritur. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vlerat Ndryshuar DocType: Workflow State,arrow-up,shigjetë-up DocType: OAuth Bearer Token,Expires In,skadon In @@ -3037,6 +3090,7 @@ DocType: Custom Field,Options Help,Options Ndihmë 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 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 @@ -3053,6 +3107,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Kodi i Verifikimit DocType: Webhook,Webhook Request,Kërkesa Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Failed: {0} në {1}: {2} DocType: Data Migration Mapping,Mapping Type,Lloji i hartës +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Zgjidhni detyrueshëm apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Shfletoj apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Nuk ka nevojë për simbole, numra apo shkronja uppercase." DocType: DocField,Currency,Monedhë @@ -3088,6 +3143,7 @@ apps/frappe/frappe/utils/file_manager.py,Removed {0},Removed {0} DocType: SMS Settings,SMS Settings,SMS Cilësimet DocType: Company History,Highlight,Nxjerr në pah DocType: Dashboard Chart,Sum,shumë +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,përmes Importit të të Dhënave DocType: OAuth Provider Settings,Force,forcë 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 @@ -3121,6 +3177,7 @@ DocType: Workflow State,Home,Shtëpi DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Përdoruesi mund të hyjë duke përdorur ID Email ose Emri i Përdoruesit DocType: Workflow State,question-sign,pyetje-shenjë +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} është i paaftë apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Fusha "rruga" është e detyrueshme për shikimet në ueb apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Fut shtyllën përpara {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Përdoruesi nga kjo fushë do të shpërblehet me pikë @@ -3154,6 +3211,7 @@ DocType: Website Settings,Top Bar Items,Items top Bar DocType: Notification,Print Settings,Print Cilësimet DocType: Page,Yes,Po DocType: DocType,Max Attachments,Attachments Max +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Mbeten rreth {0} sekonda DocType: Calendar View,End Date Field,Fusha e Datës së Fundit apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Shkurtesa globale DocType: Desktop Icon,Page,Faqe @@ -3301,6 +3359,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,Dë DocType: Stripe Settings,Stripe Settings,Cilësimet shirit DocType: Data Migration Mapping,Data Migration Mapping,Hartimi i Migrimit të të Dhënave DocType: Auto Email Report,Period,Periudhë +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Mbeten rreth {0} minutë apps/frappe/frappe/www/login.py,Invalid Login Token,Pavlefshme Identifikohu Token apps/frappe/frappe/public/js/frappe/chat.js,Discard,heq dorë nga apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 orë më parë @@ -3325,6 +3384,7 @@ DocType: Calendar View,Start Date Field,Fillimi Data Field DocType: Role,Role Name,Roli Emri apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Switch në tavolinën apps/frappe/frappe/config/core.py,Script or Query reports,Script ose Query raportet +DocType: Contact Phone,Is Primary Mobile,Primshtë Mobile Primar DocType: Workflow Document State,Workflow Document State,Workflow Dokumenti i Shtetit apps/frappe/frappe/public/js/frappe/request.js,File too big,Të paraqesë shumë e madhe apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Llogaria Email shtuar disa herë @@ -3419,6 +3479,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Add / Manage DocType: Comment,Published,Publikuar apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Faleminderit për email-it tuaj DocType: DocField,Small Text,Tekst i vogël +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Numri {0} nuk mund të vendoset si parësor për telefonin, si dhe celularin Nr." DocType: Workflow,Allow approval for creator of the document,Lejo miratimin për krijuesin e dokumentit apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Ruaje Raportin DocType: Webhook,on_cancel,on_cancel @@ -3474,6 +3535,7 @@ DocType: Print Settings,PDF Settings,PDF Settings DocType: Kanban Board Column,Column Name,Kolona Emri DocType: Language,Based On,Bazuar në DocType: Email Account,"For more information, click here.","Për më shumë informacion, klikoni këtu ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Numri i kolonave nuk përputhet me të dhënat apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Bëni Default apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Koha e ekzekutimit: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Invalid përfshijnë shtegun @@ -3561,7 +3623,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You,S apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have atleast one recipient,Buletini duhet të ketë vetëm një marrës DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Raporti i fillimit të kohës -apps/frappe/frappe/config/settings.py,Export Data,Të dhënat e eksportit +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Të dhënat e eksportit 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. @@ -3579,7 +3641,6 @@ DocType: Report,Disable Prepared Report,Ableaktivizoni raportin e përgatitur apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Përdoruesi {0} ka kërkuar fshirjen e të dhënave apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Illegal Access Token. Ju lutemi të provoni përsëri apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Kërkesa është përditësuar në një version të ri, ju lutem rifreskoni këtë faqe" -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.,Asnjë model i adresës së paracaktuar nuk u gjet. Ju lutemi krijoni një të re nga Setup> Printimi dhe Markimi> Modeli i Adresave. DocType: Notification,Optional: The alert will be sent if this expression is true,Fakultativ: vigjilent do të dërgohet në qoftë se kjo shprehje është e vërtetë DocType: Data Migration Plan,Plan Name,Emri i Planit DocType: Print Settings,Print with letterhead,Printo me letër me kokë @@ -3619,6 +3680,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Nuk mund të vendosur të ndryshojë pa Anulo apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Full Faqe DocType: DocType,Is Child Table,Është Tabela e Fëmijëve +DocType: Data Import Beta,Template Options,Opsionet e shablloneve apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} duhet të jetë një nga {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} është duke shfletuar këtë dokument apps/frappe/frappe/config/core.py,Background Email Queue,Historiku Email Radhë @@ -3626,7 +3688,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Password Reset DocType: Communication,Opened,Hapur DocType: Workflow State,chevron-left,Chevron-la DocType: Communication,Sending,Dërgim -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Nuk lejohet nga kjo IP Adresa DocType: Website Slideshow,This goes above the slideshow.,Kjo shkon mbi Slideshow. DocType: Contact,Last Name,Mbiemër DocType: Event,Private,Privat @@ -3640,7 +3701,6 @@ DocType: Workflow Action,Workflow Action,Veprimi Workflow apps/frappe/frappe/utils/bot.py,I found these: ,Kam gjetur këto: DocType: Event,Send an email reminder in the morning,Dërgo një kujtim email në mëngjes DocType: Blog Post,Published On,Publikuar On -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 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} @@ -3661,7 +3721,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,paralajmërim-shenjë DocType: Prepared Report,Prepared Report,Raport i Përgatitur apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Shtoni etiketa meta në faqet tuaja të internetit -DocType: Contact,Phone Nos,Numrat e telefonit 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 @@ -3686,7 +3745,7 @@ DocType: Custom Field,Insert After,Fut Pas DocType: Event,Sync with Google Calendar,Sinkronizo me Kalendarin Google DocType: Access Log,Report Name,Raporti Emri DocType: Desktop Icon,Reverse Icon Color,Reverse Icon Color -DocType: Notification,Save,Ruaj +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Ruaj apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Data e planifikuar e ardhshme apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Cakto atë që ka më së paku detyra apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Seksioni Kreu @@ -3709,7 +3768,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Rregulloje formularin 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 @@ -3737,6 +3795,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Përditësimi i pikës së energjisë apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Ju lutem zgjidhni një tjetër metodë e pagesës. PayPal nuk e mbështet transaksionet në monedhë të '{0}' DocType: Chat Message,Room Type,Tip dhome +DocType: Data Import Beta,Import Log Preview,Paraprakisht e Kontrollit të Regjistrit apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Kërko fushë {0} nuk është e vlefshme apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,skedar i ngarkuar DocType: Workflow State,ok-circle,ok-rrethi @@ -3746,6 +3805,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Sorry! User should have complete ac ,Usage Info,Përdorimi Info apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Show Keyboard Shortcuts,Shfaqni shkurtoret e tastierës apps/frappe/frappe/utils/oauth.py,Invalid Token,Pavlefshme Token +apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive - Could not upload backup - Error {0},Google Drive - Nuk mund të ngarkohet kopje rezervë - Gabimi {0} DocType: Email Account,Email Server,Email Server DocType: Assignment Rule,Document Type,Dokumenti Type DocType: Address,Tax Category,Kategoria e Taksave diff --git a/frappe/translations/sr.csv b/frappe/translations/sr.csv index d144ad5344..361f611c25 100644 --- a/frappe/translations/sr.csv +++ b/frappe/translations/sr.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Доступна су нова {} издања за следеће апликације apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Изаберите поље Количина. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Учитавање датотеке за увоз ... DocType: Assignment Rule,Last User,Последњи корисник apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Нови задатак, {0}, је додељен вам {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Задржане сесије су сачуване +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Учитај датотеку DocType: Email Queue,Email Queue records.,Е-маил Куеуе записа. DocType: Post,Post,пост DocType: Address,Punjab,Пенџаб @@ -44,6 +46,7 @@ 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,Параметар @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Месечно DocType: Address,Uttarakhand,Утаранчал DocType: Email Account,Enable Incoming,Омогући долазни apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Опасност -apps/frappe/frappe/www/login.py,Email Address,Е-маил адреса +DocType: Address,Email Address,Е-маил адреса DocType: Workflow State,th-large,тх-велики DocType: Communication,Unread Notification Sent,Унреад Обавештење Сент apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Экспорт не допускается. Вам нужно {0} роль для экспорта . @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Модер DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Контакт опције, као што су "Куери продаје, Подршка упиту" итд сваки на новој линији или раздвојене зарезима." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Додајте ознаку ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет -DocType: Data Migration Run,Insert,Инсерт +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Инсерт apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Дозволи Гоогле Дриве Аццесс apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Изаберите {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Молимо унесите основни УРЛ @@ -119,17 +122,17 @@ 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,Конфигуришите тему DocType: Company History,Company History,Историја компаније -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Ресетовати +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Ресетовати DocType: Workflow State,volume-up,звука се apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Вебхоокс који позивају АПИ захтеве у веб апликације +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Прикажи Трацебацк DocType: DocType,Default Print Format,Уобичајено Принт Формат DocType: Workflow State,Tags,ознаке apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ништа: Крај Воркфлов apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} поље не може бити постављен као јединствен у {1}, јер су не-јединствене постојеће вредности" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Врсте докумената +DocType: Global Search Settings,Document Types,Врсте докумената DocType: Address,Jammu and Kashmir,Џаму и Кашмир DocType: Workflow,Workflow State Field,Воркфлов Држава Поље -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Подешавање> Корисник DocType: Language,Guest,Гост DocType: DocType,Title Field,Название поля DocType: Error Log,Error Log,Грешка се @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Понавља као "абцабцабц" су само мало теже погодити него "абц" DocType: Notification,Channel,Канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ако мислите да је ово неовлашћено, молимо вас да промените лозинку администратора." +DocType: Data Import Beta,Data Import Beta,Бета за увоз података apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} является обязательным DocType: Assignment Rule,Assignment Rules,Правила додељивања DocType: Workflow State,eject,избацивати @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Воркфлов Акциј apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,ДОЦТИПЕ не могу да се споје DocType: Web Form Field,Fieldtype,Фиелдтипе apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Не зип фајл +DocType: Global Search DocType,Global Search DocType,Глобал Сеарцх ДоцТипе DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                  New {{ doc.doctype }} #{{ doc.name }}
                                                                                                  ","Да бисте додали динамичку тему, користите јинџинске ознаке
                                                                                                   New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                  " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Доц Евент apps/frappe/frappe/public/js/frappe/utils/user.js,You,Ви DocType: Braintree Settings,Braintree Settings,Браинтрее подешавања +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Направљено је {0} записа успешно. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Сачувај филтер DocType: Print Format,Helvetica,Хелветица apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Не могу да обришем {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Унесите УРЛ па apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Аутоматско понављање креирано за овај документ apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Погледајте извештај у свом прегледачу apps/frappe/frappe/config/desk.py,Event and other calendars.,Догађаја и других календара. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 ред обавезан) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Сва поља су неопходни да доставе коментаре. DocType: Custom Script,Adds a client custom script to a DocType,Додаје прилагођену скрипту клијента у ДоцТипе DocType: Print Settings,Printer Name,Име штампача @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Групно мењање DocType: Workflow State,chevron-up,Цхеврон-уп DocType: DocType,Allow Guest to View,Дозволите Гост то Виев apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} не би требало да буде исто као {1} -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: Webhook,on_change,он_цханге apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Обриши {0} ставке трајно? apps/frappe/frappe/utils/oauth.py,Not Allowed,Нот Алловед @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,дисплей DocType: Email Group,Total Subscribers,Укупно Претплатници apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Топ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Ред Ред Нумбер apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ЕслиРоль не имеет доступа на уровне 0, то более высокие уровни не имеют смысла ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Сачувај као DocType: Comment,Seen,Сеен @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,Пример: DocType: Workflow,Defines workflow states and rules for a document.,Дефинише тока посла државе и правила за документ. DocType: Workflow State,Filter,филтер @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Затворено DocType: Blog Settings,Blog Title,Наслов блога apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Стандардне улоге не може бити искључена apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Тип ћаскања +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Ступци на мапи DocType: Address,Mizoram,Прадеш DocType: Newsletter,Newsletter,Билтен apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,не могу користити под-упит како је @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Додај колону apps/frappe/frappe/www/contact.html,Your email address,Ваша имејл адреса DocType: Desktop Icon,Module,Модул +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Успешно ажурирани {0} записи од {1}. DocType: Notification,Send Alert On,Пошаљи упозорење на DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Прилагођавање налепница, штампање сакрити, итд Уобичајено" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Отпакирање датотека ... @@ -399,6 +409,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Пользователь {0} не может быть удален DocType: System Settings,Currency Precision,Валута Прецизни apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Други трансакција блокира ову. Покушајте поново за неколико секунди. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Избриши филтере DocType: Test Runner,App,Апликација apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Прилози нису могли бити исправно повезани са новим документом DocType: Chat Message Attachment,Attachment,Прилог @@ -424,6 +435,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Невозм apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Гоогле календар - Није могуће ажурирати догађај {0} у Гоогле календару, код грешке {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Потражите или откуцајте команду DocType: Activity Log,Timeline Name,тимелине Име +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Само један {0} може се поставити као примарни. DocType: Email Account,e.g. smtp.gmail.com,нпр смтп.гмаил.цом apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Додај ново правило DocType: Contact,Sales Master Manager,Продаја Мастер менаџер @@ -440,7 +452,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,ЛДАП Поље са средњим именом apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Увоз {0} од {1} DocType: GCalendar Account,Allow GCalendar Access,Дозволи ГЦалендар приступ -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} је обавезно поље +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} је обавезно поље apps/frappe/frappe/templates/includes/login/login.js,Login token required,Потребан је токен токен apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Месечни ранг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Изаберите више ставки са листе @@ -470,6 +482,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Цан нот цонне apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Реч по себи је лако погодити. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Аутоматски задатак није успео: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Претрага... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Молимо изаберите Цомпани apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Слияние возможно только между Группа - в - группе или Leaf узел- листовой узел apps/frappe/frappe/utils/file_manager.py,Added {0},Додато {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Нема одговарајућих евиденција. Тражи нешто ново @@ -482,7 +495,6 @@ DocType: Google Settings,OAuth Client ID,ОАутх ИД клијента DocType: Auto Repeat,Subject,Предмет apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Назад на Деск DocType: Web Form,Amount Based On Field,Износ Басед Он Фиелд -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Поставите подразумевани рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Корисник је обавезан за Подели DocType: DocField,Hidden,сакривен DocType: Web Form,Allow Incomplete Forms,"Дозволи некомплетним, облицима" @@ -519,6 +531,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Започните разговор. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Увек додајте "нацрт" ишао за штампање нацрта докумената apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Грешка у обавештењу: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} пре годину дана DocType: Data Migration Run,Current Mapping Start,Почетак мапирања apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Е-маил је означена као непожељна DocType: Comment,Website Manager,Сајт менаџер @@ -557,6 +570,7 @@ DocType: Workflow State,barcode,баркод apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Употреба под-упита или функције је ограничена apps/frappe/frappe/config/customization.py,Add your own translations,Додајте своје преводе DocType: Country,Country Name,Земља Име +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Празан предложак DocType: About Us Team Member,About Us Team Member,О нама члан тима apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Дозволе су постављени на улога и врсте докумената ( зову ДоцТипес ) постављањем права као што су читање, писање , креирати, брисати , Субмит , Цанцел , измену , Извјештај , Увоз , Извоз , Штампа , е-маил и поставите дозволе корисника ." DocType: Event,Wednesday,Среда @@ -568,6 +582,7 @@ DocType: Website Settings,Website Theme Image Link,Сајт Теме слика DocType: Web Form,Sidebar Items,Sidebar товары DocType: Web Form,Show as Grid,Прикажи као Грид apps/frappe/frappe/installer.py,App {0} already installed,Апп {0} већ инсталиран +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Корисници додијељени референтном документу добит ће бодове. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Нема прегледа DocType: Workflow State,exclamation-sign,узвик-знак apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Неотпаковане датотеке {0} @@ -603,6 +618,7 @@ DocType: Notification,Days Before,Даис Бефоре apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Дневни догађаји би требало да се заврше истог дана. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Уредити... DocType: Workflow State,volume-down,звука доле +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Приступ са ове ИП адресе није дозвољен apps/frappe/frappe/desk/reportview.py,No Tags,Но Тагс DocType: Email Account,Send Notification to,Слање обавештења DocType: DocField,Collapsible,Цоллапсибле @@ -659,6 +675,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Развијач apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Направљено 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,Подразумевани језик штампања apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Предники Оф apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Корневая {0} не может быть удален @@ -701,6 +718,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",таргет = "_бланк" DocType: Workflow State,hdd,хдд DocType: Integration Request,Host,Домаћин +DocType: Data Import Beta,Import File,Увези датотеку apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Колона {0} већ постоји. DocType: ToDo,High,Висок apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Нови догађај @@ -729,8 +747,6 @@ DocType: User,Send Notifications for Email threads,Пошаљи обавеште apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,проф apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не у Девелопер Моде apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Филе бацкуп је спреман -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Максималан број бодова дозвољен након множења бодова са мултипликатором (Напомена: За ограничење постављене вредности као 0) DocType: DocField,In Global Search,У Глобал Сеарцх DocType: System Settings,Brute Force Security,Бруте Форце Сецурити DocType: Workflow State,indent-left,индент-лево @@ -773,6 +789,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Усер '{0}' већ има улогу '{1}' DocType: System Settings,Two Factor Authentication method,Два факторска аутентикацијска метода apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Прво подесите име и сачувајте запис. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Записа apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Заједничка с {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Откажи DocType: View Log,Reference Name,Референтни Име @@ -823,6 +840,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Статус е-поште DocType: Note,Notify Users On Every Login,Обавештава кориснике Он Евери Логин DocType: Note,Notify Users On Every Login,Обавештава кориснике Он Евери Логин +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Ступац {0} се не може подударати ни са једним пољем +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} записи су успешно ажурирани. DocType: PayPal Settings,API Password,АПИ за Лозинка apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Унесите Питхон модул или изаберите тип конектора apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname не установлен настраиваемого поля @@ -851,9 +870,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,Вредност Промењена apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Дупликат име {0} {1} -DocType: Email Queue,Retry,Покушај поново +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Покушај поново +DocType: Contact Phone,Number,Број DocType: Web Form Field,Web Form Field,Веб формулар Поље apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Имате нову поруку од: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Измени ХТМЛ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Унесите УРЛ за преусмеравање apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -879,7 +900,7 @@ DocType: Notification,View Properties (via Customize Form),Погледајте apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Кликните на датотеку да бисте је одабрали. DocType: Note Seen By,Note Seen By,Напомена Сеен би apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Покушајте да користите дуже образац тастатуре са више преокрета -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,банер +,LeaderBoard,банер DocType: DocType,Default Sort Order,Подразумевани редослед сортирања DocType: Address,Rajasthan,Раџастан DocType: Email Template,Email Reply Help,Емаил Репли Хелп @@ -914,6 +935,7 @@ apps/frappe/frappe/utils/data.py,Cent,Цент apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Саставити емаил apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Штаты для рабочего процесса (например, проекты , одобрен , Отменено ) ." DocType: Print Settings,Allow Print for Draft,Дозволити штампање за Нацрт +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/link_selector.js,Set Quantity,Сет Количина apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Достави овај документ да потврди DocType: Contact,Unsubscribed,Отказали @@ -945,6 +967,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Организациона ,Transaction Log Report,Извештај о трансакцији DocType: Custom DocPerm,Custom DocPerm,цустом ДоцПерм DocType: Newsletter,Send Unsubscribe Link,Пошаљи Унсубсцрибе Линк +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Постоји неколико повезаних записа које је потребно креирати пре него што можемо да увежемо вашу датотеку. Да ли желите да направите следеће недостајуће записе аутоматски? DocType: Access Log,Method,Метод DocType: Report,Script Report,Скрипта извештај DocType: OAuth Authorization Code,Scopes,сцопес @@ -986,6 +1009,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Успешно је отпремљено apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Повезани сте на интернет. DocType: Social Login Key,Enable Social Login,Омогући друштвени пријава +DocType: Data Import Beta,Warnings,Упозорења DocType: Communication,Event,Догађај apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","На {0}, {1} је написао:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Не могу да избришем стандардну поље. Можете га сакрити ако желите @@ -1041,6 +1065,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Убац DocType: Kanban Board Column,Blue,Плава apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Сва прилагођавања ће бити уклоњен. Молимо Вас да потврдите. DocType: Page,Page HTML,Страна ХТМЛ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Извези погрешне редове apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Име групе не може бити празно. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Даље чворови могу бити само створена под ' групе' типа чворова DocType: SMS Parameter,Header,Заглавље @@ -1080,13 +1105,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Рекуест тимед оут apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Омогући / онемогући домене DocType: Role Permission for Page and Report,Allow Roles,dozvoli улога +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Уносно је увезено {0} од {1} записа. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Једноставна Питхон Екпрессион, Пример: Статус у („Неважећи“)" DocType: User,Last Active,Задњи пут DocType: Email Account,SMTP Settings for outgoing emails,СМТП подешавања за одлазне поруке е-поште apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,изабери DocType: Data Export,Filter List,Листа филтера DocType: Data Export,Excel,Екцел -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Ваша лозинка је обновљена. Ово је ваша нова лозинка DocType: Email Account,Auto Reply Message,Ауто порука одговора DocType: Data Migration Mapping,Condition,Услов apps/frappe/frappe/utils/data.py,{0} hours ago,Пре {0} сати @@ -1095,7 +1120,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Кориснички ИД DocType: Communication,Sent,Сент DocType: Address,Kerala,керала -DocType: File,Lft,ЛФТ apps/frappe/frappe/public/js/frappe/desk.js,Administration,Администрација DocType: User,Simultaneous Sessions,истовремених сесија DocType: Social Login Key,Client Credentials,Цлиент Сведочанства @@ -1127,7 +1151,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Упд apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Мајстор DocType: DocType,User Cannot Create,Корисник не може створити apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно завршено -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Фолдер {0} не постоји apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Приступ дропбок је одобрен! DocType: Customize Form,Enter Form Type,Унесите Тип Форм DocType: Google Drive,Authorize Google Drive Access,Ауторизирајте приступ Гоогле диску @@ -1135,7 +1158,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Нема података означени. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ремове Фиелд apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Нисте повезани са Интернетом. Поново се потрудите. -DocType: User,Send Password Update Notification,Пошаљи лозинку Упдате Нотифицатион apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Разрешение DocType , DocType . Будьте осторожны !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Прилагођени формати за штампу, Емаил" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Збир {0} @@ -1221,6 +1243,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Погрешни к apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Интеграција Гоогле контаката је онемогућена. DocType: Assignment Rule,Description,Опис DocType: Print Settings,Repeat Header and Footer in PDF,Понављам заглавља и подножја у ПДФ-у +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Неуспех DocType: Address Template,Is Default,Да ли Уобичајено DocType: Data Migration Connector,Connector Type,Тип конектора apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Колона Име не може да буде празна @@ -1233,6 +1256,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Идите на ст DocType: LDAP Settings,Password for Base DN,Лозинка за Басе ДН apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Табела polje 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/model/document.py,Action Failed,Акција није успела apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,за кориснике @@ -1286,6 +1310,7 @@ DocType: Print Settings,Enable Raw Printing,Омогући сирово штам DocType: Website Route Redirect,Source,Извор apps/frappe/frappe/templates/includes/list/filters.html,clear,јасно apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Готов +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Подешавање> Корисник DocType: Prepared Report,Filter Values,Вредности филтера DocType: Communication,User Tags,Корисник Тагс: DocType: Data Migration Run,Fail,Фаил @@ -1342,6 +1367,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Пр ,Activity,Активност DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Помоћ: да се повеже на други запис у систему, користите "# Форма / напомена / [Напомена име]" као УРЛ везе. (Немојте користити "хттп://")" DocType: User Permission,Allow,Дозволи +DocType: Data Import Beta,Update Existing Records,Ажурирање постојећих записа apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Да би избегли понављање речи и знакове DocType: Energy Point Rule,Energy Point Rule,Правило енергетске тачке DocType: Communication,Delayed,Одложен @@ -1354,9 +1380,7 @@ DocType: Milestone,Track Field,Тркаће поље DocType: Notification,Set Property After Alert,Сет имовине након Алерт apps/frappe/frappe/config/customization.py,Add fields to forms.,Добавление полей в формах. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Изгледа да нешто није у реду са Паипал конфигурације овог сајта. -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/sidebar/review.js,Add Review,Додај рецензију -DocType: File,rgt,ргт apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Величина фонта (пк) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Само стандардни ДоцТипес могу се прилагодити из Цустомизе Форм-а. DocType: Email Account,Sendgrid,Сендгрид @@ -1393,6 +1417,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Ф apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Жао ми је! Ви не можете брисати ауто-генерисана коментаре DocType: Google Settings,Used For Google Maps Integration.,Користи се за интеграцију Гоогле мапа. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Референтни ДоцТипе +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Ниједна евиденција неће бити извезена DocType: User,System User,Систем Корисник DocType: Report,Is Standard,Је стандард DocType: Desktop Icon,_report,_извештај @@ -1408,6 +1433,7 @@ DocType: Workflow State,minus-sign,минус-знак apps/frappe/frappe/public/js/frappe/request.js,Not Found,Није пронађен apps/frappe/frappe/www/printview.py,No {0} permission,Нема {0} дозволу apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Извоз Цустом Дозволе +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Нема пронађених предмета. DocType: Data Export,Fields Multicheck,Фиелдс Мултицхецк DocType: Activity Log,Login,Пријава DocType: Web Form,Payments,Исплате @@ -1468,8 +1494,9 @@ DocType: Address,Postal,Поштански DocType: Email Account,Default Incoming,Уобичајено Долазни DocType: Workflow State,repeat,поновити DocType: Website Settings,Banner,Барјак +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Вредност мора бити једна од {0} DocType: Role,"If disabled, this role will be removed from all users.","Ако су искључене, ова улога ће бити уклоњен из свих корисника." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Идите на листу {0} +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,Помоћ на Сеарцх DocType: Milestone,Milestone Tracker,Милестоне Трацкер apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,"Регистрован, али је онемогућен" @@ -1483,6 +1510,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Локално име п DocType: DocType,Track Changes,трацк Промене DocType: Workflow State,Check,Проверити DocType: Chat Profile,Offline,оффлине +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Успешно увежено {0} DocType: User,API Key,АПИ кључ DocType: Email Account,Send unsubscribe message in email,Послати одјаву поруку у е-маил apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Уреди наслов @@ -1509,11 +1537,11 @@ 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)","Окидач са важећим методама као што су "бефоре_инсерт", "афтер_упдате", итд (зависи од ДОЦТИПЕ изабраног)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},измењена вредност {0} {1} 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,Укупно страница apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} је већ доделио задану вредност за {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                  No results found for '

                                                                                                  ,

                                                                                                  Нема резултата за '

                                                                                                  DocType: DocField,Attach Image,Прикрепите изображение DocType: Workflow State,list-alt,лист-алт apps/frappe/frappe/www/update-password.html,Password Updated,Лозинка ажурирано @@ -1534,8 +1562,10 @@ apps/frappe/frappe/permissions.py,Not allowed 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",% С није валидан формат извештаја. Извештај формат треба \ једну од следећих% с DocType: Chat Message,Chat,Ћаскање +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Подешавање> Дозволе корисника DocType: LDAP Group Mapping,LDAP Group Mapping,ЛДАП Гроуп Маппинг DocType: Dashboard Chart,Chart Options,Опције графикона +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Колона без наслова apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} од {1} до {2} равенства # {3} DocType: Communication,Expired,Истекло apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Изгледа да токен који користите је неважећи! @@ -1545,6 +1575,7 @@ DocType: DocType,System,Систем DocType: Web Form,Max Attachment Size (in MB),Мак Прилог Величина (у МБ) apps/frappe/frappe/www/login.html,Have an account? Login,Имате кориснички рачун? Пријава DocType: Workflow State,arrow-down,стрелица надоле +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Ред {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Корисник није дозвољено да избришете {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} од {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Последња измена На @@ -1562,6 +1593,7 @@ DocType: Custom Role,Custom Role,цустом Улога apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Почетна / тест фолдера 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Унесите лозинку DocType: Dropbox Settings,Dropbox Access Secret,Дропбок Приступ тајна +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Обавезно) 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.,Нема података у датотеци. Молимо да поново унесете нову датотеку са подацима. @@ -1636,6 +1668,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Прика apps/frappe/frappe/desk/form/assign_to.py,New Message,Нова порука DocType: File,Preview HTML,Преглед ХТМЛ DocType: Desktop Icon,query-report,упит-извештај +DocType: Data Import Beta,Template Warnings,Упозорења шаблона apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Филтери спасени DocType: DocField,Percent,Проценат apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Молимо поставите филтере @@ -1657,6 +1690,7 @@ DocType: Custom Field,Custom,Обичај DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ако је омогућено, корисници који се пријављују из ограничене ИП адресе неће бити затражени за Тво Фацтор Аутх" DocType: Auto Repeat,Get Contacts,Добијте контакте apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Поруке филед ундер {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Прескакање колоне без наслова DocType: Notification,Send alert if date matches this field's value,Пошаљи упозорење ако датум утакмице вредност овог поља DocType: Workflow,Transitions,Прелази apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} до {2} @@ -1680,6 +1714,7 @@ DocType: Workflow State,step-backward,корак-назад apps/frappe/frappe/utils/boilerplate.py,{app_title},{ app_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Пожалуйста, установите ключи доступа Dropbox на своем сайте конфигурации" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Обриши овај запис како би се омогућило слање на ову емаил адресу +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ако је нестандардни порт (нпр. ПОП3: 995/110, ИМАП: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Прилагодите пречице apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Само обавезна поља су неопходни за нове евиденције. Можете обрисати необавезне колоне ако желите. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Прикажи више активности @@ -1787,7 +1822,9 @@ 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,ОТП Апп +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Успешно ажуриран запис од {0} од {1}. 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,Писмо DocType: DocType,"Naming Options:
                                                                                                  1. field:[fieldname] - By Field
                                                                                                  2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                  3. Prompt - Prompt user for a name
                                                                                                  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                  5. @@ -1801,6 +1838,7 @@ DocType: GCalendar Account,Next Sync Token,Нект Синц Токен DocType: Energy Point Settings,Energy Point Settings,Подешавања енергетске тачке DocType: Async Task,Succeeded,Суццеедед apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Обязательные поля , необходимые в {0}" +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                    No results found for '

                                                                                                    ,

                                                                                                    Нема резултата за '

                                                                                                    apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Сброс разрешений для {0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,Корисници и дозволе DocType: S3 Backup Settings,S3 Backup Settings,С3 Бацкуп Сеттингс @@ -1872,6 +1910,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,у DocType: Notification,Value Change,Вредност Промена DocType: Google Contacts,Authorize Google Contacts Access,Ауторизирајте приступ Гоогле контактима apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Приказују се само Нумеричка поља из Извештаја +DocType: Data Import Beta,Import Type,Врста увоза DocType: Access Log,HTML Page,ХТМЛ страница DocType: Address,Subsidiary,Подружница apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Покушај повезивања са КЗ траи-ом ... @@ -1882,7 +1921,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Невер DocType: Custom DocPerm,Write,Написати apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Само администратор дозвољено да створе Упит / Сцрипт Репортс apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Ажурирање -DocType: File,Preview,предварительный просмотр +DocType: Data Import Beta,Preview,предварительный просмотр apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Поље "вредност" је обавезан. Наведите вредност која се ажурира DocType: Customize Form,Use this fieldname to generate title,Користите ову ФИЕЛДНАМЕ да генерише титулу apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Увоз е-маил Од @@ -1966,6 +2005,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Бровсер DocType: Social Login Key,Client URLs,УРЛ-ови клијента apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Неке информације недостаје apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} успјешно креиран +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Прескакање {0} од {1}, {2}" DocType: Custom DocPerm,Cancel,Отказати apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Скупно брисање apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Филе {0} не постоји @@ -1993,7 +2033,6 @@ DocType: GCalendar Account,Session Token,Ток сесије DocType: Currency,Symbol,Симбол apps/frappe/frappe/model/base_document.py,Row #{0}:,Ред # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Потврдите брисање података -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Новый пароль по электронной почте apps/frappe/frappe/auth.py,Login not allowed at this time,Войти не допускается в это время DocType: Data Migration Run,Current Mapping Action,Актуелна акција мапирања DocType: Dashboard Chart Source,Source Name,извор Име @@ -2006,6 +2045,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,За apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Затим DocType: LDAP Settings,LDAP Email Field,ЛДАП-маил Поље apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Листа +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Извези {0} записе apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Већ корисника да то уради листу DocType: User Email,Enable Outgoing,Омогући Одлазећи DocType: Address,Fax,Фак @@ -2064,8 +2104,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Штампање докумената apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Скочи на поље DocType: Contact Us Settings,Forward To Email Address,Нападач на е-адресу +DocType: Contact Phone,Is Primary Phone,Је примарни телефон apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Пошаљите поруку е-поште {0} да бисте је повезали овде. DocType: Auto Email Report,Weekdays,Радним данима +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} записи ће се извозити apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Название поля должно быть допустимым имя_поля DocType: Post Comment,Post Comment,Постави коментар apps/frappe/frappe/config/core.py,Documents,Документи @@ -2084,7 +2126,9 @@ eval:doc.age>18",Ово поље ће се појавити само ако DocType: Social Login Key,Office 365,Оффице 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Данас apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Данас +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Када сте подесили ово , корисници ће бити у стању само приступ документима ( нпр. блог пост ) где постојивеза ( нпр. Блоггер ) ." +DocType: Data Import Beta,Submit After Import,Пошаљите после увоза DocType: Error Log,Log of Scheduler Errors,Лог од Сцхедулер Грешке DocType: User,Bio,Био DocType: OAuth Client,App Client Secret,Апп Клијент Тајна @@ -2103,10 +2147,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Онемогући Регистрација корисника линк на страницу за пријављивање apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Додељено / Власник DocType: Workflow State,arrow-left,стрелица налево +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Извези 1 запис DocType: Workflow State,fullscreen,фуллсцреен DocType: Chat Token,Chat Token,Цхат Токен apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Креирајте графикон apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,јохн@дое.цом +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не увози DocType: Web Page,Center,Центар DocType: Notification,Value To Be Set,Вредност за подешавање apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Измени {0} @@ -2126,6 +2172,7 @@ DocType: Print Format,Show Section Headings,Схов Наслови DocType: Bulk Update,Limit,лимит apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Примили смо захтев за брисање {0} података повезаних са: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Додајте нови одељак +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Филтрирани записи apps/frappe/frappe/www/printview.py,No template found at path: {0},Не шаблон наћи на путу: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Но е-маил налог DocType: Comment,Cancelled,Отказан @@ -2213,10 +2260,13 @@ 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} 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,Ће бити ваш Логин ИД +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Врсте ресета глобалне претраге докумената. ,Lead Conversion Time,Време конверзије воде apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Буилд Пријави DocType: Note,Notify users with a popup when they log in,Обавештава кориснике са попуп када се пријавите +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Основни модули {0} се не могу претраживати у Глобалној претрази. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Отворите чет apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не существует , выберите новую цель объединить" DocType: Data Migration Connector,Python Module,Питхон Модуле @@ -2233,8 +2283,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Затворити apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,Не могу да променим доцстатус од 0 до 2 DocType: File,Attached To Field,Прикачено на терену -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Подешавање> Дозволе корисника -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Ажурирање +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Ажурирање DocType: Transaction Log,Transaction Hash,Трансацтион Хасх DocType: Error Snapshot,Snapshot View,Снимак Погледај apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Пожалуйста, сохраните бюллетень перед отправкой" @@ -2250,6 +2299,7 @@ DocType: Data Import,In Progress,У току apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Чекању за бацкуп. То може потрајати неколико минута до сат времена. DocType: Error Snapshot,Pyver,Пивер apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Корисничка дозвола већ постоји +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Мапирање колоне {0} у поље {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Прегледати {0} DocType: User,Hourly,По сату apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Регистер ОАутх Цлиент Апп @@ -2262,7 +2312,6 @@ DocType: SMS Settings,SMS Gateway URL,СМС Гатеваи УРЛ адреса apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може бити ""{2}"". Требало би да буде један од ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},стекао {0} аутоматским правилом {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} {1} или -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Лозинка Упдате DocType: Workflow State,trash,отпад DocType: System Settings,Older backups will be automatically deleted,Старији резервне копије ће бити аутоматски обрисан apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Инвалид Аццесс Кеи Кеи или Тајни приступни кључ. @@ -2291,6 +2340,7 @@ DocType: Address,Preferred Shipping Address,Жељени Адреса испор apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Са Леттер главом apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} створио ово {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Није дозвољено за {0}: {1} у Реду {2}. Ограничено поље: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Рачун е-поште није подешавање. Креирајте нови рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил DocType: S3 Backup Settings,eu-west-1,еу-запад-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ако је ово потврђено, редови са важећим подацима ће бити увезени и неважећи редови ће бити депоновани у нову датотеку која ће вам касније бити увезена." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ је само мењати од стране корисника о улози @@ -2317,6 +2367,7 @@ DocType: Custom Field,Is Mandatory Field,Да ли је обавезно пољ DocType: User,Website User,Сајт корисника apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Неке колоне могу бити одсечене приликом штампања у ПДФ. Покушајте да задржите број колона испод 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Нису једнаки +DocType: Data Import Beta,Don't Send Emails,Не шаљите е-пошту DocType: Integration Request,Integration Request Service,Упит сервис интеграција DocType: Access Log,Access Log,Дневник приступа DocType: Website Script,Script to attach to all web pages.,Сцрипт да приложите свим веб страницама. @@ -2357,6 +2408,7 @@ DocType: Contact,Passive,Пасиван DocType: Auto Repeat,Accounts Manager,Рачуни менаџер apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Задатак за {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Ваша уплата је отказана. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Поставите подразумевани рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Избор Филе Типе apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Погледати све DocType: Help Article,Knowledge Base Editor,База знања Уредник @@ -2389,6 +2441,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Подаци apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Документ статус apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Захтева се одобрење +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Следеће записе је потребно креирати пре него што можемо да увежемо вашу датотеку. DocType: OAuth Authorization Code,OAuth Authorization Code,ОАутх Овлашћење код apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Не разрешается импортировать DocType: Deleted Document,Deleted DocType,deleted ДОЦТИПЕ @@ -2443,8 +2496,8 @@ DocType: GCalendar Settings,Google API Credentials,Гоогле АПИ акре apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Сессион Почетак Фаилед apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Сессион Почетак Фаилед apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Овај емаил је послат на {0} и копирају на {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},послао овај документ {0} DocType: Workflow State,th,тх -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} пре годину дана DocType: Social Login Key,Provider Name,Име провајдера apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Креирајте нови {0} DocType: Contact,Google Contacts,Гоогле контакти @@ -2452,6 +2505,7 @@ DocType: GCalendar Account,GCalendar Account,ГЦалендар Аццоунт DocType: Email Rule,Is Spam,је спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Извештај {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Отворено {0} +DocType: Data Import Beta,Import Warnings,Увези упозорења DocType: OAuth Client,Default Redirect URI,Уобичајено Преусмеравање УРИ DocType: Auto Repeat,Recipients,Примаоци DocType: System Settings,Choose authentication method to be used by all users,Изаберите метод аутентификације који ће користити сви корисници @@ -2570,6 +2624,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Извешт apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Слацк Вебхоок грешка DocType: Email Flag Queue,Unread,непрочитан DocType: Bulk Update,Desk,Сто +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Прескакање колоне {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Филтер мора бити тупле или листу (на листи) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Напишите СЕЛЕЦТ упита. Напомена резултат се није звао (сви подаци се шаљу у једном потезу). DocType: Email Account,Attachment Limit (MB),Прилог Лимит (МБ) @@ -2584,6 +2639,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Цреате Нев DocType: Workflow State,chevron-down,Цхеврон-доле apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Емаил није послао {0} (одјавити / онемогућено) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Одаберите поља за извоз DocType: Async Task,Traceback,Трацебацк DocType: Currency,Smallest Currency Fraction Value,Најмањи валута фракција Вредност apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Припрема извештаја @@ -2592,6 +2648,7 @@ DocType: Workflow State,th-list,ог листа DocType: Web Page,Enable Comments,Омогући Коментари apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Белешке DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Ограничите корисника из само ове ИП адресе. Вишеструки ИП адресе може се додати одвајањем са зарезима. Такође прихвата делимичне ИП адресе, као што су (111.111.111)" +DocType: Data Import Beta,Import Preview,Увези преглед DocType: Communication,From,Из apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Изаберите групу чвор прво. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Пронађи {0} у {1} @@ -2691,6 +2748,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,између DocType: Social Login Key,fairlogin,фаирлогин DocType: Async Task,Queued,Куеуед +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Подешавање> Прилагоди образац DocType: Braintree Settings,Use Sandbox,Употреба Песак apps/frappe/frappe/utils/goal.py,This month,Овог месеца apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Нови Прилагођени Принт Формат @@ -2735,6 +2793,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,аутор apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,nastavi слање apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Поново отворити +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Прикажи упозорења apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Ре: {0} DocType: Address,Purchase User,Куповина Корисник DocType: Data Migration Run,Push Failed,Пусх Фаилед @@ -2773,6 +2832,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Нап apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Нисте дозвољени да погледате билтен. DocType: User,Interests,Интереси apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Инструкции Восстановление пароля были отправлены на электронную почту +DocType: Energy Point Rule,Allot Points To Assigned Users,Додијелите бодове додијељеним корисницима apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Ниво 0 је за дозволе на нивоу документа, \ вишим нивоима за дозвола на терену." DocType: Contact Email,Is Primary,Примарно је @@ -2796,6 +2856,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,који се може објавити ključ DocType: Stripe Settings,Publishable Key,који се може објавити ključ apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Започните увоз +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Тип извоза DocType: Workflow State,circle-arrow-left,круг-стрелица налево DocType: System Settings,Force User to Reset Password,Присилите корисника да ресетује лозинку apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Да бисте добили ажурирани извештај, кликните на {0}." @@ -2808,13 +2869,16 @@ DocType: Contact,Middle Name,Средње име DocType: Custom Field,Field Description,Поље Опис apps/frappe/frappe/model/naming.py,Name not set via Prompt,Име није постављен преко линији apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Е-маил Примљене +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Ажурирање {0} од {1}, {2}" DocType: Auto Email Report,Filters Display,Филтери Приказ apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Да би се извршио амандман мора бити присутно поље „измијењено_фром“. +DocType: Contact,Numbers,Бројеви apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ценио је ваш рад на {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Сачувај филтере DocType: Address,Plant,Биљка apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Одговори свима DocType: DocType,Setup,Намештаљка +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Алл Рецордс DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Адреса е-поште чији Гоогле контакти треба да се синхронизују. DocType: Email Account,Initial Sync Count,Иницијална Синхронизација Точка DocType: Workflow State,glass,стакло @@ -2839,7 +2903,7 @@ DocType: Workflow State,font,фонт DocType: DocType,Show Preview Popup,Прикажи Превиев Попуп apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ово је топ-100 Заједничка лозинка. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Молимо омогућите искачуће прозоре -DocType: User,Mobile No,Мобилни Нема +DocType: Contact,Mobile No,Мобилни Нема DocType: Communication,Text Content,tekst Садржај DocType: Customize Form Field,Is Custom Field,Да ли је прилагођено поље DocType: Workflow,"If checked, all other workflows become inactive.","Ако је проверен, сви остали токови постају неактивни." @@ -2885,6 +2949,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,До apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Име новог Принт Формат apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Пребаците бочну траку DocType: Data Migration Run,Pull Insert,Пулл Инсерт +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Максималан број бодова дозвољен након множења бодова са мултипликатором (Напомена: Ако нема ограничења, ово поље не остављајте празно или поставите 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Неважећи предложак apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Незаконити СКЛ упит apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Обавезно: DocType: Chat Message,Mentions,Ментионс @@ -2899,6 +2966,7 @@ DocType: User Permission,User Permission,Корисник Дозвола apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,ЛДАП-Нот Инсталлед apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Довнлоад са подацима +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},измењене вредности за {0} {1} DocType: Workflow State,hand-right,рука-десна DocType: Website Settings,Subdomain,Поддомен DocType: S3 Backup Settings,Region,Регија @@ -2925,10 +2993,12 @@ DocType: Braintree Settings,Public Key,Јавни кључ DocType: GSuite Settings,GSuite Settings,ГСуите Подешавања DocType: Address,Links,Линкови DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Користи име адресе е-поште поменуто на овом налогу као име пошиљатеља за све поруке е-поште послате путем овог рачуна. +DocType: Energy Point Rule,Field To Check,Поље за проверу apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Гоогле контакти - Није могуће ажурирати контакт у Гоогле контактима {0}, код грешке {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Изаберите тип документа. apps/frappe/frappe/model/base_document.py,Value missing for,Вредност недостаје за apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Додај Цхилд +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Увези напредак DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Ако је увјет задовољен, корисник ће бити награђен бодовима. на пример. доц.статус == 'Затворено'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Поставио Рекорд се не може избрисати. @@ -2965,6 +3035,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Ауторизирај apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Страница коју тражите је нестао. Ово би могло бити зато што се помера или постоји грешка у линку. apps/frappe/frappe/www/404.html,Error Code: {0},Грешка код: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Опис за листинг страну, у чисти текст, само пар редова. (Максимално 140 знакова)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} су обавезна поља DocType: Workflow,Allow Self Approval,Дозволи самопоуздање DocType: Event,Event Category,Категорија догађаја apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,Н.Н. лице @@ -3013,8 +3084,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Померити у DocType: Address,Preferred Billing Address,Жељени Адреса за наплату apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Слишком много пишет в одном запросе . Пожалуйста, пришлите меньшие запросы" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Гоогле диск је конфигурисан. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Тип документа {0} је поновљен. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,vrednosti Цхангед DocType: Workflow State,arrow-up,арров-уп +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Требао би бити најмање један ред за {0} таблицу apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Да бисте конфигурирали аутоматско понављање, омогућите „Дозволи аутоматско понављање“ од {0}." DocType: OAuth Bearer Token,Expires In,Истиче DocType: DocField,Allow on Submit,Дозволи на Субмит @@ -3101,6 +3174,7 @@ DocType: Custom Field,Options Help,Опције Помоћ 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 запис 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,Забранити Да домена @@ -3118,6 +3192,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Верификациони ко DocType: Webhook,Webhook Request,Захтев за Вебхоок apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Фаилед: {0} до {1}: {2} DocType: Data Migration Mapping,Mapping Type,Тип мапирања +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Изабери Обавезно apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Потражите apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Нема потребе за симболима, цифара или великим словима." DocType: DocField,Currency,Валута @@ -3148,11 +3223,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Писмо на основу apps/frappe/frappe/utils/oauth.py,Token is missing,Токен недостаје apps/frappe/frappe/www/update-password.html,Set Password,Сет Лозинка +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Уносно је увезено {0} записа. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Напомена: Промена страну Име ће сломити претходну УРЛ на овој страници. apps/frappe/frappe/utils/file_manager.py,Removed {0},Уклоњена {0} DocType: SMS Settings,SMS Settings,СМС подешавања DocType: Company History,Highlight,Истаћи DocType: Dashboard Chart,Sum,Сум +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,преко увоза података DocType: OAuth Provider Settings,Force,сила apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Последња синхронизација {0} DocType: DocField,Fold,Преклопити @@ -3189,6 +3266,7 @@ DocType: Workflow State,Home,дом DocType: OAuth Provider Settings,Auto,ауто DocType: System Settings,User can login using Email id or User Name,Корисник се може пријавити користећи ИД е-поште или Корисничко име DocType: Workflow State,question-sign,питање-знак +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} је онемогућен apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Поље "рута" је обавезно за веб приказ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Убаци колону пре {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Кориснику из овог поља бит ће награђени бодови @@ -3334,6 +3412,7 @@ DocType: GSuite Settings,Allow GSuite access,Дозволи ГСуите при DocType: DocType,DESC,АСЦ DocType: DocType,Naming,Именование apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Изабери све +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Ступац {0} apps/frappe/frappe/config/customization.py,Custom Translations,Цустом Преводи apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,напредак apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,по улози @@ -3381,6 +3460,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,Удео-алт apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Ред треба да буде један од {0} @@ -3411,6 +3491,7 @@ DocType: Calendar View,Start Date Field,Поље почетног датума DocType: Role,Role Name,Улога Име apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Свитцх то Деск apps/frappe/frappe/config/core.py,Script or Query reports,Скрипта или Упит репортс +DocType: Contact Phone,Is Primary Mobile,Је примарна мобилна мрежа DocType: Workflow Document State,Workflow Document State,Воркфлов Документ држава apps/frappe/frappe/public/js/frappe/request.js,File too big,Филе превелика apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Е-маил налог додао више пута @@ -3456,6 +3537,7 @@ DocType: DocField,Float,Пловак DocType: Print Settings,Page Settings,Подешавања странице apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Уштеда... apps/frappe/frappe/www/update-password.html,Invalid Password,invalid пассворд +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Унос успешно је увежен {0} од {1}. DocType: Contact,Purchase Master Manager,Куповина Мастер менаџер apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Кликните на икону закључавања да бисте пребацили јавни / приватни DocType: Module Def,Module Name,Модуле Наме @@ -3490,6 +3572,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Неке од функција неће радити у вашем бровсеру. Молимо Вас да ажурирате свој претраживач на најновију верзију. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Неке од функција неће радити у вашем бровсеру. Молимо Вас да ажурирате свој претраживач на најновију верзију. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Не знам, питај 'помоћ'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},отказао овај документ {0} DocType: DocType,Comments and Communications will be associated with this linked document,Коментари и комуникације ће бити повезана са овим везног документа apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Филтер ... DocType: Workflow State,bold,смео @@ -3508,6 +3591,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Додај / DocType: Comment,Published,Објављен apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Хвала вам на е-поште DocType: DocField,Small Text,Мала Текст +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Број {0} се не може поставити као примарни за Телефон, као ни мобилни бр." DocType: Workflow,Allow approval for creator of the document,Дозволи одобрење за креатора документа apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Сачувај извештај DocType: Webhook,on_cancel,он_цанцел @@ -3565,6 +3649,7 @@ DocType: Print Settings,PDF Settings,ПДФ Подешавања DocType: Kanban Board Column,Column Name,Колона Име DocType: Language,Based On,На Дана DocType: Email Account,"For more information, click here.","За више информација, кликните овде ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Број ступаца не одговара подацима apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Маке Дефаулт apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Време извршења: {0} сек apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Неважећа стаза укључује @@ -3655,7 +3740,7 @@ 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: Deleted Document,GCalendar Sync ID,ГЦалендар Синц ИД DocType: Prepared Report,Report Start Time,Време почетка извештаја -apps/frappe/frappe/config/settings.py,Export Data,Извоз података +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Извоз података 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.,Ово је позадински извештај. Поставите одговарајуће филтере и затим генерирајте нови. @@ -3673,7 +3758,6 @@ DocType: Report,Disable Prepared Report,Онемогући припремљен apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Корисник {0} је затражио брисање података apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,"Илегална приступа. Молим вас, покушајте поново" apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Апликација је ажуриран на нову верзију, молимо Вас да освежите ову страницу" -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.,Није пронађена задана предлошка адресе. Креирајте нову из Подешавање> Штампање и брендирање> Предложак адреса. DocType: Notification,Optional: The alert will be sent if this expression is true,Опционо: Упозорење ће бити послата ако то израз тачан DocType: Data Migration Plan,Plan Name,Име плана DocType: Print Settings,Print with letterhead,Штампа са меморандуму @@ -3714,6 +3798,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : Не удается установить Изменить без Отменить apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Пуна страница DocType: DocType,Is Child Table,Табела је дете +DocType: Data Import Beta,Template Options,Опције шаблона apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} должен быть одним из {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} је тренутно прегледају овај документ apps/frappe/frappe/config/core.py,Background Email Queue,Позадина маил Куеуе @@ -3721,7 +3806,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Пассворд Р DocType: Communication,Opened,Отворен DocType: Workflow State,chevron-left,Цхеврон-лево DocType: Communication,Sending,Слање -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Не допускается из этого IP-адреса DocType: Website Slideshow,This goes above the slideshow.,Ово иде изнад слајдова. DocType: Contact,Last Name,Презиме DocType: Event,Private,Приватан @@ -3735,7 +3819,6 @@ DocType: Workflow Action,Workflow Action,Воркфлов Акција apps/frappe/frappe/utils/bot.py,I found these: ,Нашао сам ово: DocType: Event,Send an email reminder in the morning,Пошаљи е-маил подсетник ујутру DocType: Blog Post,Published On,Објављено Дана -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Рачун е-поште није подешавање. Креирајте нови рачун е-поште из програма Сетуп> Емаил> Аццоунт Емаил 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} @@ -3756,7 +3839,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,Упозорење-знак DocType: Prepared Report,Prepared Report,Припремљени извештај apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Додајте мета тагове на своје веб странице -DocType: Contact,Phone Nos,Број телефона DocType: Workflow State,User,Корисник DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Покажи наслов у прозору прегледача као "префикс - наслов" DocType: Payment Gateway,Gateway Settings,Поставке Гатеваи-а @@ -3774,6 +3856,7 @@ DocType: Data Migration Connector,Data Migration,Миграција подата DocType: User,API Key cannot be regenerated,АПИ кључ се не може регенерисати apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Нешто није у реду DocType: System Settings,Number Format,Број Формат +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} запис је успешно увезен. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Резиме DocType: Event,Event Participants,Учесници догађаја DocType: Auto Repeat,Frequency,Фреквенција @@ -3781,7 +3864,7 @@ DocType: Custom Field,Insert After,Убаците После DocType: Event,Sync with Google Calendar,Синхронизујте са Гоогле календаром DocType: Access Log,Report Name,Име извештаја DocType: Desktop Icon,Reverse Icon Color,Реверсе Ицон Цолор -DocType: Notification,Save,сачувати +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,сачувати apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Следећи заказани датум apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Доделите ономе ко има најмање задатака apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,секцији заглавља @@ -3804,11 +3887,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Подешавање> Прилагоди образац DocType: Google Contacts,Last Sync On,Ласт Синц Он DocType: Deleted Document,Deleted Document,deleted документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Упс! Нешто је пошло наопако DocType: Desktop Icon,Category,Категорија +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Вредност {0} недостаје за {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Додај контакте apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пејзаж apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Клијент скрипт екстензије у Јавасцрипт @@ -3832,6 +3915,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ажурирање енергетске тачке apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Молимо одаберите други начин плаћања. Паипал не подржава трансакције у валути '{0}' DocType: Chat Message,Room Type,Врста собе +DocType: Data Import Beta,Import Log Preview,Увези преглед прегледа apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,поље за претрагу {0} није важећа apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,отпремљена датотека DocType: Workflow State,ok-circle,ок-круг @@ -3900,6 +3984,7 @@ DocType: DocType,Allow Auto Repeat,Дозволи аутоматско пона apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Нема вредности за приказивање DocType: Desktop Icon,_doctype,_доцтипе DocType: Communication,Email Template,Емаил Темплате +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} запис је успешно ажуриран. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Корисник {0} нема приступ документу путем дозволе улоге за документ {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Оба пријављивање и лозинка потребна apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Освежите да би добили најновије документ. diff --git a/frappe/translations/sr_sp.csv b/frappe/translations/sr_sp.csv index 82a1521a7b..8ff6e8d127 100644 --- a/frappe/translations/sr_sp.csv +++ b/frappe/translations/sr_sp.csv @@ -56,7 +56,6 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js,Sorry! You are not permitt DocType: Web Form,Success Message,Poruka o uspjehu apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{1} {0} je kreirao/la ovo. DocType: Chat Profile,Online,Na mreži -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folder {0} ne postoji DocType: Auto Repeat,Subject,Naslov apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Enter folder name,Unesi naziv foldera DocType: Workflow State,Tags,Tagovi @@ -249,7 +248,7 @@ DocType: Activity Log,Full Name,Puno ime apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Edit in full page,Izmijeni u punoj strani apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Trajno otkaži {0} ? apps/frappe/frappe/core/doctype/data_export/exporter.py,Notes:,Bilješke : -DocType: Notification,Save,Sačuvaj +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Sačuvaj apps/frappe/frappe/public/js/frappe/views/file/file_view.js,File Manager,Fajlovi apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py,; not allowed in condition,; није дозвољенa у услову DocType: File,Folder,Folder @@ -261,7 +260,7 @@ apps/frappe/frappe/public/js/frappe/form/grid.js,Add Multiple,Dodaj više 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: Address,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 @@ -297,7 +296,7 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Ša apps/frappe/frappe/public/js/frappe/form/formatters.js,{0} to {1},{0} do {1} DocType: Web Form,Payments,Plaćanja apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zatvori -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Tabla +,LeaderBoard,Tabla apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,Rb DocType: Contact,Purchase Master Manager,Direktor nabavke DocType: User,Last Login,Poslednja prijava @@ -399,7 +398,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Session Expired,Sesija je istekla DocType: Communication,Received,Primljeno DocType: User,Login After,Prijava nakon apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,PDF,PDF -DocType: User,Mobile No,Mobilni br. +DocType: Contact,Mobile No,Mobilni br. apps/frappe/frappe/public/js/frappe/ui/sort_selector.js,Most Used,Najviše korišćeno apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ diff --git a/frappe/translations/sv.csv b/frappe/translations/sv.csv index 6aae31350f..fb86131d93 100644 --- a/frappe/translations/sv.csv +++ b/frappe/translations/sv.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Nya {} utgåvor för följande appar finns tillgängliga apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Välj en beloppsfältet. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Laddar importfil ... DocType: Assignment Rule,Last User,Senaste användaren apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","En ny uppgift, {0}, har tilldelats till dig av {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Sessioninställningar sparade +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Ladda om filen DocType: Email Queue,Email Queue records.,E-post Queue poster. DocType: Post,Post,Inlägg DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Månadsvis DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Aktivera inkommande apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Fara -apps/frappe/frappe/www/login.py,Email Address,E-Postadress +DocType: Address,Email Address,E-Postadress DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Olästa Anmälan Skickade apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Export tillåts inte. Du behöver {0} roll att exportera. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktalternativ, som ""Försäljningsfrågor, Supportfrågor"" etc på en ny rad eller separerade med kommatecken." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Lägg till en tagg ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Porträtt -DocType: Data Migration Run,Insert,Infoga +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Infoga apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Tillåt Google Drive Tillgång apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Välj {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Ange basadressen @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minut se 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 DocType: Company History,Company History,Företagets historia -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Återställa +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Återställa DocType: Workflow State,volume-up,volym upp apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks kallar API-förfrågningar till webbapps +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Visa spårning DocType: DocType,Default Print Format,Standardutskriftsformat DocType: Workflow State,Tags,Tags apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Inget: Slutet av Workflow apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} fält kan inte ställas in som unikt i {1}, eftersom det finns icke-unika befintliga värden" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Dokumenttyper +DocType: Global Search Settings,Document Types,Dokumenttyper DocType: Address,Jammu and Kashmir,Jammu och Kashmir DocType: Workflow,Workflow State Field,Arbetsflöde Statusfält -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Inställning> Användare DocType: Language,Guest,Gäst DocType: DocType,Title Field,Titel Field DocType: Error Log,Error Log,Felloggen @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Upprepningar som "abcabcabc" är endast något svårare att gissa än "abc" DocType: Notification,Channel,kanalisera apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",Om du tror att detta är obehörigt kan du ändra administratörslösenordet. +DocType: Data Import Beta,Data Import Beta,Dataimport Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} är obligatoriskt DocType: Assignment Rule,Assignment Rules,Tilldelningsregler DocType: Workflow State,eject,mata ut @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Arbetsflöde åtgärdsnamn apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType kan inte slås samman DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Inte en zip-fil +DocType: Global Search DocType,Global Search DocType,Global sökning DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                    New {{ doc.doctype }} #{{ doc.name }}
                                                                                                    ","För att lägga till dynamiskt ämne, använd jinja-taggar som
                                                                                                     New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                    " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,Du DocType: Braintree Settings,Braintree Settings,Braintree-inställningar +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Skapade {0} poster framgångsrikt. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Spara filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Kan inte radera {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Ange url parameter för me apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Auto Repeat skapad för detta dokument apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Visa rapport i din webbläsare apps/frappe/frappe/config/desk.py,Event and other calendars.,Event och andra kalendrar. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 rad obligatorisk) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Alla fält är nödvändiga för att skicka in kommentaren. DocType: Custom Script,Adds a client custom script to a DocType,Lägger till ett kundanpassat skript till en DocType DocType: Print Settings,Printer Name,Skrivarnamn @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Bulk Update DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Tillåta gäster att Visa apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} bör inte vara samma som {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Radera {0} objekt permanent? apps/frappe/frappe/utils/oauth.py,Not Allowed,Inte tillåtet @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Visa DocType: Email Group,Total Subscribers,Totalt Medlemmar apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Topp {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Radnummer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Om en roll inte har tillgång på nivå 0, då är högre nivåer är meningslös." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Spara som DocType: Comment,Seen,Sett @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Definierar arbetsflödes status och regler för ett dokument. DocType: Workflow State,Filter,Filtrera @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Stängt DocType: Blog Settings,Blog Title,Bloggrubrik apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standard roller kan inte inaktiveras apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Chatt typ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Kartkolumner DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Nyhetsbrev apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Kan inte använda under fråga i ordning genom @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Lägg till en kolumn apps/frappe/frappe/www/contact.html,Your email address,Din e-postadress DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} poster av {1} har uppdaterats. DocType: Notification,Send Alert On,Skicka Alert On DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Anpassa etikett, Print Hide, Standard etc." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Packa upp filer ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Använda DocType: System Settings,Currency Precision,Valutak precision DocType: System Settings,Currency Precision,Valutak precision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,En annan transaktion blockerar detta. Försök igen om några sekunder. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Rensa filter DocType: Test Runner,App,app apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Bilagorna kunde inte vara korrekt kopplade till det nya dokumentet DocType: Chat Message Attachment,Attachment,Bifogning @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Det går int apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Kalender - kunde inte uppdatera händelse {0} i Google Kalender, felkod {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Sök eller skriver ett kommando DocType: Activity Log,Timeline Name,tidslinje Namn +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Endast en {0} kan ställas in som primär. DocType: Email Account,e.g. smtp.gmail.com,t.ex. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Lägg till en ny regel DocType: Contact,Sales Master Manager,Försäljnings master föreståndaren @@ -441,7 +453,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP Mellannamnfält apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importerar {0} av {1} DocType: GCalendar Account,Allow GCalendar Access,Tillåt GCalendar Access -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} är ett obligatoriskt fält +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} är ett obligatoriskt fält apps/frappe/frappe/templates/includes/login/login.js,Login token required,Logga in token krävs apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Månadsrankning: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Välj flera listobjekt @@ -471,6 +483,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Kan inte ansluta: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Ett ord i sig är lätt att gissa. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Auto tilldelning misslyckades: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Sök... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Välj Företag apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Sammanslagning är endast möjlig mellan grupp till grupp eller huvudnoden till huvudnod apps/frappe/frappe/utils/file_manager.py,Added {0},Tillagd {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Inga matchande poster. Sök något nytt @@ -483,7 +496,6 @@ DocType: Google Settings,OAuth Client ID,OAuth-klient-ID DocType: Auto Repeat,Subject,Ämne apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Tillbaka till skrivbordet DocType: Web Form,Amount Based On Field,Belopp som baseras på Field -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ställ in standard-e-postkonto från Inställning> E-post> E-postkonto apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Användaren är obligatoriskt för Share DocType: DocField,Hidden,Dold DocType: Web Form,Allow Incomplete Forms,Tillåt Ofullständiga Forms @@ -520,6 +532,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} och {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Starta en konversation. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Tillsätt alltid "Utkast" Rubrik för utskrift utkast apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Fel i anmälan: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år sedan DocType: Data Migration Run,Current Mapping Start,Aktuell kartläggning Start apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-post har markerats som skräppost DocType: Comment,Website Manager,Webbplats ägare @@ -558,6 +571,7 @@ DocType: Workflow State,barcode,streckkod apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Användning av underfråga eller funktion är begränsad apps/frappe/frappe/config/customization.py,Add your own translations,Lägg till dina egna översättningar DocType: Country,Country Name,Land Namn +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Tom mall DocType: About Us Team Member,About Us Team Member,Om oss - gruppmedlem apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Behörigheter sätts på Roller och dokumenttyper (som kallas DOCTYPE) genom att ställa in rättigheter som läsa, skriva, skapa, ta bort, in, Avbryt, Ändra, Rapport, import, export, utskrift, e-post och ställa in användarbehörigheter." DocType: Event,Wednesday,Onsdag @@ -569,6 +583,7 @@ DocType: Website Settings,Website Theme Image Link,Webbplatsen Tema bildlänk DocType: Web Form,Sidebar Items,Sidebar artiklar DocType: Web Form,Show as Grid,Visa som rutnät apps/frappe/frappe/installer.py,App {0} already installed,App {0} är redan installerad +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Användare som tilldelas referensdokumentet får poäng. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Ingen förhandsvisning DocType: Workflow State,exclamation-sign,utropstecknet apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Unpackade {0} filer @@ -604,6 +619,7 @@ DocType: Notification,Days Before,Dagar innan apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Dagliga händelser bör avslutas samma dag. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Redigera... DocType: Workflow State,volume-down,Sänk volymen +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Åtkomst är inte tillåten från denna IP-adress 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 @@ -660,6 +676,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Framkallare apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Skapad apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} i rad {1} inte kan ha både URL och underordnade artiklar +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Det bör finnas minst en rad för följande tabeller: {0} DocType: Print Format,Default Print Language,Standardutskriftsspråk apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Förfäder av apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Root {0} kan inte tas bort @@ -702,6 +719,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,Värd +DocType: Data Import Beta,Import File,Importera fil apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolonn {0} redan finns. DocType: ToDo,High,Hög apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Nytt event @@ -730,8 +748,6 @@ DocType: User,Send Notifications for Email threads,Skicka aviseringar för e-pos apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Inte i utvecklarläge apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Filbackup är klar -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Maximala poäng tillåtna efter multiplicering av poäng med multiplikatorvärdet (Obs: För inget gränsvärde som 0) DocType: DocField,In Global Search,I Global Sök DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,indent-vänster @@ -774,6 +790,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Användar {0} "har redan rollen '{1}' DocType: System Settings,Two Factor Authentication method,Tvåfaktorautentiseringsmetod apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Ange först namnet och spara posten. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 poster apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Delad med {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Säga upp DocType: View Log,Reference Name,Referensnamn @@ -824,6 +841,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Spåra e-poststatus DocType: Note,Notify Users On Every Login,Meddela användare på varje inloggning DocType: Note,Notify Users On Every Login,Meddela användare på varje inloggning +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Kan inte matcha kolumn {0} med något fält +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} poster har uppdaterats. DocType: PayPal Settings,API Password,API Lösenord apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Ange pythonmodul eller välj kopplingstyp apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fältnamn inte satt på anpassad fältet @@ -852,9 +871,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplicera namn {0} {1} -DocType: Email Queue,Retry,Försök igen +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Försök igen +DocType: Contact Phone,Number,siffra DocType: Web Form Field,Web Form Field,Web Form Field apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Du har ett nytt meddelande frå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).","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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Redigera HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Vänligen ange omdirigeringsadress apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -880,7 +901,7 @@ DocType: Notification,View Properties (via Customize Form),Se Egenskaper (via An apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Klicka på en fil för att välja den. DocType: Note Seen By,Note Seen By,Note ses av apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Försök att använda en längre tangentbord mönster med fler varv -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,leaderboard +,LeaderBoard,leaderboard DocType: DocType,Default Sort Order,Standard sorteringsordning DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Email Svar Hjälp @@ -915,6 +936,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,komponera e apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Stater för arbetsflöde (t.ex. Utkast, Godkänd, Inställd)." DocType: Print Settings,Allow Print for Draft,Låt ut för Utkast +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/link_selector.js,Set Quantity,Bestämd kvantitet apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Skicka det här dokumentet för att bekräfta DocType: Contact,Unsubscribed,Otecknade @@ -946,6 +968,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Organisationsenhet för anv ,Transaction Log Report,Transaktionsloggrapport DocType: Custom DocPerm,Custom DocPerm,Anpassad DocPerm DocType: Newsletter,Send Unsubscribe Link,Skicka avsägandelänken +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Det finns några länkade poster som måste skapas innan vi kan importera din fil. Vill du skapa följande saknade poster automatiskt? DocType: Access Log,Method,Metod DocType: Report,Script Report,Skript Rapportera DocType: OAuth Authorization Code,Scopes,Scopes @@ -987,6 +1010,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Uppladdad apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Du är ansluten till internet. DocType: Social Login Key,Enable Social Login,Aktivera social inloggning +DocType: Data Import Beta,Warnings,varningar DocType: Communication,Event,Händelse apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",Den {0} {1} skrev: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Det går inte att ta bort standard fält. Du kan dölja den om du vill @@ -1042,6 +1066,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Infoga Ne DocType: Kanban Board Column,Blue,Blå apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Alla anpassningar kommer att tas bort. Vänligen bekräfta. DocType: Page,Page HTML,Page HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Exportera felaktiga rader apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Gruppnamn kan inte vara tomt. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Ytterligare noder kan endast skapas under "grupp" typ noder DocType: SMS Parameter,Header,Header @@ -1081,13 +1106,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Begäran tog för lång apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Aktivera / inaktivera domäner DocType: Role Permission for Page and Report,Allow Roles,Tillåt roller +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Importerade {0} poster från {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Simple Python Expression, Exempel: Status in ("Ogiltigt")" DocType: User,Last Active,Senast aktiv DocType: Email Account,SMTP Settings for outgoing emails,SMTP Inställningar för utgående e-post apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,välj en DocType: Data Export,Filter List,Filterlista DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Ditt lösenord har uppdaterats. Här är ditt nya lösenord 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 @@ -1096,7 +1121,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Användar ID DocType: Communication,Sent,Skickat DocType: Address,Kerala,Kerala -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Administrering DocType: User,Simultaneous Sessions,samtidiga sessioner DocType: Social Login Key,Client Credentials,klient Credentials @@ -1128,7 +1152,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Uppdate apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Ledar- DocType: DocType,User Cannot Create,Användaren kan inte skapa apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Klart -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Mappen {0} inte existerar apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox tillgång godkänd! DocType: Customize Form,Enter Form Type,Ange Formulärtyp DocType: Google Drive,Authorize Google Drive Access,Auktorisera åtkomst till Google Drive @@ -1136,7 +1159,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Inga poster taggade. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Ta bort fält apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Du är inte ansluten till Internet. Försök igen efter en gång. -DocType: User,Send Password Update Notification,Skicka lösenord Update Anmälan apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Att tillåta DocType, DocType. Var försiktig!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Anpassade format för utskrift, e-post" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Summan av {0} @@ -1222,6 +1244,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Felaktig verifiering apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Kontakter Integration är inaktiverad. DocType: Assignment Rule,Description,Beskrivning DocType: Print Settings,Repeat Header and Footer in PDF,Upprepa sidhuvud och sidfot i PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Fel DocType: Address Template,Is Default,Är Standard DocType: Data Migration Connector,Connector Type,Connector Type apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Kolumnnamn kan inte vara tomt @@ -1234,6 +1257,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Gå till {0} sida DocType: LDAP Settings,Password for Base DN,Lösenord för Base DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,tabell Field 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/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 @@ -1287,6 +1311,7 @@ DocType: Print Settings,Enable Raw Printing,Aktivera råutskrift DocType: Website Route Redirect,Source,Källa apps/frappe/frappe/templates/includes/list/filters.html,clear,Rensa apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Färdiga +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Inställning> Användare DocType: Prepared Report,Filter Values,Filtrera värden DocType: Communication,User Tags,Användarnas nyckelord DocType: Data Migration Run,Fail,Misslyckas @@ -1343,6 +1368,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Föl ,Activity,Aktivitet DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Hjälp: För att länka till en annan post i systemet, använd "# Form / noterar / [OBS namn]" som Länkadress. (Använd inte "http: //")" DocType: User Permission,Allow,Tillåta +DocType: Data Import Beta,Update Existing Records,Uppdatera befintliga poster apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Låt oss undvika upprepade ord och tecken DocType: Energy Point Rule,Energy Point Rule,Energipunktregel DocType: Communication,Delayed,Försenad @@ -1355,9 +1381,7 @@ DocType: Milestone,Track Field,Spårfält DocType: Notification,Set Property After Alert,Ange egenskap efter varning apps/frappe/frappe/config/customization.py,Add fields to forms.,Lägg till fält till formulär. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Det verkar som om något är fel med den här webbplatsens Paypal-konfiguration. -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/sidebar/review.js,Add Review,Lägg till recension -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Teckenstorlek (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Endast vanliga DocTypes får anpassas från Customize Form. DocType: Email Account,Sendgrid,Sendgrid @@ -1394,6 +1418,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Förlåt! Du kan inte ta bort autogenererade kommentarer DocType: Google Settings,Used For Google Maps Integration.,Används för integrering av Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referens DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Inga poster kommer att exporteras DocType: User,System User,Systemanvändare DocType: Report,Is Standard,Är Standard DocType: Desktop Icon,_report,_rapportera @@ -1408,6 +1433,7 @@ DocType: Workflow State,minus-sign,minustecken apps/frappe/frappe/public/js/frappe/request.js,Not Found,Hittades Inte apps/frappe/frappe/www/printview.py,No {0} permission,Inga {0} tillstånd apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export anpassade behörigheter +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Inga föremål hittades. DocType: Data Export,Fields Multicheck,Fält Multicheck DocType: Activity Log,Login,Logga In DocType: Web Form,Payments,Betalningar @@ -1468,8 +1494,9 @@ DocType: Address,Postal,Post DocType: Email Account,Default Incoming,Standard Inkommande DocType: Workflow State,repeat,upprepa DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Värdet måste vara ett av {0} DocType: Role,"If disabled, this role will be removed from all users.","Om inaktiverat, kommer denna roll tas bort från alla användare." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Gå till {0} Listan +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Gå till {0} Listan 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 @@ -1483,6 +1510,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Lokalt fältnamn DocType: DocType,Track Changes,Spåra ändringar DocType: Workflow State,Check,Kontrollera DocType: Chat Profile,Offline,Off-line +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Importerad {0} DocType: User,API Key,API-nyckel DocType: Email Account,Send unsubscribe message in email,Skicka avbeställa meddelande i e-post apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Redigera @@ -1509,11 +1537,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} har redan tilldelat standardvärdet för {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                    No results found for '

                                                                                                    ,

                                                                                                    Inga resultat hittades för '

                                                                                                    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 @@ -1534,8 +1562,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Inte tillåtet för { 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Inställning> Användarrättigheter DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP-gruppkartläggning DocType: Dashboard Chart,Chart Options,Diagramalternativ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Namnlös kolumn apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} från {1} till {2} på rad # {3} DocType: Communication,Expired,Utgånget apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Verkar token du använder är ogiltig! @@ -1545,6 +1575,7 @@ DocType: DocType,System,System DocType: Web Form,Max Attachment Size (in MB),Max Bilaga Storlek (i MB) apps/frappe/frappe/www/login.html,Have an account? Login,Har du ett konto? Logga in DocType: Workflow State,arrow-down,pil ner +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Rad {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Användaren får inte ta bort {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} av {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Senast uppdaterad @@ -1562,6 +1593,7 @@ DocType: Custom Role,Custom Role,anpassad roll apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Hem / Testa mapp 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ange ditt lösenord DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Tillträde Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Obligatorisk) 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. @@ -1636,6 +1668,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Visa instr apps/frappe/frappe/desk/form/assign_to.py,New Message,Nytt meddelande DocType: File,Preview HTML,Förhandsgranska HTML DocType: Desktop Icon,query-report,query-rapport +DocType: Data Import Beta,Template Warnings,Mallvarningar apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,filter sparas DocType: DocField,Percent,Procent apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Ställ filter @@ -1657,6 +1690,7 @@ DocType: Custom Field,Custom,Anpassad DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Om det är aktiverat, kommer användare som loggar in från Begränsad IP-adress inte att uppmanas till Two Factor Auth" DocType: Auto Repeat,Get Contacts,Hämta kontakter apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Inlägg arkiverat {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Hoppar över namnlös kolumn DocType: Notification,Send alert if date matches this field's value,Skicka varning om dagen matchar detta område värde DocType: Workflow,Transitions,Övergångar apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} till {2} @@ -1680,6 +1714,7 @@ DocType: Workflow State,step-backward,steg bakåt apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Ställ Dropbox snabbtangenter på din sida config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Radera denna post för att tillåta sändning till denna e-postadress +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Om icke-standardport (t.ex. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Anpassa genvägar apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Endast obligatoriska fält är nödvändiga för nya register. Du kan ta bort icke-obligatoriska kolumner om du vill. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Visa mer aktivitet @@ -1787,7 +1822,9 @@ DocType: Note,Seen By Table,Sett i tabell apps/frappe/frappe/www/third_party_apps.html,Logged in,Inloggad apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standard Skicka och Inkorgen DocType: System Settings,OTP App,OTP App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{0} posten av {1} har uppdaterats. DocType: Google Drive,Send Email for Successful Backup,Skicka e-post för framgångsrik säkerhetskopiering +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Scheduler är inaktiv. Det går inte att importera data. DocType: Print Settings,Letter,Brev DocType: DocType,"Naming Options:
                                                                                                    1. field:[fieldname] - By Field
                                                                                                    2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                    3. Prompt - Prompt user for a name
                                                                                                    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                    5. @@ -1801,6 +1838,7 @@ DocType: GCalendar Account,Next Sync Token,Nästa synkroniseringstoken DocType: Energy Point Settings,Energy Point Settings,Energipunktinställningar DocType: Async Task,Succeeded,Efterföljande apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obligatoriska fält krävs i {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                      No results found for '

                                                                                                      ,

                                                                                                      Inga resultat hittades för '

                                                                                                      apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Återställ behörigheter för {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Användare och behörigheter DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup-inställningar @@ -1871,6 +1909,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,I DocType: Notification,Value Change,Värde Förändring DocType: Google Contacts,Authorize Google Contacts Access,Auktorisera åtkomst till Google-kontakter apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Visar endast Numeriska fält från Rapport +DocType: Data Import Beta,Import Type,Importtyp DocType: Access Log,HTML Page,HTML-sida DocType: Address,Subsidiary,Dotterbolag apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Försöker anslutning till QZ-fack ... @@ -1881,7 +1920,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Ogiltig ut DocType: Custom DocPerm,Write,Skriva apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Endast administratör får skapa Query / Script rapporter apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Uppdatering -DocType: File,Preview,Förhandsgranska +DocType: Data Import Beta,Preview,Förhandsgranska apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Fält "värde" är obligatorisk. Vänligen ange värdet uppdateras DocType: Customize Form,Use this fieldname to generate title,Använd denna fältnamn för att generera titel apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Importera e-post från @@ -1966,6 +2005,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Browser stöds DocType: Social Login Key,Client URLs,Klientadresser apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Viss information saknas apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} skapades framgångsrikt +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Hoppar över {0} av {1}, {2}" DocType: Custom DocPerm,Cancel,Avbryt apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Delete apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Fil {0} existerar inte @@ -1993,7 +2033,6 @@ DocType: GCalendar Account,Session Token,Session Token DocType: Currency,Symbol,Symbol apps/frappe/frappe/model/base_document.py,Row #{0}:,Rad # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Bekräfta radering av data -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Nytt lösenord mailat apps/frappe/frappe/auth.py,Login not allowed at this time,Inloggning inte tillåtet vid denna tid DocType: Data Migration Run,Current Mapping Action,Aktuell kartläggningsåtgärd DocType: Dashboard Chart Source,Source Name,käll~~POS=TRUNC @@ -2006,6 +2045,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Följd av DocType: LDAP Settings,LDAP Email Field,LDAP Email Field apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Exportera {0} poster apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Redan i användarens att göra-lista DocType: User Email,Enable Outgoing,Aktivera Utgående DocType: Address,Fax,Fax @@ -2065,8 +2105,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Skriv ut dokument apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hoppa till fältet DocType: Contact Us Settings,Forward To Email Address,Framåt Till e-postadress +DocType: Contact Phone,Is Primary Phone,Är primär telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Skicka ett e-postmeddelande till {0} för att länka det här. DocType: Auto Email Report,Weekdays,vardagar +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} poster kommer att exporteras apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Fältet Titel måste vara en giltig fältnamn DocType: Post Comment,Post Comment,Publicera kommentar apps/frappe/frappe/config/core.py,Documents,Dokument @@ -2084,7 +2126,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Detta fält visas endast om fältnamn definieras här har värde eller reglerna är sanna (exempel): myfield eval: doc.myfield == "Min värde" eval: doc.age> 18 DocType: Social Login Key,Office 365,Kontor 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,I dag +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",När du har ställt detta kommer användarna bara att kunna komma åt dokument (t.ex.. Blogginlägg) där länken finns (t.ex.. Blogger). +DocType: Data Import Beta,Submit After Import,Skicka efter import DocType: Error Log,Log of Scheduler Errors,Loggar av Planerings fel DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,App klienthemligheten @@ -2103,10 +2147,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Inaktivera Registreringslänk för kund på inloggningssidan apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Tilldelad till / ägare DocType: Workflow State,arrow-left,pil vänster +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Exportera en post DocType: Workflow State,fullscreen,fullskärm DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Skapa diagram apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,kalle@karlsson.se +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Importera inte DocType: Web Page,Center,Centrum DocType: Notification,Value To Be Set,Värde som ska ställas in apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Redigera {0} @@ -2126,6 +2172,7 @@ DocType: Print Format,Show Section Headings,Visa Rubriker DocType: Bulk Update,Limit,Begränsa apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Vi har fått en begäran om radering av {0} data associerade med: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Lägg till en ny sektion +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrerade poster apps/frappe/frappe/www/printview.py,No template found at path: {0},Ingen mall finns på sökväg: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ingen e-postkonto DocType: Comment,Cancelled,Avbruten @@ -2213,10 +2260,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Globala sökdokumenttyper återställs. ,Lead Conversion Time,Lead Conversion Time apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Skapa Rapporter DocType: Note,Notify users with a popup when they log in,Meddela användare med en popup när de loggar in +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Kärnmoduler {0} kan inte sökas i Global Search. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Öppna chatten apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} existerar inte. Välj ett nytt mål att slå samman DocType: Data Migration Connector,Python Module,Python-modulen @@ -2233,8 +2283,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Stänga 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Inställning> Användarrättigheter -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Uppdatera +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Uppdatera DocType: Transaction Log,Transaction Hash,Transaktionshash DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Spara nyhetsbrevet innan du skickar @@ -2250,6 +2299,7 @@ DocType: Data Import,In Progress,Pågående apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Kö för säkerhetskopiering. Det kan ta några minuter till en timme. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Användarbehörighet finns redan +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Kartlägga kolumn {0} till fält {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Visa {0} DocType: User,Hourly,Varje timme apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrera OAuth-klient App @@ -2262,7 +2312,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway webbadress apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} kan inte vara "{2}". Det bör vara en av "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},vunnit av {0} via automatisk regel {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} eller {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Lösenord Uppdatering DocType: Workflow State,trash,skräp DocType: System Settings,Older backups will be automatically deleted,Äldre säkerhetskopior tas bort automatiskt apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Ogiltigt Access Key ID eller Secret Access Key. @@ -2291,6 +2340,7 @@ DocType: Address,Preferred Shipping Address,Önskad leveransadress apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Med brevhuvud apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} skapade denna {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Inte tillåtet för {0}: {1} i rad {2}. Begränsat fält: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-väst-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",Om det här är markerat kommer rader med giltiga data att importeras och ogiltiga rader dumpas till en ny fil för att importera senare. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Dokumentet kan endast redigeras av användarna med rättigheter @@ -2317,6 +2367,7 @@ DocType: Custom Field,Is Mandatory Field,Är Obligatoriskt fält DocType: User,Website User,Hemsida Användare apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Vissa kolumner kan stängas av när du skriver ut till PDF. Försök att hålla antalet kolumner under 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Inte jämlikar +DocType: Data Import Beta,Don't Send Emails,Skicka inte e-postmeddelanden DocType: Integration Request,Integration Request Service,Integration servicebegäran DocType: Access Log,Access Log,Åtkomstlogg DocType: Website Script,Script to attach to all web pages.,Script att fästa alla webbsidor. @@ -2357,6 +2408,7 @@ DocType: Contact,Passive,Passiv DocType: Auto Repeat,Accounts Manager,Account Manager apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Uppgift för {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Din betalning har avbrutits. +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/views/reports/report_view.js,Select File Type,Välj filtyp apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Visa alla DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor @@ -2389,6 +2441,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Dokumentstatus apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Godkännande krävs +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Följande poster måste skapas innan vi kan importera din fil. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth behörighetskod apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Ej tillåtet att importera DocType: Deleted Document,Deleted DocType,raderade DocType @@ -2443,8 +2496,8 @@ DocType: GCalendar Settings,Google API Credentials,Googles API-referenser apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start misslyckades apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start misslyckades apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Detta e-postmeddelande skickades till {0} och kopieras till {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},skickade in detta dokument {0} DocType: Workflow State,th,e -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år sedan DocType: Social Login Key,Provider Name,Leverantörens namn apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Skapa en ny {0} DocType: Contact,Google Contacts,Google-kontakter @@ -2452,6 +2505,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar konto DocType: Email Rule,Is Spam,är Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapportera {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Öppna {0} +DocType: Data Import Beta,Import Warnings,Importvarningar DocType: OAuth Client,Default Redirect URI,Default Omdirigering URI DocType: Auto Repeat,Recipients,Mottagare DocType: System Settings,Choose authentication method to be used by all users,Välj autentiseringsmetod som används av alla användare @@ -2570,6 +2624,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Rapporten ha apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webbook Error DocType: Email Flag Queue,Unread,Oläst DocType: Bulk Update,Desk,Skrivbord +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Hoppar över kolumn {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtret måste vara en tupel eller en lista (i en lista) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Skriv en SELECT-fråga. Obs resultatet söks inte (all data skickas på en gång). DocType: Email Account,Attachment Limit (MB),Gränds för bilagor (MB) @@ -2584,6 +2639,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Skapa Ny DocType: Workflow State,chevron-down,Chevron-ner apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-post skickas inte till {0} (otecknade / inaktiverad) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Välj fält som ska exporteras DocType: Async Task,Traceback,Spåra tillbaka DocType: Currency,Smallest Currency Fraction Value,Minsta Valuta Fraktion Värde apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Förbereder rapport @@ -2592,6 +2648,7 @@ DocType: Workflow State,th-list,th-listan DocType: Web Page,Enable Comments,Aktivera Kommentarer apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Anmärkningar DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Begränsa användaren endast från denna IP adress. Flera IP-adresser kan läggas till genom att separera med kommatecken. Dessutom accepterar delvis IP-adresser som (111.111.111) +DocType: Data Import Beta,Import Preview,Importera förhandsvisning DocType: Communication,From,Från apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Välj en grupp nod först. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Hitta {0} i {1} @@ -2691,6 +2748,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Mellan DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,I kö +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Inställning> Anpassa formulär DocType: Braintree Settings,Use Sandbox,användning Sandbox apps/frappe/frappe/utils/goal.py,This month,Den här månaden apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Ny anpassat Utskriftsformat @@ -2706,6 +2764,7 @@ DocType: Session Default,Session Default,Session Standard DocType: Chat Room,Last Message,Senaste meddelandet DocType: OAuth Bearer Token,Access Token,Tillträde token DocType: About Us Settings,Org History,Org Historik +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Cirka {0} minuter kvar DocType: Auto Repeat,Next Schedule Date,Nästa schemaläggningsdatum DocType: Workflow,Workflow Name,Arbetsflöde Namn DocType: DocShare,Notify by Email,Meddela via e-post @@ -2735,6 +2794,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Författare apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Återuppta uppta~~POS=HEADCOMP Sända apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Öppna igen +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Visa varningar apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Inköpsanvändare DocType: Data Migration Run,Push Failed,Push misslyckades @@ -2773,6 +2833,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Avance apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Det är inte tillåtet att se nyhetsbrevet. DocType: User,Interests,Intressen apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Lösenordsåterställnings instruktioner har skickats till din e-post +DocType: Energy Point Rule,Allot Points To Assigned Users,Tilldela poäng till tilldelade användare apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nivå 0 är för behörigheter på dokumentnivå, \ högre nivåer för behörigheter på fältnivå." DocType: Contact Email,Is Primary,Är primär @@ -2796,6 +2857,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Publicerbar nyckel DocType: Stripe Settings,Publishable Key,Publicerbar nyckel apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Starta importen +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Exportera typ DocType: Workflow State,circle-arrow-left,cirkel-pil vänster DocType: System Settings,Force User to Reset Password,Tvinga användaren att återställa lösenordet apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",Klicka på {0} för att få den uppdaterade rapporten. @@ -2808,13 +2870,16 @@ DocType: Contact,Middle Name,Mellannamn DocType: Custom Field,Field Description,Fält Beskrivning apps/frappe/frappe/model/naming.py,Name not set via Prompt,Namnet inte satt via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,inkorg +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Uppdaterar {0} av {1}, {2}" DocType: Auto Email Report,Filters Display,filter Display apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Fältet "amend_from" måste finnas för att göra en ändring. +DocType: Contact,Numbers,Tal apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} uppskattade ditt arbete med {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Spara filter DocType: Address,Plant,Fastighet apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svara alla DocType: DocType,Setup,Inställning +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Alla poster DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,E-postadress vars Google-kontakter ska synkroniseras. DocType: Email Account,Initial Sync Count,Initial Sync Count DocType: Workflow State,glass,glas @@ -2839,7 +2904,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Visa popup-förhandsgranskning apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Detta är en topp-100 vanligt lösenord. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Aktivera popup-fönster -DocType: User,Mobile No,Mobilnummer +DocType: Contact,Mobile No,Mobilnummer DocType: Communication,Text Content,textinnehåll DocType: Customize Form Field,Is Custom Field,Är Anpassatfält DocType: Workflow,"If checked, all other workflows become inactive.","Om markerad, blir alla andra arbetsflöden inaktiveras." @@ -2885,6 +2950,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Lägg apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Namn på den nya utskriftsformat apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Växla sidofältet DocType: Data Migration Run,Pull Insert,Dra in satsen +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Maximala poäng tillåtna efter multiplicering av poäng med multiplikatorvärdet (Obs: För ingen gräns lämnar detta fält tomt eller ställ in 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Ogiltig mall apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Olaglig SQL-fråga apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Obligatorisk: DocType: Chat Message,Mentions,nämner @@ -2899,6 +2967,7 @@ DocType: User Permission,User Permission,Användarbehörighet apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blogg apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP inte installerad apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Ladda ner med data +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ändrade värden för {0} {1} DocType: Workflow State,hand-right,hand höger DocType: Website Settings,Subdomain,Subdomän DocType: S3 Backup Settings,Region,Region @@ -2926,10 +2995,12 @@ DocType: Braintree Settings,Public Key,Public Key DocType: GSuite Settings,GSuite Settings,GSuite Inställningar DocType: Address,Links,Länkar DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Använder e-postadressnamnet som nämns i detta konto som avsändarens namn för alla e-postmeddelanden som skickas med detta konto. +DocType: Energy Point Rule,Field To Check,Fält som ska kontrolleras apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google-kontakter - kunde inte uppdatera kontakten i Google-kontakter {0}, felkod {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Var god välj dokumenttyp. apps/frappe/frappe/model/base_document.py,Value missing for,Värde saknas för apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Lägg till underval +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Importera framsteg DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",Om villkoret är uppfyllt kommer användaren att belönas med poängen. t.ex. doc.status == 'Stängt' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Inskickad information kan inte tas bort. @@ -2966,6 +3037,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Auktorisera Google Kal apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Sidan du söker saknas. Detta kan bero på att det flyttas eller om det finns ett stavfel i länken. apps/frappe/frappe/www/404.html,Error Code: {0},Felkod: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskriv för noteringSsida, i klartext, bara ett par rader. (max 140 tecken)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} är obligatoriska fält DocType: Workflow,Allow Self Approval,Tillåt själv godkännande DocType: Event,Event Category,Händelsekategori apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,Kalle Karlsson @@ -3013,8 +3085,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Flytta till DocType: Address,Preferred Billing Address,Önskad faktureringsadress apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Alltför många skriver i en begäran. Vänligen skicka mindre förfrågningar apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive har konfigurerats. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Dokumenttyp {0} har upprepats. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,värden Ändrad DocType: Workflow State,arrow-up,pil-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Det bör finnas minst en rad för tabellen {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","För att konfigurera Auto Repeat, aktivera "Allow Auto Repeat" från {0}." DocType: OAuth Bearer Token,Expires In,Går ut om DocType: DocField,Allow on Submit,Tillåt på Skicka @@ -3101,6 +3175,7 @@ DocType: Custom Field,Options Help,Alternativ Hjälp 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 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 @@ -3118,6 +3193,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code DocType: Webhook,Webhook Request,Webhook-förfrågan apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Misslyckades: {0} till {1}: {2} DocType: Data Migration Mapping,Mapping Type,Kartläggningstyp +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Välj Obligatorisk apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Bläddra apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Inget behov av symboler, siffror eller versaler." DocType: DocField,Currency,Valuta @@ -3148,11 +3224,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Brevhuvud baserat på apps/frappe/frappe/utils/oauth.py,Token is missing,Token saknas apps/frappe/frappe/www/update-password.html,Set Password,Välj lösenord +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Importerade {0} poster har lyckats. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Obs! Om du ändrar sidnamnet bryts tidigare URL till den här sidan. apps/frappe/frappe/utils/file_manager.py,Removed {0},Borttaget {0} DocType: SMS Settings,SMS Settings,SMS Inställningar DocType: Company History,Highlight,Markera DocType: Dashboard Chart,Sum,Summa +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,via dataimport DocType: OAuth Provider Settings,Force,Tvinga apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Senast synkroniserad {0} DocType: DocField,Fold,Vika @@ -3189,6 +3267,7 @@ DocType: Workflow State,Home,Hem DocType: OAuth Provider Settings,Auto,Bil DocType: System Settings,User can login using Email id or User Name,Användaren kan logga in med e-post-id eller användarnamn DocType: Workflow State,question-sign,Frågetecken +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} är inaktiverad apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Fält "rutt" är obligatoriskt för webbvyer apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Infoga kolumn före {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Användaren från det här fältet kommer att belönas poäng @@ -3222,6 +3301,7 @@ DocType: Website Settings,Top Bar Items,Top Bar Items DocType: Notification,Print Settings,Utskriftsinställningar DocType: Page,Yes,Ja DocType: DocType,Max Attachments,Max Bilagor +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Cirka {0} sekunder kvar DocType: Calendar View,End Date Field,Fältet Slutdatum apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globala genvägar DocType: Desktop Icon,Page,Sida @@ -3334,6 +3414,7 @@ DocType: GSuite Settings,Allow GSuite access,Tillåt GSuite-åtkomst DocType: DocType,DESC,DESC DocType: DocType,Naming,Namge apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Välj Alla +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Kolumn {0} apps/frappe/frappe/config/customization.py,Custom Translations,anpassade Translations apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Framsteg apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,efter roll @@ -3376,11 +3457,13 @@ DocType: Stripe Settings,Stripe Settings,Stripe Inställningar DocType: Stripe Settings,Stripe Settings,Stripe Inställningar DocType: Data Migration Mapping,Data Migration Mapping,Data Migration Kartläggning DocType: Auto Email Report,Period,Period +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Cirka {0} minut kvar apps/frappe/frappe/www/login.py,Invalid Login Token,Ogiltig inloggning token apps/frappe/frappe/public/js/frappe/chat.js,Discard,Kassera apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 timme sedan DocType: Website Settings,Home Page,Hemsida DocType: Error Snapshot,Parent Error Snapshot,Moderbolaget fel Snapshot +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Karta kolumner från {0} till fält i {1} DocType: Access Log,Filters,Filter DocType: Workflow State,share-alt,aktie alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Kö bör vara en av {0} @@ -3400,6 +3483,7 @@ DocType: Calendar View,Start Date Field,Startdatum Fält DocType: Role,Role Name,Rollnamn apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Växla till Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script eller Query rapporter +DocType: Contact Phone,Is Primary Mobile,Är primär mobil DocType: Workflow Document State,Workflow Document State,Arbetsflöde Dokument Status apps/frappe/frappe/public/js/frappe/request.js,File too big,Fil för stor apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-postkonto lagt till flera gånger @@ -3445,6 +3529,7 @@ DocType: DocField,Float,Flyta DocType: Print Settings,Page Settings,Sidinställningar apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Sparande... apps/frappe/frappe/www/update-password.html,Invalid Password,felaktigt lösenord +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Importerad {0} post från {1}. DocType: Contact,Purchase Master Manager,Inköpschef apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Klicka på låsikonen för att växla offentlig / privat DocType: Module Def,Module Name,Modul Namn @@ -3479,6 +3564,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Några av funktionerna kanske inte fungerar i din webbläsare. Vänligen uppdatera din webbläsare till den senaste versionen. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Några av funktionerna kanske inte fungerar i din webbläsare. Vänligen uppdatera din webbläsare till den senaste versionen. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Vet inte, frågar "hjälp"" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},avbröt detta dokument {0} DocType: DocType,Comments and Communications will be associated with this linked document,Kommentarer och kommunikation kommer att förknippas med detta länkade dokument apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filter ... DocType: Workflow State,bold,djärvt @@ -3497,6 +3583,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Lägg till / DocType: Comment,Published,Publicerad apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Tack för ditt email DocType: DocField,Small Text,Liten text +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Nummer {0} kan inte ställas in som primärt för telefon och mobilnummer. DocType: Workflow,Allow approval for creator of the document,Tillåt godkännande för skaparen av dokumentet apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Spara rapport DocType: Webhook,on_cancel,on_cancel @@ -3554,6 +3641,7 @@ DocType: Print Settings,PDF Settings,PDF-inställningar DocType: Kanban Board Column,Column Name,Spaltnamn DocType: Language,Based On,Baserat På DocType: Email Account,"For more information, click here.","För mer information, klicka här ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Antalet kolumner stämmer inte med data apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Göra default apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Exekveringstid: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Ogiltig inkluderande sökväg @@ -3644,7 +3732,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Ladda upp {0} filer DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Ange starttid -apps/frappe/frappe/config/settings.py,Export Data,Exportera data +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Exportera data 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. @@ -3662,7 +3750,6 @@ DocType: Report,Disable Prepared Report,Inaktivera beredd rapport apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Användaren {0} har begärt att ta bort data apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Olaglig tillgång Token. Var god försök igen apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Ansökan har uppdaterats till en ny version, vänligen uppdatera den här sidan" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,Tillval: Larmet kommer att skickas om detta uttryck är sant DocType: Data Migration Plan,Plan Name,Plannamn DocType: Print Settings,Print with letterhead,Skriv ut med brevhuvud @@ -3703,6 +3790,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Kan inte ange ändring utan att avbryta apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Hela sidan DocType: DocType,Is Child Table,Är Undertabell +DocType: Data Import Beta,Template Options,Mallalternativ apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} måste vara ett av {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} visar just nu detta dokument apps/frappe/frappe/config/core.py,Background Email Queue,E-postkö i bakgrunden @@ -3710,7 +3798,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Lösenordsåterstäl DocType: Communication,Opened,Öppnade DocType: Workflow State,chevron-left,Chevron-vänster DocType: Communication,Sending,Sända -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Inte tillåtet från denna IP-adress DocType: Website Slideshow,This goes above the slideshow.,Detta går över spelet. DocType: Contact,Last Name,Efternamn DocType: Event,Private,Privat @@ -3724,7 +3811,6 @@ DocType: Workflow Action,Workflow Action,Arbetsflöde Åtgärd apps/frappe/frappe/utils/bot.py,I found these: ,Jag hittade dessa: DocType: Event,Send an email reminder in the morning,Skicka ett mail påminnelse på morgonen DocType: Blog Post,Published On,Publicerad den -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 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} @@ -3745,7 +3831,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,varningstecken DocType: Prepared Report,Prepared Report,Förberedd rapport apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Lägg till metataggar till dina webbsidor -DocType: Contact,Phone Nos,Telefonnummer 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 @@ -3763,6 +3848,7 @@ DocType: Data Migration Connector,Data Migration,Dataöverföring DocType: User,API Key cannot be regenerated,API-nyckel kan inte regenereras apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Något gick fel DocType: System Settings,Number Format,Antal Format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Importerad {0} post har lyckats. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Sammanfattning DocType: Event,Event Participants,Evenemangsdeltagare DocType: Auto Repeat,Frequency,Frekvens @@ -3770,7 +3856,7 @@ DocType: Custom Field,Insert After,Infoga Efter DocType: Event,Sync with Google Calendar,Synkronisera med Google Kalender DocType: Access Log,Report Name,Rapportera Namn DocType: Desktop Icon,Reverse Icon Color,Omvänd Ikon Färg -DocType: Notification,Save,Spara +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Spara apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Nästa schemalagd dag apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Tilldela den som har minst uppdrag apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,avsnitt Heading @@ -3793,11 +3879,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Inställning> Anpassa formulär 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 DocType: Desktop Icon,Category,Kategori +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Värdet {0} saknas för {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Lägg till kontakter apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskap apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Klientsidan script anknytningar i Javascript @@ -3821,6 +3907,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energipunktuppdatering apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Välj en annan betalningsmetod. PayPal stöder inte transaktioner i valuta '{0}' DocType: Chat Message,Room Type,Rumstyp +DocType: Data Import Beta,Import Log Preview,Förhandsvisning av importlogg apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Sökfält {0} är inte giltigt apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,uppladdad fil DocType: Workflow State,ok-circle,OK-cirkel @@ -3888,6 +3975,7 @@ DocType: DocType,Allow Auto Repeat,Tillåt automatisk upprepning apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Inga värden att visa DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-postmall +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} posten lyckades. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Användare {0} har inte tillgång till doktyp via rolltillstånd för dokument {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Både användarnamn och lösenord krävs apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vänligen uppdatera för att få det senaste dokumentet. diff --git a/frappe/translations/sw.csv b/frappe/translations/sw.csv index 1419b2acb7..faee07f789 100644 --- a/frappe/translations/sw.csv +++ b/frappe/translations/sw.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Mpya {} iliyotolewa kwa programu zifuatazo zinapatikana apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Tafadhali chagua Shamba Kikubwa. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Inapakia faili ya kuingiza ... DocType: Assignment Rule,Last User,Mtumiaji wa Mwisho apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Kazi mpya, {0}, imepewa kwako kwa {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Kufaulu kwa Kikao +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Pakia tena Picha DocType: Email Queue,Email Queue records.,Rekodi za foleni ya Barua pepe. DocType: Post,Post,Chapisho DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,Kila mwezi DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Wezesha Kuingia apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Hatari -apps/frappe/frappe/www/login.py,Email Address,Barua pepe +DocType: Address,Email Address,Barua pepe DocType: Workflow State,th-large,th-kubwa DocType: Communication,Unread Notification Sent,Arifa isiyojuliwa Imetumwa apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Uhamishaji haruhusiwi. Unahitaji {0} jukumu la kuuza nje. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Msimamizi a DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Chaguo za mawasiliano, kama "Swali la Mauzo, Swali la Kusaidia" nk kila mmoja kwenye mstari mpya au kutengwa kwa vitendo." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Ongeza lebo ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Picha -DocType: Data Migration Run,Insert,Ingiza +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Ingiza apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Ruhusu Ufikiaji wa Hifadhi ya Google apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Chagua {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Tafadhali ingiza URL ya msingi @@ -118,17 +121,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Dakika 1 i 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 DocType: Company History,Company History,Historia ya Kampuni -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Weka upya +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Weka upya DocType: Workflow State,volume-up,kiasi-up apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Maombi ya Mtandao wa API wito kwenye programu za wavuti +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Onyesha Traceback DocType: DocType,Default Print Format,Mpangilio wa Chaguo-msingi DocType: Workflow State,Tags,Vitambulisho apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Hapana: Mwisho wa Kazi ya Kazi apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} shamba haliwezi kuweka kama ya kipekee katika {1}, kwa kuwa kuna maadili yasiyo ya kipekee yaliyopo" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Aina za Hati +DocType: Global Search Settings,Document Types,Aina za Hati DocType: Address,Jammu and Kashmir,Jammu na Kashmir DocType: Workflow,Workflow State Field,Field Field State -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sanidi> Mtumiaji DocType: Language,Guest,Mgeni DocType: DocType,Title Field,Siri ya Kichwa DocType: Error Log,Error Log,Ingia ya Hitilafu @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Kurudia kama "abcabcabc" ni vigumu kidogo tu nadhani kuliko "abc" DocType: Notification,Channel,Kituo apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Ikiwa unafikiri hii haikubaliki, tafadhali pesa nenosiri la Msimamizi." +DocType: Data Import Beta,Data Import Beta,Beta ya kuagiza data apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} ni lazima DocType: Assignment Rule,Assignment Rules,Sheria za mgawo DocType: Workflow State,eject,jaribu @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,Jina la Action Action apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType haiwezi kuunganishwa DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Si faili ya zip +DocType: Global Search DocType,Global Search DocType,Mtandao wa Utaftaji wa Global DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                      New {{ doc.doctype }} #{{ doc.name }}
                                                                                                      ","Ili kuongeza somo la nguvu, tumia tags za jinja kama
                                                                                                       New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                      " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Tukio la Doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Wewe DocType: Braintree Settings,Braintree Settings,Mipangilio ya Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Imeunda rekodi {0} zilizofanikiwa. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Hifadhi Filter DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Haiwezi kufuta {0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,Ingiza parameter ya url kw apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Kurudia kiotomatiki iliyoundwa kwa hati hii apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Tazama ripoti kwenye kivinjari chako apps/frappe/frappe/config/desk.py,Event and other calendars.,Tukio na kalenda nyingine. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (lazima 1 safu) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Mashamba yote ni muhimu kuwasilisha maoni. DocType: Custom Script,Adds a client custom script to a DocType,Anaongeza hati maalum ya mteja kwenye Hati ya Hati DocType: Print Settings,Printer Name,Jina la Printer @@ -251,7 +258,6 @@ DocType: Bulk Update,Bulk Update,Mwisho Mwingi DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Ruhusu Mtazamo Kuangalia apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} haipaswi kuwa sawa na {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Futa {0} vitu kwa kudumu? apps/frappe/frappe/utils/oauth.py,Not Allowed,Hairuhusiwi @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Onyesha DocType: Email Group,Total Subscribers,Wajumbe Wote apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Juu {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Nambari ya Row apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ikiwa Kazi haipatikani kwenye kiwango cha 0, viwango vya juu havikuwa na maana." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Hifadhi Kama DocType: Comment,Seen,Angalia @@ -328,6 +335,7 @@ DocType: Activity Log,Closed,Ilifungwa DocType: Blog Settings,Blog Title,Kitabu cha blogu apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Majukumu ya kawaida hayaruhusiwi apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Aina ya Mazungumzo +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Safu za Ramani DocType: Address,Mizoram,Mizoramu DocType: Newsletter,Newsletter,Jarida apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Haiwezi kutumia swala ndogo kulingana na @@ -363,6 +371,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Ongeza safu apps/frappe/frappe/www/contact.html,Your email address,Anwani yako ya barua pepe DocType: Desktop Icon,Module,Moduli +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Imesasisha kwa mafanikio rekodi {0} kati ya {1}. DocType: Notification,Send Alert On,Tuma Alert On DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Customize Label, Ficha ya Ficha, Njia ya Kichafu nk" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Inafungua faili ... @@ -394,6 +403,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Mtumiaji {0} hawezi kufutwa DocType: System Settings,Currency Precision,Ufanisi wa Fedha apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Shughuli nyingine inazuia hii. Tafadhali jaribu tena katika sekunde chache. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Futa vichungi DocType: Test Runner,App,Programu apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Vifungo havikuweza kuunganishwa kwa usahihi na waraka mpya DocType: Chat Message Attachment,Attachment,Kiambatisho @@ -435,7 +445,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Shamba la kati la LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Inahamisha {0} kati ya {1} DocType: GCalendar Account,Allow GCalendar Access,Ruhusu Upatikanaji wa GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} ni shamba la lazima +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ni shamba la lazima apps/frappe/frappe/templates/includes/login/login.js,Login token required,Ishara ya kuingia inahitajika apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Nafasi ya Mwezi: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Chagua vitu vingi vya orodha @@ -465,6 +475,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Haiwezi kuunganisha: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Neno peke yake ni rahisi nadhani. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Ugawaji kiotomati umeshindwa: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Tafuta ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Tafadhali chagua Kampuni apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Kuunganisha inawezekana tu kati ya Kikundi-kwa-Kikundi au Node ya Node-to-Leaf Node apps/frappe/frappe/utils/file_manager.py,Added {0},Aliongeza {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Hakuna rekodi zinazofanana. Tafuta kitu kipya @@ -477,7 +488,6 @@ DocType: Google Settings,OAuth Client ID,Kitambulisho cha Mteja wa OAuth DocType: Auto Repeat,Subject,Somo apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Rudi kwenye Desk DocType: Web Form,Amount Based On Field,Kiwango cha Msingi Msingi -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Mtumiaji ni lazima kwa Shiriki DocType: DocField,Hidden,Siri DocType: Web Form,Allow Incomplete Forms,Ruhusu Fomu zisizokwisha @@ -551,6 +561,7 @@ DocType: Workflow State,barcode,barcode apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Matumizi ya swala ndogo au kazi ni vikwazo apps/frappe/frappe/config/customization.py,Add your own translations,Ongeza tafsiri zako mwenyewe DocType: Country,Country Name,Jina la Nchi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Kiolezo Tupu DocType: About Us Team Member,About Us Team Member,Kuhusu sisi Mwanachama wa Timu apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Vipengee vinawekwa kwenye Wajibu na Aina za Kumbukumbu (iitwaye DocTypes) kwa kuweka haki kama Soma, Andika, Unda, Futa, Tuma, Futa, Fanya, Tengeneza, Ripoti, Import, Export, Print, Email na Set User Permissions." DocType: Event,Wednesday,Jumatano @@ -562,6 +573,7 @@ DocType: Website Settings,Website Theme Image Link,Tovuti ya Mandhari ya Kiungo DocType: Web Form,Sidebar Items,Vipande vya Sidebar DocType: Web Form,Show as Grid,Onyesha kama Gridi apps/frappe/frappe/installer.py,App {0} already installed,Programu {0} imewekwa tayari +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Watumiaji waliopewa hati ya rejea watapata alama. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Hakuna Preview DocType: Workflow State,exclamation-sign,ishara ya kushangaza apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Faili zisizofunguliwa {0} @@ -597,6 +609,7 @@ DocType: Notification,Days Before,Siku Kabla apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Matukio ya kila siku yanapaswa kumaliza Siku ile ile. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Hariri ... DocType: Workflow State,volume-down,kiasi-chini +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Ufikiaji hairuhusiwi kutoka kwa Anwani hii ya IP apps/frappe/frappe/desk/reportview.py,No Tags,Hakuna Lebo DocType: Email Account,Send Notification to,Tuma Arifa kwa DocType: DocField,Collapsible,Haiwezekani @@ -652,6 +665,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Msanidi programu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Imeundwa apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} mfululizo {1} hawezi kuwa na URL zote na vitu vya mtoto +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Lazima kuwe na safu moja bora kwa jedwali zifuatazo: {0} DocType: Print Format,Default Print Language,Lugha ya kuchapa Default apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ancestors Of apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Mizizi {0} haiwezi kufutwa @@ -694,6 +708,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",lengo = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Jeshi +DocType: Data Import Beta,Import File,Ingiza Picha apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Safu {0} tayari iko. DocType: ToDo,High,Juu apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Tukio Jipya @@ -722,8 +737,6 @@ DocType: User,Send Notifications for Email threads,Tuma Arifa za nyuzi za barua apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Prof apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Sio katika Mfumo wa Msanidi Programu apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Faili ya kuhifadhi ni tayari -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Pointi kubwa zinazoruhusiwa baada ya kuzidisha alama zilizo na thamani ya kuzidisha (Kumbuka: Kwa bei isiyo na kikomo kama 0) DocType: DocField,In Global Search,Katika Utafutaji wa Global DocType: System Settings,Brute Force Security,Usalama wa Kibiti cha Nguvu DocType: Workflow State,indent-left,indent-kushoto @@ -765,6 +778,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Mtumiaji '{0}' tayari ana jukumu '{1}' DocType: System Settings,Two Factor Authentication method,Njia mbili za uthibitishaji apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Kwanza kuweka jina na uhifadhi rekodi. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,Rekodi 5 apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Imeshirikiwa na {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Jiondoe DocType: View Log,Reference Name,Jina la Kumbukumbu @@ -813,6 +827,8 @@ DocType: Data Migration Connector,Data Migration Connector,Connector Connection 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 DocType: Note,Notify Users On Every Login,Wajulishe Watumiaji Kila Kila Ingia +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Haiwezi kulinganisha safu wima {0} na uwanja wowote +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Imesasisha kwa mafanikio rekodi za {0}. DocType: PayPal Settings,API Password,Nenosiri la API apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Ingiza moduli ya python au chagua aina ya kontakt apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Jina la majina haliwekwa kwa Shamba la Desturi @@ -841,9 +857,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Jina la Duplicate {0} {1} -DocType: Email Queue,Retry,Jaribu tena +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Jaribu tena +DocType: Contact Phone,Number,Nambari DocType: Web Form Field,Web Form Field,Fomu ya Fomu ya Mtandao apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Una ujumbe mpya kutoka: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Badilisha HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Tafadhali ingiza URL ya Kurekebisha apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -868,7 +886,7 @@ DocType: Notification,View Properties (via Customize Form),Tazama Mali (kupitia apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Bonyeza kwenye faili ili uchague. DocType: Note Seen By,Note Seen By,Angalia Kuonekana Kwa apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Jaribu kutumia ruwaza ya kibodi ya muda mrefu na zamu zaidi -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Kiongozi wa Viongozi +,LeaderBoard,Kiongozi wa Viongozi DocType: DocType,Default Sort Order,Mpangilio wa Chaguo Mbadala DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Barua pepe Msaada Msaada @@ -903,6 +921,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Kuandika barua pepe apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Mataifa kwa ajili ya kazi ya kazi (kwa mfano Rasimu, Imeidhinishwa, Imepigwa)." DocType: Print Settings,Allow Print for Draft,Ruhusu Chapisha kwa Rasimu +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/link_selector.js,Set Quantity,Weka Wingi apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Tuma hati hii ili kuthibitisha DocType: Contact,Unsubscribed,Haijaondolewa @@ -934,6 +953,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Sehemu ya Asasi kwa Watumia ,Transaction Log Report,Ripoti ya Ripoti ya Shughuli DocType: Custom DocPerm,Custom DocPerm,Nyaraka ya DocPerm DocType: Newsletter,Send Unsubscribe Link,Tuma kiungo cha kujiondoa +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Kuna rekodi kadhaa zilizounganishwa ambazo zinahitaji kuunda kabla hatujaingiza faili yako. Je! Unataka kuunda rekodi zifuatazo za kukosa moja kwa moja? DocType: Access Log,Method,Njia DocType: Report,Script Report,Ripoti ya Hati DocType: OAuth Authorization Code,Scopes,Vipimo @@ -974,6 +994,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Imepakiwa kwa mafanikio apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Umeshikamana na mtandao. DocType: Social Login Key,Enable Social Login,Wezesha Kuingia kwa Jamii +DocType: Data Import Beta,Warnings,Onyo DocType: Communication,Event,Tukio apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Kwa {0}, {1} aliandika:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Haiwezi kufuta shamba la kawaida. Unaweza kujificha ikiwa unataka @@ -1029,6 +1050,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Ingiza Ch DocType: Kanban Board Column,Blue,Bluu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Uteuzi wote utaondolewa. Tafadhali hakikisha. DocType: Page,Page HTML,HTML ya ukurasa +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Safari zilizoondolewa nje apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Jina la kikundi hawezi kuwa tupu. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Nodes zaidi zinaweza kuundwa tu chini ya nambari za aina ya 'Kikundi' DocType: SMS Parameter,Header,Kichwa @@ -1067,13 +1089,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Omba Kati ya Muda apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Wezesha / Zima Domains DocType: Role Permission for Page and Report,Allow Roles,Ruhusu Wajibu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Imefanikiwa kuingiza rekodi {0} kati ya {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Maonyesho ya Python Rahisi, Mfano: Hali katika ("batili")" DocType: User,Last Active,Mwisho Active DocType: Email Account,SMTP Settings for outgoing emails,Mipangilio ya SMTP kwa barua pepe zinazotoka apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,chagua DocType: Data Export,Filter List,Orodha ya Filter DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Nenosiri lako limesasishwa. Hapa ni nenosiri lako jipya 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 @@ -1082,7 +1104,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Kitambulisho cha mtumiaji DocType: Communication,Sent,Imepelekwa DocType: Address,Kerala,Kerala -DocType: File,Lft,Karibu apps/frappe/frappe/public/js/frappe/desk.js,Administration,Utawala DocType: User,Simultaneous Sessions,Mkutano wa Sambamba DocType: Social Login Key,Client Credentials,Vyeti vya Mteja @@ -1114,7 +1135,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Imeonge apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Mwalimu DocType: DocType,User Cannot Create,Mtumiaji hawezi kuunda apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Imefanikiwa -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Folda {0} haipo apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Upatikanaji wa Dropbox umekubaliwa! DocType: Customize Form,Enter Form Type,Ingiza Aina ya Fomu DocType: Google Drive,Authorize Google Drive Access,Idhini Upataji wa Hifadhi ya Google @@ -1122,7 +1142,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Hakuna kumbukumbu zilizowekwa. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Ondoa Shamba apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Hunaunganishwa kwenye mtandao. Jaribu tena baada ya wakati mwingine. -DocType: User,Send Password Update Notification,Tuma Notification Update Update apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Kuruhusu DocType, DocType. Kuwa mwangalifu!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Fomu za Customized for Printing, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Jumla ya {0} @@ -1206,6 +1225,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Nambari ya kuthibiti apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Ujumuishaji wa Mawasiliano ya Google umezimwa. DocType: Assignment Rule,Description,Maelezo DocType: Print Settings,Repeat Header and Footer in PDF,Kurudia kichwa na mguu katika PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Kukosa DocType: Address Template,Is Default,"Je, ni Default" DocType: Data Migration Connector,Connector Type,Aina ya Connector apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Jina la safu haiwezi kuwa tupu @@ -1217,6 +1237,7 @@ apps/frappe/frappe/templates/emails/new_message.html,Login and view in Browser,I DocType: LDAP Settings,Password for Base DN,Nenosiri kwa Msingi wa DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Shamba la Jedwali 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/model/document.py,Action Failed,Hatua Imeshindwa apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Kwa Mtumiaji @@ -1270,6 +1291,7 @@ DocType: Print Settings,Enable Raw Printing,Washa Uchapishaji wa Raw DocType: Website Route Redirect,Source,Chanzo apps/frappe/frappe/templates/includes/list/filters.html,clear,wazi apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Imemalizika +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sanidi> Mtumiaji DocType: Prepared Report,Filter Values,Fanya Vigezo DocType: Communication,User Tags,Tags ya Mtumiaji DocType: Data Migration Run,Fail,Inashindwa @@ -1325,6 +1347,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Fuat ,Activity,Shughuli DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Msaada: Kuunganisha na rekodi nyingine kwenye mfumo, tumia "# Fomu / Kumbuka / [Jina la Kumbuka]" kama URL ya Kiungo. (usitumie "http: //")" DocType: User Permission,Allow,Ruhusu +DocType: Data Import Beta,Update Existing Records,Sasisha Rekodi zilizopo apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Hebu tutaepuka maneno na wahusika mara kwa mara DocType: Energy Point Rule,Energy Point Rule,Utawala wa Uhakika wa Nishati DocType: Communication,Delayed,Imechelewa @@ -1337,9 +1360,7 @@ DocType: Milestone,Track Field,Uga wa Kufuatilia DocType: Notification,Set Property After Alert,Weka Mali Baada ya Alert apps/frappe/frappe/config/customization.py,Add fields to forms.,Ongeza mashamba kwa fomu. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Inaonekana kama kitu kibaya na udhibiti wa Paypal wa tovuti hii. -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/sidebar/review.js,Add Review,Ongeza Mapitio -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Saizi ya herufi (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Hati za kawaida za Hati pekee ndizo zinazoruhusiwa kugeuzwa kutoka Fomu ya Kubinafsisha. DocType: Email Account,Sendgrid,Sendgrid @@ -1376,6 +1397,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fut apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Samahani! Huwezi kufuta maoni yaliyozalishwa na auto DocType: Google Settings,Used For Google Maps Integration.,Inatumika kwa Ushirikiano wa Ramani za Google. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Rejea DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Hakuna rekodi zitakazosafirishwa DocType: User,System User,Mtumiaji wa Mfumo DocType: Report,Is Standard,Ni Standard DocType: Desktop Icon,_report,_report @@ -1390,6 +1412,7 @@ DocType: Workflow State,minus-sign,ishara ya chini apps/frappe/frappe/public/js/frappe/request.js,Not Found,Haipatikani apps/frappe/frappe/www/printview.py,No {0} permission,Hakuna {0} ruhusa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Tuma Ruhusa ya Desturi +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Hakuna vitu vilivyopatikana. DocType: Data Export,Fields Multicheck,Mashamba Wengi DocType: Activity Log,Login,Ingia DocType: Web Form,Payments,Malipo @@ -1449,8 +1472,9 @@ DocType: Address,Postal,Posta DocType: Email Account,Default Incoming,Incoming Incoming DocType: Workflow State,repeat,kurudia DocType: Website Settings,Banner,Bendera +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Thamani lazima iwe moja ya {0} DocType: Role,"If disabled, this role will be removed from all users.","Ikiwa imezimwa, jukumu hili litaondolewa kutoka kwa watumiaji wote." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Nenda kwenye orodha ya {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Nenda kwenye orodha ya {0} 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 @@ -1464,6 +1488,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Jina la Jina la Mahali DocType: DocType,Track Changes,Fuatilia Mabadiliko DocType: Workflow State,Check,Angalia DocType: Chat Profile,Offline,Hifadhi ya mbali +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Imeingizwa vizuri {0} DocType: User,API Key,Muhimu wa API DocType: Email Account,Send unsubscribe message in email,Tuma ujumbe usiojiandikisha kwa barua pepe apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Badilisha Title @@ -1490,11 +1515,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} tayari ametoa thamani ya chaguo msingi ya {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                      No results found for '

                                                                                                      ,

                                                                                                      Hakuna matokeo yaliyopatikana ya '

                                                                                                      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 @@ -1515,8 +1540,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Hairuhusiwi kwa {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 sio sahihi ya muundo ya ripoti. Fomu ya ripoti lazima iwe moja ya yafuatayo% s DocType: Chat Message,Chat,Ongea +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sanidi> Ruhusa za Mtumiaji DocType: LDAP Group Mapping,LDAP Group Mapping,Ramani ya Kikundi cha LDAP DocType: Dashboard Chart,Chart Options,Chaguzi za Chati +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Safu isiyo na jina apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} kutoka {1} hadi {2} mfululizo # {3} DocType: Communication,Expired,Imekufa apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Inaonekana ishara unayoyotumia ni batili! @@ -1526,6 +1553,7 @@ DocType: DocType,System,Mfumo DocType: Web Form,Max Attachment Size (in MB),Ukubwa wa Kiambatisho cha Max (katika MB) apps/frappe/frappe/www/login.html,Have an account? Login,"Je, una akaunti? Ingia" DocType: Workflow State,arrow-down,mshale-chini +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Njia {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Mtumiaji haruhusiwi kufuta {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} ya {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Imesasishwa Mwisho @@ -1541,6 +1569,7 @@ DocType: Custom Role,Custom Role,Kazi ya Utekelezaji apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Faili ya Nyumba / Mtihani 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ingiza nenosiri lako DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Lazima) DocType: Social Login Key,Social Login Provider,Msaidizi wa Kuingia kwa Jamii apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,Ongeza maoni mengine apps/frappe/frappe/core/doctype/data_import/importer.py,No data found in the file. Please reattach the new file with data.,Hakuna data iliyopatikana kwenye faili. Tafadhali rejesha faili mpya na data. @@ -1614,6 +1643,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Onyesha Da apps/frappe/frappe/desk/form/assign_to.py,New Message,Ujumbe mpya DocType: File,Preview HTML,Angalia HTML DocType: Desktop Icon,query-report,ripoti-swala +DocType: Data Import Beta,Template Warnings,Onyo la Kiolezo apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filters zimehifadhiwa DocType: DocField,Percent,Asilimia apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Tafadhali weka vichujio @@ -1635,6 +1665,7 @@ DocType: Custom Field,Custom,Desturi DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Ikiwa imewezeshwa, watumiaji wanaoingia kutoka kwenye Anwani ya IP ya Vikwazo, hawataongozwa kwa mbili Factor Auth" DocType: Auto Repeat,Get Contacts,Pata Mawasiliano apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Ujumbe uliowekwa chini ya {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Kuruka safu isiyo na kichwa DocType: Notification,Send alert if date matches this field's value,Tuma tahadhari ikiwa tarehe inalingana na thamani ya uwanja huu DocType: Workflow,Transitions,Mabadiliko apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} kwa {2} @@ -1658,6 +1689,7 @@ DocType: Workflow State,step-backward,hatua ya nyuma apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Tafadhali weka funguo za kufikia Dropbox katika config configure yako apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Futa rekodi hii ili kuruhusu kutuma kwa anwani hii ya barua pepe +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Ikiwa bandari isiyo ya kiwango (kwa mfano POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Badilisha njia za mkato apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Mashamba ya lazima tu ni muhimu kwa rekodi mpya. Unaweza kufuta safu zisizo lazima ikiwa unataka. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Onyesha Shughuli Zaidi @@ -1765,7 +1797,9 @@ DocType: Note,Seen By Table,Imeonekana kwa Jedwali apps/frappe/frappe/www/third_party_apps.html,Logged in,Imeingia apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Default Kutuma na Kikasha DocType: System Settings,OTP App,Programu ya OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Imesasisha kwa mafanikio rekodi ya {0} kati ya {1}. DocType: Google Drive,Send Email for Successful Backup,Tuma Barua pepe ya Backup Mafanikio +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Ratiba haifanyi kazi. Haiwezi kuingiza data. DocType: Print Settings,Letter,Barua DocType: DocType,"Naming Options:
                                                                                                      1. field:[fieldname] - By Field
                                                                                                      2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                      3. Prompt - Prompt user for a name
                                                                                                      4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                      5. @@ -1779,6 +1813,7 @@ DocType: GCalendar Account,Next Sync Token,Ishara ya Usawazishaji ijayo DocType: Energy Point Settings,Energy Point Settings,Mipangilio ya Uhakika wa Nishati DocType: Async Task,Succeeded,Imefanikiwa apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Mashamba ya lazima inahitajika {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                        No results found for '

                                                                                                        ,

                                                                                                        Hakuna matokeo yaliyopatikana ya '

                                                                                                        apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Rudisha Ruhusa kwa {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Watumiaji na Ruhusa DocType: S3 Backup Settings,S3 Backup Settings,S3 Mipangilio ya Backup @@ -1849,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,In DocType: Notification,Value Change,Mabadiliko ya Thamani DocType: Google Contacts,Authorize Google Contacts Access,Idhini Upataji wa Anwani za Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Inaonyesha mashamba ya Numeric tu kutoka Ripoti +DocType: Data Import Beta,Import Type,Aina ya kuagiza DocType: Access Log,HTML Page,Ukurasa wa HTML DocType: Address,Subsidiary,Msaidizi apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Kujaribu Kuunganishwa na Tray ya QZ ... @@ -1859,7 +1895,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Seva ya ba DocType: Custom DocPerm,Write,Andika apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Msimamizi tu aliruhusiwa kuunda Ripoti ya Maswala / Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Inasasisha -DocType: File,Preview,Angalia +DocType: Data Import Beta,Preview,Angalia apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Shamba "thamani" ni lazima. Tafadhali taja thamani ya kutafishwa DocType: Customize Form,Use this fieldname to generate title,Tumia jina la uwanja ili kuzalisha jina apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Ingiza Email Kutoka @@ -1942,6 +1978,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Msanii haukuba DocType: Social Login Key,Client URLs,URL za wateja apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Taarifa zingine hazipo apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} imeundwa kwa ufanisi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Kuruka {0} kati ya {1}, {2}" DocType: Custom DocPerm,Cancel,Futa apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Futa kwa Wingi apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Faili {0} haipo @@ -1969,7 +2006,6 @@ DocType: GCalendar Account,Session Token,Ishara ya Kipindi DocType: Currency,Symbol,Siri apps/frappe/frappe/model/base_document.py,Row #{0}:,Row # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Thibitisha Kufuta kwa Takwimu -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Barua pepe mpya ya barua pepe apps/frappe/frappe/auth.py,Login not allowed at this time,Ingia haruhusiwi kwa wakati huu DocType: Data Migration Run,Current Mapping Action,Hatua ya Sasa ya Ramani DocType: Dashboard Chart Source,Source Name,Jina la Chanzo @@ -1982,6 +2018,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Bomb apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Ikifuatiwa na DocType: LDAP Settings,LDAP Email Field,Anwani ya Barua pepe ya LDAP apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,Orodha ya {0} +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Usafirishaji rekodi {0} apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Tayari kwa orodha ya mtumiaji DocType: User Email,Enable Outgoing,Wezesha Kuondoka DocType: Address,Fax,Faksi @@ -2039,8 +2076,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Nyaraka za Kuchapisha apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Rukia shamba DocType: Contact Us Settings,Forward To Email Address,Kwenda Kwa Anwani ya barua pepe +DocType: Contact Phone,Is Primary Phone,Simu ya Msingi apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Tuma barua pepe kwa {0} ili kuiunganisha hapa. DocType: Auto Email Report,Weekdays,Siku za wiki +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,Rekodi za {0} zitahamishwa apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Shamba la kichwa lazima iwe jina la shamba la halali DocType: Post Comment,Post Comment,Chapisha maoni apps/frappe/frappe/config/core.py,Documents,Nyaraka @@ -2058,7 +2097,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Shamba hii itaonekana tu kama jina la uwanja linalotafsiriwa hapa lina thamani OR LA sheria ni za kweli (mifano): myfield eval: doc.myfield == 'Thamani yangu' eval: doc.age> 18 DocType: Social Login Key,Office 365,Ofisi 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Leo +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Mara baada ya kuweka hii, watumiaji wataweza kufikia nyaraka (kwa mfano Blog post) ambako kiungo hipo (kwa mfano Blogger)." +DocType: Data Import Beta,Submit After Import,Tuma baada ya Kuingiza DocType: Error Log,Log of Scheduler Errors,Msajili wa Makosa ya Mpangilio DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,Siri ya Mteja wa Programu @@ -2077,10 +2118,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Zima kiungo cha Kuingia kwa Wateja kwenye ukurasa wa Ingia apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Imewekwa kwa / Mmiliki DocType: Workflow State,arrow-left,Mshale-kushoto +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Hamisha rekodi 1 DocType: Workflow State,fullscreen,skrini kamili DocType: Chat Token,Chat Token,Ishara ya kuzungumza apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Unda Chati apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Usiingize DocType: Web Page,Center,Kituo DocType: Notification,Value To Be Set,Thamani Ili Kuwekwa apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Badilisha {0} @@ -2100,6 +2143,7 @@ DocType: Print Format,Show Section Headings,Onyesha vichwa vya sehemu DocType: Bulk Update,Limit,Punguza apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Tumepokea ombi la kufutwa kwa data ya {0} inayohusiana na: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Ongeza sehemu mpya +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Rekodi zilizochujwa apps/frappe/frappe/www/printview.py,No template found at path: {0},Hakuna template iliyopatikana kwa njia: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Hakuna Akaunti ya Barua pepe DocType: Comment,Cancelled,Imefunguliwa @@ -2185,10 +2229,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Aina za Hati ya Tafuta na Ulimwenguni. ,Lead Conversion Time,Muda wa Kubadili Uongozi apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Jenga Ripoti DocType: Note,Notify users with a popup when they log in,Wajulishe watumiaji wenye popup wakati wanaingia +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Moduli za msingi {0} haziwezi kutafutwa katika Utafutaji wa Ulimwenguni. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Fungua Ongea apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} haipo, chagua lengo jipya la kuunganisha" DocType: Data Migration Connector,Python Module,Moduli ya Python @@ -2205,8 +2252,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Funga 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sanidi> Ruhusa za Mtumiaji -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Sasisha +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Sasisha DocType: Transaction Log,Transaction Hash,Shughuli ya Hash DocType: Error Snapshot,Snapshot View,Kuangalia Snapshot apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Tafadhali salama jarida kabla ya kutuma @@ -2222,6 +2268,7 @@ DocType: Data Import,In Progress,Inaendelea apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Iliyotokana na uhifadhi. Inaweza kuchukua dakika chache kwa saa. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Ruhusa ya mtumiaji tayari ipo +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Safu wizi ya ramani {0} kwa shamba {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Tazama {0} DocType: User,Hourly,Kila Saa apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Jisajili Programu ya Mteja wa OAuth @@ -2234,7 +2281,6 @@ DocType: SMS Settings,SMS Gateway URL,URL ya Hifadhi ya SMS apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} haiwezi kuwa "{2}". Inapaswa kuwa moja ya "{3}" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},kupatikana na {0} kupitia sheria otomatiki {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} au {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Mwisho Mwisho DocType: Workflow State,trash,takataka DocType: System Settings,Older backups will be automatically deleted,Backups za zamani zitafutwa moja kwa moja apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Kitambulisho cha Kufikia Ufikiaji batili au Kitufe cha Upatikanaji wa siri. @@ -2262,6 +2308,7 @@ DocType: Address,Preferred Shipping Address,Anwani ya Maandalizi ya Maandalizi apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Kwa kichwa cha Barua apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} umba hii {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Hairuhusiwi kwa {0}: {1} katika safu ya mto {2}. Uga uliozuiliwa: {3} +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 Usanidi> Barua pepe> Akaunti ya barua pepe DocType: S3 Backup Settings,eu-west-1,eu-magharibi-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Ikiwa hii imechungwa, safu na data halali zitaagizwa na safu zisizo sahihi zitatupwa kwenye faili mpya ili uingize baadaye." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Hati ni editable tu kwa watumiaji wa jukumu @@ -2288,6 +2335,7 @@ DocType: Custom Field,Is Mandatory Field,Ni Field ya lazima DocType: User,Website User,Mtumiaji wa tovuti apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Safu zingine zinaweza kukatwa wakati unachapishwa kwa PDF. Jaribu kuweka idadi ya safuwima chini ya 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Si sawa +DocType: Data Import Beta,Don't Send Emails,Usitumie Barua pepe DocType: Integration Request,Integration Request Service,Utumishi wa Huduma ya Kuomba DocType: Access Log,Access Log,Ingia Ingia DocType: Website Script,Script to attach to all web pages.,Hati ya kushikamana na kurasa zote za wavuti. @@ -2327,6 +2375,7 @@ DocType: Contact,Passive,Passive DocType: Auto Repeat,Accounts Manager,Meneja wa Hesabu apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Kazi kwa {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Malipo yako yamefutwa. +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/views/reports/report_view.js,Select File Type,Chagua Aina ya Picha apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Tazama zote DocType: Help Article,Knowledge Base Editor,Mhariri wa Msingi wa Maarifa @@ -2359,6 +2408,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Takwimu apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Hali ya Hati apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Idhini inahitajika +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Rekodi zifuatazo zinahitaji kutengenezwa kabla ya kuingiza faili yako. DocType: OAuth Authorization Code,OAuth Authorization Code,Kanuni ya Authorization ya OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Hairuhusiwi kuingiza DocType: Deleted Document,Deleted DocType,DocType iliyofutwa @@ -2412,6 +2462,7 @@ DocType: System Settings,System Settings,Mifumo ya Mfumo DocType: GCalendar Settings,Google API Credentials,Vidokezo vya Google API apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Mwanzo wa Kipindi Imeshindwa apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Barua pepe hii ilipelekwa {0} na kunakiliwa {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},imewasilisha hati hii {0} DocType: Workflow State,th,t DocType: Social Login Key,Provider Name,Jina la Mtoa huduma apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Unda mpya {0} @@ -2420,6 +2471,7 @@ DocType: GCalendar Account,GCalendar Account,Akaunti ya GCalendar DocType: Email Rule,Is Spam,Ni Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Ripoti {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Fungua {0} +DocType: Data Import Beta,Import Warnings,Onesha Onyo DocType: OAuth Client,Default Redirect URI,Default Rejea URI DocType: Auto Repeat,Recipients,Wapokeaji DocType: System Settings,Choose authentication method to be used by all users,Chagua mbinu ya uthibitishaji itumiwe na watumiaji wote @@ -2537,6 +2589,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Ripoti kusas apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Error Webhook DocType: Email Flag Queue,Unread,Haijasomwa DocType: Bulk Update,Desk,Desk +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Kuruka safu {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filter lazima iwe tuple au orodha (katika orodha) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Andika swali la SELECT. Matokeo ya kumbuka haijafikiriwa (data yote inatumwa kwa moja). DocType: Email Account,Attachment Limit (MB),Kizuizi cha Kifungo (MB) @@ -2551,6 +2604,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Unda Mpya DocType: Workflow State,chevron-down,chevron-chini apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Barua pepe haijatumwa kwa {0} (unsubscribed / disabled) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Chagua shamba za kuuza nje DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Thamani ndogo ya Thamani ya Kipande apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Kuandaa Ripoti @@ -2559,6 +2613,7 @@ DocType: Workflow State,th-list,orodha ya t DocType: Web Page,Enable Comments,Wezesha Maoni apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Vidokezo DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Weka mtumiaji kutoka anwani hii ya IP tu. Anwani nyingi za IP zinaweza kuongezwa kwa kutenganisha na vito. Pia inakubali anwani za IP sehemu kama (111.111.111) +DocType: Data Import Beta,Import Preview,Angalia hakiki DocType: Communication,From,Kutoka apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Chagua node ya kikundi kwanza. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Tafuta {0} katika {1} @@ -2656,6 +2711,7 @@ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Kati ya DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Umewekwa +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Usanidi> Fomu ya Kubinafsisha DocType: Braintree Settings,Use Sandbox,Tumia Sandbox apps/frappe/frappe/utils/goal.py,This month,Mwezi huu apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Mpangilio mpya wa kuchapa desturi @@ -2700,6 +2756,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Mwandishi apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Tuma tena Kutuma apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Fungua tena +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Onyesha Maonyo apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Mtumiaji wa Ununuzi DocType: Data Migration Run,Push Failed,Kushinikiza Imeshindwa @@ -2736,6 +2793,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Utafut apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Huruhusiwi kuona jarida. DocType: User,Interests,Maslahi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Maelekezo ya kuweka upya nenosiri yamepelekwa kwa barua pepe yako +DocType: Energy Point Rule,Allot Points To Assigned Users,Pointi za Zote kwa Watumiaji waliotengwa apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Kiwango cha 0 ni kwa ruhusa za kiwango cha hati, ngazi za juu za ruhusa za kiwango cha shamba." DocType: Contact Email,Is Primary,Msingi @@ -2758,6 +2816,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Aina ya Nje DocType: Workflow State,circle-arrow-left,mduara-arrow-kushoto DocType: System Settings,Force User to Reset Password,Lazimisha Mtumiaji Kurejesha Nenosiri apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Ili kupata ripoti iliyosasishwa, bonyeza kwenye {0}." @@ -2770,13 +2829,16 @@ DocType: Contact,Middle Name,Jina la kati DocType: Custom Field,Field Description,Maelezo ya shamba apps/frappe/frappe/model/naming.py,Name not set via Prompt,Jina lisitishwe kupitia Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox ya barua pepe +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Inasasisha {0} ya {1}, {2}" DocType: Auto Email Report,Filters Display,Maonyesho ya Filters apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",uwanja "uliorekebishwa" kutoka "lazima uwepo kufanya marekebisho. +DocType: Contact,Numbers,Hesabu apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} alithamini kazi yako kwenye {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Hifadhi vichungi DocType: Address,Plant,Mmea apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Jibu Wote DocType: DocType,Setup,Kuweka +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Rekodi zote DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Anwani ya Barua pepe ambayo Mawasiliano ya Google inapaswa kusawazishwa. DocType: Email Account,Initial Sync Count,Hesabu ya Usawazishaji wa awali DocType: Workflow State,glass,kioo @@ -2801,7 +2863,7 @@ DocType: Workflow State,font,font DocType: DocType,Show Preview Popup,Onyesha kidukizo cha hakiki apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Hii ni nenosiri la kawaida la 100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Tafadhali uwawezesha pop-ups -DocType: User,Mobile No,Simu ya Simu +DocType: Contact,Mobile No,Simu ya Simu DocType: Communication,Text Content,Maudhui ya Nakala DocType: Customize Form Field,Is Custom Field,Ni Field Field DocType: Workflow,"If checked, all other workflows become inactive.","Ikiwa imechungwa, kazi nyingine zote za kazi hazitumiki." @@ -2847,6 +2909,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Ongez apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Jina la Format mpya ya Kuchapa apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Badilisha ubaba DocType: Data Migration Run,Pull Insert,Pata Ingiza +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Pointi kubwa zinazoruhusiwa baada ya kuzidisha vidokezo na thamani ya kuzidisha (Kumbuka: Kwa ukomo hakuna eneo lote likiwa tupu au seti 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Kiolezo batili apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Swali lisilo halali la SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Inashauriwa: DocType: Chat Message,Mentions,Inasema @@ -2861,6 +2926,7 @@ DocType: User Permission,User Permission,Ruhusa ya Mtumiaji apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Haijawekwa apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Pakua na data +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},maadili yaliyobadilishwa kwa {0} {1} DocType: Workflow State,hand-right,mkono wa kulia DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Mkoa @@ -2887,10 +2953,12 @@ DocType: Braintree Settings,Public Key,Muhimu wa Umma DocType: GSuite Settings,GSuite Settings,Mipangilio ya GSuite DocType: Address,Links,Viungo DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Inatumia Jina la Anwani ya Barua pepe iliyotajwa katika Akaunti hii kama Jina la Mtumaji kwa barua pepe zote zilizotumwa kwa kutumia Akaunti hii. +DocType: Energy Point Rule,Field To Check,Shamba Kuangalia apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Anwani za Google - Haikuweza kusasisha anwani katika Anwani za Google {0}, nambari ya makosa {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Tafadhali chagua Aina ya Hati. apps/frappe/frappe/model/base_document.py,Value missing for,Thamani ya kukosa apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Ongeza Mtoto +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Kuendeleza Maendeleo DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",Ikiwa hali imeridhika mtumiaji atalipwa na alama. mfano. doc.status == 'Imefungwa' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Kumbukumbu iliyotumwa haiwezi kufutwa. @@ -2927,6 +2995,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Idua Upataji wa Kalend apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Ukurasa unayoutafuta haupo. Hii inaweza kuwa kwa sababu imehamishwa au kuna typo katika kiungo. apps/frappe/frappe/www/404.html,Error Code: {0},Msimbo wa Hitilafu: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Maelezo kwa orodha ya ukurasa, katika maandishi wazi, tu mistari michache. (max 140 characters)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} ni uwanja wa lazima DocType: Workflow,Allow Self Approval,Ruhusu kibali cha kibinafsi DocType: Event,Event Category,Jamii ya Tukio apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -2974,6 +3043,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Sogeza kwa DocType: Address,Preferred Billing Address,Anwani ya kulipia ya kupendekezwa apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Wengi huandika katika ombi moja. Tafadhali tuma maombi madogo apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Hifadhi ya Google imeundwa. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Aina ya Hati {0} imerudiwa. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Maadili yalibadilishwa DocType: Workflow State,arrow-up,mshale-up apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Ili kusanidi Kurudia Kiotomatiki, Wezesha "Ruhusu Kurudiwa Kiotomatiki" kutoka {0}." @@ -3062,6 +3132,7 @@ DocType: Custom Field,Options Help,Chaguo Msaada 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 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 @@ -3079,6 +3150,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Kanuni ya kuthibitisha DocType: Webhook,Webhook Request,Ombi la wavuti apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Imeshindwa: {0} kwa {1}: {2} DocType: Data Migration Mapping,Mapping Type,Aina ya Ramani +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Chagua lazima apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Vinjari apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Hakuna haja ya alama, tarakimu, au barua za kukuza." DocType: DocField,Currency,Fedha @@ -3109,11 +3181,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Barua ya kichwa Kulingana apps/frappe/frappe/utils/oauth.py,Token is missing,Ishara haipo apps/frappe/frappe/www/update-password.html,Set Password,Weka Nenosiri +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Imefanikiwa kuingiza rekodi {0}. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Kumbuka: Kubadili Jina la Ukurasa utavunja URL ya awali kwenye ukurasa huu. apps/frappe/frappe/utils/file_manager.py,Removed {0},Imeondolewa {0} DocType: SMS Settings,SMS Settings,Mipangilio ya SMS DocType: Company History,Highlight,Eleza DocType: Dashboard Chart,Sum,Sum +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,kupitia kuagiza data DocType: OAuth Provider Settings,Force,Nguvu apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Ilisawazishwa mwisho {0} DocType: DocField,Fold,Fold @@ -3150,6 +3224,7 @@ DocType: Workflow State,Home,Nyumbani DocType: OAuth Provider Settings,Auto,Auto DocType: System Settings,User can login using Email id or User Name,Mtumiaji anaweza kuingia kwa kutumia id ya barua pepe au Jina la mtumiaji DocType: Workflow State,question-sign,ishara-ishara +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} imezimwa apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Shamba "Njia" ni lazima kwa Maonesho ya Mtandao apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Weka Safu Kabla ya {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Mtumiaji kutoka uwanja huu atafadhiliwa alama @@ -3183,6 +3258,7 @@ DocType: Website Settings,Top Bar Items,Vipindi vya Bar vya Juu DocType: Notification,Print Settings,Mipangilio ya Magazeti DocType: Page,Yes,Ndiyo DocType: DocType,Max Attachments,Vyombo vya Max +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Karibu sekunde {0} zilizobaki DocType: Calendar View,End Date Field,Shamba ya Tarehe ya Mwisho apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Njia za mkato za Ulimwenguni DocType: Desktop Icon,Page,Ukurasa @@ -3293,6 +3369,7 @@ DocType: GSuite Settings,Allow GSuite access,Ruhusu ufikiaji wa GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Kuita jina apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Chagua Wote +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Safu {0} apps/frappe/frappe/config/customization.py,Custom Translations,Tafsiri za Desturi apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Maendeleo apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,Kwa Jukumu @@ -3339,6 +3416,7 @@ apps/frappe/frappe/public/js/frappe/chat.js,Discard,Lazima apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,Saa 1 iliyopita DocType: Website Settings,Home Page,Ukurasa wa Mwanzo DocType: Error Snapshot,Parent Error Snapshot,Hitilafu ya Mzazi ya Hitilafu +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Zima safu wima kutoka {0} hadi shamba katika {1} DocType: Access Log,Filters,Filters DocType: Workflow State,share-alt,kushiriki-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Foleni inapaswa kuwa moja ya {0} @@ -3358,6 +3436,7 @@ DocType: Calendar View,Start Date Field,Shamba ya Tarehe ya Mwanzo DocType: Role,Role Name,Jina la majukumu apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Badilisha kwenye dawati apps/frappe/frappe/config/core.py,Script or Query reports,Ripoti za Hati au Maswala +DocType: Contact Phone,Is Primary Mobile,Ni Simu ya Msingi DocType: Workflow Document State,Workflow Document State,Hali ya Kumbukumbu ya Kazi ya Kazi apps/frappe/frappe/public/js/frappe/request.js,File too big,Faili kubwa sana apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Akaunti ya barua pepe imeongeza mara nyingi @@ -3403,6 +3482,7 @@ DocType: DocField,Float,Fungua DocType: Print Settings,Page Settings,Mipangilio ya Ukurasa apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Inaokoa ... apps/frappe/frappe/www/update-password.html,Invalid Password,Nywila isiyo sahihi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Imarejeshwa kwa rekodi ya {0} kati ya {1}. DocType: Contact,Purchase Master Manager,Meneja Mwalimu wa Ununuzi apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Bonyeza kwenye icon ya kugeuza ili ubadilishe umma / kibinafsi DocType: Module Def,Module Name,Jina la Moduli @@ -3436,6 +3516,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,Tafadhali ingiza nambari za simu za halali apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Baadhi ya vipengele haviwezi kufanya kazi katika kivinjari chako. Tafadhali sasisha kivinjari chako kwa toleo la hivi karibuni. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Sijui, uulize 'msaada'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ilighairi hati hii {0} DocType: DocType,Comments and Communications will be associated with this linked document,Maoni na Mawasiliano zitahusishwa na hati hii iliyounganishwa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Futa ... DocType: Workflow State,bold,ujasiri @@ -3454,6 +3535,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Ongeza / Dhib DocType: Comment,Published,Ilichapishwa apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Asante kwa barua pepe yako DocType: DocField,Small Text,Nakala ndogo +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Nambari {0} haiwezi kuwekwa kama msingi kwa Simu na Simu Nambari ya simu. DocType: Workflow,Allow approval for creator of the document,Ruhusu idhini kwa muumba wa waraka apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Hifadhi Ripoti DocType: Webhook,on_cancel,on_cancel @@ -3511,6 +3593,7 @@ DocType: Print Settings,PDF Settings,Mipangilio ya PDF DocType: Kanban Board Column,Column Name,Jina la safu DocType: Language,Based On,Kulingana na DocType: Email Account,"For more information, click here.","Kwa habari zaidi, bonyeza hapa ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Idadi ya safuwima hailingani na data apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Fanya Kutofautiana apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Wakati wa Utekelezaji: {0} sec apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Njia batili ni pamoja na njia @@ -3599,7 +3682,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You,Mt apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have atleast one recipient,Kijarida kinapaswa kuwa na mpokeaji mmoja bora DocType: Deleted Document,GCalendar Sync ID,Kitambulisho cha Usawazishaji wa GCalendar DocType: Prepared Report,Report Start Time,Ripoti Muda wa Kuanza -apps/frappe/frappe/config/settings.py,Export Data,Tuma Data +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Tuma Data 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. @@ -3617,7 +3700,6 @@ DocType: Report,Disable Prepared Report,Lemaza Ripoti Iliyotayarishwa apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Mtumiaji {0} ameomba kufutwa kwa data apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Tokeni ya Upatikanaji Haki. Tafadhali jaribu tena apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Programu imesasishwa kwa toleo jipya, tafadhali rasha upya ukurasa huu" -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. DocType: Notification,Optional: The alert will be sent if this expression is true,Hiari: Tahadhari itatumwa ikiwa maneno haya ni ya kweli DocType: Data Migration Plan,Plan Name,Mpango Jina DocType: Print Settings,Print with letterhead,Chapisha na kichwa cha barua @@ -3657,6 +3739,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Haiwezi kuweka Marekebisho bila kufuta apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Ukurasa kamili DocType: DocType,Is Child Table,Ni Jedwali la Watoto +DocType: Data Import Beta,Template Options,Chaguzi za Kiolezo apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} lazima iwe moja ya {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} kwa sasa huangalia hati hii apps/frappe/frappe/config/core.py,Background Email Queue,Background Queue ya barua pepe @@ -3664,7 +3747,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Weka upya nenosiri DocType: Communication,Opened,Ilifunguliwa DocType: Workflow State,chevron-left,chevron-kushoto DocType: Communication,Sending,Inatuma -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Hairuhusiwi kutoka kwa Anwani hii ya IP DocType: Website Slideshow,This goes above the slideshow.,Hii inakwenda juu ya slideshow. DocType: Contact,Last Name,Jina la familia DocType: Event,Private,Privat @@ -3678,7 +3760,6 @@ DocType: Workflow Action,Workflow Action,Actionflow Action apps/frappe/frappe/utils/bot.py,I found these: ,Nimekuta haya: DocType: Event,Send an email reminder in the morning,Tuma mawaidha ya barua pepe asubuhi DocType: Blog Post,Published On,Imechapishwa On -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 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} @@ -3699,7 +3780,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,ishara-ishara DocType: Prepared Report,Prepared Report,Ripoti iliyoandaliwa apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Ongeza vitambulisho vya meta kwenye kurasa zako za wavuti -DocType: Contact,Phone Nos,Nos za simu 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 @@ -3716,6 +3796,7 @@ DocType: Data Migration Connector,Data Migration,Uhamiaji wa Takwimu DocType: User,API Key cannot be regenerated,Muhimu wa API hauwezi kubadilishwa tena apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Kitu kilichokosa DocType: System Settings,Number Format,Aina ya Nambari +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Imefanikiwa kuweka rekodi ya {0}. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Muhtasari DocType: Event,Event Participants,Washiriki wa Tukio DocType: Auto Repeat,Frequency,Upepo @@ -3723,7 +3804,7 @@ DocType: Custom Field,Insert After,Ingiza Baada DocType: Event,Sync with Google Calendar,Sawazisha na Kalenda ya Google DocType: Access Log,Report Name,Ripoti Jina DocType: Desktop Icon,Reverse Icon Color,Reverse Icon Rangi -DocType: Notification,Save,Hifadhi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Hifadhi apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Tarehe iliyofuata iliyopangwa apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Agiza kwa yule aliye na kazi ndogo zaidi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Sehemu ya kichwa @@ -3746,11 +3827,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Usanidi> Fomu ya Kubinafsisha 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 DocType: Desktop Icon,Category,Jamii +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Thamani {0} inakosekana kwa {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Ongeza Mawasiliano apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Mazingira apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Upanuzi wa script ya mteja kwenye Javascript @@ -3773,6 +3854,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Sasisha ya uhakika apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Tafadhali chagua njia nyingine ya malipo. PayPal haitoi shughuli katika fedha '{0}' DocType: Chat Message,Room Type,Aina ya Chumba +DocType: Data Import Beta,Import Log Preview,Hakikisha Ingia hakiki apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Kutafuta uwanja {0} halali apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,faili iliyopakiwa DocType: Workflow State,ok-circle,ok-mduara @@ -3837,6 +3919,7 @@ DocType: DocType,Allow Auto Repeat,Ruhusu Kurudia Moja kwa Moja apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Hakuna maadili ya kuonyesha DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Kigezo cha Barua pepe +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Imesasisha kwa mafanikio rekodi ya {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Mtumiaji {0} hana ufikiaji wa uchunguzi kupitia ruhusa ya jukumu kwa hati {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Ingia zote na nenosiri linahitajika apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Tafadhali furahisha ili kupata hati ya hivi karibuni. diff --git a/frappe/translations/ta.csv b/frappe/translations/ta.csv index a8ae70fdfc..14af27bbd9 100644 --- a/frappe/translations/ta.csv +++ b/frappe/translations/ta.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,பின்வரும் பயன்பாடுகளுக்கான புதிய {} வெளியீடுகள் கிடைக்கின்றன apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,தயவு செய்து ஒரு தொகை களம் தேர்ந்தெடுக்கவும். +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,இறக்குமதி கோப்பை ஏற்றுகிறது ... DocType: Assignment Rule,Last User,கடைசி பயனர் apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ஒரு புதிய பணி, {0} {1} உங்களுக்கு ஒதுக்கப்பட்ட. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,அமர்வு இயல்புநிலைகள் சேமிக்கப்பட்டன +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,கோப்பை மீண்டும் ஏற்றவும் DocType: Email Queue,Email Queue records.,மின்னஞ்சல் வரிசையில் பதிவுகள். DocType: Post,Post,போஸ்ட் DocType: Address,Punjab,பஞ்சாப் @@ -44,6 +46,7 @@ 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,அளவுரு @@ -71,7 +74,7 @@ DocType: Auto Repeat,Monthly,மாதாந்தர DocType: Address,Uttarakhand,உத்தரகண்ட் DocType: Email Account,Enable Incoming,உள்வரும் இயக்கு apps/frappe/frappe/core/doctype/version/version_view.html,Danger,ஆபத்து -apps/frappe/frappe/www/login.py,Email Address,மின்னஞ்சல் முகவரி +DocType: Address,Email Address,மின்னஞ்சல் முகவரி DocType: Workflow State,th-large,"ம், பெரிய" DocType: Communication,Unread Notification Sent,அனுப்பப்பட்டது படிக்காத அறிவிப்பு apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ஏற்றுமதி அனுமதி இல்லை . ஏற்றுமதி செய்ய நீங்கள் {0} பங்கு வேண்டும் . @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,நிர DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","தொடர்பு விருப்பங்கள், ஒரு புதிய பாதையில் ஹிப்ரு ஒவ்வொரு "விற்பனை கேள்வி, வினா ஆதரவு" அல்லது பிரிக்கப்பட்ட." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,குறிச்சொல்லைச் சேர் ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ஓவிய -DocType: Data Migration Run,Insert,நுழைக்கவும் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,நுழைக்கவும் apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google Drive ஐ அனுமதி apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},வாய்ப்புகள் {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,அடிப்படை URL ஐ உள்ளிடுக @@ -118,17 +121,17 @@ 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,தீம் உள்ளமைக்கவும் DocType: Company History,Company History,நிறுவனத்தின் வரலாறு -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,மீட்டமை +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,மீட்டமை DocType: Workflow State,volume-up,தொகுதி அப் apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,வலை பயன்பாடுகளில் ஏபிஐ அழைப்பு கோரிக்கை API கோரிக்கைகள் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,டிரேஸ்பேக்கைக் காட்டு DocType: DocType,Default Print Format,முன்னிருப்பு அச்சு வடிவம் DocType: Workflow State,Tags,குறிச்சொற்களை apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,None: பணியோட்ட முடிவு apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","அல்லாத தனிப்பட்ட தற்போதுள்ள மதிப்புகள் உள்ளன என {0} துறையில், {1} போன்ற தனிப்பட்ட அமைக்க முடியாது" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ஆவண வகைகள் +DocType: Global Search Settings,Document Types,ஆவண வகைகள் DocType: Address,Jammu and Kashmir,ஜம்மு காஷ்மீர் DocType: Workflow,Workflow State Field,பணியோட்டம் மாநிலம் புலம் -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,அமைப்பு> பயனர் DocType: Language,Guest,விருந்தினர் DocType: DocType,Title Field,தலைப்பு புலம் DocType: Error Log,Error Log,பிழை பதிவு @@ -137,6 +140,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","ஏபிசி" விட "abcabcabc" ஊகிக்க மட்டுமே சற்று கடினமாக உள்ளன போன்ற மறுநிகழ்வுகள் DocType: Notification,Channel,ஒளியலை வரிசை apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","இந்த அங்கீகரிக்கப்படாத என்று நினைக்கிறேன் என்றால், நிர்வாகி கடவுச்சொல்லை மாற்ற வேண்டும்." +DocType: Data Import Beta,Data Import Beta,தரவு இறக்குமதி பீட்டா apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} கட்டாயமானதாகும் DocType: Assignment Rule,Assignment Rules,ஒதுக்கீட்டு விதிகள் DocType: Workflow State,eject,வெளியேற்றுவீர்கள் @@ -163,6 +167,7 @@ DocType: Workflow Action Master,Workflow Action Name,பணியோட்ட apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE ஒன்றாக்க முடியாது DocType: Web Form Field,Fieldtype,துறை வகை apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ஒரு zip கோப்பு +DocType: Global Search DocType,Global Search DocType,உலகளாவிய தேடல் டாக் டைப் DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                        New {{ doc.doctype }} #{{ doc.name }}
                                                                                                        ","மாறும் பொருள் சேர்க்க, jinja குறிச்சொற்களை பயன்படுத்த
                                                                                                         New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                        " @@ -184,6 +189,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc நிகழ்வு apps/frappe/frappe/public/js/frappe/utils/user.js,You,நீங்கள் DocType: Braintree Settings,Braintree Settings,Braintree அமைப்புகள் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} பதிவுகளை வெற்றிகரமாக உருவாக்கியது. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,வடிகட்டி சேமி DocType: Print Format,Helvetica,ஹெல்வெடிகா apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} ஐ நீக்க முடியாது @@ -210,6 +216,7 @@ DocType: SMS Settings,Enter url parameter for message,செய்தி இண apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,இந்த ஆவணத்திற்காக தானாக மீண்டும் உருவாக்கப்பட்டது apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,உங்கள் உலாவியில் அறிக்கை காண்க apps/frappe/frappe/config/desk.py,Event and other calendars.,நிகழ்வு மற்றும் பிற நாள்காட்டி. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 வரிசை கட்டாயமானது) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,அனைத்து துறைகள் கருத்து சமர்ப்பிக்க அவசியமாக இருக்கிறது. DocType: Custom Script,Adds a client custom script to a DocType,கிளையன்ட் தனிப்பயன் ஸ்கிரிப்டை டாக் டைப்பில் சேர்க்கிறது DocType: Print Settings,Printer Name,அச்சுப்பொறி பெயர் @@ -251,7 +258,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},ஜ DocType: Bulk Update,Bulk Update,மொத்த புதுப்பிப்பு DocType: Workflow State,chevron-up,செவ்ரான் அப் DocType: DocType,Allow Guest to View,விருந்தினர் காண்க அனுமதி -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,நிரந்தரமாக {0} நீக்கவா? apps/frappe/frappe/utils/oauth.py,Not Allowed,அனுமதி இல்லை @@ -267,6 +273,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,காட்சி DocType: Email Group,Total Subscribers,மொத்த சந்தாதாரர்கள் apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},மேலே {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,வரிசை எண் apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ஒரு பாத்திரத்தில் நிலை 0 அணுகல் இல்லை என்றால் , பின்னர் உயர் மட்டங்களில் பொருளற்றது ." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,சேமி ' DocType: Comment,Seen,ஸீன் @@ -307,6 +314,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,உதாரணமாக: DocType: Workflow,Defines workflow states and rules for a document.,ஒரு ஆவணம் முறையை மாநிலங்கள் மற்றும் விதிகள் வரையறுக்கிறது. DocType: Workflow State,Filter,வடிகட்டி @@ -329,6 +337,7 @@ DocType: Activity Log,Closed,மூடப்பட்ட DocType: Blog Settings,Blog Title,தலைப்பு apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,ஸ்டாண்டர்ட் வேடங்களில் முடக்க முடியாது apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,அரட்டை வகை +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,வரைபட நெடுவரிசைகள் DocType: Address,Mizoram,மிசோரம் DocType: Newsletter,Newsletter,செய்தி மடல் apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,மூலம் பொருட்டு துணை கேள்வி பயன்படுத்த முடியாது @@ -396,6 +405,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,பய DocType: System Settings,Currency Precision,நாணய துல்லிய DocType: System Settings,Currency Precision,நாணய துல்லிய apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,மற்றொரு பரிவர்த்தனை இந்த ஒரு தடுப்பதை. ஒரு சில நொடிகளில் மீண்டும் முயற்சிக்கவும். +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,வடிப்பான்களை அழி DocType: Test Runner,App,பயன்பாட்டை apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,இணைப்புகளை புதிய ஆவணத்துடன் சரியாக இணைக்க முடியவில்லை DocType: Chat Message Attachment,Attachment,இணைப்பு @@ -436,7 +446,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html,"Your query has been receive apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,உள்வரும் இயக்கப்பட்டால் மட்டுமே தானியங்கி இணைப்பை செயல்படுத்த முடியும். DocType: LDAP Settings,LDAP Middle Name Field,LDAP மத்திய பெயர் புலம் DocType: GCalendar Account,Allow GCalendar Access,GCalendar அணுகலை அனுமதிக்கவும் -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} ஒரு கட்டாயத் துறை +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} ஒரு கட்டாயத் துறை apps/frappe/frappe/templates/includes/login/login.js,Login token required,தேதி டோக்கன் தேவை apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,மாதாந்திர தரவரிசை: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,பல பட்டியல் உருப்படிகளைத் தேர்ந்தெடுக்கவும் @@ -466,6 +476,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},இணைக்க ம apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,தன்னை ஒரு வார்த்தை யூகிக்க எளிதானது. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},தானியங்கு பணி தோல்வியுற்றது: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,தேடல் ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,நிறுவனத்தின் தேர்ந்தெடுக்கவும் apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,ஞானக்குகை குழு முதல் குழு அல்லது இலை முனை முதல் இலை கணு இடையே மட்டுமே சாத்தியம் apps/frappe/frappe/utils/file_manager.py,Added {0},சேர்க்கப்பட்டது {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,பொருந்தும் பதிவுகள் இல்லை. புதிய ஏதாவது தேடல் @@ -478,7 +489,6 @@ DocType: Google Settings,OAuth Client ID,OAuth கிளையண்ட் ஐ DocType: Auto Repeat,Subject,பொருள் apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,டெஸ்க்டிற்கு திரும்புக DocType: Web Form,Amount Based On Field,தொகை துறையில் அடிப்படையில் -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து இயல்புநிலை மின்னஞ்சல் கணக்கை அமைக்கவும் apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,பயனர் பகிர் அத்தியாவசியமானதாகும் DocType: DocField,Hidden,மறைத்து DocType: Web Form,Allow Incomplete Forms,விண்ணப்பங்கள் பாரங்கள் அனுமதி @@ -515,6 +525,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} மற்றும் {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,உரையாடலைத் தொடங்கவும். DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",எப்போதும் அச்சிடும் வரைவு ஆவணங்களை தலைப்பு "வரைவு" சேர்க்க apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},அறிவிப்பில் பிழை: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு DocType: Data Migration Run,Current Mapping Start,தற்போதைய மேப்பிங் தொடக்கம் apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,மின்னஞ்சல் ஸ்பேம் என்று குறிக்கப்பட்டுள்ளது DocType: Comment,Website Manager,இணைய மேலாளர் @@ -552,6 +563,7 @@ DocType: Workflow State,barcode,பார்கோடு apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,உப வினவ அல்லது செயல்பாட்டின் பயன்பாடு தடைசெய்யப்பட்டுள்ளது apps/frappe/frappe/config/customization.py,Add your own translations,உங்கள் சொந்த மொழிபெயர்ப்பு சேர் DocType: Country,Country Name,நாட்டின் பெயர் +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,வெற்று வார்ப்புரு DocType: About Us Team Member,About Us Team Member,எங்களை குழு உறுப்பினர் பற்றி apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","அனுமதிகள் அறிக்கை , இறக்குமதி , ஏற்றுமதி, அச்சு, மின்னஞ்சல் மற்றும் அமை பயனர் அனுமதிகள் , திருத்தவோ, ரத்து , சமர்ப்பிக்க , நீக்கு , உருவாக்க , வாசிக்க, எழுத, போன்ற உரிமைகள் அமைப்பு மூலம் பங்களிப்பு மற்றும் ஆவண வகைகள் ( டாக்டைப்கள் அழைக்கப்படுகிறது) அமைக்கப்படுகின்றன ." DocType: Event,Wednesday,புதன்கிழமை @@ -564,6 +576,7 @@ DocType: Website Settings,Website Theme Image Link,இணையதளம் த DocType: Web Form,Sidebar Items,பக்கப்பட்டி பொருட்கள் DocType: Web Form,Show as Grid,கட்டமாக காட்டு apps/frappe/frappe/installer.py,App {0} already installed,பயன்பாடு {0} ஏற்கனவே நிறுவப்பட்ட +DocType: Energy Point Rule,Users assigned to the reference document will get points.,குறிப்பு ஆவணத்திற்கு ஒதுக்கப்பட்ட பயனர்களுக்கு புள்ளிகள் கிடைக்கும். apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,முன்னோட்டம் இல்லை DocType: Workflow State,exclamation-sign,ஆச்சரியக்குறி-அறிகுறி apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,அன்சிப் செய்யப்பட்ட {0} கோப்புகள் @@ -600,6 +613,7 @@ DocType: Notification,Days Before,"நாட்கள் முன்பு," apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,தினசரி நிகழ்வுகள் ஒரே நாளில் முடிக்கப்பட வேண்டும். apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,தொகு... DocType: Workflow State,volume-down,தொகுதி-கீழே +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,இந்த ஐபி முகவரியிலிருந்து அணுகல் அனுமதிக்கப்படவில்லை apps/frappe/frappe/desk/reportview.py,No Tags,குறிகள் இல்லை DocType: Email Account,Send Notification to,அறிவிப்பு அனுப்ப DocType: DocField,Collapsible,மடக்கு @@ -655,6 +669,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,படைப்பாளி apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,உருவாக்கப்பட்டது 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,இயல்புநிலை அச்சு மொழி apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,முன்னோர்கள் apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ரூட் {0} நீக்க முடியாது @@ -696,6 +711,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",இலக்கு = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,தொகுப்பாளர் +DocType: Data Import Beta,Import File,கோப்பை இறக்குமதி செய்க apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,வரிசை {0} ஏற்கனவே உள்ளன. DocType: ToDo,High,உயர் apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,புதிய நிகழ்வு @@ -724,8 +740,6 @@ DocType: User,Send Notifications for Email threads,மின்னஞ்சல apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,பேராசிரியர் apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,படைப்பாளி பயன்முறையில் இல்லை apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,கோப்பு காப்பு தயாராக உள்ளது -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",பெருக்கி மதிப்புடன் புள்ளிகளைப் பெருக்கி பிறகு அதிகபட்ச புள்ளிகள் அனுமதிக்கப்படுகின்றன (குறிப்பு: வரம்பு நிர்ணயிக்கப்பட்ட மதிப்பு 0 ஆக இல்லை) DocType: DocField,In Global Search,குளோபல் சர்ச் DocType: System Settings,Brute Force Security,ப்ரூட் ஃபோர்ஸ் செக்யூரிட்டி DocType: Workflow State,indent-left,உள்தள் இடது @@ -767,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',பயனர் '{0}' ஏற்கனவே பங்கு உள்ளது '{1}' DocType: System Settings,Two Factor Authentication method,இரண்டு காரணி அங்கீகார முறை apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"முதலில் பெயரை அமைக்கவும், பதிவுகளை சேமிக்கவும்." +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 பதிவுகள் apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},பகிரப்பட்டது {0} apps/frappe/frappe/email/queue.py,Unsubscribe,குழுவிலகலைப் DocType: View Log,Reference Name,குறிப்பு பெயர் @@ -816,6 +831,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,மின்னஞ்சல் நிலைமை கண்காணிக்க DocType: Note,Notify Users On Every Login,ஒவ்வொரு உள்நுழைய பயனர் தெரிவி DocType: Note,Notify Users On Every Login,ஒவ்வொரு உள்நுழைய பயனர் தெரிவி +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,புதுப்பிக்கப்பட்ட {0} பதிவுகள். DocType: PayPal Settings,API Password,ஏபிஐ கடவுச்சொல் apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,பைதான் தொகுதி உள்ளிடுக அல்லது இணைப்பு வகை தேர்ந்தெடுக்கவும் apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,புலம் பெயர் விருப்ப புலம் அமைக்க @@ -844,9 +860,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,மதிப்பு மாற்றப்பட்டது apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},நகல் பெயர் {0} {1} -DocType: Email Queue,Retry,மீண்டும் முயற்சி செய் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,மீண்டும் முயற்சி செய் +DocType: Contact Phone,Number,எண் DocType: Web Form Field,Web Form Field,வலை படிவம் களம் apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,உங்களிடம் புதிய செய்தி உள்ளது: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML ஐ திருத்து apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,திருப்பி விடு URL ஐ உள்ளிடுக apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Restore Original Permissions,அசல் அனுமதிகள் மீட்டமை @@ -870,7 +888,7 @@ DocType: Notification,View Properties (via Customize Form),(தனிப்ப apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,ஒரு கோப்பைத் தேர்ந்தெடுக்க அதைக் கிளிக் செய்க. DocType: Note Seen By,Note Seen By,பார்க்கப்படுகிறது குறிப்பு apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,மேலும் திருப்பங்களை கொண்ட ஒரு நீண்ட விசைப்பலகை முறை பயன்படுத்த முயற்சி -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,முன்னிலை +,LeaderBoard,முன்னிலை DocType: DocType,Default Sort Order,இயல்புநிலை வரிசை வரிசை DocType: Address,Rajasthan,ராஜஸ்தான் DocType: Email Template,Email Reply Help,மின்னஞ்சல் பதில் உதவி @@ -905,6 +923,7 @@ apps/frappe/frappe/utils/data.py,Cent,சதவீதம் apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,மின்னஞ்சல் எழுது apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","திடுக்கிடும் அமெரிக்கா (எ.கா. வரைவு , அங்கீகரிக்கப்பட்ட , ரத்து செய்யப்பட்டது ) ." DocType: Print Settings,Allow Print for Draft,வரைவு அச்சு அனுமதி +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/link_selector.js,Set Quantity,அமைக்கவும் அளவு apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,உறுதிப்படுத்த இந்த ஆவணம் சமர்ப்பிக்க DocType: Contact,Unsubscribed,குழுவிலகப்பட்டது @@ -935,6 +954,7 @@ DocType: LDAP Settings,Organizational Unit for Users,பயனர்களுக ,Transaction Log Report,பரிவர்த்தனை பதிவு அறிக்கை DocType: Custom DocPerm,Custom DocPerm,விருப்ப DocPerm DocType: Newsletter,Send Unsubscribe Link,அனுப்பவும் குழுவிலகல் இணைப்பு +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,உங்கள் கோப்பை நாங்கள் இறக்குமதி செய்வதற்கு முன்பு சில இணைக்கப்பட்ட பதிவுகள் உருவாக்கப்பட வேண்டும். பின்வரும் காணாமல் போன பதிவுகளை தானாக உருவாக்க விரும்புகிறீர்களா? DocType: Access Log,Method,வகை DocType: Report,Script Report,ஸ்கிரிப்ட் அறிக்கை DocType: OAuth Authorization Code,Scopes,நோக்கங்கள் @@ -975,6 +995,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,வெற்றிகரமாக பதிவேற்றப்பட்டது apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,நீங்கள் இணையத்துடன் இணைக்கப்பட்டுள்ளீர்கள். DocType: Social Login Key,Enable Social Login,சமூக உள்நுழைவை இயக்கு +DocType: Data Import Beta,Warnings,எச்சரிக்கைகள் DocType: Communication,Event,சம்பவம் apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} இல், {1} எழுதினார்:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,தரநிலை புல நீக்க முடியாது. நீங்கள் விரும்பினால் நீங்கள் அதை மறைக்க முடியாது @@ -1030,6 +1051,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,கீழ DocType: Kanban Board Column,Blue,ப்ளூ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,அனைத்து விருப்பம் நீக்கப்படும். தயவுசெய்து உறுதிப்படுத்துங்கள். DocType: Page,Page HTML,பக்கம் HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,பிழையான வரிசைகளை ஏற்றுமதி செய்க apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,குழு பெயர் காலியாக இருக்க முடியாது. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,மேலும் முனைகளில் ஒரே 'குரூப்' வகை முனைகளில் கீழ் உருவாக்கப்பட்ட DocType: SMS Parameter,Header,தலைவர் @@ -1069,13 +1091,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,கடந்துவிட்டது அவுட் கோரிக்கை apps/frappe/frappe/config/settings.py,Enable / Disable Domains,களங்கள் இயக்கு / முடக்கு DocType: Role Permission for Page and Report,Allow Roles,பாத்திரங்கள் அனுமதி +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{1} இல் {0} பதிவுகளை வெற்றிகரமாக இறக்குமதி செய்தது. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","எளிய பைதான் வெளிப்பாடு, எடுத்துக்காட்டு: நிலை ("தவறானது")" DocType: User,Last Active,செயலில் கடந்த DocType: Email Account,SMTP Settings for outgoing emails,வெளியேறும் மின்னஞ்சல்கள் SMTP அமைப்புகள் apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ஒரு தேர்வு DocType: Data Export,Filter List,வடிகட்டி பட்டியல் DocType: Data Export,Excel,எக்செல் -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,உங்கள் கடவுச்சொல் புதுப்பிக்கப்பட்டது. இங்கே உங்கள் புதிய கடவுச்சொல்லை ஆகிறது DocType: Email Account,Auto Reply Message,வாகன பதில் செய்தி DocType: Data Migration Mapping,Condition,நிபந்தனை apps/frappe/frappe/utils/data.py,{0} hours ago,{0} மணி நேரம் முன்பு @@ -1084,7 +1106,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,பயனர் ஐடி DocType: Communication,Sent,அனுப்பப்பட்டது DocType: Address,Kerala,கேரளா -DocType: File,Lft,LFT apps/frappe/frappe/public/js/frappe/desk.js,Administration,நிர்வாகம் DocType: User,Simultaneous Sessions,ஒரே நேரத்தில் அமர்வுகள் DocType: Social Login Key,Client Credentials,வாடிக்கையாளர் விவரம் @@ -1116,7 +1137,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},பு apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,தலைவன் DocType: DocType,User Cannot Create,பயனர் உருவாக்க முடியாது apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,வெற்றிகரமாக முடிந்தது -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,அடைவு {0} இல்லை apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,டிராப்பாக்ஸ் அணுகல் ஏற்கப்பட்டுள்ளது! DocType: Customize Form,Enter Form Type,படிவம் வகை உள்ளிடவும் DocType: Google Drive,Authorize Google Drive Access,Google இயக்கக அணுகலை அங்கீகரிக்கவும் @@ -1124,7 +1144,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,பதிவுகள் எதுவும் குறித்துள்ளார். apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,களம் நீக்க apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,நீங்கள் இணையத்துடன் இணைக்கப்படவில்லை. சிறிது நேரம் கழித்து மீண்டும் முயற்சிக்கவும். -DocType: User,Send Password Update Notification,கடவுச்சொல் மேம்படுத்தல் அறிவிப்பு அனுப்பவும் apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","அனுமதிப்பது DOCTYPE , DOCTYPE . கவனமாக இருங்கள்!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","அச்சு, மின்னஞ்சல் அமைத்துக்கொள்ள வடிவங்கள்" apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,புதிய பதிப்பு மேம்படுத்தப்பட்டது @@ -1207,6 +1226,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,தவறான ச apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google தொடர்புகள் ஒருங்கிணைப்பு முடக்கப்பட்டுள்ளது. DocType: Assignment Rule,Description,விளக்கம் DocType: Print Settings,Repeat Header and Footer in PDF,PDF இல் தலைப்பு மற்றும் அடிக்குறிப்பு மீண்டும் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,தோல்வி DocType: Address Template,Is Default,இயல்புநிலை DocType: Data Migration Connector,Connector Type,இணைப்பு வகை apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,வரிசை பெயர்கள் காலியாக இருக்க முடியாது @@ -1270,6 +1290,7 @@ DocType: Print Settings,Enable Raw Printing,மூல அச்சிடலை DocType: Website Route Redirect,Source,மூல apps/frappe/frappe/templates/includes/list/filters.html,clear,தெளிவான apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,முடிந்தது +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,அமைப்பு> பயனர் DocType: Prepared Report,Filter Values,வடிகட்டி மதிப்புகள் DocType: Communication,User Tags,பயனர் குறிச்சொற்கள் DocType: Data Migration Run,Fail,தோல்வி @@ -1326,6 +1347,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,ப ,Activity,நடவடிக்கை DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","உதவி:. அமைப்பு மற்றொரு சாதனை இணைக்க, "# படிவம் / குறிப்பு / [குறிப்பு பெயர்]" இணைப்பு URL பயன்படுத்த ("Http://" பயன்படுத்த வேண்டாம்)" DocType: User Permission,Allow,அனுமதி +DocType: Data Import Beta,Update Existing Records,இருக்கும் பதிவுகளை புதுப்பிக்கவும் apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,மீண்டும் மீண்டும் வார்த்தைகள் மற்றும் பாத்திரங்கள் தவிர்க்க நாம் DocType: Energy Point Rule,Energy Point Rule,எனர்ஜி பாயிண்ட் விதி DocType: Communication,Delayed,தாமதமாக @@ -1338,9 +1360,7 @@ DocType: Milestone,Track Field,ட்ராக் புலம் DocType: Notification,Set Property After Alert,எச்சரிக்கை பிறகு குணம் அமைத்தல் apps/frappe/frappe/config/customization.py,Add fields to forms.,வடிவங்கள் துறைகளில் சேர்க்க . apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ஏதாவது போல் தெரிகிறது இந்த தளத்தின் பேபால் கட்டமைப்பு தவறு உள்ளது. -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/sidebar/review.js,Add Review,மதிப்பாய்வைச் சேர் -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),எழுத்துரு அளவு (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,தனிப்பயனாக்கு படிவத்திலிருந்து தனிப்பயனாக்க நிலையான டாக் டைப்புகள் மட்டுமே அனுமதிக்கப்படுகின்றன. DocType: Email Account,Sendgrid,Sendgrid @@ -1376,6 +1396,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,வ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,மன்னிக்கவும்! நீங்கள் தானாக உருவாக்கப்பட்ட கருத்துகளை நீக்க முடியாது DocType: Google Settings,Used For Google Maps Integration.,Google வரைபட ஒருங்கிணைப்புக்கு பயன்படுத்தப்படுகிறது. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,குறிப்பு Doctype +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,எந்த பதிவுகளும் ஏற்றுமதி செய்யப்படாது DocType: User,System User,கணினி பயனர் DocType: Report,Is Standard,ஸ்டாண்டர்ட் உள்ளது DocType: Desktop Icon,_report,அறிக்கை @@ -1390,6 +1411,7 @@ DocType: Workflow State,minus-sign,கழித்தல்-அறிகுற apps/frappe/frappe/public/js/frappe/request.js,Not Found,கிடைக்கவில்லை apps/frappe/frappe/www/printview.py,No {0} permission,இல்லை {0} அனுமதி apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ஏற்றுமதி விருப்ப அனுமதிகள் +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,உருப்படிகள் எதுவும் இல்லை. DocType: Data Export,Fields Multicheck,புலங்கள் Multicheck DocType: Activity Log,Login,உள் நுழை DocType: Web Form,Payments,பணம் @@ -1450,7 +1472,7 @@ DocType: Email Account,Default Incoming,இயல்புநிலை உள் DocType: Workflow State,repeat,ஒப்பி DocType: Website Settings,Banner,சிறிய கொடி DocType: Role,"If disabled, this role will be removed from all users.","முடக்கப்பட்டுள்ளது என்றால், இந்த பங்கு அனைத்து பயனர்கள் இருந்து நீக்கப்படும்." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} பட்டியலுக்குச் செல்லவும் +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,தேடல் உதவி DocType: Milestone,Milestone Tracker,மைல்கல் டிராக்கர் apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,பதிவு ஆனாலும் முடக்கத்தில் @@ -1464,6 +1486,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,உள்ளூர் ப DocType: DocType,Track Changes,ட்ராக் மாற்றங்கள் DocType: Workflow State,Check,சோதனை DocType: Chat Profile,Offline,ஆஃப்லைன் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},வெற்றிகரமாக இறக்குமதி செய்யப்பட்டது {0} DocType: User,API Key,API விசை DocType: Email Account,Send unsubscribe message in email,அனுப்பவும் மின்னஞ்சல் சந்தாவிலகு செய்தி apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,திருத்த தலைப்பு @@ -1493,7 +1516,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ 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,மொத்த பக்கங்கள் -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                        No results found for '

                                                                                                        ,

                                                                                                        '

                                                                                                        DocType: DocField,Attach Image,படத்தை இணைக்கவும் DocType: Workflow State,list-alt,பட்டியல்-alt apps/frappe/frappe/www/update-password.html,Password Updated,கடவுச்சொல் இற்றை @@ -1514,8 +1536,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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 செல்லுபடியாகும் அறிக்கை வடிவில் இல்லை. அறிக்கை வடிவம் பின்வரும்% கள் ஒரு \ வேண்டும் DocType: Chat Message,Chat,அரட்டை +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,அமைவு> பயனர் அனுமதிகள் DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP குழு மேப்பிங் DocType: Dashboard Chart,Chart Options,விளக்கப்படம் விருப்பங்கள் +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,பெயரிடப்படாத நெடுவரிசை apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} இலிருந்து {1} {2} இல் வரிசையில் # க்கு {3} DocType: Communication,Expired,காலாவதியான apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,நீங்கள் பயன்படுத்தும் டோக்கன் தவறானது! @@ -1525,6 +1549,7 @@ DocType: DocType,System,முறை DocType: Web Form,Max Attachment Size (in MB),மேக்ஸ் இணைப்பு அளவு (MB யில்) apps/frappe/frappe/www/login.html,Have an account? Login,ஒரு கணக்கு உள்ளதா? உள் நுழை DocType: Workflow State,arrow-down,அம்புக்குறி-கீழே +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},வரிசை {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},பயனர் நீக்க அனுமதி இல்லை {0} {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} இன் {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,கடைசியாக புதுப்பிக்கப்பட்டது @@ -1542,6 +1567,7 @@ DocType: Custom Role,Custom Role,விருப்ப பங்கு apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,முகப்பு / டெஸ்ட் அடைவு 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,உங்கள் கடவுச்சொல்லை உள்ளிடவும் DocType: Dropbox Settings,Dropbox Access Secret,டிரா பாக்ஸ் அணுகல் ரகசியம் +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(கட்டாயமாகும்) 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.,கோப்பில் தரவு எதுவும் இல்லை. தரவுடன் புதிய கோப்பை மீண்டும் இணைக்கவும். @@ -1612,6 +1638,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,டாஷ apps/frappe/frappe/desk/form/assign_to.py,New Message,புதிய தகவல் DocType: File,Preview HTML,முன்னோட்ட HTML DocType: Desktop Icon,query-report,கேள்வி-அறிக்கை +DocType: Data Import Beta,Template Warnings,வார்ப்புரு எச்சரிக்கைகள் apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,வடிகட்டிகள் சேமிக்கப்படும் DocType: DocField,Percent,சதவீதம் apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,வடிகட்டிகள் அமைக்க தயவு செய்து @@ -1633,6 +1660,7 @@ DocType: Custom Field,Custom,விருப்ப DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","இயக்கப்பட்டிருந்தால், வரையறுக்கப்பட்ட IP முகவரிக்கு உள்நுழைய பயனர்கள் இரண்டு கார்ட்டர் Auth க்கு கேட்கப்படமாட்டார்கள்" DocType: Auto Repeat,Get Contacts,தொடர்புகள் கிடைக்கும் apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},கீழ் தாக்கல் இடுகைகள் {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,பெயரிடப்படாத நெடுவரிசையைத் தவிர்க்கிறது DocType: Notification,Send alert if date matches this field's value,தேதி இந்த துறையில் மதிப்பு பொருந்தும் என்றால் எச்சரிக்கை அனுப்பவும் DocType: Workflow,Transitions,மாற்றங்கள் apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} க்கு {2} @@ -1656,6 +1684,7 @@ DocType: Workflow State,step-backward,படி-பின்தங்கிய apps/frappe/frappe/utils/boilerplate.py,{app_title},{ பயன்பாட்டை தலைப்பு } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,உங்கள் தளத்தில் கட்டமைப்பு டிராப்பாக்ஸ் அணுகல் விசைகள் அமைக்கவும் apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,இந்த மின்னஞ்சல் முகவரிக்கு அனுப்பும் அனுமதிக்க இந்தப் பதிவை நீக்கு +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","தரமற்ற போர்ட் என்றால் (எ.கா. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,குறுக்குவழிகளைத் தனிப்பயனாக்குங்கள் apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"ஒரே கட்டாய துறைகள், புதிய பதிவுகள் அவசியம். நீங்கள் விரும்பினால் நீங்கள் அல்லாத கட்டாய பத்திகள் நீக்க முடியும்." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,மேலும் செயல்பாட்டைக் காட்டு @@ -1760,6 +1789,7 @@ 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 பயன்பாடு 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,கடிதம் DocType: DocType,"Naming Options:
                                                                                                        1. field:[fieldname] - By Field
                                                                                                        2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                        3. Prompt - Prompt user for a name
                                                                                                        4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                        5. @@ -1773,6 +1803,7 @@ DocType: GCalendar Account,Next Sync Token,அடுத்த ஒத்திச DocType: Energy Point Settings,Energy Point Settings,எனர்ஜி பாயிண்ட் அமைப்புகள் DocType: Async Task,Succeeded,முன்னவர் apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},தேவையான கட்டாய துறைகள் {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                          No results found for '

                                                                                                          ,

                                                                                                          '

                                                                                                          apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} அனுமதிகள் மீட்டமை ? apps/frappe/frappe/config/desktop.py,Users and Permissions,பயனர்கள் மற்றும் அனுமதிகள் DocType: S3 Backup Settings,S3 Backup Settings,S3 காப்பு அமைப்பு @@ -1844,6 +1875,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,இல் DocType: Notification,Value Change,மதிப்பு மாற்றம் DocType: Google Contacts,Authorize Google Contacts Access,Google தொடர்புகள் அணுகலை அங்கீகரிக்கவும் apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,அறிக்கை இருந்து எண் துறைகள் மட்டும் காட்டும் +DocType: Data Import Beta,Import Type,இறக்குமதி வகை DocType: Access Log,HTML Page,HTML பக்கம் DocType: Address,Subsidiary,உப apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ தட்டுக்கான இணைப்பை முயற்சிக்கிறது ... @@ -1854,7 +1886,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,செல DocType: Custom DocPerm,Write,எழுது apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,ஒரே நிர்வாகி கேள்வி / ஸ்கிரிப்ட் அறிக்கைகள் உருவாக்க அனுமதி apps/frappe/frappe/public/js/frappe/form/save.js,Updating,புதுப்பித்தல் -DocType: File,Preview,முன்னோட்டம் +DocType: Data Import Beta,Preview,முன்னோட்டம் apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",களம் "மதிப்பு" கட்டாயமாகும். மேம்படுத்தப்பட்ட வேண்டும் மதிப்பு குறிப்பிடவும் DocType: Customize Form,Use this fieldname to generate title,தலைப்பு உருவாக்க இந்த FIELDNAME பயன்படுத்தவும் apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,இருந்து இறக்குமதி மின்னஞ்சல் @@ -1966,7 +1998,6 @@ DocType: GCalendar Account,Session Token,அமர்வு டோக்கன DocType: Currency,Symbol,அடையாளம் apps/frappe/frappe/model/base_document.py,Row #{0}:,ரோ # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,தரவை நீக்குவதை உறுதிப்படுத்தவும் -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,புதிய கடவுச்சொல்லை மின்னஞ்சல் apps/frappe/frappe/auth.py,Login not allowed at this time,உள்நுழைய இந்த நேரத்தில் அனுமதி இல்லை DocType: Data Migration Run,Current Mapping Action,தற்போதைய வரைபட செயல் DocType: Dashboard Chart Source,Source Name,மூல பெயர் @@ -1979,6 +2010,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,உ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,தொடர்ந்து DocType: LDAP Settings,LDAP Email Field,"LDAP, மின்னஞ்சல் களம்" apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} பட்டியல் +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} பதிவுகளை ஏற்றுமதி செய்க apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ஏற்கனவே பயனர் பட்டியலில் செய்ய உள்ள DocType: User Email,Enable Outgoing,வெளிச்செல்லும் இயக்கு DocType: Address,Fax,தொலைநகல் @@ -2038,7 +2070,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,அச்சு ஆவணங்கள் apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,களத்தில் செல்லவும் DocType: Contact Us Settings,Forward To Email Address,முன்னோக்கி மின்னஞ்சல் முகவரியை +DocType: Contact Phone,Is Primary Phone,முதன்மை தொலைபேசி DocType: Auto Email Report,Weekdays,வார +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} பதிவுகள் ஏற்றுமதி செய்யப்படும் apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,தலைப்பு துறையில் ஒரு செல்லுபடியாகும் FIELDNAME இருக்க வேண்டும் DocType: Post Comment,Post Comment,கருத்து தெரிவி apps/frappe/frappe/config/core.py,Documents,ஆவணங்கள் @@ -2057,7 +2091,9 @@ eval:doc.age>18",இங்கே வரையறுக்கப்பட் DocType: Social Login Key,Office 365,அலுவலகம் 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,இன்று apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,இன்று +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","நீங்கள் இந்த அமைக்க வேண்டும் ஒருமுறை , பயனர்கள் மட்டுமே முடியும் அணுகல் ஆவணங்களை இணைப்பு உள்ளது, அங்கு (எ.கா. வலைப்பதிவு போஸ்ட் ) (எ.கா. Blogger) இருக்கும்." +DocType: Data Import Beta,Submit After Import,இறக்குமதி செய்த பிறகு சமர்ப்பிக்கவும் DocType: Error Log,Log of Scheduler Errors,திட்டமிடுதல் பிழைகள் பரிசீலனை DocType: User,Bio,உயிரி DocType: OAuth Client,App Client Secret,பயன்பாட்டை வாடிக்கையாளர் இரகசிய @@ -2076,10 +2112,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,உள்நுழைவு பக்கம் வாடிக்கையாளர் பதிவு இணைப்பு முடக்கு apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ உரிமையாளர் ஒதுக்கப்படும் DocType: Workflow State,arrow-left,அம்பு இடது +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,ஏற்றுமதி 1 பதிவு DocType: Workflow State,fullscreen,முழுத்திரை DocType: Chat Token,Chat Token,அரட்டை டோக்கன் apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,விளக்கப்படத்தை உருவாக்கவும் apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,இறக்குமதி செய்ய வேண்டாம் DocType: Web Page,Center,மையம் DocType: Notification,Value To Be Set,மதிப்பு அமைக்க apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} @@ -2099,6 +2137,7 @@ DocType: Print Format,Show Section Headings,பிரிவில் தலை DocType: Bulk Update,Limit,அளவு apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},இதனுடன் தொடர்புடைய {0} தரவை நீக்க கோரிக்கை எங்களுக்கு வந்துள்ளது: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,புதிய பிரிவைச் சேர்க்கவும் +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,வடிகட்டிய பதிவுகள் apps/frappe/frappe/www/printview.py,No template found at path: {0},பாதையை எதுவும் வார்ப்புரு: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,மின்னஞ்சல் எந்தக் கணக்கையும் DocType: Comment,Cancelled,ரத்து @@ -2184,7 +2223,9 @@ 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} 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,உங்கள் உள்நுழைவு ஐடி இருக்கும் +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,உலகளாவிய தேடல் ஆவண வகைகள் மீட்டமை. ,Lead Conversion Time,மாற்ற நேரம் எடு apps/frappe/frappe/desk/page/activity/activity.js,Build Report,அறிக்கை கட்ட DocType: Note,Notify users with a popup when they log in,அவர்கள் உள்நுழைந்து போது ஒரு popup பயனர்கள் தெரிவி @@ -2204,8 +2245,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,மூடவும் 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,அமைவு> பயனர் அனுமதிகள் -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,புதுப்பிக்க +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,புதுப்பிக்க DocType: Transaction Log,Transaction Hash,பரிவர்த்தனை ஹாஷ் DocType: Error Snapshot,Snapshot View,நொடிப்பு காண்க apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"அனுப்பும் முன் செய்திமடல் சேமிக்க , தயவு செய்து" @@ -2232,7 +2272,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,புள்ளி DocType: SMS Settings,SMS Gateway URL,எஸ்எம்எஸ் வாயில் URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} இருக்க முடியாது ""{2}"". இது ""{3}"" ஒன்றாக இருக்க வேண்டும்" apps/frappe/frappe/utils/data.py,{0} or {1},{0} அல்லது {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,கடவுச்சொல் புதுப்பிக்கப்பட்டது DocType: Workflow State,trash,குப்பைக்கு DocType: System Settings,Older backups will be automatically deleted,பழைய காப்பு தானாகவே நீக்கப்படும் apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,தவறான அணுகல் விசை ஐடி அல்லது இரகசிய அணுகல் விசை. @@ -2260,6 +2299,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,எ DocType: Address,Preferred Shipping Address,விருப்பமான கப்பல் முகவரி apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,கடிதம் தலை apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} உருவாக்கப்பட்ட இந்த {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு அமைக்கப்படவில்லை. அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து புதிய மின்னஞ்சல் கணக்கை உருவாக்கவும் DocType: S3 Backup Settings,eu-west-1,EU-மேற்கு-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","இது சரிபார்க்கப்பட்டால், செல்லுபடியாகும் தரவின் வரிசைகள் இறக்குமதி செய்யப்படும் மற்றும் செல்லாத வரிசைகள் பின்னர் நீங்கள் இறக்குமதி செய்ய ஒரு புதிய கோப்பில் போடப்படும்." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,ஆவண பங்கு பயனர்கள் மட்டுமே திருத்தக்கூடிய @@ -2286,6 +2326,7 @@ DocType: Custom Field,Is Mandatory Field,இன்றியமையாதது DocType: User,Website User,வலைத்தளம் பயனர் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,PDF இல் அச்சிடும் போது சில நெடுவரிசைகள் துண்டிக்கப்படலாம். நெடுவரிசைகளின் எண்ணிக்கையை 10 க்கு கீழ் வைக்க முயற்சிக்கவும். apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,சமமில்லைக்குறி +DocType: Data Import Beta,Don't Send Emails,மின்னஞ்சல்களை அனுப்ப வேண்டாம் DocType: Integration Request,Integration Request Service,ஒருங்கிணைப்பு வேண்டுகோள் சேவை DocType: Access Log,Access Log,அணுகல் பதிவு DocType: Website Script,Script to attach to all web pages.,ஸ்கிரிப்ட் பக்கங்களை இணைக்க. @@ -2325,6 +2366,7 @@ DocType: Contact,Passive,மந்தமான DocType: Auto Repeat,Accounts Manager,கணக்குகள் மேலாளர் apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} க்கான ஒதுக்கீடு apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,உங்கள் பணம் ரத்துசெய்யப்பட்டது. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து இயல்புநிலை மின்னஞ்சல் கணக்கை அமைக்கவும் apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,கோப்பு வகை தேர்வு apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,அனைத்தையும் காட்டு DocType: Help Article,Knowledge Base Editor,அறிவு தளம் ஆசிரியர் @@ -2356,6 +2398,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,தரவு apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,ஆவண நிலைமை apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,ஒப்புதல் தேவை +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,உங்கள் கோப்பை நாங்கள் இறக்குமதி செய்வதற்கு முன் பின்வரும் பதிவுகளை உருவாக்க வேண்டும். DocType: OAuth Authorization Code,OAuth Authorization Code,அறிந்திருந்தால் அங்கீகார குறியீடு apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,இறக்குமதி செய்ய அனுமதி இல்லை DocType: Deleted Document,Deleted DocType,நீக்கப்பட்ட DOCTYPE @@ -2409,8 +2452,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API சான்று apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,அமர்வு தொடக்க தோல்வி apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,அமர்வு தொடக்க தோல்வி apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},இந்த மின்னஞ்சல் {0} அனுப்பப்படும் நகலெடுக்கப்பட்டது {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},இந்த ஆவணத்தை சமர்ப்பித்தார் {0} DocType: Workflow State,th,வது -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு DocType: Social Login Key,Provider Name,வழங்குபவர் பெயர் apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ஒரு புதிய {0} உருவாக்கவும் DocType: Contact,Google Contacts,Google தொடர்புகள் @@ -2418,6 +2461,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar கணக்கு DocType: Email Rule,Is Spam,பழுதான உள்ளது apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},அறிக்கையில் {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},திறந்த {0} +DocType: Data Import Beta,Import Warnings,இறக்குமதி எச்சரிக்கைகள் DocType: OAuth Client,Default Redirect URI,இயல்பான திசைதிருப்பும்: URI DocType: Auto Repeat,Recipients,பெறுநர்கள் DocType: System Settings,Choose authentication method to be used by all users,எல்லா பயனர்களையும் பயன்படுத்தும் அங்கீகார முறையைத் தேர்வுசெய்க @@ -2534,6 +2578,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,அறிக apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,ஸ்லோக் வெப்ஹூக் பிழை DocType: Email Flag Queue,Unread,படிக்காத DocType: Bulk Update,Desk,டெஸ்க் +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},நெடுவரிசையைத் தவிர்க்கிறது {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),வடிகட்டி ஒரு டூப்பிள் அல்லது பட்டியலில் (அ பட்டியலில்) இருக்க வேண்டும் apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,ஒரு குறிப்பிட்ட கேள்வி எழுது. குறிப்பு விளைவாக (அனைத்து தரவு ஒரே முறையில் அனுப்பப்பட்ட) பேஜ் பண்ணி. DocType: Email Account,Attachment Limit (MB),இணைப்பு எல்லை (எம்பி) @@ -2548,6 +2593,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,புதிய உருவாக்கவும் DocType: Workflow State,chevron-down,செவ்ரான்-கீழே apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),மின்னஞ்சல் அனுப்பப்படவில்லை {0} (முடக்கப்பட்டுள்ளது / குழுவிலக்கப்பட்டீர்கள்) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,ஏற்றுமதி செய்ய புலங்களைத் தேர்ந்தெடுக்கவும் DocType: Async Task,Traceback,மீண்டும் கண்டுபிடிக்க DocType: Currency,Smallest Currency Fraction Value,மிகச்சிறிய நாணய பின்னம் மதிப்பு apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,அறிக்கை தயாரிக்கிறது @@ -2556,6 +2602,7 @@ DocType: Workflow State,th-list,வது பட்டியல் DocType: Web Page,Enable Comments,கருத்துரைகளை இயக்கு apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,குறிப்புகள் DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),இந்த ஐபி முகவரியை இருந்து பயனர் கட்டுப்படுத்த. பல ஐபி முகவரிகள் கமாவால் பிரித்து சேர்க்க முடியும். மேலும் போன்ற பகுதி ஐபி முகவரிகள் (111.111.111) ஏற்றுக்கொள்கிறார் +DocType: Data Import Beta,Import Preview,முன்னோட்டத்தை இறக்குமதி செய்க DocType: Communication,From,இருந்து apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,முதல் ஒரு குழு முனை தேர்ந்தெடுக்கவும். apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},உள்ள {0} கண்டுபிடிக்க {1} @@ -2654,6 +2701,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,இடையே DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,வரிசைப்படுத்திய +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,அமைவு> படிவத்தைத் தனிப்பயனாக்கு DocType: Braintree Settings,Use Sandbox,சாண்ட்பாக்ஸினைப் பயன்படுத்தவும் apps/frappe/frappe/utils/goal.py,This month,இந்த மாதம் apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,புதிய தனிபயன் அச்சு வடிவம் @@ -2668,6 +2716,7 @@ DocType: Session Default,Session Default,அமர்வு இயல்பு DocType: Chat Room,Last Message,கடைசி செய்தி DocType: OAuth Bearer Token,Access Token,அணுகல் டோக்கன் DocType: About Us Settings,Org History,org வரலாறு +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,சுமார் {0} நிமிடங்கள் மீதமுள்ளன DocType: Auto Repeat,Next Schedule Date,அடுத்த அட்டவணை தேதி DocType: Workflow,Workflow Name,பணியோட்டம் பெயர் DocType: DocShare,Notify by Email,மின்னஞ்சல் மூலம் அறிவிக்குமாறு @@ -2697,6 +2746,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,ஆசிரியர் apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,அனுப்புதல் மீண்டும் apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,மீண்டும் திற +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,எச்சரிக்கைகளைக் காட்டு apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: குறள் {0} DocType: Address,Purchase User,கொள்முதல் பயனர் DocType: Data Migration Run,Push Failed,புஷ் தோல்வி @@ -2734,6 +2784,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,மே apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,செய்திமலை பார்க்க நீங்கள் அனுமதி இல்லை. DocType: User,Interests,ஆர்வம் apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,கடவுச்சொல் மீட்டமைப்பு வழிமுறைகளை உங்கள் மின்னஞ்சல் அனுப்பப்படும் +DocType: Energy Point Rule,Allot Points To Assigned Users,ஒதுக்கப்பட்ட பயனர்களுக்கு புள்ளிகள் ஒதுக்குங்கள் apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","நிலை 0 ஆவணம் நிலை அனுமதிகளை, \ துறையில் நிலை அனுமதிகளை அதிக அளவு உள்ளது." DocType: Contact Email,Is Primary,முதன்மை @@ -2757,6 +2808,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,பதிப்பு சாவி DocType: Stripe Settings,Publishable Key,பதிப்பு சாவி apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,இறக்குமதி தொடங்கு +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,ஏற்றுமதி வகை DocType: Workflow State,circle-arrow-left,வட்டத்தை-அம்பு இடது DocType: System Settings,Force User to Reset Password,கடவுச்சொல்லை மீட்டமைக்க பயனரை கட்டாயப்படுத்தவும் apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis கொங்கணி இயங்கும். நிர்வாகி / தொழில்நுட்ப ஆதரவு தொடர்பு கொள்ளவும் @@ -2771,10 +2823,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,உடனடியா apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,மின்னஞ்சல் இன்பாக்ஸ் DocType: Auto Email Report,Filters Display,வடிகட்டிகள் காட்சி apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ஒரு திருத்தம் செய்ய "திருத்தப்பட்ட_பிரம்" புலம் இருக்க வேண்டும். +DocType: Contact,Numbers,எண்கள் apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,வடிப்பான்களைச் சேமிக்கவும் DocType: Address,Plant,தாவரம் apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,அனைவருக்கும் பதிலளி DocType: DocType,Setup,அமைப்பு முறை +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,அனைத்து பதிவுகளும் DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google தொடர்புகள் ஒத்திசைக்கப்பட வேண்டிய மின்னஞ்சல் முகவரி. DocType: Email Account,Initial Sync Count,ஆரம்ப ஒத்திசைவு கவுண்ட் DocType: Workflow State,glass,கண்ணாடி @@ -2799,7 +2853,7 @@ DocType: Workflow State,font,எழுத்துரு DocType: DocType,Show Preview Popup,முன்னோட்டம் பாப்அப்பைக் காட்டு apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,இந்த ஒரு மேல் 100 பொதுவான கடவுச்சொல். apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,பாப் அப்களை தயவுசெய்து -DocType: User,Mobile No,மொபைல் எண் +DocType: Contact,Mobile No,மொபைல் எண் DocType: Communication,Text Content,உரை உள்ளடக்க DocType: Customize Form Field,Is Custom Field,தனிப்பயன் புலம் DocType: Workflow,"If checked, all other workflows become inactive.","சரி என்றால், அனைத்து பிற பணிப்பாய்வுகளும் செயலற்று போகும்." @@ -2846,6 +2900,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,வ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,புதிய அச்சு வடிவம் பெயர் apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,பக்கப்பட்டி மாறு DocType: Data Migration Run,Pull Insert,செருகவும் +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",பெருக்கி மதிப்புடன் புள்ளிகளைப் பெருக்கி பிறகு அதிகபட்ச புள்ளிகள் அனுமதிக்கப்படுகின்றன (குறிப்பு: எந்த வரம்பும் இல்லாமல் இந்த புலத்தை காலியாக விடவும் அல்லது 0 ஐ அமைக்கவும்) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,தவறான வார்ப்புரு apps/frappe/frappe/model/db_query.py,Illegal SQL Query,சட்டவிரோத SQL வினவல் apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,கட்டாய தகுதி: DocType: Chat Message,Mentions,குறிப்பிடுகிறார் @@ -2886,9 +2943,11 @@ DocType: Braintree Settings,Public Key,பொது விசை DocType: GSuite Settings,GSuite Settings,GSuite அமைப்புகள் DocType: Address,Links,இணைப்புகள் DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,இந்த கணக்கைப் பயன்படுத்தி அனுப்பப்பட்ட அனைத்து மின்னஞ்சல்களுக்கும் அனுப்புநரின் பெயராக இந்த கணக்கில் குறிப்பிடப்பட்டுள்ள மின்னஞ்சல் முகவரி பெயரைப் பயன்படுத்துகிறது. +DocType: Energy Point Rule,Field To Check,சரிபார்க்க புலம் apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,ஆவண வகையைத் தேர்ந்தெடுக்கவும். apps/frappe/frappe/model/base_document.py,Value missing for,மதிப்பு காணாமல் apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,குழந்தை சேர் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,இறக்குமதி முன்னேற்றம் DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",நிபந்தனை திருப்தி அடைந்தால் பயனருக்கு புள்ளிகள் வழங்கப்படும். எ.கா.. doc.status == 'மூடப்பட்டது' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: சமர்ப்பிக்கப்பட்டது பதிவு நீக்க முடியாது. @@ -2926,6 +2985,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google கேலெண apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,நீங்கள் தேடும் பக்கம் காணவில்லை. ஏனெனில் அது நகர்த்தப்படும் அல்லது இணைப்பு ஆகியவை இடம் பெற்றுள்ளன டைபோ உள்ளது இருக்கலாம். apps/frappe/frappe/www/404.html,Error Code: {0},பிழை குறியீடு: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","வெற்று உரையாக பட்டியல் பக்கம் விளக்கங்களும், வரிகளை மட்டும் ஒரு ஜோடி. (அதிகபட்சம் 140 எழுத்துக்கள்)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} கட்டாய புலங்கள் DocType: Workflow,Allow Self Approval,சுய ஒப்புதல் அனுமதி DocType: Event,Event Category,நிகழ்வு வகை apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,ஜான் டோ @@ -2976,6 +3036,7 @@ apps/frappe/frappe/database/database.py,Too many writes in one request. Please s apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google இயக்ககம் உள்ளமைக்கப்பட்டுள்ளது. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,மதிப்புகள் மாற்றப்பட்டது DocType: Workflow State,arrow-up,அம்புக்குறி அப் +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} அட்டவணைக்கு குறைந்தபட்சம் ஒரு வரிசை இருக்க வேண்டும் DocType: OAuth Bearer Token,Expires In,காலாவதியாகிறது DocType: DocField,Allow on Submit,சமர்ப்பி மீது அனுமதிக்க DocType: DocField,HTML,"HTML," @@ -3061,6 +3122,7 @@ DocType: Custom Field,Options Help,விருப்பங்கள் உத 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 பதிவு ஏற்றுமதி செய்யப்படும் 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,களத்தில் இருப்பவர்களுக்குத் கட்டுப்படுத்து @@ -3077,6 +3139,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,சரிபார்ப்ப DocType: Webhook,Webhook Request,Webhook கோரிக்கை apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** தோல்வி: {0} {1}: {2} DocType: Data Migration Mapping,Mapping Type,வரைபடம் வகை +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,கட்டாய தேர்ந்தெடுக்கவும் apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,உலவ apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","சின்னங்கள், இலக்கங்கள், அல்லது பேரெழுத்துகள் தேவை இல்லை." DocType: DocField,Currency,நாணய @@ -3107,11 +3170,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,கடிதம் தலை அடிப்படையில் apps/frappe/frappe/utils/oauth.py,Token is missing,டோக்கன் காணவில்லை apps/frappe/frappe/www/update-password.html,Set Password,அமை கடவுச்சொல் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} பதிவுகளை வெற்றிகரமாக இறக்குமதி செய்தது. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,குறிப்பு: பக்கத்தின் பெயர் மாற்றினால் இந்த பக்கம் முந்தைய URL உடைக்கும். apps/frappe/frappe/utils/file_manager.py,Removed {0},நீக்கப்பட்ட {0} DocType: SMS Settings,SMS Settings,SMS அமைப்புகள் DocType: Company History,Highlight,சிறப்புக்கூறு DocType: Dashboard Chart,Sum,சம் +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,தரவு இறக்குமதி வழியாக DocType: OAuth Provider Settings,Force,படை apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},கடைசியாக ஒத்திசைக்கப்பட்டது {0} DocType: DocField,Fold,மடி @@ -3147,6 +3212,7 @@ DocType: Workflow State,Home,வீட்டில் DocType: OAuth Provider Settings,Auto,வாகன DocType: System Settings,User can login using Email id or User Name,பயனர் மின்னஞ்சல் ஐடி அல்லது பயனர் பெயர் பயன்படுத்தி உள்நுழைய முடியும் DocType: Workflow State,question-sign,கேள்வி குறி +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} முடக்கப்பட்டுள்ளது apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",வலை பார்வைகளுக்கான புலம் "பாதை" கட்டாயமாகும் apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} முன் வரிசை செருகவும் DocType: Energy Point Rule,The user from this field will be rewarded points,இந்த புலத்திலிருந்து பயனருக்கு வெகுமதி புள்ளிகள் வழங்கப்படும் @@ -3180,6 +3246,7 @@ DocType: Website Settings,Top Bar Items,மேல் பட்டி உரு DocType: Notification,Print Settings,அச்சு அமைப்புகள் DocType: Page,Yes,ஆம் DocType: DocType,Max Attachments,அதிகபட்சம் இணைப்புகள் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,சுமார் {0} வினாடிகள் மீதமுள்ளன DocType: Calendar View,End Date Field,முடிவு தேதி புலம் apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,உலகளாவிய குறுக்குவழிகள் DocType: Desktop Icon,Page,பக்கம் @@ -3289,6 +3356,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite அணுகலை அனு DocType: DocType,DESC,DESC DocType: DocType,Naming,பெயரிடுதல் apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,அனைத்து தேர்வு +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},நெடுவரிசை {0} apps/frappe/frappe/config/customization.py,Custom Translations,விருப்ப மொழிபெயர்ப்புகள் apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,முன்னேற்றம் apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,பாத்திரம் மூலம் @@ -3331,6 +3399,7 @@ DocType: Stripe Settings,Stripe Settings,கோடுகள் அமைப DocType: Stripe Settings,Stripe Settings,கோடுகள் அமைப்புகள் DocType: Data Migration Mapping,Data Migration Mapping,தரவு நகர்வு வரைபடம் DocType: Auto Email Report,Period,காலம் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,சுமார் {0} நிமிடம் மீதமுள்ளது apps/frappe/frappe/www/login.py,Invalid Login Token,தவறான உள்நுழைவு டோக்கன் apps/frappe/frappe/public/js/frappe/chat.js,Discard,நிராகரி apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 மணி நேரம் முன்பு @@ -3366,6 +3435,7 @@ DocType: Calendar View,Start Date Field,தொடக்க தேதி பு DocType: Role,Role Name,பங்கு பெயர் apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,டெஸ்க் மாறுவதை apps/frappe/frappe/config/core.py,Script or Query reports,ஸ்கிரிப்ட் அல்லது கேள்வி அறிக்கையிடகின்றன +DocType: Contact Phone,Is Primary Mobile,முதன்மை மொபைல் DocType: Workflow Document State,Workflow Document State,பணியோட்டம் ஆவண மாநிலம் apps/frappe/frappe/public/js/frappe/request.js,File too big,மிக பெரிய கோப்பு apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,மின்னஞ்சல் கணக்கை பல முறை சேர்க்கப்பட்டது @@ -3410,6 +3480,7 @@ DocType: DocField,Float,மிதப்பதற்கு DocType: Print Settings,Page Settings,பக்க அமைப்புகள் apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,சேமிக்கிறது ... apps/frappe/frappe/www/update-password.html,Invalid Password,தவறான கடவுச்சொல் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{1} இல் {0} பதிவை வெற்றிகரமாக இறக்குமதி செய்தது. DocType: Contact,Purchase Master Manager,கொள்முதல் மாஸ்டர் மேலாளர் apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,பொது / தனிப்பட்டவற்றை மாற்ற பூட்டு ஐகானைக் கிளிக் செய்க DocType: Module Def,Module Name,தொகுதி பெயர் @@ -3443,6 +3514,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,அம்சங்கள் சில உங்கள் உலாவியில் செயல்படாமல் இருக்கலாம். சமீபத்திய பதிப்புக்கு உங்கள் உலாவி புதுப்பிக்கவும். apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,அம்சங்கள் சில உங்கள் உலாவியில் செயல்படாமல் இருக்கலாம். சமீபத்திய பதிப்புக்கு உங்கள் உலாவி புதுப்பிக்கவும். apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","தெரியாது, கேட்க, 'உதவி'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},இந்த ஆவணத்தை ரத்துசெய்தது {0} DocType: DocType,Comments and Communications will be associated with this linked document,கருத்துரைகள் மற்றும் கம்யூனிகேஷன்ஸ் இந்த இணைக்கப்பட்ட ஆவணத்துடன் தொடர்புடைய apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,வடிகட்டி ... DocType: Workflow State,bold,துணிவுள்ள @@ -3517,6 +3589,7 @@ DocType: Print Settings,PDF Settings,PDF அமைப்புகள் DocType: Kanban Board Column,Column Name,வரிசை பெயர் DocType: Language,Based On,அடிப்படையில் DocType: Email Account,"For more information, click here.","மேலும் தகவலுக்கு, இங்கே கிளிக் செய்க ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,நெடுவரிசைகளின் எண்ணிக்கை தரவுடன் பொருந்தவில்லை apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,முன்னிருப்பாக்கு apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,செயல்படுத்தும் நேரம்: {0} நொடி apps/frappe/frappe/model/utils/__init__.py,Invalid include path,தவறான பாதை அடங்கும் @@ -3604,7 +3677,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar ஒத்திசைவு ஐடி DocType: Prepared Report,Report Start Time,தொடக்க நேரத்தைப் புகாரளி -apps/frappe/frappe/config/settings.py,Export Data,தரவு ஏற்றுமதி +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,தரவு ஏற்றுமதி 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.,"இது ஒரு பின்னணி அறிக்கை. பொருத்தமான வடிப்பான்களை அமைத்து, புதியதை உருவாக்கவும்." @@ -3621,7 +3694,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},{0} உரு DocType: Report,Disable Prepared Report,தயாரிக்கப்பட்ட அறிக்கையை முடக்கு apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,சட்டவிரோத அணுகல் டோக்கன். தயவு செய்து மீண்டும் முயற்சிக்கவும் apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","விண்ணப்ப ஒரு புதிய பதிப்பு மேம்படுத்தப்பட்டது, இந்தப் பக்கத்தைப் புதுப்பிக்கவும்" -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.,இயல்புநிலை முகவரி வார்ப்புரு இல்லை. அமைவு> அச்சிடுதல் மற்றும் பிராண்டிங்> முகவரி வார்ப்புருவில் இருந்து புதிய ஒன்றை உருவாக்கவும். DocType: Notification,Optional: The alert will be sent if this expression is true,விருப்பப்பட்ட: இந்த கருத்து உண்மையாக இருந்தால் எச்சரிக்கை அனுப்பப்படும் DocType: Data Migration Plan,Plan Name,திட்டத்தின் பெயர் DocType: Print Settings,Print with letterhead,லெட்டர் அச்சிட @@ -3660,6 +3732,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} : அமைக்க முடியவில்லை ரத்து இல்லாமல் திருத்தம் apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,முழு பக்கம் DocType: DocType,Is Child Table,குழந்தைகள் அட்டவணை உள்ளது +DocType: Data Import Beta,Template Options,வார்ப்புரு விருப்பங்கள் apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} {1} ஒன்றாக இருக்க வேண்டும் apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} தற்போது இந்த ஆவணத்தைத் apps/frappe/frappe/config/core.py,Background Email Queue,பின்னணி மின்னஞ்சல் கியூ @@ -3667,7 +3740,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,கடவுச் DocType: Communication,Opened,திறக்கப்பட்ட DocType: Workflow State,chevron-left,செவ்ரான்-விட்டு DocType: Communication,Sending,அனுப்புகிறது -apps/frappe/frappe/auth.py,Not allowed from this IP Address,இந்த ஐபி முகவரி இருந்து அனுமதி இல்லை DocType: Website Slideshow,This goes above the slideshow.,இந்த காட்சியை மேலே செல்கிறது. DocType: Contact,Last Name,கடந்த பெயர் DocType: Event,Private,தனிப்பட்ட @@ -3681,7 +3753,6 @@ DocType: Workflow Action,Workflow Action,பணியோட்டம் அ apps/frappe/frappe/utils/bot.py,I found these: ,நான் இவை கண்டுபிடிக்கப்பட்டன: DocType: Event,Send an email reminder in the morning,காலையில் ஒரு நினைவூட்டல் மின்னஞ்சலை அனுப்ப DocType: Blog Post,Published On,ம் தேதி வெளியிடப்பட்ட -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு அமைக்கப்படவில்லை. அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து புதிய மின்னஞ்சல் கணக்கை உருவாக்கவும் DocType: Contact,Gender,பாலினம் apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,காணாமல் கட்டாய தகவல்: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,கோரிக்கை URL ஐ சரிபார்க்கவும் @@ -3701,7 +3772,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,எச்சரிக்கை-அறிகுறி DocType: Prepared Report,Prepared Report,தயாரிக்கப்பட்ட அறிக்கை apps/frappe/frappe/config/website.py,Add meta tags to your web pages,உங்கள் வலைப்பக்கங்களில் மெட்டா குறிச்சொற்களைச் சேர்க்கவும் -DocType: Contact,Phone Nos,தொலைபேசி எண் DocType: Workflow State,User,பயனர் DocType: Website Settings,"Show title in browser window as ""Prefix - title""",உலாவி சாளரத்தில் நிகழ்ச்சியின் தலைப்பு "வள் - தலைப்பு" DocType: Payment Gateway,Gateway Settings,நுழைவாயில் அமைப்புகள் @@ -3719,6 +3789,7 @@ DocType: Data Migration Connector,Data Migration,தரவு நகர்த் DocType: User,API Key cannot be regenerated,API Keyஐ புதுப்பிக்க முடியாது apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,ஏதோ தவறு நடந்துவிட்டது DocType: System Settings,Number Format,எண் வடிவமைப்பு +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} பதிவை வெற்றிகரமாக இறக்குமதி செய்தது. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,சுருக்கம் DocType: Event,Event Participants,நிகழ்வு பங்கேற்பாளர்கள் DocType: Auto Repeat,Frequency,அதிர்வெண் @@ -3726,7 +3797,7 @@ DocType: Custom Field,Insert After,பிறகு செருகு DocType: Event,Sync with Google Calendar,Google காலெண்டருடன் ஒத்திசைக்கவும் DocType: Access Log,Report Name,அறிக்கை பெயர் DocType: Desktop Icon,Reverse Icon Color,Icon கலர் பின்னோக்கு -DocType: Notification,Save,சேமிக்கவும் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,சேமிக்கவும் apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,அடுத்த திட்டமிடப்பட்ட தேதி apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,குறைந்த பணிகள் உள்ளவருக்கு ஒதுக்குங்கள் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,பகுதி தலைப்பு @@ -3749,7 +3820,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,அமைவு> படிவத்தைத் தனிப்பயனாக்கு DocType: Google Contacts,Last Sync On,கடைசி ஒத்திசைவு DocType: Deleted Document,Deleted Document,நீக்கப்பட்ட ஆவண apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,அச்சச்சோ! ஏதோ தவறு @@ -3777,6 +3847,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ஆற்றல் புள்ளி புதுப்பிப்பு apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',மற்றொரு கட்டண முறையை தேர்ந்தெடுக்கவும். பேபால் நாணய பரிவர்த்தனைகள் ஆதரிக்கவில்லை '{0}' DocType: Chat Message,Room Type,அறையின் வகை +DocType: Data Import Beta,Import Log Preview,பதிவு முன்னோட்டத்தை இறக்குமதி செய்க apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,தேடல் துறையில் {0} தவறானது apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,பதிவேற்றிய கோப்பு DocType: Workflow State,ok-circle,"சரி, வட்டம்" @@ -3843,6 +3914,7 @@ DocType: DocType,Allow Auto Repeat,தானாக மீண்டும் ச apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,காண்பிக்க மதிப்புகள் இல்லை DocType: Desktop Icon,_doctype,ஆவண வகை DocType: Communication,Email Template,மின்னஞ்சல் டெம்ப்ளேட் +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,புதுப்பிக்கப்பட்ட {0} பதிவு. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,லாகின் மற்றும் பாஸ்வேர்ட் அவசியம் apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,சமீபத்திய ஆவணத்தை பெற புதுப்பிக்கவும். DocType: User,Security Settings,பாதுகாப்பு அமைப்புகள் diff --git a/frappe/translations/te.csv b/frappe/translations/te.csv index c7f578fa37..682c33e9f6 100644 --- a/frappe/translations/te.csv +++ b/frappe/translations/te.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,క్రింది అనువర్తనాల కోసం కొత్త {} విడుదలలు అందుబాటులో ఉన్నాయి apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,దయచేసి సొమ్ము ఫీల్డ్ ఎంచుకోండి. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,దిగుమతి ఫైల్‌ను లోడ్ చేస్తోంది ... DocType: Assignment Rule,Last User,చివరి వినియోగదారు apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","ఒక కొత్త పని, {0}, {1} ద్వారా మీకు కేటాయించబడిన. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,సెషన్ డిఫాల్ట్‌లు సేవ్ చేయబడ్డాయి +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,ఫైల్‌ను మళ్లీ లోడ్ చేయండి DocType: Email Queue,Email Queue records.,ఇమెయిల్ క్యూ రికార్డులు. DocType: Post,Post,పోస్ట్ DocType: Address,Punjab,పంజాబ్ @@ -44,6 +46,7 @@ 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,పరామితి @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,మంత్లీ DocType: Address,Uttarakhand,ఉత్తరాఖండ్ DocType: Email Account,Enable Incoming,ఇన్కమింగ్ ప్రారంభించు apps/frappe/frappe/core/doctype/version/version_view.html,Danger,డేంజర్ -apps/frappe/frappe/www/login.py,Email Address,ఇమెయిల్ అడ్రస్ +DocType: Address,Email Address,ఇమెయిల్ అడ్రస్ DocType: Workflow State,th-large,వ పెద్ద DocType: Communication,Unread Notification Sent,పంపిన చదవని నోటిఫికేషన్ apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ఎగుమతి అనుమతి లేదు. మీరు ఎగుమతి {0} పాత్ర అవసరం. @@ -98,7 +101,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,అడ్ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Etc "సేల్స్ ప్రశ్నా, మద్దతు ప్రశ్న" వంటి సంప్రదించండి ఎంపికలు, ఒక కొత్త లైన్ ప్రతి లేదా కామాలతో వేరు." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,ట్యాగ్ను జోడించు ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,చిత్తరువు -DocType: Data Migration Run,Insert,చొప్పించు +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,చొప్పించు apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google డ్రైవ్ ప్రాప్యతను అనుమతించండి apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},ఎంచుకోండి {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,దయచేసి బేస్ URL ను ఎంటర్ చెయ్యండి @@ -117,17 +120,17 @@ 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,థీమ్‌ను కాన్ఫిగర్ చేయండి DocType: Company History,Company History,కంపెనీ చరిత్ర -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,రీసెట్ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,రీసెట్ DocType: Workflow State,volume-up,ధ్వని పెంచు apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,వెబ్ అనువర్తనాల్లో వెబ్ఖూక్స్ కాలింగ్ API అభ్యర్ధనలు +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ట్రేస్‌బ్యాక్ చూపించు DocType: DocType,Default Print Format,డిఫాల్ట్ ముద్రణ ఫార్మాట్ DocType: Workflow State,Tags,టాగ్లు apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,గమనిక: వర్క్ఫ్లో యొక్క ఎండ్ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",కాని ఏకైక ఉన్న విలువలు ఉన్నాయి {0} రంగంలో {1} వంటి ఏకైక సెట్ చేయబడదు -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,డాక్యుమెంట్ రకాలు +DocType: Global Search Settings,Document Types,డాక్యుమెంట్ రకాలు DocType: Address,Jammu and Kashmir,జమ్మూ కాశ్మీర్ DocType: Workflow,Workflow State Field,వర్క్ఫ్లో రాష్ట్రం ఫీల్డ్ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,సెటప్> వినియోగదారు DocType: Language,Guest,గెస్ట్ DocType: DocType,Title Field,శీర్షిక ఫీల్డ్ DocType: Error Log,Error Log,లోపం లాగ్ @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" "abc" కంటే ఊహించడం కొంచం కష్టం చేసినట్లుగా పునఃప్రసారాలు DocType: Notification,Channel,ఛానల్ apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","మీరు ఈ అనధికార భావిస్తే, నిర్వాహకుడు పాస్వర్డ్ను మార్చండి." +DocType: Data Import Beta,Data Import Beta,డేటా దిగుమతి బీటా apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} తప్పనిసరి DocType: Assignment Rule,Assignment Rules,అసైన్మెంట్ నియమాలు DocType: Workflow State,eject,తీసే @@ -162,6 +166,7 @@ DocType: Workflow Action Master,Workflow Action Name,వర్క్ఫ్లో apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE విలీనం సాధ్యం కాదు DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ఒక జిప్ ఫైల్ +DocType: Global Search DocType,Global Search DocType,గ్లోబల్ సెర్చ్ డాక్ టైప్ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                          New {{ doc.doctype }} #{{ doc.name }}
                                                                                                          ","డైనమిక్ విషయం జోడించడానికి, వంటి jinja టాగ్లు ఉపయోగించండి
                                                                                                           New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                          " @@ -183,6 +188,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc ఈవెంట్ apps/frappe/frappe/public/js/frappe/utils/user.js,You,మీరు DocType: Braintree Settings,Braintree Settings,బ్రెయిన్ట్రీ సెట్టింగులు +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} రికార్డులను విజయవంతంగా సృష్టించారు. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ఫిల్టర్ను సేవ్ చేయండి DocType: Print Format,Helvetica,హెల్వెటికా apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} @@ -209,6 +215,7 @@ DocType: SMS Settings,Enter url parameter for message,సందేశం కో apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,ఈ పత్రం కోసం ఆటో రిపీట్ సృష్టించబడింది apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,మీ బ్రౌజర్లో నివేదికను వీక్షించండి apps/frappe/frappe/config/desk.py,Event and other calendars.,ఈవెంట్ మరియు ఇతర క్యాలెండర్లు లేవు. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 అడ్డు వరుస తప్పనిసరి) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,అన్ని ఖాళీలను వ్యాఖ్యను submit అవసరం. DocType: Custom Script,Adds a client custom script to a DocType,క్లయింట్ కస్టమ్ స్క్రిప్ట్‌ను డాక్‌టైప్‌కు జోడిస్తుంది DocType: Print Settings,Printer Name,ప్రింటర్ పేరు @@ -249,7 +256,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},జ DocType: Bulk Update,Bulk Update,బల్క్ నవీకరణ DocType: Workflow State,chevron-up,చెవ్రాన్ అప్ DocType: DocType,Allow Guest to View,గెస్ట్ చూడండి అనుమతించు -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,శాశ్వతంగా {0} అంశాలను తొలగించు? apps/frappe/frappe/utils/oauth.py,Not Allowed,ప్రవేశము లేదు @@ -265,6 +271,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,ప్రదర్శించు DocType: Email Group,Total Subscribers,మొత్తం చందాదార్లు apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},టాప్ {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,అడ్డు వరుస సంఖ్య apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ఒక పాత్ర Level 0 యాక్సెస్ చెయ్యకపోతే, అప్పుడు ఉన్నత స్థాయిలలో అర్థరహితమని." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ఇలా సేవ్ DocType: Comment,Seen,సీన్ @@ -305,6 +312,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,ఉదాహరణ: DocType: Workflow,Defines workflow states and rules for a document.,"ఒక పత్రం కోసం వర్క్ఫ్లో రాష్ట్రాలు, నియమాలను నిర్వచిస్తుంది." DocType: Workflow State,Filter,వడపోత @@ -327,6 +335,7 @@ DocType: Activity Log,Closed,ముగించబడినది DocType: Blog Settings,Blog Title,బ్లాగ్ శీర్షిక apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,ప్రామాణిక పాత్రలు నిలిపివేయడం సాధ్యం కాదు apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,చాట్ పద్ధతి +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,మ్యాప్ నిలువు వరుసలు DocType: Address,Mizoram,మిజోరం DocType: Newsletter,Newsletter,వార్తా apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ద్వారా ఆర్డర్ లో ఉప ప్రశ్న ఉపయోగించలేరు @@ -393,6 +402,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} వ DocType: System Settings,Currency Precision,కరెన్సీ ప్రెసిషన్ DocType: System Settings,Currency Precision,కరెన్సీ ప్రెసిషన్ apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,మరో లావాదేవీ ఈ ఒక నిరోధిస్తోంది. కొన్ని సెకన్లలో మళ్ళీ ప్రయత్నించండి. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,ఫిల్టర్‌లను క్లియర్ చేయండి DocType: Test Runner,App,అనువర్తనం apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,జోడింపులను క్రొత్త పత్రానికి సరిగ్గా లింక్ చేయలేదు DocType: Chat Message Attachment,Attachment,జోడింపు @@ -433,7 +443,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html,"Your query has been receive apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ఇన్‌కమింగ్ ప్రారంభించబడితే మాత్రమే ఆటోమేటిక్ లింకింగ్ సక్రియం అవుతుంది. DocType: LDAP Settings,LDAP Middle Name Field,LDAP మధ్య పేరు ఫీల్డ్ DocType: GCalendar Account,Allow GCalendar Access,GCalendar యాక్సెస్ను అనుమతించండి -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} తప్పనిసరి ఫీల్డ్ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} తప్పనిసరి ఫీల్డ్ apps/frappe/frappe/templates/includes/login/login.js,Login token required,లాగిన్ టోకెన్ అవసరం apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,నెలవారీ ర్యాంక్: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,బహుళ జాబితా అంశాలను ఎంచుకోండి @@ -463,6 +473,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},కనెక్ట్ apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,దానికదే ద్వారా ఒక పదం ఊహించడం సులభం. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},ఆటో అసైన్‌మెంట్ విఫలమైంది: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,శోధన ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,కంపెనీ దయచేసి ఎంచుకోండి apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,విలీనం మధ్య మాత్రమే సాధ్యమవుతుంది గ్రూప్-గ్రూప్-లేదా ఆకు నోడ్ టు ఆకు నోడ్ apps/frappe/frappe/utils/file_manager.py,Added {0},చేర్చబడింది {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,మ్యాచింగ్ రికార్డులు లేవు. ఏదైనా క్రొత్తదాన్ని శోధన @@ -475,7 +486,6 @@ DocType: Google Settings,OAuth Client ID,OAuth క్లయింట్ ID DocType: Auto Repeat,Subject,Subject apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,తిరిగి డెస్క్కి DocType: Web Form,Amount Based On Field,మొత్తం రంగంలో ఆధారంగా -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి డిఫాల్ట్ ఇమెయిల్ ఖాతాను సెటప్ చేయండి apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,యూజర్ భాగస్వామ్యం తప్పనిసరి DocType: DocField,Hidden,హిడెన్ DocType: Web Form,Allow Incomplete Forms,అసంపూర్ణ పత్రాలు అనుమతించు @@ -512,6 +522,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} మరియు {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,సంభాషణను ప్రారంభించండి. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ఎల్లప్పుడూ "చిత్తుప్రతి" ముద్రణ డ్రాఫ్ట్ పత్రాల కోసం శీర్షిక జోడించడానికి apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},నోటిఫికేషన్‌లో లోపం: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం DocType: Data Migration Run,Current Mapping Start,ప్రస్తుత మ్యాపింగ్ ప్రారంభించండి apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ఇమెయిల్ స్పామ్ మార్క్ చెయ్యబడింది DocType: Comment,Website Manager,వెబ్సైట్ మేనేజర్ @@ -549,6 +560,7 @@ DocType: Workflow State,barcode,బార్కోడ్ apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,ఉప ప్రశ్న లేదా చర్య యొక్క ఉపయోగం పరిమితం చేయబడింది apps/frappe/frappe/config/customization.py,Add your own translations,మీ సొంత అనువాదాలు జోడించవచ్చు DocType: Country,Country Name,దేశం పేరు +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,ఖాళీ మూస DocType: About Us Team Member,About Us Team Member,మా గురించి జట్టు సభ్యుడు గురించి apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","అనుమతులు, రిపోర్ట్, దిగుమతి, ఎగుమతి, ప్రింట్, ఇమెయిల్ మరియు సెట్ వినియోగదారు అనుమతులను వ్రాయండి సృష్టించు, తొలగించు, సమర్పించు రద్దు చక్కదిద్దు, పాత్రలు మరియు రీడ్ వంటి హక్కులు అమర్చుట ద్వారా డాక్యుమెంట్ రకాలు (అని డాక్యుమెంట్ రకాలు) కలిగి ఉంటాయి." DocType: Event,Wednesday,బుధవారం @@ -559,6 +571,7 @@ DocType: Website Settings,Website Theme Image Link,వెబ్సైట్ DocType: Web Form,Sidebar Items,సైడ్బార్ అంశాలు DocType: Web Form,Show as Grid,గ్రిడ్గా చూపించు apps/frappe/frappe/installer.py,App {0} already installed,App {0} ఇప్పటికే ఇన్స్టాల్ +DocType: Energy Point Rule,Users assigned to the reference document will get points.,రిఫరెన్స్ డాక్యుమెంట్‌కు కేటాయించిన వినియోగదారులకు పాయింట్లు లభిస్తాయి. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,పరిదృశ్యం లేదు DocType: Workflow State,exclamation-sign,ఆశ్చర్యార్థకం సైన్ apps/frappe/frappe/public/js/frappe/form/controls/link.js,empty,ఖాళీగా @@ -593,6 +606,7 @@ DocType: Notification,Days Before,రోజుల ముందు apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,రోజువారీ సంఘటనలు ఒకే రోజున పూర్తి చేయాలి. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,సవరించు ... DocType: Workflow State,volume-down,వాల్యూమ్ డౌన్ +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ఈ IP చిరునామా నుండి యాక్సెస్ అనుమతించబడదు apps/frappe/frappe/desk/reportview.py,No Tags,తోబుట్టువుల టాగ్లు DocType: Email Account,Send Notification to,తెలియపరచకండి DocType: DocField,Collapsible,ధ్వంసమయ్యే @@ -649,6 +663,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,డెవలపర్ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,రూపొందించబడింది 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,డిఫాల్ట్ ప్రింట్ భాష apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,పూర్వీకులు apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} రూట్ తొలగించడం సాధ్యం కాదు @@ -690,6 +705,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD DocType: Integration Request,Host,హోస్ట్ +DocType: Data Import Beta,Import File,ఫైల్‌ను దిగుమతి చేయండి apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,కాలమ్ {0} ఇప్పటికే ఉన్నాయి. DocType: ToDo,High,హై apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,క్రొత్త ఈవెంట్ @@ -718,8 +734,6 @@ DocType: User,Send Notifications for Email threads,ఇమెయిల్ థ్ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ప్రొఫెసర్ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,లేదు డెవలపర్ మోడ్లో apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,ఫైల్ బ్యాకప్ సిద్ధంగా ఉంది -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",గుణక విలువతో పాయింట్లను గుణించిన తర్వాత గరిష్ట పాయింట్లు అనుమతించబడతాయి (గమనిక: పరిమితి సెట్ విలువ 0 గా లేదు) DocType: DocField,In Global Search,గ్లోబల్ సెర్చ్ DocType: System Settings,Brute Force Security,బ్రూట్ ఫోర్స్ సెక్యూరిటీ DocType: Workflow State,indent-left,ఇండెంట్ ఎడమకు @@ -762,6 +776,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',వాడుకరి '{0}' ఇప్పటికే పాత్ర ఉంది '{1}' DocType: System Settings,Two Factor Authentication method,రెండు ఫాక్టర్ ప్రామాణీకరణ పద్ధతి apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"మొదట పేరును సెట్ చేసి, రికార్డ్ను సేవ్ చేయండి." +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 రికార్డులు apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},తో షేర్డ్ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,చందా రద్దుచేసే DocType: View Log,Reference Name,రిఫరెన్స్ పేరు @@ -811,6 +826,7 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,ఇమెయిల్ స్థితి ట్రాక్ DocType: Note,Notify Users On Every Login,ప్రతి లాగిన్ వినియోగదారులు తెలియజేయి DocType: Note,Notify Users On Every Login,ప్రతి లాగిన్ వినియోగదారులు తెలియజేయి +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,నవీకరించబడిన {0} రికార్డులు. DocType: PayPal Settings,API Password,API పాస్వర్డ్ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,పైథాన్ మాడ్యూల్ ను ఎంటర్ చేయండి లేదా కనెక్టర్ రకాన్ని ఎంచుకోండి apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,FIELDNAME కస్టమ్ ఫీల్డ్ సెట్ @@ -839,9 +855,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,విలువ మార్చబడింది apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},నకిలీ పేరు {0} {1} -DocType: Email Queue,Retry,మళ్ళీ ప్రయత్నించు +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,మళ్ళీ ప్రయత్నించు +DocType: Contact Phone,Number,సంఖ్య DocType: Web Form Field,Web Form Field,వెబ్ ఫారం ఫీల్డ్ apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,మీకు కొత్త సందేశం ఉంది: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML ను సవరించు apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,దారిమార్పు URL ను నమోదు చేయండి apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Restore Original Permissions,Original అనుమతులు పునరుద్ధరించు @@ -865,7 +883,7 @@ DocType: Notification,View Properties (via Customize Form),(అనుకూల apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,దాన్ని ఎంచుకోవడానికి ఫైల్‌పై క్లిక్ చేయండి. DocType: Note Seen By,Note Seen By,గమనిక సీన్ బై apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,మరింత మలుపులు ఒక కీబోర్డు నమూనా ఉపయోగించడానికి ప్రయత్నించండి -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,లీడర్బోర్డ్ +,LeaderBoard,లీడర్బోర్డ్ DocType: DocType,Default Sort Order,డిఫాల్ట్ క్రమబద్ధీకరణ ఆర్డర్ DocType: Address,Rajasthan,రాజస్థాన్ DocType: Email Template,Email Reply Help,ఇమెయిల్ ప్రత్యుత్తరం సహాయం @@ -900,6 +918,7 @@ apps/frappe/frappe/utils/data.py,Cent,సెంట్ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ఇమెయిల్ కంపోజ్ apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","వర్క్ఫ్లో స్టేట్స్ (ఉదా డ్రాఫ్ట్ ఆమోదించబడింది, రద్దయింది)." DocType: Print Settings,Allow Print for Draft,డ్రాఫ్ట్ కోసం ప్రింట్ అనుమతిస్తుంది +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/link_selector.js,Set Quantity,సెట్ పరిమాణం apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,నిర్ధారించుకోవటానికి ఈ పత్రాన్ని సమర్పించి DocType: Contact,Unsubscribed,తప్పుకునే @@ -930,6 +949,7 @@ DocType: LDAP Settings,Organizational Unit for Users,వినియోగదా ,Transaction Log Report,ట్రాన్సాక్షన్ లాగ్ రిపోర్ట్ DocType: Custom DocPerm,Custom DocPerm,కస్టమ్ DocPerm DocType: Newsletter,Send Unsubscribe Link,చందా రద్దుచేసే లింక్ పంపండి +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,మేము మీ ఫైల్‌ను దిగుమతి చేయడానికి ముందు కొన్ని లింక్డ్ రికార్డులు సృష్టించాలి. మీరు ఈ క్రింది తప్పిపోయిన రికార్డులను స్వయంచాలకంగా సృష్టించాలనుకుంటున్నారా? DocType: Access Log,Method,విధానం DocType: Report,Script Report,స్క్రిప్ట్ నివేదిక DocType: OAuth Authorization Code,Scopes,స్కోప్స్ @@ -971,6 +991,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,విజయవంతంగా అప్‌లోడ్ చేయబడింది apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,మీరు ఇంటర్నెట్కు కనెక్ట్ చేయబడ్డారు. DocType: Social Login Key,Enable Social Login,సంఘ లాగిన్ను ప్రారంభించండి +DocType: Data Import Beta,Warnings,హెచ్చరికలు DocType: Communication,Event,ఈవెంట్ apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} లో, {1} రాశారు:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,ప్రామాణిక రంగంలో తొలగించలేరు. మీరు అనుకుంటే మీరు దాచవచ్చు @@ -1026,6 +1047,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,క్ర DocType: Kanban Board Column,Blue,బ్లూ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,అన్ని వినియోగాలను తొలగించబడుతుంది. దయచేసి సరిచూడండి. DocType: Page,Page HTML,పేజ్ HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,తప్పు వరుసలను ఎగుమతి చేయండి apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,సమూహం పేరు ఖాళీగా ఉండకూడదు. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,మరింత నోడ్స్ మాత్రమే 'గ్రూప్' రకం నోడ్స్ కింద రూపొందించినవారు చేయవచ్చు DocType: SMS Parameter,Header,శీర్షిక @@ -1071,7 +1093,6 @@ DocType: Email Account,SMTP Settings for outgoing emails,అవుట్గో apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ఒక ఎంచుకోండి DocType: Data Export,Filter List,ఫిల్టర్ జాబితా DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,మీ పాస్వర్డ్ను నవీకరించబడింది. ఇక్కడ మీ కొత్త పాస్వర్డ్ DocType: Email Account,Auto Reply Message,ఆటో Reply సందేశం DocType: Data Migration Mapping,Condition,కండిషన్ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} గంటల క్రితం @@ -1080,7 +1101,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,వినియోగదారుని గుర్తింపు DocType: Communication,Sent,పంపిన DocType: Address,Kerala,కేరళ -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,అడ్మినిస్ట్రేషన్ DocType: User,Simultaneous Sessions,సైమల్టేనియస్ సెషన్స్ DocType: Social Login Key,Client Credentials,క్లయింట్ ఆధారాల @@ -1112,7 +1132,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Updated apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,మాస్టర్ DocType: DocType,User Cannot Create,వాడుకరి సృష్టించలేరు apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,విజయవంతంగా పూర్తయింది -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,ఫోల్డర్ {0} ఉనికిలో లేని apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,డ్రాప్బాక్స్ యాక్సెస్ ఆమోదించబడితే! DocType: Customize Form,Enter Form Type,రూపం రకం ఎంటర్ DocType: Google Drive,Authorize Google Drive Access,Google డ్రైవ్ ప్రాప్యతను ప్రామాణీకరించండి @@ -1120,7 +1139,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,రికార్డులేవీ ట్యాగ్. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ఫీల్డ్ తొలగించు apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,మీరు ఇంటర్నెట్కి కనెక్ట్ చేయబడలేదు. కొంతకాలం తర్వాత మళ్లీ ప్రయత్నించండి. -DocType: User,Send Password Update Notification,పాస్వర్డ్ అప్డేట్ నోటిఫికేషన్ పంపండి apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DOCTYPE, doctype అనుమతిస్తుంది. జగ్రత్త!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","ప్రింటింగ్, ఇమెయిల్ కోసం అనుకూలీకరించిన ఆకృతులు" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} మొత్తం @@ -1202,6 +1220,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,సరికాన apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google పరిచయాల ఇంటిగ్రేషన్ నిలిపివేయబడింది. DocType: Assignment Rule,Description,వివరణ DocType: Print Settings,Repeat Header and Footer in PDF,PDF లో శీర్షిక మరియు ఫుటర్ రిపీట్ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,వైఫల్యం DocType: Address Template,Is Default,డిఫాల్టు DocType: Data Migration Connector,Connector Type,కనెక్టర్ పద్ధతి apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,కాలమ్ పేరు ఖాళీగా ఉండకూడదు @@ -1266,6 +1285,7 @@ DocType: Print Settings,Enable Raw Printing,రా ప్రింటింగ DocType: Website Route Redirect,Source,మూల apps/frappe/frappe/templates/includes/list/filters.html,clear,స్పష్టమైన apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,పూర్తయ్యింది +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,సెటప్> వినియోగదారు DocType: Prepared Report,Filter Values,ఫిల్టర్ విలువలు DocType: Communication,User Tags,వాడుకరి టాగ్లు DocType: Data Migration Run,Fail,విఫలం @@ -1322,6 +1342,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,అ ,Activity,కార్యాచరణ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",సహాయం: వ్యవస్థలోని మరో రికార్డు లింకు లింక్ URL గా "# ఫారం / గమనిక / [పేరు గమనిక]" ఉపయోగించండి. (ఉపయోగించడానికి లేదు "http: //") DocType: User Permission,Allow,అనుమతించు +DocType: Data Import Beta,Update Existing Records,ఇప్పటికే ఉన్న రికార్డులను నవీకరించండి apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,పదే పదే పదాలు మరియు అక్షరాల నివారించేందుకు వీలు DocType: Energy Point Rule,Energy Point Rule,ఎనర్జీ పాయింట్ రూల్ DocType: Communication,Delayed,ఆలస్యం @@ -1334,9 +1355,7 @@ DocType: Milestone,Track Field,ట్రాక్ ఫీల్డ్ DocType: Notification,Set Property After Alert,హెచ్చరిక తరువాత ఆస్తి సెట్ apps/frappe/frappe/config/customization.py,Add fields to forms.,రూపాలు ఖాళీలను జోడించండి. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ఏదో కనిపిస్తోంది ఈ సైట్ యొక్క Paypal ఆకృతీకరణ తో తప్పు. -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/sidebar/review.js,Add Review,సమీక్షను జోడించండి -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ఫాంట్ సైజు (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,అనుకూలీకరించు ఫారం నుండి ప్రామాణిక డాక్ టైప్‌లను మాత్రమే అనుకూలీకరించడానికి అనుమతి ఉంది. DocType: Email Account,Sendgrid,Sendgrid @@ -1372,6 +1391,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,వ apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,క్షమించాలి! మీరు ఆటో సృష్టించిన వ్యాఖ్యలు తొలగించలేరు DocType: Google Settings,Used For Google Maps Integration.,గూగుల్ మ్యాప్స్ ఇంటిగ్రేషన్ కోసం ఉపయోగిస్తారు. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,సూచన DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,రికార్డులు ఎగుమతి చేయబడవు DocType: User,System User,వ్యవస్థ యూజర్ DocType: Report,Is Standard,ప్రమాణం DocType: Desktop Icon,_report,_report @@ -1386,6 +1406,7 @@ DocType: Workflow State,minus-sign,మైనస్ సైన్ apps/frappe/frappe/public/js/frappe/request.js,Not Found,దొరకలేదు apps/frappe/frappe/www/printview.py,No {0} permission,ఏ {0} అనుమతి apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ఎగుమతి కస్టమ్ అనుమతులు +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,అంశాలు కనుగొనబడలేదు. DocType: Data Export,Fields Multicheck,ఫీల్డ్స్ మల్టీచెక్ DocType: Activity Log,Login,లాగిన్ DocType: Web Form,Payments,చెల్లింపులు @@ -1446,7 +1467,7 @@ DocType: Email Account,Default Incoming,డిఫాల్ట్ ఇన్కమ DocType: Workflow State,repeat,రిపీట్ DocType: Website Settings,Banner,బ్యానర్ DocType: Role,"If disabled, this role will be removed from all users.","డిసేబుల్ ఉంటే, ఈ పాత్ర అన్ని వినియోగదారుల నుండి తీసివేయబడుతుంది ఉంటుంది." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} జాబితాకు వెళ్లండి +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,సెర్చ్లో సహాయం DocType: Milestone,Milestone Tracker,మైలురాయి ట్రాకర్ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,రిజిస్టర్ కాని వికలాంగ @@ -1460,6 +1481,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,స్థానిక ఫ DocType: DocType,Track Changes,మార్పులను ట్రాక్ DocType: Workflow State,Check,పరిశీలించడం DocType: Chat Profile,Offline,ఆఫ్లైన్ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},విజయవంతంగా దిగుమతి {0} DocType: User,API Key,API కీ DocType: Email Account,Send unsubscribe message in email,ఇమెయిల్ లో అన్సబ్స్క్రయిబ్ సందేశాన్ని పంపు apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,సవరణ శీర్షిక @@ -1486,10 +1508,10 @@ 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", etc వంటి చెల్లుబాటు అయ్యే పద్ధతులపై ట్రిగ్గర్ (ఎంచుకున్న DOCTYPE ఆధారపడి ఉంటుంది)" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},మార్చబడిన విలువ {0} {1} 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,మొత్తం పేజీలు -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                          No results found for '

                                                                                                          ,

                                                                                                          దీని కోసం ఫలితాలు కనుగొనబడలేదు '

                                                                                                          DocType: DocField,Attach Image,చిత్రం అటాచ్ DocType: Workflow State,list-alt,జాబితా-alt apps/frappe/frappe/www/update-password.html,Password Updated,పాస్వర్డ్ నవీకరించబడింది @@ -1510,8 +1532,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {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,చాట్ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,సెటప్> వినియోగదారు అనుమతులు DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP గ్రూప్ మ్యాపింగ్ DocType: Dashboard Chart,Chart Options,చార్ట్ ఎంపికలు +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,పేరులేని కాలమ్ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} {1} కు {2} లో వరుసగా # {3} DocType: Communication,Expired,గడువు apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,మీరు ఉపయోగిస్తున్న టోకెన్ను చెల్లనిదిగా ఉంది! @@ -1521,6 +1545,7 @@ DocType: DocType,System,వ్యవస్థ DocType: Web Form,Max Attachment Size (in MB),మాక్స్ అటాచ్మెంట్ పరిమాణం (MB నందు) apps/frappe/frappe/www/login.html,Have an account? Login,ఒక ఖాతా? లాగిన్ DocType: Workflow State,arrow-down,మెట్ట డౌన్ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},అడ్డు వరుస {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},వాడుకరి తొలగించడానికి అనుమతి లేదు {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} లో {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,చివరిగా నవీకరించబడింది @@ -1538,6 +1563,7 @@ DocType: Custom Role,Custom Role,కస్టమ్ రోల్ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,హోం / టెస్ట్ ఫోల్డర్ 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,మీ పాస్వర్డ్ను ఎంటర్ DocType: Dropbox Settings,Dropbox Access Secret,డ్రాప్బాక్స్ యాక్సెస్ సీక్రెట్ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(ఆదేశక) 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.,ఫైల్లో డేటా ఏదీ కనుగొనబడలేదు. దయచేసి కొత్త ఫైల్ డేటాతో తిరిగి చేరండి. @@ -1608,6 +1634,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,డాష apps/frappe/frappe/desk/form/assign_to.py,New Message,కొత్త సందేశం DocType: File,Preview HTML,ప్రివ్యూ HTML DocType: Desktop Icon,query-report,ప్రశ్న-నివేదిక +DocType: Data Import Beta,Template Warnings,మూస హెచ్చరికలు apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,వడపోతలు సేవ్ DocType: DocField,Percent,శాతం apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,ఫిల్టర్లు సెట్ చెయ్యండి @@ -1629,6 +1656,7 @@ DocType: Custom Field,Custom,కస్టమ్ DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","ప్రారంభించబడితే, పరిమితం చేయబడిన IP చిరునామా నుండి లాగిన్ చేసే వినియోగదారులు రెండు కారకాల ప్రామాణీకరణ కోసం ప్రాంప్ట్ చేయబడరు" DocType: Auto Repeat,Get Contacts,పరిచయాలను పొందండి apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},కింద దాఖలు పోస్ట్లు {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,పేరులేని కాలమ్‌ను దాటవేస్తోంది DocType: Notification,Send alert if date matches this field's value,తేదీ ఈ ఫీల్డ్ విలువలో సరిపోలే ఉంటే హెచ్చరిక పంపండి DocType: Workflow,Transitions,పరివర్తనాలు apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} కు {2} @@ -1652,6 +1680,7 @@ DocType: Workflow State,step-backward,దశల వెనుకబడిన apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,మీ సైట్ config డ్రాప్బాక్స్ యాక్సెస్ కీలు సెట్ చెయ్యండి apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,ఈ ఈమెయిల్ చిరునామాకు పంపడం అనుమతిస్తుంది ఈ రికార్డ్ తొలగించు +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","ప్రామాణికం కాని పోర్ట్ అయితే (ఉదా. POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,సత్వరమార్గాలను అనుకూలీకరించండి apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,మాత్రమే తప్పనిసరి ఖాళీలను కొత్త రికార్డులు అవసరం. మీరు అనుకుంటే మీరు కాని తప్పనిసరి నిలువు తొలగించవచ్చు. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,మరిన్ని కార్యాచరణను చూపించు @@ -1756,6 +1785,7 @@ 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 అనువర్తనం 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,లెటర్ DocType: DocType,"Naming Options:
                                                                                                          1. field:[fieldname] - By Field
                                                                                                          2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                          3. Prompt - Prompt user for a name
                                                                                                          4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                          5. @@ -1769,6 +1799,7 @@ DocType: GCalendar Account,Next Sync Token,తదుపరి సమకాలీ DocType: Energy Point Settings,Energy Point Settings,ఎనర్జీ పాయింట్ సెట్టింగులు DocType: Async Task,Succeeded,విజయవంతమైంది apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},అవసరం తప్పనిసరి ఖాళీలను {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                            No results found for '

                                                                                                            ,

                                                                                                            దీని కోసం ఫలితాలు కనుగొనబడలేదు '

                                                                                                            apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,కోసం రీసెట్ అనుమతులు {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,వినియోగదారులు మరియు అనుమతులు DocType: S3 Backup Settings,S3 Backup Settings,S3 బ్యాకప్ సెట్టింగులు @@ -1839,6 +1870,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,లో DocType: Notification,Value Change,విలువ మార్చండి DocType: Google Contacts,Authorize Google Contacts Access,Google పరిచయాల ప్రాప్యతను ప్రామాణీకరించండి apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,నివేదిక నుండి సంఖ్యాత్మక ఖాళీలను మాత్రమే చూపుతోంది +DocType: Data Import Beta,Import Type,దిగుమతి రకం DocType: Access Log,HTML Page,HTML పేజీ DocType: Address,Subsidiary,అనుబంధ apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ ట్రేకి కనెక్షన్ కోసం ప్రయత్నిస్తోంది ... @@ -1849,7 +1881,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,చెల DocType: Custom DocPerm,Write,వ్రాయండి apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,మాత్రమే నిర్వాహకుడు ప్రశ్నా / స్క్రిప్ట్ నివేదికలు సృష్టించడానికి అనుమతి apps/frappe/frappe/public/js/frappe/form/save.js,Updating,నవీకరిస్తోంది -DocType: File,Preview,ప్రివ్యూ +DocType: Data Import Beta,Preview,ప్రివ్యూ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ఫీల్డ్ "విలువ" తప్పనిసరి. దయచేసి అప్డేట్ అవుతుంది విలువ పేర్కొనండి DocType: Customize Form,Use this fieldname to generate title,టైటిల్ రూపొందించడానికి ఈ FIELDNAME ఉపయోగించండి apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,నుండి దిగుమతి ఇమెయిల్ @@ -1960,7 +1992,6 @@ DocType: GCalendar Account,Session Token,సెషన్ టోకెన్ DocType: Currency,Symbol,మానవ చిత్ర apps/frappe/frappe/model/base_document.py,Row #{0}:,రో # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,డేటా తొలగింపును నిర్ధారించండి -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,కొత్త సంకేతపదం ఇమెయిల్ apps/frappe/frappe/auth.py,Login not allowed at this time,ఈ సమయంలో అనుమతి లేదు లాగిన్ DocType: Data Migration Run,Current Mapping Action,ప్రస్తుత మ్యాపింగ్ చర్య DocType: Dashboard Chart Source,Source Name,మూలం పేరు @@ -1973,6 +2004,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,ప apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,తరువాత DocType: LDAP Settings,LDAP Email Field,LDAP ఇమెయిల్ ఫీల్డ్ apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} జాబితా +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} రికార్డులను ఎగుమతి చేయండి apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,ఇప్పటికే యూజర్ యొక్క జాబితా టు డు DocType: User Email,Enable Outgoing,అవుట్గోయింగ్ ప్రారంభించు DocType: Address,Fax,ఫ్యాక్స్ @@ -2032,7 +2064,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,పత్రాలను ముద్రించండి apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ఫీల్డ్‌కు వెళ్లండి DocType: Contact Us Settings,Forward To Email Address,ఫార్వర్డ్ ఇమెయిల్ అడ్రసు +DocType: Contact Phone,Is Primary Phone,ప్రాథమిక ఫోన్ DocType: Auto Email Report,Weekdays,వారపు రోజులు +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} రికార్డులు ఎగుమతి చేయబడతాయి apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,శీర్షిక ఫీల్డ్ చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి DocType: Post Comment,Post Comment,పోస్ట్ వ్యాఖ్య apps/frappe/frappe/config/core.py,Documents,పత్రాలు @@ -2051,7 +2085,9 @@ eval:doc.age>18",myfield eval: ఇక్కడ నిర్వచించా DocType: Social Login Key,Office 365,ఆఫీస్ 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,నేడు apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,నేడు +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","మీరు ఈ సెట్ చేసిన తర్వాత, వినియోగదారులు మాత్రమే చేయగలిగింది యాక్సెస్ పత్రాలు ఉంటుంది (ఉదా. బ్లాగ్ పోస్ట్) లింక్ (ఉదా. బ్లాగర్) సొర." +DocType: Data Import Beta,Submit After Import,దిగుమతి తర్వాత సమర్పించండి DocType: Error Log,Log of Scheduler Errors,షెడ్యూల్ ఆఫ్ ఎర్రర్స్ లోనికి ప్రవేశించండి DocType: User,Bio,బయో DocType: OAuth Client,App Client Secret,అనువర్తనం క్లయింట్ సీక్రెట్ @@ -2070,10 +2106,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,లాగిన్ పేజీ నిలిపివేయండి కస్టమర్ సైన్అప్ లింక్ apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ యజమాని అసైన్డ్ DocType: Workflow State,arrow-left,మెట్ట వదిలి +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,ఎగుమతి 1 రికార్డు DocType: Workflow State,fullscreen,పూర్తి స్క్రీన్ DocType: Chat Token,Chat Token,టోకెన్ చాట్ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,చార్ట్ సృష్టించండి apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,దిగుమతి చేయవద్దు DocType: Web Page,Center,సెంటర్ DocType: Notification,Value To Be Set,విలువ సెట్ చేయడానికి apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} @@ -2093,6 +2131,7 @@ DocType: Print Format,Show Section Headings,విభాగం హెడ్డ DocType: Bulk Update,Limit,పరిమితి apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},దీనితో అనుబంధించబడిన {0} డేటాను తొలగించమని మేము ఒక అభ్యర్థనను అందుకున్నాము: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,క్రొత్త విభాగాన్ని జోడించండి +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,ఫిల్టర్ చేసిన రికార్డులు apps/frappe/frappe/www/printview.py,No template found at path: {0},మార్గం ఏదీ దొరకలేదు మూస: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,సంఖ్య ఇమెయిల్ ఖాతా DocType: Comment,Cancelled,రద్దయింది @@ -2177,7 +2216,9 @@ 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} 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 గా ఉంటుంది +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,గ్లోబల్ సెర్చ్ డాక్యుమెంట్ రకాలు రీసెట్. ,Lead Conversion Time,కన్వర్షన్ సమయం దారి apps/frappe/frappe/desk/page/activity/activity.js,Build Report,నివేదిక బిల్డ్ DocType: Note,Notify users with a popup when they log in,వారు లాగిన్ చేసినప్పుడు ఒక పాపప్ వినియోగదారులు తెలియజేయి @@ -2197,8 +2238,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Close 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,సెటప్> వినియోగదారు అనుమతులు -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,నవీకరణ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,నవీకరణ DocType: Transaction Log,Transaction Hash,లావాదేవీ హాష్ DocType: Error Snapshot,Snapshot View,స్నాప్షాట్ చూడండి apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,పంపే ముందు వార్తా సేవ్ చేయండి @@ -2225,7 +2265,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,పాయింట DocType: SMS Settings,SMS Gateway URL,SMS గేట్వే URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ఉండకూడదు "{2}". ఇది ఒకటి ఉండాలి "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} లేదా {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,పాస్వర్డ్ నవీకరణ DocType: Workflow State,trash,చెత్త DocType: System Settings,Older backups will be automatically deleted,పాత బ్యాక్ అప్ స్వయంచాలకంగా తొలగించబడుతుంది apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,చెల్లని ప్రాప్యత కీ ID లేదా సీక్రెట్ ప్రాప్యత కీ. @@ -2252,6 +2291,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,వ DocType: Address,Preferred Shipping Address,ఇష్టపడే షిప్పింగ్ చిరునామా apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,లెటర్ తలను apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} రూపొందించినవారు ఈ {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్ కాదు. దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి క్రొత్త ఇమెయిల్ ఖాతాను సృష్టించండి DocType: S3 Backup Settings,eu-west-1,eu-పడమర-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","ఇది తనిఖీ చేయబడితే, చెల్లుబాటు అయ్యే డేటాతో వరుసలు దిగుమతి చేయబడతాయి మరియు చెల్లని అడ్డు వరుసలు తర్వాత దిగుమతి చేయడానికి మీరు కొత్త ఫైల్కు డంప్ చేయబడతాయి." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,డాక్యుమెంట్ పాత్ర యొక్క వినియోగదారుల ద్వారా మాత్రమే సవరించగలిగేలా ఉంది @@ -2278,6 +2318,7 @@ DocType: Custom Field,Is Mandatory Field,తప్పనిసరి ఫీల DocType: User,Website User,వెబ్సైట్ వాడుకరి apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,PDF కు ముద్రించేటప్పుడు కొన్ని నిలువు వరుసలు కత్తిరించబడవచ్చు. నిలువు వరుసల సంఖ్యను 10 లోపు ఉంచడానికి ప్రయత్నించండి. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,సమానం కాదు +DocType: Data Import Beta,Don't Send Emails,ఇమెయిల్‌లు పంపవద్దు DocType: Integration Request,Integration Request Service,ఇంటిగ్రేషన్ అభ్యర్థన సర్వీస్ DocType: Access Log,Access Log,యాక్సెస్ లాగ్ DocType: Website Script,Script to attach to all web pages.,స్క్రిప్ట్ అన్ని వెబ్ పేజీలు అటాచ్. @@ -2316,6 +2357,7 @@ DocType: Contact,Passive,నిష్క్రియాత్మక DocType: Auto Repeat,Accounts Manager,అకౌంట్స్ మేనేజర్ apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} కోసం కేటాయింపు apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,మీ చెల్లింపు రద్దు చేయబడింది. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి డిఫాల్ట్ ఇమెయిల్ ఖాతాను సెటప్ చేయండి apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,ఫైల్ రకం ఎంచుకోండి apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,అన్నీ చూడండి DocType: Help Article,Knowledge Base Editor,నాలెడ్జ్ బేస్ ఎడిటర్ @@ -2347,6 +2389,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,సమాచారం apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,డాక్యుమెంట్ స్థితి apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,ఆమోదం అవసరం +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,మేము మీ ఫైల్‌ను దిగుమతి చేయడానికి ముందు ఈ క్రింది రికార్డులు సృష్టించాలి. DocType: OAuth Authorization Code,OAuth Authorization Code,ను అధికార కోడ్ apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,దిగుమతి అనుమతి లేదు DocType: Deleted Document,Deleted DocType,తొలగించినవి doctype @@ -2398,8 +2441,8 @@ DocType: System Settings,System Settings,వ్యవస్థ సెట్ట DocType: GCalendar Settings,Google API Credentials,Google API ఆధారాలు apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,సెషన్ ప్రారంభం విఫలమైంది apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ఈ ఇమెయిల్ {0} పంపిన మరియు కాపీ చేయబడింది {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ఈ పత్రాన్ని సమర్పించారు {0} DocType: Workflow State,th,వ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం DocType: Social Login Key,Provider Name,ప్రొవైడర్ పేరు apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ఒక క్రొత్త {0} DocType: Contact,Google Contacts,Google పరిచయాలు @@ -2407,6 +2450,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar ఖాతా DocType: Email Rule,Is Spam,స్పామ్ ఉంది apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},నివేదిక {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},ఓపెన్ {0} +DocType: Data Import Beta,Import Warnings,హెచ్చరికలను దిగుమతి చేయండి DocType: OAuth Client,Default Redirect URI,డిఫాల్ట్ దారిమార్పు URI DocType: Auto Repeat,Recipients,గ్రహీతలు DocType: System Settings,Choose authentication method to be used by all users,అన్ని వినియోగదారులందరికీ ఉపయోగించుటకు ప్రామాణీకరణ విధానాన్ని ఎంచుకోండి @@ -2536,6 +2580,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,న్యూ సృష్టించు DocType: Workflow State,chevron-down,చెవ్రాన్-డౌన్ apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),పంపిన ఇమెయిల్ {0} (వికలాంగ / తప్పుకునే) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,ఎగుమతి చేయడానికి ఫీల్డ్‌లను ఎంచుకోండి DocType: Async Task,Traceback,.ట్రేస్బ్యాక్ DocType: Currency,Smallest Currency Fraction Value,చిన్న కరెన్సీ ఫ్రేక్షన్ విలువ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,నివేదిక సిద్ధం చేస్తోంది @@ -2544,6 +2589,7 @@ DocType: Workflow State,th-list,వ-జాబితా DocType: Web Page,Enable Comments,వ్యాఖ్యలు ప్రారంభించు apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,గమనికలు DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),మాత్రమే ఈ IP చిరునామా నుండి వినియోగదారు పరిమితం. బహుళ IP చిరునామాలను కామాలతో వేరు ద్వారా జోడించవచ్చు. కూడా వంటి పాక్షిక IP చిరునామాలను అంగీకరిస్తుంది (111.111.111) +DocType: Data Import Beta,Import Preview,దిగుమతి పరిదృశ్యం DocType: Communication,From,నుండి apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,మొదటి సమూహం నోడ్ ఎంచుకోండి. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},కనుగొనండి {0} లో {1} @@ -2640,6 +2686,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,మధ్య DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,క్యూలో +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,సెటప్> ఫారమ్‌ను అనుకూలీకరించండి DocType: Braintree Settings,Use Sandbox,శాండ్బాక్స్ ఉపయోగించండి apps/frappe/frappe/utils/goal.py,This month,ఈ నెల apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,న్యూ కస్టమ్ ప్రింట్ ఫార్మాట్ @@ -2654,6 +2701,7 @@ DocType: Session Default,Session Default,సెషన్ డిఫాల్ట DocType: Chat Room,Last Message,చివరి సందేశం DocType: OAuth Bearer Token,Access Token,ప్రాప్తి టోకెన్ DocType: About Us Settings,Org History,ఆర్గ్ చరిత్ర +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,సుమారు {0} నిమిషాలు మిగిలి ఉన్నాయి DocType: Auto Repeat,Next Schedule Date,తదుపరి షెడ్యూల్ తేదీ DocType: Workflow,Workflow Name,వర్క్ఫ్లో పేరు DocType: DocShare,Notify by Email,ఇమెయిల్ ద్వారా తెలియజేయి @@ -2683,6 +2731,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,రచయిత apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,మళ్ళీ పంపడం apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,మళ్ళీ తెరువు +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,హెచ్చరికలను చూపించు apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,కొనుగోలు వాడుకరి DocType: Data Migration Run,Push Failed,పుష్ విఫలమైంది @@ -2720,6 +2769,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,అధ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,వార్తాలేఖను వీక్షించడానికి మీకు అనుమతి లేదు. DocType: User,Interests,అభిరుచులు apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,పాస్వర్డ్ రీసెట్ సూచనలు మీ ఇమెయిల్ పంపారు +DocType: Energy Point Rule,Allot Points To Assigned Users,కేటాయించిన వినియోగదారులకు పాయింట్లను కేటాయించండి apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 పత్రాన్ని స్థాయి అనుమతులు, \ రంగంలో స్థాయి అనుమతులు కోసం అధిక స్థాయిల కోసం." DocType: Contact Email,Is Primary,ప్రైమరీ @@ -2743,6 +2793,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,publishable కీ DocType: Stripe Settings,Publishable Key,publishable కీ apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,దిగుమతి ప్రారంభించండి +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,ఎగుమతి రకం DocType: Workflow State,circle-arrow-left,సర్కిల్-మెట్ట వదిలి DocType: System Settings,Force User to Reset Password,పాస్‌వర్డ్‌ను రీసెట్ చేయడానికి వినియోగదారుని బలవంతం చేయండి apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis కాష్ సర్వర్ నడుస్తున్న లేదు. అడ్మినిస్ట్రేటర్ / టెక్ మద్దతు సంప్రదించండి @@ -2756,10 +2807,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,ప్రాంప్ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ఇమెయిల్ ఇన్బాక్స్ DocType: Auto Email Report,Filters Display,వడపోతలు ప్రదర్శన apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",సవరణ చేయడానికి "సవరించిన_ నుండి" ఫీల్డ్ ఉండాలి. +DocType: Contact,Numbers,సంఖ్యలు apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ఫిల్టర్లను సేవ్ చేయండి DocType: Address,Plant,ప్లాంట్ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ప్రత్యుత్తరం అన్ని DocType: DocType,Setup,సెటప్ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,అన్ని రికార్డులు DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google పరిచయాలు సమకాలీకరించాల్సిన ఇమెయిల్ చిరునామా. DocType: Email Account,Initial Sync Count,ప్రారంభ సమకాలీకరణ కౌంట్ DocType: Workflow State,glass,గాజు @@ -2784,7 +2837,7 @@ DocType: Workflow State,font,ఫాంట్ DocType: DocType,Show Preview Popup,ప్రివ్యూ పాపప్ చూపించు apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ఈ టాప్ -100 సాధారణ పాస్వర్డ్. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,పాప్-అప్లను ఎనేబుల్ చెయ్యండి -DocType: User,Mobile No,మొబైల్ లేవు +DocType: Contact,Mobile No,మొబైల్ లేవు DocType: Communication,Text Content,టెక్స్ట్ కంటెంట్ DocType: Customize Form Field,Is Custom Field,కస్టమ్ రంగం DocType: Workflow,"If checked, all other workflows become inactive.","ఎంచుకుంటే, అన్ని ఇతర పనులకూ క్రియారహితంగా మారింది." @@ -2830,6 +2883,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,ర apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,కొత్త ప్రింట్ ఫార్మాట్ పేరు apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,సైడ్బార్ని టోగుల్ చేయండి DocType: Data Migration Run,Pull Insert,చొప్పించు లాగండి +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",గుణక విలువతో పాయింట్లను గుణించిన తర్వాత గరిష్ట పాయింట్లు అనుమతించబడతాయి (గమనిక: పరిమితి లేకుండా ఈ ఫీల్డ్‌ను ఖాళీగా ఉంచండి లేదా 0 సెట్ చేయండి) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,చెల్లని మూస apps/frappe/frappe/model/db_query.py,Illegal SQL Query,చట్టవిరుద్ధ SQL ప్రశ్న apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,తప్పనిసరి: DocType: Chat Message,Mentions,ప్రస్తావనలు @@ -2870,9 +2926,11 @@ DocType: Braintree Settings,Public Key,పబ్లిక్ కీ DocType: GSuite Settings,GSuite Settings,GSuite సెట్టింగులు DocType: Address,Links,లింకులు DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,ఈ ఖాతాను ఉపయోగించి పంపిన అన్ని ఇమెయిల్‌లకు పంపినవారి పేరుగా ఈ ఖాతాలో పేర్కొన్న ఇమెయిల్ చిరునామా పేరును ఉపయోగిస్తుంది. +DocType: Energy Point Rule,Field To Check,తనిఖీ చేయడానికి ఫీల్డ్ apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,దయచేసి డాక్యుమెంట్ టైప్ ఎంచుకోండి. apps/frappe/frappe/model/base_document.py,Value missing for,విలువ తప్పిపోయిన apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,చైల్డ్ జోడించండి +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,దిగుమతి పురోగతి DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",షరతు సంతృప్తి చెందితే వినియోగదారుకు పాయింట్లతో రివార్డ్ చేయబడుతుంది. ఉదా. doc.status == 'మూసివేయబడింది' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: సమర్పించిన రికార్డ్ తొలగించడం సాధ్యం కాదు. @@ -2909,6 +2967,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google క్యాల apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,మీరు కోసం చూస్తున్నాయి పేజీ లేదు. తరలించారు లేదా లింక్ లో ఒక అక్షర దోషం ఉంది ఎందుకంటే ఇది జరిగింది. apps/frappe/frappe/www/404.html,Error Code: {0},దోష కోడ్: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",సాదా టెక్స్ట్ లో రేఖలు మాత్రమే జంట పేజీ లిస్టింగ్ కోసం వివరణ. (గరిష్టంగా 140 అక్షరాలు) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} తప్పనిసరి ఫీల్డ్‌లు DocType: Workflow,Allow Self Approval,నేనే ఆమోదం అనుమతించు DocType: Event,Event Category,ఈవెంట్ వర్గం apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,జాన్ డో @@ -2958,6 +3017,7 @@ apps/frappe/frappe/database/database.py,Too many writes in one request. Please s apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google డిస్క్ కాన్ఫిగర్ చేయబడింది. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,విలువలు మార్చబడింది DocType: Workflow State,arrow-up,బాణం అప్ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} పట్టిక కోసం కనీసం ఒక వరుస ఉండాలి DocType: OAuth Bearer Token,Expires In,లో ముగుస్తుంది DocType: DocField,Allow on Submit,సమర్పించండి అనుమతించు DocType: DocField,HTML,HTML @@ -3042,6 +3102,7 @@ DocType: Custom Field,Options Help,ఎంపికలు సహాయము 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 రికార్డు ఎగుమతి చేయబడుతుంది 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,డొమైన్కు పరిమితం @@ -3058,6 +3119,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,వెరిఫికేషన DocType: Webhook,Webhook Request,వెబ్క్యుక్ అభ్యర్థన apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** విఫలమైంది: {0} కు {1}: {2} DocType: Data Migration Mapping,Mapping Type,మ్యాపింగ్ పద్ధతి +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,తప్పనిసరి ఎంచుకోండి apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,బ్రౌజ్ apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","చిహ్నాలు, అంకెలు, లేదా పెద్ద అక్షరాలు ఏ అవసరం." DocType: DocField,Currency,కరెన్సీ @@ -3088,11 +3150,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,లెటర్ హెడ్ ఆధారంగా apps/frappe/frappe/utils/oauth.py,Token is missing,టోకెన్ లేదు apps/frappe/frappe/www/update-password.html,Set Password,పాస్వర్డ్ను సెట్ చేయండి +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} రికార్డులను విజయవంతంగా దిగుమతి చేసింది. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,గమనిక: పేజీ పేరు మార్చడం వలన ఈ పేజీకి గత URL పగిలిపోతుంది. apps/frappe/frappe/utils/file_manager.py,Removed {0},తొలగించబడిన {0} DocType: SMS Settings,SMS Settings,SMS సెట్టింగ్లు DocType: Company History,Highlight,హైలైట్ DocType: Dashboard Chart,Sum,సమ్ +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,డేటా దిగుమతి ద్వారా DocType: OAuth Provider Settings,Force,ఫోర్స్ apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},చివరిగా సమకాలీకరించబడింది {0} DocType: DocField,Fold,మడత @@ -3161,6 +3225,7 @@ DocType: Website Settings,Top Bar Items,టాప్ బార్ అంశా DocType: Notification,Print Settings,ముద్రణా సెట్టింగ్లను DocType: Page,Yes,అవును DocType: DocType,Max Attachments,మాక్స్ అటాచ్మెంట్లు +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,సుమారు {0} సెకన్లు మిగిలి ఉన్నాయి DocType: Calendar View,End Date Field,ముగింపు తేదీ ఫీల్డ్ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,గ్లోబల్ సత్వరమార్గాలు DocType: Desktop Icon,Page,పేజీ @@ -3269,6 +3334,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite ప్రాప్తిన DocType: DocType,DESC,DESC DocType: DocType,Naming,నామకరణ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,అన్ని ఎంచుకోండి +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},కాలమ్ {0} apps/frappe/frappe/config/customization.py,Custom Translations,కస్టమ్ అనువాదాలు apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,ప్రోగ్రెస్ apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,పాత్ర ద్వారా @@ -3311,6 +3377,7 @@ DocType: Stripe Settings,Stripe Settings,గీత సెట్టింగు DocType: Stripe Settings,Stripe Settings,గీత సెట్టింగులు DocType: Data Migration Mapping,Data Migration Mapping,డేటా మైగ్రేషన్ మ్యాపింగ్ DocType: Auto Email Report,Period,కాలం +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,సుమారు {0} నిమిషం మిగిలి ఉంది apps/frappe/frappe/www/login.py,Invalid Login Token,చెల్లని లాగిన్ టోకెన్ apps/frappe/frappe/public/js/frappe/chat.js,Discard,విస్మరించు apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 గంట క్రితం @@ -3335,6 +3402,7 @@ DocType: Calendar View,Start Date Field,ప్రారంభ తేదీ ఫ DocType: Role,Role Name,కారెక్టర్ పేరు apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,డెస్క్ మారండి apps/frappe/frappe/config/core.py,Script or Query reports,స్క్రిప్ట్ లేదా కొర్రి రిపోర్ట్స్ +DocType: Contact Phone,Is Primary Mobile,ప్రాథమిక మొబైల్ DocType: Workflow Document State,Workflow Document State,వర్క్ఫ్లో డాక్యుమెంట్ రాష్ట్రం apps/frappe/frappe/public/js/frappe/request.js,File too big,చాలా పెద్ద ఫైలు apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ఇమెయిల్ ఖాతా అనేకసార్లు జోడించారు @@ -3411,6 +3479,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,లక్షణాలు కొన్ని మీ బ్రౌజర్లో పని చేయకపోవచ్చు. దయచేసి తాజా వెర్షన్ మీ బ్రౌజర్ అప్డేట్. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,లక్షణాలు కొన్ని మీ బ్రౌజర్లో పని చేయకపోవచ్చు. దయచేసి తాజా వెర్షన్ మీ బ్రౌజర్ అప్డేట్. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",తెలియదు అడగండి 'సహాయం' +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ఈ పత్రాన్ని రద్దు చేసింది {0} DocType: DocType,Comments and Communications will be associated with this linked document,వ్యాఖ్యలు మరియు కమ్యూనికేషన్స్ ముడిపెట్టారు పత్రం సంబంధం ఉంటుంది apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,ఫిల్టర్ చెయ్యి ... DocType: Workflow State,bold,బోల్డ్ @@ -3485,6 +3554,7 @@ DocType: Print Settings,PDF Settings,PDF సెట్టింగ్స్ DocType: Kanban Board Column,Column Name,కాలమ్ పేరు DocType: Language,Based On,ఆధారంగా DocType: Email Account,"For more information, click here.","మరింత సమాచారం కోసం, ఇక్కడ క్లిక్ చేయండి ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,నిలువు వరుసల సంఖ్య డేటాతో సరిపోలడం లేదు apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,డిఫాల్ట్గా చెయ్యి apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,అమలు సమయం: {0} సె apps/frappe/frappe/model/utils/__init__.py,Invalid include path,చెల్లని మార్గం ఉన్నాయి @@ -3572,7 +3642,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar సమకాలీకరణ ID DocType: Prepared Report,Report Start Time,ప్రారంభ సమయం నివేదించండి -apps/frappe/frappe/config/settings.py,Export Data,ఎగుమతి డేటా +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ఎగుమతి డేటా 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.,"ఇది నేపథ్య నివేదిక. దయచేసి తగిన ఫిల్టర్‌లను సెట్ చేసి, ఆపై క్రొత్తదాన్ని రూపొందించండి." @@ -3589,7 +3659,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},{0} సృష DocType: Report,Disable Prepared Report,సిద్ధం చేసిన నివేదికను నిలిపివేయండి apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,అక్రమ ప్రాప్తి టోకెన్. మళ్ళి ప్రయత్నించండి apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","అప్లికేషన్ ఒక కొత్త వెర్షన్ కు నవీకరించబడింది, ఈ పేజీని రిఫ్రెష్ చెయ్యండి" -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.,డిఫాల్ట్ చిరునామా మూస కనుగొనబడలేదు. దయచేసి సెటప్> ప్రింటింగ్ మరియు బ్రాండింగ్> చిరునామా మూస నుండి క్రొత్తదాన్ని సృష్టించండి. DocType: Notification,Optional: The alert will be sent if this expression is true,ఐచ్ఛిక: ఈ వ్యక్తీకరణ నిజమైన ఉంటే హెచ్చరిక పంపబడును DocType: Data Migration Plan,Plan Name,ప్రణాళిక పేరు DocType: Print Settings,Print with letterhead,లెటర్హెడ్ తో ముద్రించు @@ -3628,6 +3697,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: లేకుండా రద్దు చక్కదిద్దు సెట్ చెయ్యబడదు apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,పూర్తి పేజీ DocType: DocType,Is Child Table,చైల్డ్ పట్టిక +DocType: Data Import Beta,Template Options,మూస ఎంపికలు apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} ఒకటి ఉండాలి {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} ప్రస్తుతం ఈ పత్రం వీక్షిస్తున్నారు apps/frappe/frappe/config/core.py,Background Email Queue,నేపధ్యం ఇమెయిల్ క్యూ @@ -3635,7 +3705,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,పాస్వర DocType: Communication,Opened,ప్రారంభమైన DocType: Workflow State,chevron-left,చెవ్రాన్ లెఫ్ట్ DocType: Communication,Sending,పంపుతోంది -apps/frappe/frappe/auth.py,Not allowed from this IP Address,ఈ IP చిరునామా నుండి అనుమతి లేదు DocType: Website Slideshow,This goes above the slideshow.,ఈ స్లైడ్ పైన వెళ్తాడు. DocType: Contact,Last Name,చివరి పేరు DocType: Event,Private,ప్రైవేట్ @@ -3649,7 +3718,6 @@ DocType: Workflow Action,Workflow Action,వర్క్ఫ్లో యాక apps/frappe/frappe/utils/bot.py,I found these: ,నేను ఈ దొరకలేదు: DocType: Event,Send an email reminder in the morning,ఉదయం ఒక ఇమెయిల్ రిమైండర్ పంపు DocType: Blog Post,Published On,లో ప్రచురితమైన -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్ కాదు. దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి క్రొత్త ఇమెయిల్ ఖాతాను సృష్టించండి DocType: Contact,Gender,లింగ apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,తప్పనిసరి సమాచారం లేదు: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,అభ్యర్థన URL తనిఖీ @@ -3669,7 +3737,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,హెచ్చరిక సంకేతం DocType: Prepared Report,Prepared Report,సిద్ధం నివేదిక apps/frappe/frappe/config/website.py,Add meta tags to your web pages,మీ వెబ్ పేజీలకు మెటా ట్యాగ్‌లను జోడించండి -DocType: Contact,Phone Nos,ఫోన్ సంఖ్య DocType: Workflow State,User,వాడుకరి DocType: Website Settings,"Show title in browser window as ""Prefix - title""",బ్రౌజర్ విండోలో టైటిల్ "ఉపసర్గ - శీర్షిక" DocType: Payment Gateway,Gateway Settings,గేట్వే సెట్టింగులు @@ -3686,6 +3753,7 @@ DocType: Data Migration Connector,Data Migration,డేటా మైగ్రే DocType: User,API Key cannot be regenerated,API కీ పునరుత్పత్తి చేయబడదు apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,ఎక్కడో తేడ జరిగింది DocType: System Settings,Number Format,సంఖ్య ఫార్మాట్ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} రికార్డు విజయవంతంగా దిగుమతి చేయబడింది. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,సారాంశం DocType: Event,Event Participants,ఈవెంట్ పాల్గొనేవారు DocType: Auto Repeat,Frequency,ఫ్రీక్వెన్సీ @@ -3693,7 +3761,7 @@ DocType: Custom Field,Insert After,తరువాత చొప్పించ DocType: Event,Sync with Google Calendar,Google క్యాలెండర్‌తో సమకాలీకరించండి DocType: Access Log,Report Name,రిపోర్ట్ పేరు DocType: Desktop Icon,Reverse Icon Color,ఐకాన్ రంగు రివర్స్ -DocType: Notification,Save,సేవ్ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,సేవ్ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,తదుపరి షెడ్యూల్ చేసిన తేదీ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,తక్కువ పనులను కలిగి ఉన్నవారికి కేటాయించండి apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,విభాగం శీర్షిక @@ -3716,7 +3784,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,సెటప్> ఫారమ్‌ను అనుకూలీకరించండి DocType: Google Contacts,Last Sync On,చివరి సమకాలీకరణ ఆన్ చేయబడింది DocType: Deleted Document,Deleted Document,తొలగించిన పత్రం apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,అయ్యో! ఎక్కడో తేడ జరిగింది @@ -3744,6 +3811,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ఎనర్జీ పాయింట్ నవీకరణ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',దయచేసి మరో చెల్లింపు పద్ధతిని ఎంచుకోండి. పేపాల్ ద్రవ్యంలో లావాదేవీలు మద్దతు లేదు '{0}' DocType: Chat Message,Room Type,గది రకం +DocType: Data Import Beta,Import Log Preview,లాగ్ పరిదృశ్యాన్ని దిగుమతి చేయండి apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,శోధన రంగంలో {0} చెల్లుబాటు కాదు apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,అప్‌లోడ్ చేసిన ఫైల్ DocType: Workflow State,ok-circle,ok సర్కిల్ diff --git a/frappe/translations/th.csv b/frappe/translations/th.csv index 6d96a3515d..d9badb1730 100644 --- a/frappe/translations/th.csv +++ b/frappe/translations/th.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,เปิดตัว {{@} ใหม่สำหรับแอปพลิเคชันต่อไปนี้ apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,โปรดเลือกฟิลด์ยอดเงิน +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,กำลังโหลดไฟล์นำเข้า ... DocType: Assignment Rule,Last User,ผู้ใช้งานล่าสุด apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",งานใหม่ {0} ได้รับมอบหมายให้กับคุณโดย {1} {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,บันทึกค่าเริ่มต้นของเซสชันแล้ว +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,โหลดไฟล์ซ้ำ DocType: Email Queue,Email Queue records.,บันทึกคิวอีเมล์ DocType: Post,Post,เสา DocType: Address,Punjab,ปัญจาบ @@ -44,6 +46,7 @@ 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,พารามิเตอร์ @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,รายเดือน DocType: Address,Uttarakhand,ตราขั ณ ฑ์ DocType: Email Account,Enable Incoming,เปิดใช้งานเข้ามา apps/frappe/frappe/core/doctype/version/version_view.html,Danger,อันตราย -apps/frappe/frappe/www/login.py,Email Address,ที่อยู่อีเมล +DocType: Address,Email Address,ที่อยู่อีเมล DocType: Workflow State,th-large,-th ใหญ่ DocType: Communication,Unread Notification Sent,แจ้งส่งยังไม่ได้อ่าน apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,ส่งออก ไม่ได้รับอนุญาต คุณต้อง {0} บทบาท ในการส่งออก @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,ผู้ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",ตัวเลือกการติดต่อเช่น "แบบสอบถามขายการสนับสนุนแบบสอบถาม" ฯลฯ แต่ละบรรทัดใหม่หรือคั่นด้วยเครื่องหมายจุลภาค apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,เพิ่มแท็ก ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ภาพเหมือน -DocType: Data Migration Run,Insert,แทรก +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,แทรก apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,ที่อนุญาตให้เข้าถึงใน Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},เลือก {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,โปรดป้อน URL พื้นฐาน @@ -119,17 +122,17 @@ 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,กำหนดค่าธีม DocType: Company History,Company History,ประวัติ บริษัท -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,รีเซ็ต +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,รีเซ็ต DocType: Workflow State,volume-up,ปริมาณขึ้น apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks เรียก API คำขอไปยังเว็บแอ็พพลิเคชัน +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,แสดง Traceback DocType: DocType,Default Print Format,รูปแบบการพิมพ์เริ่มต้น DocType: Workflow State,Tags,แท็ก apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,: ไม่มีสิ้นสุดเวิร์กโฟลว์ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} เขตข้อมูลไม่สามารถกำหนดให้เป็นเอกลักษณ์ใน {1} เนื่องจากมีค่าที่ซ้ำกันอยู่ -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,ประเภทเอกสาร +DocType: Global Search Settings,Document Types,ประเภทเอกสาร DocType: Address,Jammu and Kashmir,ชัมมูและแคชเมียร์ DocType: Workflow,Workflow State Field,ฟิลด์สถานะของเวิร์กโฟลว์ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ตั้งค่า> ผู้ใช้ DocType: Language,Guest,ผู้เยี่ยมชม DocType: DocType,Title Field,ชื่อ ฟิลด์ DocType: Error Log,Error Log,บันทึกข้อผิดพลาด @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",ซ้ำเช่น "abcabcabc" เป็นเพียงเล็กน้อยยากที่จะคาดเดามากกว่า "ABC" DocType: Notification,Channel,ช่อง apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",หากคุณคิดว่านี่คือไม่ได้รับอนุญาตโปรดเปลี่ยนรหัสผ่านของผู้ดูแลระบบ +DocType: Data Import Beta,Data Import Beta,Data Import Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,ต้องระบุ {0} DocType: Assignment Rule,Assignment Rules,กฎการกำหนด DocType: Workflow State,eject,ขับ @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,ชื่อการกร apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType ไม่สามารถ รวม DocType: Web Form Field,Fieldtype,fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ไม่ได้เป็นไฟล์ซิป +DocType: Global Search DocType,Global Search DocType,DocType การค้นหาทั่วโลก DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                            New {{ doc.doctype }} #{{ doc.name }}
                                                                                                            ",ในการเพิ่มเรื่องแบบไดนามิกให้ใช้แท็ก jinja เช่น
                                                                                                             New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                            @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,เหตุการณ์หมอ apps/frappe/frappe/public/js/frappe/utils/user.js,You,คุณ DocType: Braintree Settings,Braintree Settings,การตั้งค่า Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,สร้างเร็กคอร์ด {0} สำเร็จ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,บันทึกตัวกรอง DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},ไม่สามารถลบ {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,ป้อนพารา apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,สร้างซ้ำอัตโนมัติสำหรับเอกสารนี้ apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,ดูรายงานในเบราเซอร์ของคุณ apps/frappe/frappe/config/desk.py,Event and other calendars.,เหตุการณ์และปฏิทินอื่น ๆ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (บังคับ 1 แถว) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,ทุกช่องจำเป็นต้องส่งความคิดเห็น DocType: Custom Script,Adds a client custom script to a DocType,เพิ่มสคริปต์ที่กำหนดเองของลูกค้าให้กับ DocType DocType: Print Settings,Printer Name,ชื่อเครื่องพิมพ์ @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,อัปเดต DocType: Workflow State,chevron-up,บั้งขึ้น DocType: DocType,Allow Guest to View,อนุญาตให้ผู้เยี่ยมชมเพื่อดู apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} ไม่ควรเหมือนกับ {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,ลบ {0} รายการอย่างถาวร? apps/frappe/frappe/utils/oauth.py,Not Allowed,ไม่อนุญาต @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,แสดงผล DocType: Email Group,Total Subscribers,สมาชิกทั้งหมด apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},ยอดนิยม {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,จำนวนแถว apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",หาก บทบาทไม่สามารถเข้าถึง ที่ ระดับ 0 แล้ว ระดับที่สูงขึ้น มีความหมาย apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,บันทึกเป็น DocType: Comment,Seen,การกระทำ @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,ตัวอย่าง: DocType: Workflow,Defines workflow states and rules for a document.,กำหนดขั้นตอนการทำงานรัฐและกฎระเบียบสำหรับเอกสาร DocType: Workflow State,Filter,กรอง @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,ปิด DocType: Blog Settings,Blog Title,หัวข้อบล็อก apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,บทบาทมาตรฐานที่ไม่สามารถปิดการใช้งาน apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,ประเภทแชท +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,แผนที่คอลัมน์ DocType: Address,Mizoram,รัฐมิโซรัม DocType: Newsletter,Newsletter,จดหมายข่าว apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,ไม่สามารถใช้แบบสอบถามย่อยในการสั่งซื้อโดย @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,เพิ่มคอลัมน์ apps/frappe/frappe/www/contact.html,Your email address,ที่อยู่ อีเมลของคุณ DocType: Desktop Icon,Module,โมดูล +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,อัพเดต {0} เร็กคอร์ดจาก {1} สำเร็จแล้ว DocType: Notification,Send Alert On,แจ้งเตือนเมื่อวันที่ DocType: Customize Form,"Customize Label, Print Hide, Default etc.","กำหนด Label, ซ่อนพิมพ์ ฯลฯ เริ่มต้น" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,กำลังขยายไฟล์ ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,ผู DocType: System Settings,Currency Precision,ความแม่นยำของสกุลเงิน DocType: System Settings,Currency Precision,ความแม่นยำของสกุลเงิน apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,การทำธุรกรรมก็คือการปิดกั้นคนนี้ โปรดลองอีกครั้งในไม่กี่วินาที +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,ล้างตัวกรอง DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,ไฟล์แนบไม่สามารถเชื่อมโยงกับเอกสารใหม่ได้อย่างถูกต้อง DocType: Chat Message Attachment,Attachment,ความผูกพัน @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,ไม่ส apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Calendar - ไม่สามารถอัปเดตกิจกรรม {0} ใน Google ปฏิทิน, รหัสข้อผิดพลาด {1}" apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ค้นหาหรือพิมพ์คำสั่ง DocType: Activity Log,Timeline Name,ชื่อไทม์ไลน์ +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,สามารถตั้งค่าได้เพียง {0} รายการเดียวเท่านั้น DocType: Email Account,e.g. smtp.gmail.com,เช่น smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,เพิ่มกฎใหม่ DocType: Contact,Sales Master Manager,ผู้จัดการฝ่ายขายปริญญาโท @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,ฟิลด์ชื่อกลางของ LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},การอิมพอร์ต {0} จาก {1} DocType: GCalendar Account,Allow GCalendar Access,อนุญาตให้เข้าถึง GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} เป็นฟิลด์ที่บังคับ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} เป็นฟิลด์ที่บังคับ apps/frappe/frappe/templates/includes/login/login.js,Login token required,ต้องการโทเค็นการเข้าสู่ระบบ apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,อันดับรายเดือน: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,เลือกหลายรายการ @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},ไม่สามาร apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,คำด้วยตัวเองเป็นเรื่องง่ายที่จะคาดเดา apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},การกำหนดอัตโนมัติล้มเหลว: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,ค้นหา... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,กรุณาเลือก บริษัท apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,การรวม เป็นไปได้ เพียงอย่างเดียวระหว่าง กลุ่ม ต่อ กลุ่ม หรือ ใบ โหนด ที่ โหนด ใบ apps/frappe/frappe/utils/file_manager.py,Added {0},เพิ่ม {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,ไม่มีระเบียนที่ตรงกัน ค้นหาสิ่งใหม่ ๆ @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,รหัสลูกค้า OAuth DocType: Auto Repeat,Subject,เรื่อง apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,กลับไปที่โต๊ะ DocType: Web Form,Amount Based On Field,จำนวนเงินจากบนสนาม -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,ผู้ใช้เป็นข้อบังคับสำหรับแบ่งปัน DocType: DocField,Hidden,ซ่อนเร้น DocType: Web Form,Allow Incomplete Forms,อนุญาตให้รูปแบบที่ไม่สมบูรณ์ @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} และ {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,เริ่มการสนทนา DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",เสมอเพิ่ม "ร่าง" จะเดินทางสำหรับเอกสารร่างการพิมพ์ apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},ข้อผิดพลาดในการแจ้งเตือน: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ปีที่แล้ว DocType: Data Migration Run,Current Mapping Start,การทำแผนที่เริ่มต้นปัจจุบัน apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,อีเมลถูกทำเครื่องหมายว่าเป็นสแปม DocType: Comment,Website Manager,เว็บไซต์ผู้จัดการ @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,บาร์โค้ด apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,การใช้ข้อความค้นหาย่อยหรือฟังก์ชันถูก จำกัด ไว้ apps/frappe/frappe/config/customization.py,Add your own translations,เพิ่มการแปลของคุณเอง DocType: Country,Country Name,ชื่อประเทศ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,เทมเพลตเปล่า DocType: About Us Team Member,About Us Team Member,เกี่ยวกับสมาชิกในทีมเรา apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","สิทธิ์ มีการกำหนด บทบาท และชนิดของ เอกสาร ( ที่เรียกว่า doctypes ) โดยการตั้งค่า สิทธิ เช่น อ่านเขียน สร้าง , ลบ, ส่ง , ยกเลิก , แก้ไข , รายงาน , นำเข้า , ส่งออก , พิมพ์ , อีเมล์และ กำหนด สิทธิ์ของผู้ใช้" DocType: Event,Wednesday,วันพุธ @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,รูปแบบการ DocType: Web Form,Sidebar Items,รายการ แถบด้านข้าง DocType: Web Form,Show as Grid,แสดงเป็นแบบกริด apps/frappe/frappe/installer.py,App {0} already installed,แอป {0} ติดตั้งอยู่แล้ว +DocType: Energy Point Rule,Users assigned to the reference document will get points.,ผู้ใช้ที่กำหนดให้กับเอกสารอ้างอิงจะได้รับคะแนน apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,ไม่มีการแสดงตัวอย่าง DocType: Workflow State,exclamation-sign,อัศเจรีย์เข้าสู่ระบบ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,แตกไฟล์ {0} แล้ว @@ -605,6 +620,7 @@ DocType: Notification,Days Before,วันก่อน apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,กิจกรรมรายวันควรเสร็จสิ้นในวันเดียวกัน apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,แก้ไข ... DocType: Workflow State,volume-down,ปริมาณลง +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,ไม่อนุญาตให้เข้าถึงจากที่อยู่ IP นี้ apps/frappe/frappe/desk/reportview.py,No Tags,ไม่มีแท็ก DocType: Email Account,Send Notification to,แจ้งการส่ง DocType: DocField,Collapsible,พับ @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,นักพัฒนาซอฟต์แวร์ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,สร้าง 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,ภาษาการพิมพ์เริ่มต้น apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,บรรพบุรุษของ apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,ราก {0} ไม่สามารถลบได้ @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,ฮาร์ดดิสก์ DocType: Integration Request,Host,เจ้าภาพ +DocType: Data Import Beta,Import File,นำเข้าไฟล์ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,คอลัมน์ {0} อยู่แล้ว DocType: ToDo,High,สูง apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,กิจกรรมใหม่ @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,ส่งการแจ้ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,ศ apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,ไม่ได้อยู่ในโหมดการพัฒนา apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,การสำรองข้อมูลแฟ้มพร้อมใช้งานแล้ว -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",คะแนนสูงสุดที่อนุญาตหลังจากคูณคะแนนด้วยค่าตัวคูณ (หมายเหตุ: สำหรับค่าที่ไม่ได้กำหนดเป็น 0) DocType: DocField,In Global Search,ในการค้นหาทั่วโลก DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,เยื้องซ้าย @@ -775,6 +791,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',ผู้ใช้ '{0}' แล้วมีบทบาท '{1}' DocType: System Settings,Two Factor Authentication method,วิธีการตรวจสอบความถูกต้องของปัจจัยสองตัว apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ก่อนตั้งชื่อและบันทึกข้อมูล +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 จำนวน apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},ร่วมกับ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,ยกเลิกการรับข่าวสาร DocType: View Log,Reference Name,ชื่ออ้างอิง @@ -825,6 +842,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,ติดตามสถานะอีเมล DocType: Note,Notify Users On Every Login,แจ้งผู้ใช้เมื่อเข้าสู่ระบบทุกครั้ง DocType: Note,Notify Users On Every Login,แจ้งผู้ใช้เมื่อเข้าสู่ระบบทุกครั้ง +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,ไม่สามารถจับคู่คอลัมน์ {0} กับฟิลด์ใด ๆ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,อัปเดตบันทึก {0} สำเร็จแล้ว DocType: PayPal Settings,API Password,API รหัสผ่าน apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,ป้อนโมดูลหลามหรือเลือกประเภทตัวเชื่อมต่อ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,fieldname ไม่ได้ ตั้งไว้สำหรับ ฟิลด์ที่กำหนดเอง @@ -853,9 +872,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,เปลี่ยนแปลงค่าเรียบร้อย apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},ซ้ำ ชื่อ {0} {1} -DocType: Email Queue,Retry,ลองใหม่อีกครั้ง +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,ลองใหม่อีกครั้ง +DocType: Contact Phone,Number,จำนวน DocType: Web Form Field,Web Form Field,ช่องข้อมูลเว็บฟอร์ม apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,คุณมีข้อความใหม่จาก: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,แก้ไข HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,โปรดป้อน URL การเปลี่ยนเส้นทาง apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -881,7 +902,7 @@ DocType: Notification,View Properties (via Customize Form),ดูอสังห apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,คลิกที่ไฟล์เพื่อเลือก DocType: Note Seen By,Note Seen By,หมายเหตุมองเห็นได้ด้วย apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,พยายามที่จะใช้รูปแบบแป้นพิมพ์อีกต่อไปกับผลัดกันมากขึ้น -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,ลีดเดอร์ +,LeaderBoard,ลีดเดอร์ DocType: DocType,Default Sort Order,เรียงลำดับเริ่มต้น DocType: Address,Rajasthan,รัฐราชสถาน DocType: Email Template,Email Reply Help,ตอบกลับอีเมล @@ -916,6 +937,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,เขียนอีเมล apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).",สหรัฐอเมริกาเป็น ขั้นตอนการทำงาน (เช่น ร่าง อนุมัติ ยกเลิก ) DocType: Print Settings,Allow Print for Draft,อนุญาตให้พิมพ์ร่าง +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

                                                                                                            คลิกที่นี่เพื่อดาวน์โหลดและติดตั้ง QZ Tray
                                                                                                            คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับการพิมพ์แบบดิบ" apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,ระบุจำนวน apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ส่งเอกสารนี้เพื่อยืนยัน DocType: Contact,Unsubscribed,ยกเลิกการสมัคร @@ -947,6 +969,7 @@ DocType: LDAP Settings,Organizational Unit for Users,หน่วยองค์ ,Transaction Log Report,รายงานบันทึกธุรกรรม DocType: Custom DocPerm,Custom DocPerm,DocPerm กำหนดเอง DocType: Newsletter,Send Unsubscribe Link,ส่งลิงค์ยกเลิกการรับข่าวสาร +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,มีเร็กคอร์ดที่ลิงก์ซึ่งจำเป็นต้องสร้างขึ้นก่อนที่เราจะสามารถนำเข้าไฟล์ของคุณได้ คุณต้องการสร้างระเบียนที่หายไปต่อไปนี้โดยอัตโนมัติหรือไม่? DocType: Access Log,Method,วิธี DocType: Report,Script Report,รายงานสคริปต์ DocType: OAuth Authorization Code,Scopes,ขอบเขต @@ -988,6 +1011,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,อัปโหลดสำเร็จแล้ว apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,คุณเชื่อมต่อกับอินเทอร์เน็ต DocType: Social Login Key,Enable Social Login,เปิดใช้การลงชื่อเข้าใช้ทางสังคม +DocType: Data Import Beta,Warnings,คำเตือน DocType: Communication,Event,เหตุการณ์ apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","เมื่อวันที่ {0}, {1} เขียน:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,ไม่สามารถลบสนามมาตรฐาน คุณสามารถซ่อนได้ถ้าคุณต้องการ @@ -1043,6 +1067,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,ใส่ DocType: Kanban Board Column,Blue,สีฟ้า apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,การปรับแต่งทั้งหมดจะถูกลบออก กรุณายืนยัน DocType: Page,Page HTML,HTML หน้า +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,ส่งออกแถวที่มีข้อผิดพลาด apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ชื่อกลุ่มต้องไม่ว่างเปล่า apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,โหนด เพิ่มเติมสามารถ ถูกสร้างขึ้น ภายใต้ โหนด ' กลุ่ม ประเภท DocType: SMS Parameter,Header,ส่วนหัว @@ -1082,13 +1107,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,ร้องขอหมดเวลา apps/frappe/frappe/config/settings.py,Enable / Disable Domains,เปิด / ปิดใช้งานโดเมน DocType: Role Permission for Page and Report,Allow Roles,อนุญาตให้บทบาท +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,อิมพอร์ต {0} เร็กคอร์ดจาก {1} สำเร็จแล้ว DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")",Python Expression แบบง่าย ๆ ตัวอย่าง: สถานะใน ("ไม่ถูกต้อง") DocType: User,Last Active,เคลื่อนไหวล่าสุด DocType: Email Account,SMTP Settings for outgoing emails,การตั้งค่า SMTP สำหรับอีเมลขาออก apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,เลือก DocType: Data Export,Filter List,ตัวกรองรายการ DocType: Data Export,Excel,สันทัด -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,รหัสผ่านของคุณได้รับการปรับปรุง นี่คือรหัสผ่านใหม่ของคุณ DocType: Email Account,Auto Reply Message,ข้อความตอบกลับอัตโนมัติ DocType: Data Migration Mapping,Condition,สภาพ apps/frappe/frappe/utils/data.py,{0} hours ago,{0} ชั่วโมงที่ผ่านมา @@ -1097,7 +1122,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,รหัสผู้ใช้ DocType: Communication,Sent,ส่ง DocType: Address,Kerala,เกรละ -DocType: File,Lft,ซ้าย apps/frappe/frappe/public/js/frappe/desk.js,Administration,การบริหาร DocType: User,Simultaneous Sessions,ประชุมพร้อมกัน DocType: Social Login Key,Client Credentials,ข้อมูลประจำตัวของไคลเอ็นต์ @@ -1129,7 +1153,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Updated apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,เจ้านาย DocType: DocType,User Cannot Create,ผู้ใช้ไม่สามารถสร้าง apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,ทำสำเร็จแล้ว -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,โฟลเดอร์ {0} ไม่อยู่ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,การเข้าถึง Dropbox ได้รับการอนุมัติ! DocType: Customize Form,Enter Form Type,ป้อนประเภทแบบฟอร์ม DocType: Google Drive,Authorize Google Drive Access,ให้สิทธิ์การเข้าถึง Google Drive @@ -1137,7 +1160,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,ระเบียนที่ไม่มีการติดแท็ก apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,นำสนาม apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,คุณไม่ได้เชื่อมต่อกับอินเทอร์เน็ต ลองอีกครั้งหลังจากที่บางครั้ง -DocType: User,Send Password Update Notification,ส่งแจ้งเตือนการปรับปรุงรหัสผ่าน apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","ช่วยให้ DocType , DocType ระวัง !" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","รูปแบบที่กำหนดเองสำหรับการพิมพ์, อีเมล์" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},ผลรวมของ {0} @@ -1223,6 +1245,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,รหัสยื apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,การรวม Google Contacts ถูกปิดใช้งาน DocType: Assignment Rule,Description,คำอธิบาย DocType: Print Settings,Repeat Header and Footer in PDF,ทำซ้ำส่วนหัวและท้ายในรูปแบบไฟล์ PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,ความล้มเหลว DocType: Address Template,Is Default,เป็นค่าเริ่มต้น DocType: Data Migration Connector,Connector Type,ประเภทตัวเชื่อมต่อ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,คอลัมน์ชื่อต้องไม่ว่างเปล่า @@ -1235,6 +1258,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,ไปที่ห 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,คอลัมน์อยู่บนพื้นฐานของ +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/model/document.py,Action Failed,ดำเนินการล้มเหลว apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,สำหรับผู้ใช้ @@ -1288,6 +1312,7 @@ DocType: Print Settings,Enable Raw Printing,เปิดใช้งานกา DocType: Website Route Redirect,Source,แหล่ง apps/frappe/frappe/templates/includes/list/filters.html,clear,ชัดเจน apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,เสร็จ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ตั้งค่า> ผู้ใช้ DocType: Prepared Report,Filter Values,ค่าตัวกรอง DocType: Communication,User Tags,แท็กผู้ใช้ DocType: Data Migration Run,Fail,ล้มเหลว @@ -1344,6 +1369,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,ป ,Activity,กิจกรรม DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",ช่วยเหลือ: ต้องการเชื่อมโยงไปบันทึกในระบบอื่นใช้ "แบบฟอร์ม # / หมายเหตุ / [ชื่อ] หมายเหตุ" เป็น URL ลิ้งค์ (ไม่ต้องใช้ "http://") DocType: User Permission,Allow,อนุญาต +DocType: Data Import Beta,Update Existing Records,อัปเดตระเบียนที่มีอยู่ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,ลองหลีกเลี่ยงคำพูดซ้ำแล้วซ้ำอีกและตัวอักษร DocType: Energy Point Rule,Energy Point Rule,กฎพลังงานจุด DocType: Communication,Delayed,ล่าช้า @@ -1356,9 +1382,7 @@ DocType: Milestone,Track Field,ลู่วิ่ง DocType: Notification,Set Property After Alert,ตั้งค่าคุณสมบัติหลังการแจ้งเตือน apps/frappe/frappe/config/customization.py,Add fields to forms.,เพิ่มเขตข้อมูล ในรูปแบบ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,ดูเหมือนว่ามีบางอย่างผิดปกติกับการกำหนดค่า Paypal ของไซต์นี้ -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

                                                                                                            คลิกที่นี่เพื่อดาวน์โหลดและติดตั้ง QZ Tray
                                                                                                            คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับการพิมพ์แบบดิบ" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,เพิ่มรีวิว -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),ขนาดตัวอักษร (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,เฉพาะ DocTypes มาตรฐานที่ได้รับอนุญาตให้ปรับแต่งจากฟอร์มการปรับแต่ง DocType: Email Account,Sendgrid,SendGrid @@ -1395,6 +1419,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ก apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,ขออภัย! คุณไม่สามารถลบความคิดเห็นสร้างขึ้นโดยอัตโนมัติ DocType: Google Settings,Used For Google Maps Integration.,ใช้สำหรับการรวม Google Maps apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DocType อ้างอิง +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,จะไม่มีการส่งออกบันทึก DocType: User,System User,ผู้ใช้ระบบ DocType: Report,Is Standard,เป็นมาตรฐาน DocType: Desktop Icon,_report,_รายงาน @@ -1409,6 +1434,7 @@ DocType: Workflow State,minus-sign,ลบการลงชื่อเข้า apps/frappe/frappe/public/js/frappe/request.js,Not Found,ไม่พบ apps/frappe/frappe/www/printview.py,No {0} permission,ไม่มี {0} ได้รับอนุญาต apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ส่งออกสิทธิ์ที่กำหนดเอง +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,ไม่พบรายการ DocType: Data Export,Fields Multicheck,ฟิลด์ Multicheck DocType: Activity Log,Login,เข้าสู่ระบบ DocType: Web Form,Payments,วิธีการชำระเงิน @@ -1469,8 +1495,9 @@ DocType: Address,Postal,ไปรษณีย์ DocType: Email Account,Default Incoming,เริ่มต้นเข้ามา DocType: Workflow State,repeat,ทำซ้ำ DocType: Website Settings,Banner,แบนเนอร์ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},ค่าต้องเป็นหนึ่งใน {0} DocType: Role,"If disabled, this role will be removed from all users.",หากปิดการใช้งานบทบาทนี้จะถูกลบออกจากผู้ใช้ทั้งหมด -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,ไปที่รายการ {0} +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,ช่วยในการค้นหา DocType: Milestone,Milestone Tracker,ติดตามเหตุการณ์สำคัญ apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,สมัครสมาชิก แต่คนพิการ @@ -1484,6 +1511,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,ชื่อฟิลด DocType: DocType,Track Changes,การติดตามการเปลี่ยนแปลง DocType: Workflow State,Check,ตรวจสอบ DocType: Chat Profile,Offline,ออฟไลน์ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},นำเข้า {0} สำเร็จ DocType: User,API Key,คีย์ API DocType: Email Account,Send unsubscribe message in email,ส่งข้อความยกเลิกการเป็นสมาชิกในอีเมล apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,แก้ไขชื่อเรื่อง @@ -1510,11 +1538,11 @@ 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/form/footer/timeline.js,changed value of {0} {1},เปลี่ยนค่าของ {0} {1} 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,จำนวนหน้าทั้งหมด apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} ได้กำหนดค่าดีฟอลต์สำหรับ {1} แล้ว -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                            No results found for '

                                                                                                            ,

                                                                                                            ไม่พบผลลัพธ์สำหรับ '

                                                                                                            DocType: DocField,Attach Image,แนบ ภาพ DocType: Workflow State,list-alt,รายการ ALT- apps/frappe/frappe/www/update-password.html,Password Updated,รหัสผ่าน การปรับปรุง @@ -1535,8 +1563,10 @@ apps/frappe/frappe/permissions.py,Not allowed 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 ไม่ใช่รูปแบบรายงานที่ถูกต้อง รูปแบบรายงานควรเป็น \ หนึ่งใน %s ต่อไปนี้ DocType: Chat Message,Chat,พูดคุย +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ตั้งค่า> สิทธิ์ผู้ใช้ DocType: LDAP Group Mapping,LDAP Group Mapping,การจับคู่กลุ่ม LDAP DocType: Dashboard Chart,Chart Options,ตัวเลือกแผนภูมิ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,คอลัมน์ไม่มีชื่อ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} จาก {1} ถึง {2} ในแถว # {3} DocType: Communication,Expired,หมดอายุ apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,ดูเหมือนว่าโทเค็นที่คุณใช้ไม่ถูกต้อง! @@ -1546,6 +1576,7 @@ DocType: DocType,System,ระบบ DocType: Web Form,Max Attachment Size (in MB),แม็กซ์ขนาดไฟล์แนบ (เมกะไบต์) apps/frappe/frappe/www/login.html,Have an account? Login,มีบัญชีอยู่แล้ว? เข้าสู่ระบบ DocType: Workflow State,arrow-down,ลูกศรลง +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},แถว {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},ผู้ใช้ไม่ได้รับอนุญาตในการลบ {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} จาก {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,อัพเดทล่าสุดเมื่อ @@ -1563,6 +1594,7 @@ DocType: Custom Role,Custom Role,บทบาทที่กำหนดเอ apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,หน้าแรก / โฟลเดอร์ทดสอบ 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ป้อนรหัสผ่านของคุณ DocType: Dropbox Settings,Dropbox Access Secret,ความลับในการเข้าถึง Dropbox +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(บังคับ) 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.,ไม่มีข้อมูลที่พบในไฟล์ โปรดใส่ข้อมูลใหม่ลงในไฟล์ใหม่ @@ -1637,6 +1669,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,แสด apps/frappe/frappe/desk/form/assign_to.py,New Message,ข้อความใหม่ DocType: File,Preview HTML,ดูตัวอย่าง HTML DocType: Desktop Icon,query-report,แบบสอบถามรายงาน +DocType: Data Import Beta,Template Warnings,คำเตือนแม่แบบ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ตัวกรองที่บันทึก DocType: DocField,Percent,เปอร์เซ็นต์ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,กรุณาตั้งค่าตัวกรอง @@ -1658,6 +1691,7 @@ DocType: Custom Field,Custom,ประเพณี DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",หากเปิดใช้งานผู้ใช้ที่เข้าสู่ระบบจากที่อยู่ IP ที่ จำกัด จะไม่ได้รับพร้อมท์ให้ใช้ Authentic Factor Authentication DocType: Auto Repeat,Get Contacts,รับรายชื่อติดต่อ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},กระทู้ยื่นภายใต้ {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,ข้ามคอลัมน์ไม่มีชื่อ DocType: Notification,Send alert if date matches this field's value,ส่งการแจ้งเตือนถ้าวันที่ตรงกับค่าของเขตนี้ DocType: Workflow,Transitions,เปลี่ยน apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} ถึง {2} @@ -1681,6 +1715,7 @@ DocType: Workflow State,step-backward,ขั้นตอนย้อนหลั apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,โปรดตั้งค่า คีย์ การเข้าถึง Dropbox ใน การตั้งค่า เว็บไซต์ของคุณ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,ลบบันทึกนี้จะอนุญาตให้ส่งไปยังที่อยู่อีเมลนี้ +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","หากพอร์ตที่ไม่ได้มาตรฐาน (เช่น POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,ปรับแต่งทางลัด apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,เฉพาะข้อมูลที่จำเป็นต้องมีความจำเป็นสำหรับระเบียนใหม่ คุณสามารถลบคอลัมน์ไม่ได้รับคำสั่งหากคุณต้องการ apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,แสดงกิจกรรมเพิ่มเติม @@ -1788,7 +1823,9 @@ 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 App +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,อัพเดต {0} บันทึกจาก {1} สำเร็จแล้ว 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,จดหมาย DocType: DocType,"Naming Options:
                                                                                                            1. field:[fieldname] - By Field
                                                                                                            2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                            3. Prompt - Prompt user for a name
                                                                                                            4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                            5. @@ -1802,6 +1839,7 @@ DocType: GCalendar Account,Next Sync Token,รหัสการซิงค์ DocType: Energy Point Settings,Energy Point Settings,การตั้งค่าจุดพลังงาน DocType: Async Task,Succeeded,ประสบความสำเร็จ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},เขตข้อมูล ที่จำเป็นในการ บังคับ {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                              No results found for '

                                                                                                              ,

                                                                                                              ไม่พบผลลัพธ์สำหรับ '

                                                                                                              apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,ตั้งค่า สิทธิ์สำหรับ {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,ผู้ใช้และสิทธิ์ DocType: S3 Backup Settings,S3 Backup Settings,S3 Backup Settings @@ -1873,6 +1911,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,ใน DocType: Notification,Value Change,เปลี่ยนแปลงค่า DocType: Google Contacts,Authorize Google Contacts Access,อนุญาตการเข้าถึง Google Contacts apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,แสดงเฉพาะฟิลด์ตัวเลขจากรายงาน +DocType: Data Import Beta,Import Type,ประเภทการนำเข้า DocType: Access Log,HTML Page,หน้า HTML DocType: Address,Subsidiary,บริษัท สาขา apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,กำลังพยายามเชื่อมต่อกับถาด QZ ... @@ -1883,7 +1922,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,เซิ DocType: Custom DocPerm,Write,เขียน apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,เฉพาะผู้ดูแลระบบอนุญาตให้สร้างรายงานคำ / Script apps/frappe/frappe/public/js/frappe/form/save.js,Updating,อัปเดต -DocType: File,Preview,แสดงตัวอย่าง +DocType: Data Import Beta,Preview,แสดงตัวอย่าง apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",ฟิลด์ "ค่า" มีผลบังคับใช้ กรุณาระบุค่าได้รับการปรับปรุง DocType: Customize Form,Use this fieldname to generate title,ใช้ fieldname นี้เพื่อสร้างชื่อ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,นำเข้าอีเมล์จาก @@ -1968,6 +2007,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,ไม่ร DocType: Social Login Key,Client URLs,URL ของไคลเอ็นต์ apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,ข้อมูลบางอย่างจะหายไป apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} สร้างเรียบร้อยแล้ว +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","ข้าม {0} จาก {1}, {2}" DocType: Custom DocPerm,Cancel,ยกเลิก apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,ลบเป็นกลุ่ม apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,ไฟล์ {0} ไม่อยู่ @@ -1995,7 +2035,6 @@ DocType: GCalendar Account,Session Token,รหัสประจำเซสช DocType: Currency,Symbol,สัญญลักษณ์ apps/frappe/frappe/model/base_document.py,Row #{0}:,แถว # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,ยืนยันการลบข้อมูล -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,ส่ง รหัสผ่านใหม่ apps/frappe/frappe/auth.py,Login not allowed at this time,เข้าสู่ระบบ ไม่ได้รับอนุญาต ในเวลานี้ DocType: Data Migration Run,Current Mapping Action,การทำแผนที่การทำแผนที่ปัจจุบัน DocType: Dashboard Chart Source,Source Name,แหล่งที่มาของชื่อ @@ -2008,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,พ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,ติดตามโดย DocType: LDAP Settings,LDAP Email Field,สนามอีเมล์ LDAP apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} รายชื่อ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,ส่งออกเร็กคอร์ด {0} apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,อยู่ในรายการสิ่งที่ต้องทำของผู้ใช้แล้ว DocType: User Email,Enable Outgoing,เปิดใช้งานขาออก DocType: Address,Fax,แฟกซ์ @@ -2067,8 +2107,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,พิมพ์เอกสาร apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ข้ามไปที่สนาม DocType: Contact Us Settings,Forward To Email Address,ไปข้างหน้า เพื่อ ที่อยู่อีเมล์ +DocType: Contact Phone,Is Primary Phone,เป็นโทรศัพท์หลัก apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ส่งอีเมลไปที่ {0} เพื่อลิงก์ที่นี่ DocType: Auto Email Report,Weekdays,วันธรรมดา +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} บันทึกจะถูกส่งออก apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,ฟิลด์ จะต้องfieldname ถูกต้อง DocType: Post Comment,Post Comment,เขียนความคิดเห็น apps/frappe/frappe/config/core.py,Documents,เอกสาร @@ -2087,7 +2129,9 @@ eval:doc.age>18",ฟิลด์นี้จะปรากฏเฉพาะ DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ในวันนี้ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,ในวันนี้ +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",เมื่อคุณได้ตั้ง นี้ผู้ใช้ จะมีเพียง เอกสาร การเข้าถึง สามารถ ( เช่น โพสต์ บล็อก ) ที่ การเชื่อมโยง ที่มีอยู่ (เช่น Blogger ) +DocType: Data Import Beta,Submit After Import,ส่งหลังจากนำเข้า DocType: Error Log,Log of Scheduler Errors,เข้าสู่ระบบของข้อผิดพลาดจัดตารางเวลา DocType: User,Bio,ไบโอ DocType: OAuth Client,App Client Secret,ลับไคลเอ็นต์ของโปรแกรมประยุกต์ @@ -2106,10 +2150,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,ปิดการใช้งานของลูกค้าที่ลิงค์สมัครสมาชิกในหน้าเข้าสู่ระบบ apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,มอบหมายให้ / เจ้าของ DocType: Workflow State,arrow-left,ลูกศรซ้าย +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,ส่งออก 1 รายการ DocType: Workflow State,fullscreen,เต็มจอ DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,สร้างแผนภูมิ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,ไม่ต้องนำเข้า DocType: Web Page,Center,ศูนย์ DocType: Notification,Value To Be Set,ค่าที่จะตั้งค่า apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},แก้ไข {0} @@ -2129,6 +2175,7 @@ DocType: Print Format,Show Section Headings,แสดงส่วนหัว DocType: Bulk Update,Limit,จำกัด apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},เราได้รับคำขอให้ลบข้อมูล {0} ที่เกี่ยวข้องกับ: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,เพิ่มส่วนใหม่ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,ระเบียนที่กรอง apps/frappe/frappe/www/printview.py,No template found at path: {0},พบได้ที่เส้นทางแม่ไม่มี: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ไม่มีบัญชีอีเมล DocType: Comment,Cancelled,ยกเลิกแล้ว @@ -2216,10 +2263,13 @@ 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} 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,จะเป็นรหัสการเข้าสู่ระบบของคุณ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,รีเซ็ตประเภทเอกสารการค้นหาทั่วโลก ,Lead Conversion Time,เวลาในการแปลงตะกั่ว apps/frappe/frappe/desk/page/activity/activity.js,Build Report,สร้าง รายงาน DocType: Note,Notify users with a popup when they log in,แจ้งเตือนเมื่อมีผู้ใช้ที่มีป๊อปอัพเมื่อพวกเขาเข้าสู่ระบบ +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,ไม่สามารถค้นหาโมดูลหลัก {0} ในการค้นหาทั่วโลก apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,เปิดการแชท apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} ไม่มีอยู่ เลือกเป้าหมายใหม่ในการผสานรวม DocType: Data Migration Connector,Python Module,โมดูล Python @@ -2236,8 +2286,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,ปิด 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ตั้งค่า> สิทธิ์ผู้ใช้ -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,อัพเดท +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,อัพเดท DocType: Transaction Log,Transaction Hash,แฮชธุรกรรม DocType: Error Snapshot,Snapshot View,ดูภาพรวม apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,กรุณาบันทึก ข่าวก่อนที่จะส่ง @@ -2253,6 +2302,7 @@ DocType: Data Import,In Progress,กำลังดำเนินการ apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,จัดคิวสำหรับการสำรองข้อมูล มันอาจใช้เวลาไม่กี่นาทีถึงหนึ่งชั่วโมง DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,สิทธิ์ผู้ใช้มีอยู่แล้ว +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},การแม็พคอลัมน์ {0} กับฟิลด์ {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},ดู {0} DocType: User,Hourly,ทุกๆชั่วโมง apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ลงทะเบียน OAuth app ลูกค้า @@ -2265,7 +2315,6 @@ DocType: SMS Settings,SMS Gateway URL,URL เกตเวย์ SMS apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ไม่สามารถเป็น ""{2}"" มันควรจะเป็นอย่างใดอย่างหนึ่งของ ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ได้รับจาก {0} ผ่านกฎอัตโนมัติ {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} หรือ {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,รหัสผ่านปรับปรุง DocType: Workflow State,trash,ถังขยะ DocType: System Settings,Older backups will be automatically deleted,การสำรองข้อมูลเก่าจะถูกลบโดยอัตโนมัติ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID คีย์การเข้าใช้หรือรหัสลับที่ไม่ถูกต้อง @@ -2294,6 +2343,7 @@ DocType: Address,Preferred Shipping Address,ที่อยู่การจั apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,ที่มีหัวจดหมาย apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} ได้สร้าง {1} นี้ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},ไม่อนุญาตสำหรับ {0}: {1} ในแถว {2} ฟิลด์ที่ถูก จำกัด : {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จากการตั้งค่า> อีเมล> บัญชีอีเมล DocType: S3 Backup Settings,eu-west-1,สหภาพยุโรปตะวันตก-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",หากเลือกช่องนี้แถวที่มีข้อมูลที่ถูกต้องจะถูกนำเข้าและแถวที่ไม่ถูกต้องจะถูกทิ้งลงในไฟล์ใหม่เพื่อให้คุณนำเข้าภายหลัง apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,เอกสารเป็นเพียงแก้ไขได้โดยผู้ใช้ของบทบาท @@ -2320,6 +2370,7 @@ DocType: Custom Field,Is Mandatory Field,เขตบังคับเป็น DocType: User,Website User,ผู้ใช้งานเว็บไซต์ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,บางคอลัมน์อาจถูกตัดออกเมื่อพิมพ์เป็น PDF พยายามรักษาจำนวนคอลัมน์ต่ำกว่า 10 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,ไม่ เท่ากับ +DocType: Data Import Beta,Don't Send Emails,อย่าส่งอีเมล DocType: Integration Request,Integration Request Service,บูรณาการบริการขอ DocType: Access Log,Access Log,เข้าถึงบันทึก DocType: Website Script,Script to attach to all web pages.,สคริปต์ที่จะแนบไปยังหน้าเว็บทั้งหมด @@ -2360,6 +2411,7 @@ DocType: Contact,Passive,ไม่โต้ตอบ DocType: Auto Repeat,Accounts Manager,ผู้จัดการบัญชี apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},การมอบหมายสำหรับ {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,การชำระเงินของคุณถูกยกเลิก +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,เลือกประเภทไฟล์ apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,ดูทั้งหมด DocType: Help Article,Knowledge Base Editor,ความรู้แก้ไขฐาน @@ -2392,6 +2444,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,ข้อมูล apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,สถานะเอกสาร apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,ต้องได้รับการอนุมัติ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,ต้องสร้างระเบียนต่อไปนี้ก่อนที่เราจะสามารถนำเข้าไฟล์ของคุณ DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth รหัสอนุมัติ apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,ได้รับอนุญาตให้ นำเข้า DocType: Deleted Document,Deleted DocType,DocType ที่ถูกลบ @@ -2446,8 +2499,8 @@ DocType: GCalendar Settings,Google API Credentials,ข้อมูลรับ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,เซสชันเริ่มล้มเหลว apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,เซสชันเริ่มล้มเหลว apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},อีเมลนี้จะถูกส่งไปที่ {0} และคัดลอกไปยัง {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ส่งเอกสารนี้ {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ปีที่แล้ว DocType: Social Login Key,Provider Name,ชื่อผู้ให้บริการ apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},สร้างใหม่ {0} DocType: Contact,Google Contacts,Google Contacts @@ -2455,6 +2508,7 @@ DocType: GCalendar Account,GCalendar Account,บัญชี GCalendar DocType: Email Rule,Is Spam,เป็นสแปม apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},รายงาน {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},เปิด {0} +DocType: Data Import Beta,Import Warnings,คำเตือนการนำเข้า DocType: OAuth Client,Default Redirect URI,เริ่มต้นการเปลี่ยนเส้นทาง URI DocType: Auto Repeat,Recipients,ผู้รับ DocType: System Settings,Choose authentication method to be used by all users,เลือกวิธีการรับรองความถูกต้องที่จะใช้โดยผู้ใช้ทั้งหมด @@ -2573,6 +2627,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,อัปเ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,ข้อผิดพลาด Webhook หย่อน DocType: Email Flag Queue,Unread,ไม่ได้อ่าน DocType: Bulk Update,Desk,เคาน์เตอร์ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},ข้ามคอลัมน์ {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),ตัวกรองต้องเป็นทูเปิลหรือรายการ (ในรายการ) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,เขียนแบบสอบถาม SELECT ผลหมายเหตุไม่เอาเพจ (ข้อมูลทั้งหมดจะถูกส่งไปในครั้งเดียว) DocType: Email Account,Attachment Limit (MB),เอกสารแนบ จำกัด (MB) @@ -2587,6 +2642,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,สร้างใหม่ DocType: Workflow State,chevron-down,วีลง apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Email ไม่ได้ส่งไปที่ {0} (ยกเลิก / ปิดการใช้งาน) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,เลือกเขตข้อมูลที่จะส่งออก DocType: Async Task,Traceback,ตรวจสอบย้อนกลับ DocType: Currency,Smallest Currency Fraction Value,ขนาดเล็กที่สุดในสกุลเงินมูลค่าเศษ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,จัดทำรายงาน @@ -2595,6 +2651,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,ให้ ความเห็น apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,บันทึก DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),จำกัด ผู้ใช้จากที่อยู่ IP นี้เท่านั้น ที่อยู่ IP หลายสามารถเพิ่มโดยการแยกด้วยเครื่องหมายจุลภาค ยังยอมรับที่อยู่ IP บางส่วนเช่น (111.111.111) +DocType: Data Import Beta,Import Preview,นำเข้าภาพตัวอย่าง DocType: Communication,From,จาก apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,เลือกโหนดกลุ่มแรก apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},ค้นหา {0} ใน {1} @@ -2694,6 +2751,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,ระหว่าง DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,จัดคิว +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ตั้งค่า> ปรับแต่งฟอร์ม DocType: Braintree Settings,Use Sandbox,ใช้ Sandbox apps/frappe/frappe/utils/goal.py,This month,เดือนนี้ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,รูปแบบใหม่ที่กำหนดเองพิมพ์ @@ -2709,6 +2767,7 @@ DocType: Session Default,Session Default,เซสชันเริ่มต้ DocType: Chat Room,Last Message,ข้อความล่าสุด DocType: OAuth Bearer Token,Access Token,เข้าสู่ Token DocType: About Us Settings,Org History,ประวัติ องค์กร +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,เหลือเวลาประมาณ {0} นาที DocType: Auto Repeat,Next Schedule Date,วันที่กำหนดการถัดไป DocType: Workflow,Workflow Name,ชื่อกระบวนการทำงาน DocType: DocShare,Notify by Email,แจ้งเตือน ทางอีเมล @@ -2738,6 +2797,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,ผู้เขียน apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,สมัครงานส่ง apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,เปิดใหม่ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,แสดงคำเตือน apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,ผู้ซื้อ DocType: Data Migration Run,Push Failed,กดล้มเหลว @@ -2776,6 +2836,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,กา apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,คุณไม่ได้รับอนุญาตให้ดูจดหมายข่าว DocType: User,Interests,ความสนใจ apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,คำแนะนำ การตั้งค่า รหัสผ่านที่ ได้รับการ ส่งไปยังอีเมล ของคุณ +DocType: Energy Point Rule,Allot Points To Assigned Users,ให้คะแนนแก่ผู้ใช้ที่ได้รับมอบหมาย apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",ระดับ 0 ใช้สำหรับสิทธิ์ระดับเอกสาร \ ระดับที่สูงขึ้นสำหรับสิทธิ์ระดับฟิลด์ DocType: Contact Email,Is Primary,เป็นหลัก @@ -2799,6 +2860,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,คีย์ที่เผยแพร่ได้ DocType: Stripe Settings,Publishable Key,คีย์ที่เผยแพร่ได้ apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,เริ่มการนำเข้า +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,ประเภทการส่งออก DocType: Workflow State,circle-arrow-left,วงกลมศรซ้าย DocType: System Settings,Force User to Reset Password,บังคับให้ผู้ใช้รีเซ็ตรหัสผ่าน apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",หากต้องการรับรายงานที่อัพเดตให้คลิกที่ {0} @@ -2811,13 +2873,16 @@ DocType: Contact,Middle Name,ชื่อกลาง DocType: Custom Field,Field Description,ฟิลด์คำอธิบาย apps/frappe/frappe/model/naming.py,Name not set via Prompt,ชื่อ ไม่ได้ ตั้งค่าผ่านทาง พร้อม apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,กล่องจดหมาย +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","การอัพเดต {0} จาก {1}, {2}" DocType: Auto Email Report,Filters Display,ตัวกรองการแสดงผล apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ต้องมีช่อง "amended_from" ทำการแก้ไข +DocType: Contact,Numbers,เบอร์ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} ชื่นชมผลงานของคุณใน {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,บันทึกตัวกรอง DocType: Address,Plant,พืช apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ตอบทั้งหมด DocType: DocType,Setup,การติดตั้ง +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,บันทึกทั้งหมด DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ที่อยู่อีเมลที่จะซิงค์ Google Contacts DocType: Email Account,Initial Sync Count,จำนวนซิงค์เริ่มต้น DocType: Workflow State,glass,แก้ว @@ -2842,7 +2907,7 @@ DocType: Workflow State,font,ตัวอักษร DocType: DocType,Show Preview Popup,แสดงตัวอย่างป๊อปอัพ apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,นี่คือรหัสผ่านที่พบบ่อย TOP-100 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,กรุณาเปิดใช้งาน ป๊อปอัพ -DocType: User,Mobile No,เบอร์มือถือ +DocType: Contact,Mobile No,เบอร์มือถือ DocType: Communication,Text Content,เนื้อหาข้อความ DocType: Customize Form Field,Is Custom Field,เป็นฟิลด์ที่กำหนดเอง DocType: Workflow,"If checked, all other workflows become inactive.",หากตรวจสอบทุกขั้นตอนการทำงานอื่น ๆ เป็นที่รอ @@ -2888,6 +2953,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,เ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,ชื่อของรูปแบบพิมพ์ใหม่ apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,สลับแถบด้านข้าง DocType: Data Migration Run,Pull Insert,ดึง Insert +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",คะแนนสูงสุดที่อนุญาตหลังจากคูณคะแนนด้วยค่าตัวคูณ (หมายเหตุ: สำหรับการไม่ จำกัด ให้ปล่อยให้ฟิลด์นี้ว่างหรือตั้งค่า 0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,เทมเพลตไม่ถูกต้อง apps/frappe/frappe/model/db_query.py,Illegal SQL Query,แบบสอบถาม SQL ที่ผิดกฎหมาย apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,บังคับ: DocType: Chat Message,Mentions,กล่าวถึง @@ -2902,6 +2970,7 @@ DocType: User Permission,User Permission,การอนุญาต ของ apps/frappe/frappe/templates/includes/blog/blog.html,Blog,บล็อก apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,ไม่ได้ติดตั้ง LDAP apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,ดาวน์โหลดที่มีข้อมูล +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},ค่าที่เปลี่ยนแปลงสำหรับ {0} {1} DocType: Workflow State,hand-right,มือ-ขวา DocType: Website Settings,Subdomain,subdomain DocType: S3 Backup Settings,Region,ภูมิภาค @@ -2929,10 +2998,12 @@ DocType: Braintree Settings,Public Key,คีย์สาธารณะ DocType: GSuite Settings,GSuite Settings,การตั้งค่า GSuite DocType: Address,Links,ลิงค์ DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,ใช้ชื่อที่อยู่อีเมลที่ระบุไว้ในบัญชีนี้เป็นชื่อผู้ส่งสำหรับอีเมลทั้งหมดที่ส่งโดยใช้บัญชีนี้ +DocType: Energy Point Rule,Field To Check,สนามในการตรวจสอบ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Contacts - ไม่สามารถอัปเดตที่อยู่ติดต่อใน Google Contacts {0}, รหัสข้อผิดพลาด {1}" apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,โปรดเลือกประเภทเอกสาร apps/frappe/frappe/model/base_document.py,Value missing for,ค่าที่หายไปสำหรับ apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,เพิ่ม เด็ก +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,นำเข้าความคืบหน้า DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",หากเงื่อนไขเป็นที่พอใจของผู้ใช้จะได้รับการตอบแทนด้วยคะแนน เช่น. doc.status == 'ปิด' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: รายการที่ส่งแล้วไม่สามารถลบได้ @@ -2969,6 +3040,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,ให้สิทธ apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,หน้าเว็บที่คุณกำลังมองหาจะหายไป ซึ่งอาจเป็นเพราะมันจะถูกย้ายหรือมีการพิมพ์ผิดในการเชื่อมโยง apps/frappe/frappe/www/404.html,Error Code: {0},รหัสข้อผิดพลาด: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",คำอธิบายสำหรับหน้าแสดงรายการในข้อความธรรมดาเพียงคู่สาย (สูงสุด 140 ตัวอักษร) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} เป็นฟิลด์บังคับ DocType: Workflow,Allow Self Approval,อนุญาตการอนุมัติตนเอง DocType: Event,Event Category,ประเภทเหตุการณ์ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3017,8 +3089,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ย้ายไป DocType: Address,Preferred Billing Address,ที่อยู่การเรียกเก็บเงินที่ต้องการ apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,เขียน มากเกินไปใน หนึ่งขอ กรุณา ส่งคำขอ มีขนาดเล็ก apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,กำหนดค่า Google Drive แล้ว +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,มีการทำซ้ำประเภทเอกสาร {0} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ค่าเปลี่ยน DocType: Workflow State,arrow-up,ลูกศรขึ้น +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,ควรมีอย่างน้อยหนึ่งแถวสำหรับตาราง {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",ในการกำหนดค่าการทำซ้ำอัตโนมัติให้เปิดใช้งาน "อนุญาตการทำซ้ำอัตโนมัติ" จาก {0} DocType: OAuth Bearer Token,Expires In,จะหมดอายุใน DocType: DocField,Allow on Submit,อนุญาตให้ส่ง @@ -3105,6 +3179,7 @@ DocType: Custom Field,Options Help,ตัวเลือกความช่ว 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 บันทึกจะถูกส่งออก 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,จำกัด โดเมน @@ -3122,6 +3197,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code DocType: Webhook,Webhook Request,คำขอ Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** ล้มเหลว: {0} เป็น {1}: {2} DocType: Data Migration Mapping,Mapping Type,ประเภทการทำแผนที่ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,เลือกบังคับ apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,เรียกดู apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.",ไม่จำเป็นต้องมีสัญลักษณ์ตัวเลขหรือตัวอักษรตัวพิมพ์ใหญ่ DocType: DocField,Currency,เงินตรา @@ -3152,11 +3228,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,หัวจดหมายขึ้นอยู่กับ apps/frappe/frappe/utils/oauth.py,Token is missing,Token จะหายไป apps/frappe/frappe/www/update-password.html,Set Password,ตั้งรหัสผ่าน +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,อิมพอร์ตเร็กคอร์ด {0} สำเร็จ apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,หมายเหตุ: การเปลี่ยนชื่อเพจจะเป็นการแบ่ง URL ก่อนหน้านี้ออกจากหน้านี้ apps/frappe/frappe/utils/file_manager.py,Removed {0},ลบออก {0} DocType: SMS Settings,SMS Settings,การตั้งค่า SMS DocType: Company History,Highlight,เน้น DocType: Dashboard Chart,Sum,รวม +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,ผ่านการนำเข้าข้อมูล DocType: OAuth Provider Settings,Force,บังคับ apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},ซิงค์ล่าสุด {0} DocType: DocField,Fold,พับ @@ -3193,6 +3271,7 @@ DocType: Workflow State,Home,บ้าน DocType: OAuth Provider Settings,Auto,รถยนต์ DocType: System Settings,User can login using Email id or User Name,ผู้ใช้สามารถเข้าสู่ระบบโดยใช้ Email id หรือ User Name DocType: Workflow State,question-sign,คำถามการลงชื่อเข้าใช้ +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} ถูกปิดใช้งาน apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",ฟิลด์ "เส้นทาง" เป็นสิ่งที่บังคับสำหรับมุมมองเว็บ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},แทรกคอลัมน์ก่อน {0} DocType: Energy Point Rule,The user from this field will be rewarded points,ผู้ใช้จากฟิลด์นี้จะได้รับคะแนนสะสม @@ -3226,6 +3305,7 @@ DocType: Website Settings,Top Bar Items,รายการ Bar สถานท DocType: Notification,Print Settings,ตั้งค่าการพิมพ์ DocType: Page,Yes,ใช่ DocType: DocType,Max Attachments,จำนวนสิ่งที่แนบสูงสุด +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,เหลือเวลาประมาณ {0} วินาที DocType: Calendar View,End Date Field,ฟิลด์วันที่สิ้นสุด apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ทางลัดส่วนกลาง DocType: Desktop Icon,Page,หน้า @@ -3337,6 +3417,7 @@ DocType: GSuite Settings,Allow GSuite access,อนุญาตให้เข DocType: DocType,DESC,DESC DocType: DocType,Naming,การตั้งชื่อ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,เลือกทั้งหมด +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},คอลัมน์ {0} apps/frappe/frappe/config/customization.py,Custom Translations,คำที่กำหนดเอง apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,ความคืบหน้า apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,โดยบทบาท @@ -3379,11 +3460,13 @@ DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Data Migration Mapping,Data Migration Mapping,การทำแผนที่การโยกย้ายข้อมูล DocType: Auto Email Report,Period,ระยะเวลา +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,เหลือเวลาประมาณ {0} นาที apps/frappe/frappe/www/login.py,Invalid Login Token,เข้าสู่ระบบ Token ไม่ถูกต้อง 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} @@ -3414,6 +3497,7 @@ DocType: Calendar View,Start Date Field,ฟิลด์วันที่เร DocType: Role,Role Name,ชื่อบทบาท apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,สวิทช์ไปที่โต๊ะทำงาน apps/frappe/frappe/config/core.py,Script or Query reports,สคริปต์หรือรายงานคำ +DocType: Contact Phone,Is Primary Mobile,เป็นอุปกรณ์เคลื่อนที่หลัก DocType: Workflow Document State,Workflow Document State,สถานะเอกสารกระบวนการทำงาน apps/frappe/frappe/public/js/frappe/request.js,File too big,ไฟล์ขนาดใหญ่เกินไป apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,บัญชีอีเมลเพิ่มหลายครั้ง @@ -3459,6 +3543,7 @@ DocType: DocField,Float,ลอย DocType: Print Settings,Page Settings,การตั้งค่าหน้าเว็บ apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,ประหยัด... apps/frappe/frappe/www/update-password.html,Invalid Password,รหัสผ่านไม่ถูกต้อง +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,นำเข้า {0} บันทึกจาก {1} สำเร็จแล้ว DocType: Contact,Purchase Master Manager,ซื้อผู้จัดการโท apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,คลิกที่ไอคอนล็อคเพื่อสลับสาธารณะ / ส่วนตัว DocType: Module Def,Module Name,ชื่อโมดูล @@ -3493,6 +3578,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,คุณลักษณะบางอย่างอาจไม่ทำงานในเบราว์เซอร์ของคุณ โปรดอัปเดตเบราเซอร์เป็นเวอร์ชันล่าสุด apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,คุณลักษณะบางอย่างอาจไม่ทำงานในเบราว์เซอร์ของคุณ โปรดอัปเดตเบราเซอร์เป็นเวอร์ชันล่าสุด apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",ไม่ทราบว่าขอให้ "ความช่วยเหลือ" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ยกเลิกเอกสารนี้ {0} DocType: DocType,Comments and Communications will be associated with this linked document,ความคิดเห็นและการสื่อสารจะเชื่อมโยงกับเอกสารที่เชื่อมโยงนี้ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,กรอง ... DocType: Workflow State,bold,กล้า @@ -3511,6 +3597,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,เพิ่ DocType: Comment,Published,เผยแพร่ apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,ขอบคุณสำหรับอีเมลของคุณ DocType: DocField,Small Text,ข้อความขนาดเล็ก +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,ไม่สามารถตั้งค่าหมายเลข {0} เป็นหมายเลขโทรศัพท์หลักและหมายเลขโทรศัพท์มือถือ DocType: Workflow,Allow approval for creator of the document,อนุญาตให้มีการอนุมัติสำหรับผู้สร้างเอกสาร apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,บันทึกรายงาน DocType: Webhook,on_cancel,on_cancel @@ -3568,6 +3655,7 @@ DocType: Print Settings,PDF Settings,การตั้งค่ารูปแ DocType: Kanban Board Column,Column Name,ชื่อคอลัมน์ DocType: Language,Based On,ขึ้นอยู่กับ DocType: Email Account,"For more information, click here.","สำหรับข้อมูลเพิ่มเติม คลิกที่นี่" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,จำนวนคอลัมน์ไม่ตรงกับข้อมูล apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,ตั่งเป็นค่าเริ่มต้น apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,เวลาดำเนินการ: {0} วินาที apps/frappe/frappe/model/utils/__init__.py,Invalid include path,เส้นทางรวมไม่ถูกต้อง @@ -3658,7 +3746,7 @@ 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: Deleted Document,GCalendar Sync ID,รหัสการซิงโครไนซ์ GCalendar DocType: Prepared Report,Report Start Time,รายงานเวลาเริ่มต้น -apps/frappe/frappe/config/settings.py,Export Data,ส่งออกข้อมูล +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,ส่งออกข้อมูล 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.,นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างตัวกรองใหม่ @@ -3676,7 +3764,6 @@ DocType: Report,Disable Prepared Report,ปิดการใช้งานร apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,ผู้ใช้ {0} ร้องขอการลบข้อมูล apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,ที่ผิดกฎหมายการเข้าถึง Token กรุณาลองอีกครั้ง apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",ใบสมัครได้รับการปรับปรุงให้เป็นรุ่นใหม่โปรดรีเฟรชหน้านี้ -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.,ไม่พบเทมเพลตที่อยู่เริ่มต้น โปรดสร้างอันใหม่จากการตั้งค่า> การพิมพ์และการสร้างแบรนด์> เทมเพลตที่อยู่ DocType: Notification,Optional: The alert will be sent if this expression is true,ตัวเลือก: การแจ้งเตือนจะถูกส่งถ้าการแสดงออกนี้เป็นความจริง DocType: Data Migration Plan,Plan Name,ชื่อแผน DocType: Print Settings,Print with letterhead,พิมพ์ด้วยกระดาษหัวจดหมาย @@ -3717,6 +3804,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: ไม่สามารถถูกแก้ไขได้โดยไม่ยกเลิก apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,เต็มหน้า DocType: DocType,Is Child Table,เป็นตารางเด็ก +DocType: Data Import Beta,Template Options,ตัวเลือกเทมเพลต apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} ต้องเป็นหนึ่งใน {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} กำลังเปิดดูอยู่ในขณะนี้ apps/frappe/frappe/config/core.py,Background Email Queue,คิวอีเมล์พื้นหลัง @@ -3724,7 +3812,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,การรีเ DocType: Communication,Opened,เปิด DocType: Workflow State,chevron-left,วีซ้าย DocType: Communication,Sending,การส่ง -apps/frappe/frappe/auth.py,Not allowed from this IP Address,ไม่ได้รับอนุญาต จาก ที่อยู่ IP นี้ DocType: Website Slideshow,This goes above the slideshow.,นี้สูงกว่าสไลด์โชว์ DocType: Contact,Last Name,นามสกุล DocType: Event,Private,ส่วนตัว @@ -3738,7 +3825,6 @@ DocType: Workflow Action,Workflow Action,การกระทำ ใน กร apps/frappe/frappe/utils/bot.py,I found these: ,ผมพบว่าเหล่านี้: DocType: Event,Send an email reminder in the morning,ส่งอีเมลเตือนในตอนเช้า DocType: Blog Post,Published On,เผยแพร่เมื่อ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล กรุณาสร้างบัญชีอีเมลใหม่จากการตั้งค่า> อีเมล> บัญชีอีเมล 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} @@ -3759,7 +3845,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,ป้ายเตือน DocType: Prepared Report,Prepared Report,จัดทำรายงาน apps/frappe/frappe/config/website.py,Add meta tags to your web pages,เพิ่มเมตาแท็กในหน้าเว็บของคุณ -DocType: Contact,Phone Nos,เบอร์โทรศัพท์ DocType: Workflow State,User,ผู้ใช้งาน DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ชื่อแสดงในหน้าต่างเบราว์เซอร์เป็น "คำนำหน้า - ชื่อ" DocType: Payment Gateway,Gateway Settings,การตั้งค่าเกตเวย์ @@ -3777,6 +3862,7 @@ DocType: Data Migration Connector,Data Migration,การโยกย้าย DocType: User,API Key cannot be regenerated,ไม่สามารถสร้างคีย์ API ใหม่ได้ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,บางอย่างผิดพลาด DocType: System Settings,Number Format,รูปแบบจำนวน +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,นำเข้าบันทึก {0} สำเร็จ apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,สรุป DocType: Event,Event Participants,ผู้เข้าร่วมกิจกรรม DocType: Auto Repeat,Frequency,ความถี่ @@ -3784,7 +3870,7 @@ DocType: Custom Field,Insert After,ใส่หลังจาก DocType: Event,Sync with Google Calendar,ซิงค์กับ Google Calendar DocType: Access Log,Report Name,ชื่อรายงาน DocType: Desktop Icon,Reverse Icon Color,ย้อนกลับไอคอนสี -DocType: Notification,Save,บันทึก +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,บันทึก apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,วันที่ตามกำหนดการถัดไป apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,มอบหมายให้กับผู้ที่มีการมอบหมายน้อยที่สุด apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,มาตราหัวเรื่อง @@ -3807,11 +3893,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ตั้งค่า> ปรับแต่งฟอร์ม DocType: Google Contacts,Last Sync On,ซิงค์ล่าสุดเปิด DocType: Deleted Document,Deleted Document,เอกสารที่ถูกลบ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,อ๊ะ! สิ่งที่ผิดพลาด DocType: Desktop Icon,Category,ประเภท +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},ไม่มีค่า {0} สำหรับ {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,เพิ่มที่อยู่ติดต่อ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ภูมิประเทศ apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,นามสกุลสคริปต์ฝั่งไคลเอนต์ใน Javascript @@ -3835,6 +3921,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,อัพเดตจุดพลังงาน apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',โปรดเลือกวิธีการชำระเงินอีกครั้ง PayPal ไม่สนับสนุนการทำธุรกรรมในสกุลเงิน '{0}' DocType: Chat Message,Room Type,ประเภทห้อง +DocType: Data Import Beta,Import Log Preview,นำเข้าบันทึกตัวอย่าง apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,ช่องค้นหา {0} ไม่ถูกต้อง apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,อัพโหลดไฟล์ DocType: Workflow State,ok-circle,ok วงกลม @@ -3903,6 +3990,7 @@ DocType: DocType,Allow Auto Repeat,อนุญาตให้ทำซ้ำอ apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ไม่มีค่าที่จะแสดง DocType: Desktop Icon,_doctype,_ประเภทเอกสาร DocType: Communication,Email Template,เทมเพลตอีเมล +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,อัปเดตบันทึก {0} สำเร็จแล้ว apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},ผู้ใช้ {0} ไม่สามารถเข้าถึงประเภทเอกสารผ่านการอนุญาตบทบาทสำหรับเอกสาร {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ทั้งสองเข้าสู่ระบบและรหัสผ่านที่ต้องการ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,กรุณารีเฟรชที่จะได้รับเอกสารล่าสุด diff --git a/frappe/translations/tr.csv b/frappe/translations/tr.csv index abe2ab18f7..951d726113 100644 --- a/frappe/translations/tr.csv +++ b/frappe/translations/tr.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Aşağıdaki uygulamalar için yeni {} sürümler kullanıma sunuldu apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Bir Tutar alanı seçiniz. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,İçe aktarılan dosya yükleniyor ... DocType: Assignment Rule,Last User,Son kullanıcı apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Yeni bir görev, {0}, {1} tarafından size atanmıştır. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Kaydedilen Oturum Varsayılanları +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Dosyayı Yeniden Yükle DocType: Email Queue,Email Queue records.,E-posta Kuyruk kayıtları. DocType: Post,Post,Gönder DocType: Address,Punjab,Pencap @@ -46,6 +48,7 @@ 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 @@ -74,7 +77,7 @@ DocType: Auto Repeat,Monthly,Aylık DocType: Address,Uttarakhand,Uttarakhand DocType: Email Account,Enable Incoming,Gelen etkinleştirin apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Tehlike -apps/frappe/frappe/www/login.py,Email Address,E-posta Adresi +DocType: Address,Email Address,E-posta Adresi DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,Gönderilen Okunmamış Bildirimi apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,İhracat izin verilmiyor. Vermek {0} rol gerekir. @@ -103,7 +106,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Yönetici G DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","'Satış sorgusu, Destek sorgusu' gibi her biri yeni bir sırada ya da virgüllerle ayrılmış, iletişim seçenekleri" apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Etiket ekle ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portre -DocType: Data Migration Run,Insert,Ekle +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Ekle apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google Drive erişim izni apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Seçin {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Lütfen Temel URL'yi girin @@ -124,17 +127,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 dakika 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 DocType: Company History,Company History,Şirket Tarihçesi -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Sıfırla +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Sıfırla DocType: Workflow State,volume-up,sesi-yükselt apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Web arşivleri API isteklerini web uygulamalarına çağırıyor +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Geri İzlemeyi Göster DocType: DocType,Default Print Format,Varsayılan Yazdırma Biçimi DocType: Workflow State,Tags,Etiketler apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Hiçbiri: İş Akışı sonu apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{1} içinde {0} eşsiz olarak ayarlanamaz, çünkü bir çok normal değer girilmiş" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Belge Türleri +DocType: Global Search Settings,Document Types,Belge Türleri DocType: Address,Jammu and Kashmir,Cammu ve Keşmir DocType: Workflow,Workflow State Field,İş Akışı Durumu Tarla -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Kurulum> Kullanıcı DocType: Language,Guest,Konuk DocType: DocType,Title Field,Başlık Alan DocType: Error Log,Error Log,hata Günlüğü @@ -143,6 +146,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" sadece biraz zor "abc" den tahmin gibi tekrarlar DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Bu yetkisiz olduğunu düşünüyorsanız, Yönetici parolasını değiştirin." +DocType: Data Import Beta,Data Import Beta,Veri Alma Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} alanı zorunludur apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} alanı zorunludur DocType: Assignment Rule,Assignment Rules,Atama Kuralları @@ -173,6 +177,7 @@ DocType: Workflow Action Master,Workflow Action Name,İş Akışı Eylem Adı apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType birleştirilmiş olamaz DocType: Web Form Field,Fieldtype,FIELDTYPE apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Değil bir zip dosyası +DocType: Global Search DocType,Global Search DocType,Genel Arama Doküman Türü DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                              New {{ doc.doctype }} #{{ doc.name }}
                                                                                                              ",Dinamik konu eklemek için aşağıdaki gibi jinja etiketleri kullanın:
                                                                                                               New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                              @@ -194,6 +199,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doktor Etkinliği apps/frappe/frappe/public/js/frappe/utils/user.js,You,Siz DocType: Braintree Settings,Braintree Settings,Braintree Ayarları +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} kayıt başarıyla oluşturuldu. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filtreyi Kaydet DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} sililemiyor @@ -220,6 +226,7 @@ DocType: SMS Settings,Enter url parameter for message,Mesaj için url parametres apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Bu belge için oluşturulan Otomatik Tekrar apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Raporu tarayıcınızda görüntüleyin apps/frappe/frappe/config/desk.py,Event and other calendars.,Olay ve diğer takvimler. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 satır zorunlu) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Yorumu göndermek için tüm alanların doldurulması gereklidir. DocType: Custom Script,Adds a client custom script to a DocType,Bir DocType'a istemci özel komut dosyası ekler DocType: Print Settings,Printer Name,Yazıcı adı @@ -264,7 +271,6 @@ DocType: Bulk Update,Bulk Update,Çoklu güncelleme DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Misafirin görüntülemesine izin ver apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},"{0}, {1} ile aynı olmamalıdır" -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Bu {0} öğeyi kalıcı olarak silmek istediğinize emin misiniz? apps/frappe/frappe/utils/oauth.py,Not Allowed,İzin Değil @@ -280,6 +286,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Görüntü DocType: Email Group,Total Subscribers,Toplam Aboneler apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Üst {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Satır numarası apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Rol 0 düzeyinde erişimi yoksa, daha yüksek seviyeler anlamsızdır." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Farklı kaydet DocType: Comment,Seen,Görülme @@ -322,6 +329,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Bir belge için iş akışı durumları ve kuralları tanımlar. DocType: Workflow State,Filter,filtre @@ -345,6 +353,7 @@ DocType: Activity Log,Closed,Kapalı DocType: Blog Settings,Blog Title,Blog Başlığı apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standart roller devre dışı bırakılamaz apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Sohbet Türü +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Harita Sütunları DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Bülten DocType: Newsletter,Newsletter,Bülten @@ -383,6 +392,7 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column, apps/frappe/frappe/www/contact.html,Your email address,E-posta adresiniz apps/frappe/frappe/www/contact.html,Your email address,E-posta adresiniz DocType: Desktop Icon,Module,Modül +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,"{0} başarıyla güncellendi, {1} ürününden kaydedildi." DocType: Notification,Send Alert On,Uyarı göndermek DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Özelleştirme Etiket, Baskı gizle vb." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Dosyaların açılması ... @@ -417,6 +427,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Kullanı DocType: System Settings,Currency Precision,Para Hassasiyeti DocType: System Settings,Currency Precision,Para Hassasiyeti apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Başka bir işlem bu bir engelliyor. Birkaç saniye içinde tekrar deneyin. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Filtreleri temizle DocType: Test Runner,App,Uygulama apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Ekler yeni belgeye doğru şekilde bağlanılamıyor DocType: Chat Message Attachment,Attachment,Haciz @@ -443,6 +454,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Şu anda e-p apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Takvim - Google Takvim’deki {0} etkinliği güncellenemedi, hata kodu {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Bir komutu ara veya yazın DocType: Activity Log,Timeline Name,Zaman Çizelgesi Ad +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Yalnızca bir {0} birincil olarak ayarlanabilir. DocType: Email Account,e.g. smtp.gmail.com,Örneğin smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Yeni Kural Ekle DocType: Contact,Sales Master Manager,Satış Master Müdürü @@ -460,7 +472,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP Orta Ad Alanı apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} içinden {0} içe aktar DocType: GCalendar Account,Allow GCalendar Access,GCalendar Erişime İzin Ver -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} zorunlu bir alandır +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} zorunlu bir alandır apps/frappe/frappe/templates/includes/login/login.js,Login token required,Giriş belirteci gerekli apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Aylık Sıra: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Birden fazla liste öğesi seç @@ -491,6 +503,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Can not connect: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Yalnızca bir kelimeyi tahmin etmek kolaydır. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Otomatik atama başarısız oldu: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Arama... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Firma seçiniz apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Birleştirme Grup-Grup veya Yaprak Düğüm-to-Yaprak Düğüm arasında mümkündür apps/frappe/frappe/utils/file_manager.py,Added {0},Eklenen {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Eşleşen kayıtları. Yeni bir şey ara @@ -505,7 +518,6 @@ DocType: Auto Repeat,Subject,Konu DocType: Auto Repeat,Subject,Konu apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Masaüstüne Geri Dön DocType: Web Form,Amount Based On Field,Alan Bazlı Tutar -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Paylaşım için bir kullanıcı zorunludur DocType: DocField,Hidden,gizli DocType: Web Form,Allow Incomplete Forms,Eksik Formlara izin ver @@ -542,6 +554,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ve {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Bir konuşma başlat. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Taslak belgeleri yazdırırken her zaman ""Taslak"" başlığını ekle" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Bildirimde Hata: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yıl önce DocType: Data Migration Run,Current Mapping Start,Mevcut Eşleme Başlangıcı apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-posta spam olarak işaretlendi DocType: Comment,Website Manager,Web Yöneticisi @@ -582,6 +595,7 @@ apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted, apps/frappe/frappe/config/customization.py,Add your own translations,Kendi çevirilerini ekle DocType: Country,Country Name,Ülke Adı DocType: Country,Country Name,Ülke Adı +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Boş şablon DocType: About Us Team Member,About Us Team Member,Ekip üyeleri hakkında apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","İzinler Raporu, İthalat, İhracat, Baskı, e-posta ve Set Kullanıcı İzinleri, onaylanmasına, İptal, Gönder, Sil, oluşturma, yaz, oku gibi haklarını ayarlayarak Rolleri ve Belge Türleri (belgetürleri denir) ayarlanır." DocType: Event,Wednesday,Çarşamba @@ -594,6 +608,7 @@ DocType: Website Settings,Website Theme Image Link,Web Sitesi Tema Görüntü Ba DocType: Web Form,Sidebar Items,Kenar çubuğu Öğeler DocType: Web Form,Show as Grid,Izgara Olarak Göster apps/frappe/frappe/installer.py,App {0} already installed,{0} uygulaması zaten yüklendi +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Referans dokümana atanan kullanıcılar puan kazanacaktır. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Önizleme yok DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Sıkıştırılmış {0} dosya @@ -631,6 +646,7 @@ DocType: Notification,Days Before,Gün Öncesi apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Günlük Olaylar Aynı Gün'de Bitmelidir. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Düzenle... DocType: Workflow State,volume-down,volume-down +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Bu IP Adresinden erişime izin verilmiyor 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 @@ -689,6 +705,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Geliştirici apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Oluşturuldu apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} üst üste {1} URL ve alt öğeleri hem de olamaz +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Aşağıdaki tablolar için en az bir satır olmalıdır: {0} DocType: Print Format,Default Print Language,Varsayılan Baskı Dili apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Ataları apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Kök {0} silinemez @@ -733,6 +750,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,evsahibi +DocType: Data Import Beta,Import File,Önemli dosya apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Kolon {0} zaten var. DocType: ToDo,High,Yüksek DocType: ToDo,High,Yüksek @@ -765,8 +783,6 @@ DocType: User,Send Notifications for Email threads,E-posta konuları için bildi apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,profesör apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Değil Geliştirici Modu apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Dosya yedeklemesi hazır -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Çarpan değeri olan puanları çarptıktan sonra izin verilen maksimum puanlar (Not: 0 olarak sınırlanmış ayar değeri için değil) DocType: DocField,In Global Search,Küresel Ara DocType: System Settings,Brute Force Security,Kaba kuvvet güvenlik DocType: Workflow State,indent-left,indent-left @@ -811,6 +827,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Kullanıcı '{0}' zaten bir role sahip '{1}' DocType: System Settings,Two Factor Authentication method,İki Faktörlü Kimlik Doğrulama Metodu apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,İlk önce ismi ayarlayın ve kaydı kaydedin. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Kayıt apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Paylaşılan {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Aboneliği Kaldır DocType: View Log,Reference Name,Referans Adı @@ -863,6 +880,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,E-posta Durumunu İzle DocType: Note,Notify Users On Every Login,Kullanıcıları Her Girişte Bildir DocType: Note,Notify Users On Every Login,Kullanıcıları Her Girişte Bildir +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,{0} sütunu herhangi bir alanla eşleştirilemiyor +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} kayıtları başarıyla güncellendi. DocType: PayPal Settings,API Password,API Şifre apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Python modülünü girin veya konektör türünü seçin apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname Özel Alan için ayarlı değil @@ -892,9 +911,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Çoğaltın adı {0} {1} -DocType: Email Queue,Retry,Tekrar dene +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Tekrar dene +DocType: Contact Phone,Number,Numara DocType: Web Form Field,Web Form Field,Web Form Alanı apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Yeni bir mesajınız var: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML Düzenle apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Lütfen Yönlendirme URL'sini girin apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -921,7 +942,7 @@ DocType: Notification,View Properties (via Customize Form),(Özelleştir Formu a apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Seçmek için bir dosyaya tıklayın. DocType: Note Seen By,Note Seen By,By Görülme Not apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Daha fazla dönüşler ile daha uzun klavye desen kullanmayı deneyin -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Liderler Sıralaması +,LeaderBoard,Liderler Sıralaması DocType: DocType,Default Sort Order,Varsayılan sıralama düzeni DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,E-posta Yanıtı Yardım @@ -958,6 +979,7 @@ apps/frappe/frappe/utils/data.py,Cent,Sent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,E-posta oluştur apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Iş akışı için Devletler (örneğin Taslak, Onaylı, İptal)." DocType: Print Settings,Allow Print for Draft,Taslakların yazdırılmasına izin ver +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 Tray'i indirip kurmak için buraya tıklayın .
                                                                                                              Ham Baskı hakkında daha fazla bilgi için buraya tıklayın ." apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Set Miktarı apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,onaylamak için bu belge göndermek DocType: Contact,Unsubscribed,Kaydolmamış @@ -989,6 +1011,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Kullanıcılar için Organi ,Transaction Log Report,İşlem Günlüğü Raporu DocType: Custom DocPerm,Custom DocPerm,Özel DocPerm DocType: Newsletter,Send Unsubscribe Link,Aboneliğini Bağlantı Gönder +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Dosyanızı içe aktarabilmemiz için oluşturulması gereken bazı bağlantılı kayıtlar var. Aşağıdaki eksik kayıtları otomatik olarak oluşturmak ister misiniz? DocType: Access Log,Method,Yöntem DocType: Report,Script Report,Senaryo Raporu DocType: OAuth Authorization Code,Scopes,kapsamları @@ -1030,6 +1053,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Başarıyla yüklendi apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Internete bağlısınız. DocType: Social Login Key,Enable Social Login,Sosyal Girişi Etkinleştir +DocType: Data Import Beta,Warnings,Uyarılar DocType: Communication,Event,Faaliyet apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} üzerinde, {1} yazdı:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Standart alan silinemiyor. İstersen bunu gizleyebilirsiniz @@ -1086,6 +1110,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Aşağıd DocType: Kanban Board Column,Blue,Mavi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Tüm özelleştirmeler silinecektir. Onaylayın. DocType: Page,Page HTML,Sayfa HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Hatalı Satırları Dışa Aktar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Grup adı boş olamaz. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Ek kısımlar ancak 'Grup' tipi kısımlar altında oluşturulabilir DocType: SMS Parameter,Header,Başlık @@ -1130,13 +1155,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,İstek zaman aşımına uğradı apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Etki Alanlarını Etkinleştir / Devre Dışı Bırak DocType: Role Permission for Page and Report,Allow Roles,Rollere izin ver +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} başarıyla {1} kayıtlarından içeri aktarıldı. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Basit Python İfadesi, Örnek: Durum ("Geçersiz")" DocType: User,Last Active,Son Aktif DocType: Email Account,SMTP Settings for outgoing emails,Giden e-postalar için SMTP Ayarları apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,Birini seçin DocType: Data Export,Filter List,Filtre Listesi DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Parolanız güncellendi. Yeni şifreniz 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 @@ -1145,8 +1170,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,Kullanıcı Kimliği DocType: Communication,Sent,Gönderilen DocType: Address,Kerala,Kerala -DocType: File,Lft,lft -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,yönetim DocType: User,Simultaneous Sessions,Eşzamanlı Oturumlar DocType: Social Login Key,Client Credentials,Müşteri Kimlik @@ -1178,7 +1201,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Güncel apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Ana Kaynak DocType: DocType,User Cannot Create,Kullanıcı oluşturulamıyor apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Başarıyla tamamlandı -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Klasör {0} yok apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox erişimi onaylandı! DocType: Customize Form,Enter Form Type,Form Türü Girin DocType: Google Drive,Authorize Google Drive Access,Google Drive Erişimine Yetki Ver @@ -1186,7 +1208,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Hiç bir kayıt etiketlenmedi. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Field kaldır apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,İnternet'e bağlı değilsiniz. Bir ara sonra tekrar deneyin. -DocType: User,Send Password Update Notification,Şifre Güncelleme Bildirimi Gönder apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Izin DocType, DocType. Dikkat et!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Baskı, E-posta için Özelleştirilmiş Biçimleri" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} toplamı @@ -1276,6 +1297,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Yanlış doğrulama apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Rehber Entegrasyonu devre dışı. DocType: Assignment Rule,Description,Açıklama DocType: Print Settings,Repeat Header and Footer in PDF,PDF Üstbilgi ve altbilgi tekrarlayın +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,başarısızlık DocType: Address Template,Is Default,Standart DocType: Data Migration Connector,Connector Type,Bağlayıcı Türü apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Sütun Adı boş olamaz @@ -1288,6 +1310,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} Sayfaya git DocType: LDAP Settings,Password for Base DN,Baz DN için şifre 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/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 @@ -1343,6 +1366,7 @@ DocType: Website Route Redirect,Source,Kaynak DocType: Website Route Redirect,Source,Kaynak apps/frappe/frappe/templates/includes/list/filters.html,clear,açık apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,bitirdi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Kurulum> Kullanıcı DocType: Prepared Report,Filter Values,Filtre Değerleri DocType: Communication,User Tags,Kullanıcı Etiketleri DocType: Data Migration Run,Fail,Başarısız @@ -1404,6 +1428,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Taki DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Yardım: sistemindeki başka bir kayda bağlamak için, ""# Form / Not / [İsim Not]"" Bağlantı URL olarak kullanın. (""Http://"" kullanmayın)" DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Yardım: sistemindeki başka bir kayda bağlamak için, ""# Form / Not / [İsim Not]"" Bağlantı URL olarak kullanın. (""Http://"" kullanmayın)" DocType: User Permission,Allow,İzin vermek +DocType: Data Import Beta,Update Existing Records,Mevcut Kayıtları Güncelle apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,tekrarlanan kelimeleri ve karakterleri önlemek edelim DocType: Energy Point Rule,Energy Point Rule,Enerji Noktası Kuralı DocType: Communication,Delayed,Gecikmiş @@ -1416,9 +1441,7 @@ DocType: Milestone,Track Field,Parça alanı DocType: Notification,Set Property After Alert,Uyarının Ardından Mülkü Ayarla apps/frappe/frappe/config/customization.py,Add fields to forms.,Formlara ekstra alan ekleme. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Görünüşe göre bu sitenin Paypal yapılandırmasında bir sorun var. -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 Tray'i indirip kurmak için buraya tıklayın .
                                                                                                              Ham Baskı hakkında daha fazla bilgi için buraya tıklayın ." apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,Yorum ekle -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Yazı Tipi Boyutu (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Özelleştir Formundan yalnızca standart DocTypes özelleştirilebilir. DocType: Email Account,Sendgrid,Sendgrid @@ -1457,6 +1480,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Üzgünüm! Sen otomatik olarak oluşturulan yorumlarınızı silemezsiniz DocType: Google Settings,Used For Google Maps Integration.,Google Haritalar Entegrasyonu İçin Kullanıldı. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Referans DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Hiçbir kayıt dışa aktarılmayacak DocType: User,System User,Sistem Kullanıcısı DocType: Report,Is Standard,Standart mı DocType: Desktop Icon,_report,_rapor @@ -1471,6 +1495,7 @@ DocType: Workflow State,minus-sign,minus-sign apps/frappe/frappe/public/js/frappe/request.js,Not Found,Bulunamadı apps/frappe/frappe/www/printview.py,No {0} permission,{0} izni yok apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,İhracat Özel İzinler +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Hiç bir öğe bulunamadı. DocType: Data Export,Fields Multicheck,Alanlar Multicheck DocType: Activity Log,Login,Giriş DocType: Activity Log,Login,Giriş @@ -1535,8 +1560,9 @@ DocType: Address,Postal,Posta DocType: Email Account,Default Incoming,Standart Gelen DocType: Workflow State,repeat,tekrarlamak DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},"Değer, {0} 'dan biri olmalı" DocType: Role,"If disabled, this role will be removed from all users.","devre dışı ise, bu rol tüm kullanıcılar kaldırılır." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} Listeye Git +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} Listeye Git 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 @@ -1550,6 +1576,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Yerel Alan Adı DocType: DocType,Track Changes,Parça değişiklikleri DocType: Workflow State,Check,Kontrol DocType: Chat Profile,Offline,Çevrimdışı +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Başarıyla içe aktarıldı {0} DocType: User,API Key,API Anahtarı DocType: Email Account,Send unsubscribe message in email,e-postadaki aboneliği iptal mesaj gönder apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Düzenle Başlık @@ -1577,11 +1604,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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ı apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,"{0}, {1} için zaten varsayılan bir değer atadı." -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                              No results found for '

                                                                                                              ,

                                                                                                              'İçin sonuç bulunamadı

                                                                                                              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 @@ -1605,8 +1632,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} için izin verilm 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kurulum> Kullanıcı İzinleri DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP Grup Eşlemesi DocType: Dashboard Chart,Chart Options,Grafik Seçenekleri +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Başlıksız Sütun apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} {1} ile {2} aralığında {3}. satırda DocType: Communication,Expired,Süresi Doldu apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Kullandığınız simge geçersiz görünüyor! @@ -1617,6 +1646,7 @@ DocType: DocType,System,Sistem DocType: Web Form,Max Attachment Size (in MB),(MB) Maksimum Ek Boyutu apps/frappe/frappe/www/login.html,Have an account? Login,Hesabın var mı? Oturum aç DocType: Workflow State,arrow-down,aşağı-yön +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0} satırı apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Kullanıcıya silme izni verilmedi {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} / {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Son olarak Güncelleme @@ -1634,6 +1664,7 @@ DocType: Custom Role,Custom Role,Özel Rolü apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Ana Sayfa / Test Klasörü 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Şifrenizi girin DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Erişimi Gizli +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Zorunlu) 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. @@ -1710,6 +1741,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Gösterge apps/frappe/frappe/desk/form/assign_to.py,New Message,Yeni Mesaj DocType: File,Preview HTML,Önizleme HTML DocType: Desktop Icon,query-report,Sorgu raporu +DocType: Data Import Beta,Template Warnings,Şablon Uyarıları apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtreler kaydedildi DocType: DocField,Percent,Yüzde apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Filtreleri ayarlayın Lütfen @@ -1732,6 +1764,7 @@ DocType: Custom Field,Custom,Özel DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Etkinleştirilmişse, Kısıtlı IP Adresi'nden giriş yapan kullanıcılar, İki Faktör Auth için istenmez" DocType: Auto Repeat,Get Contacts,Kişileri Al apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Filed under Mesajlar {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Adsız Sütunu Atla DocType: Notification,Send alert if date matches this field's value,Tarih bu alanın değerini eşleşirse uyarı gönder DocType: Workflow,Transitions,Geçişler apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} ile {2} arasında @@ -1756,6 +1789,7 @@ DocType: Workflow State,step-backward,step-backward apps/frappe/frappe/utils/boilerplate.py,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Lütfen site yapılandırmanızda Dropbox erişim anahtarı ayarlayınız apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Bu e-posta adresine gönderilmesine izin Bu kayıt silinsin +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Standart olmayan bağlantı noktası ise (örneğin, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Kısayolları Özelleştir apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Sadece zorunlu alanlar yeni kayıtlar için gereklidir. İsterseniz zorunlu olmayan sütunları silebilirsiniz. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Daha Fazla Etkinlik Göster @@ -1865,7 +1899,9 @@ DocType: Note,Seen By Table,Tablo By Görülme apps/frappe/frappe/www/third_party_apps.html,Logged in,Girildi apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standart gönderme ve Gelen Kutusu DocType: System Settings,OTP App,OTP Uygulaması +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{1} kaydı {0} başarıyla güncellendi. DocType: Google Drive,Send Email for Successful Backup,Başarılı Yedekleme için E-posta Gönder +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Zamanlayıcı etkin değil. Veri alınamıyor. DocType: Print Settings,Letter,Mektup DocType: DocType,"Naming Options:
                                                                                                              1. field:[fieldname] - By Field
                                                                                                              2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                              3. Prompt - Prompt user for a name
                                                                                                              4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                              5. @@ -1879,6 +1915,7 @@ DocType: GCalendar Account,Next Sync Token,Sonraki Senkronizasyon Jetonu DocType: Energy Point Settings,Energy Point Settings,Enerji Noktası Ayarları DocType: Async Task,Succeeded,Başarılı apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Gerekli zorunlu alanlar {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                No results found for '

                                                                                                                ,

                                                                                                                'İçin sonuç bulunamadı

                                                                                                                apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} için İzinlerini Sıfırla? apps/frappe/frappe/config/desktop.py,Users and Permissions,Kullanıcılar ve İzinler DocType: S3 Backup Settings,S3 Backup Settings,S3 Yedekleme Ayarları @@ -1952,6 +1989,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,IN DocType: Notification,Value Change,Değer Değiştirme DocType: Google Contacts,Authorize Google Contacts Access,Google Kişiler Erişimine Yetki Ver apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Yalnızca Rapor'dan sayısal alanlar gösteriliyor +DocType: Data Import Beta,Import Type,İthalat türü DocType: Access Log,HTML Page,HTML Sayfası DocType: Address,Subsidiary,Yardımcı DocType: Address,Subsidiary,Yardımcı @@ -1964,8 +2002,8 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Geçersiz DocType: Custom DocPerm,Write,Yazmak apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Sadece Administrator Sorgu / Script Raporlar oluşturmak için izin apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Güncelleniyor -DocType: File,Preview,Önizleme -DocType: File,Preview,Önizleme +DocType: Data Import Beta,Preview,Önizleme +DocType: Data Import Beta,Preview,Önizleme apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Alan "değer" zorunludur. güncelleştirilmesi için değer belirtin DocType: Customize Form,Use this fieldname to generate title,Başlığı oluşturmak için bu alan adı kullanın apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,E-postayı İçe Aktar @@ -2057,6 +2095,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Tarayıcı des DocType: Social Login Key,Client URLs,Müşteri URL'leri apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Bazı bilgiler eksik apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} başarıyla oluşturuldu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","{1}, {2} öğesinin {0} atlanması" DocType: Custom DocPerm,Cancel,İptal apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Toplu Silme apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,{0} yok Dosya @@ -2086,7 +2125,6 @@ DocType: Currency,Symbol,Sembol DocType: Currency,Symbol,Sembol apps/frappe/frappe/model/base_document.py,Row #{0}:,Satır # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Verilerin Silinmesini Onayla -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Yeni şifre gönderilecektir apps/frappe/frappe/auth.py,Login not allowed at this time,Oturum şu anda izin verilmiyor DocType: Data Migration Run,Current Mapping Action,Şu Haritalama İşlemi DocType: Dashboard Chart Source,Source Name,kaynak Adı @@ -2100,6 +2138,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Glob apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Bunu takiben DocType: LDAP Settings,LDAP Email Field,LDAP E-posta Alan apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Listesi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} kayıtlarını dışa aktar apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Öğe Kullanıcının Yapılacaklar Listesinde DocType: User Email,Enable Outgoing,Giden etkinleştirin DocType: Address,Fax,Faks @@ -2163,8 +2202,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Belgeleri Yazdır apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Alana atla DocType: Contact Us Settings,Forward To Email Address,İleri E-posta Adresi +DocType: Contact Phone,Is Primary Phone,Birincil Telefon mu apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Buraya bağlamak için {0} adresine bir e-posta gönderin. DocType: Auto Email Report,Weekdays,Hafta içi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} kayıtlar dışa aktarılacak apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Başlık alanı geçerli bir fieldname olmalı DocType: Post Comment,Post Comment,Yorum Gönder apps/frappe/frappe/config/core.py,Documents,Belgeler @@ -2183,7 +2224,9 @@ eval:doc.age>18","Burada tanımlanan AlanAdı değeri vardır VEYA kurallar g DocType: Social Login Key,Office 365,Ofis 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Bugün apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Bugün +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> Yazdırma ve Markalama> Adres Şablonu'ndan yeni bir tane oluşturun. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Bunu ayarladıktan sonra, kullanıcılar sadece mümkün erişim belgeler (örn. olacak Bağlantı var Blog Post) (örn. Blogger)." +DocType: Data Import Beta,Submit After Import,İçe Aktardıktan Sonra Gönder DocType: Error Log,Log of Scheduler Errors,Zamanlayıcı Hatalar Giriş DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,Uygulama Müşteri Sırrı @@ -2202,10 +2245,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Giriş sayfasında Müşteri Kayıt bağlantıyı devre dışı bırakın apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ Kişiye Atanan DocType: Workflow State,arrow-left,sol-yön +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1 kaydı dışa aktar DocType: Workflow State,fullscreen,tam ekran DocType: Chat Token,Chat Token,Sohbet Simgesi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Grafik Oluştur apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Alma DocType: Web Page,Center,Merkez DocType: Notification,Value To Be Set,Ayarlanacak Değer apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} düzenle @@ -2225,6 +2270,7 @@ DocType: Print Format,Show Section Headings,Göster Bölüm Başlıkları DocType: Bulk Update,Limit,sınır apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},{1} ile ilişkili {0} verilerinin silinmesi için bir istek aldık. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Yeni bölüm ekle +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrelenmiş Kayıtlar apps/frappe/frappe/www/printview.py,No template found at path: {0},Yolda bulunamadı şablon: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,E-posta Yok Hesabı DocType: Comment,Cancelled,İptal Edilmiş @@ -2313,10 +2359,13 @@ 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 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Genel Arama Doküman Tipleri Sıfırlama. ,Lead Conversion Time,Kurşun Dönüş Süresi apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Rapor oluşturmak DocType: Note,Notify users with a popup when they log in,oturum açtıklarında bir pop-up ile kullanıcılara bildir +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Global Arama'da {0} Çekirdek Modülleri aranamıyor. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Açık sohbet apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} yok, birleştirmek için yeni bir hedef seçin" DocType: Data Migration Connector,Python Module,Python Modülü @@ -2333,8 +2382,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Kapat 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kurulum> Kullanıcı İzinleri -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Güncelleme +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Güncelleme DocType: Transaction Log,Transaction Hash,İşlem Hash DocType: Error Snapshot,Snapshot View,Anlık Görünüm apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Lütfen göndermeden önce bülteni kaydedin @@ -2350,6 +2398,7 @@ DocType: Data Import,In Progress,Devam etmekte apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,yedekleme için sıraya. Bir saat için birkaç dakika sürebilir. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Kullanıcı izni zaten mevcut +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},{0} sütunu {1} alanına eşleniyor apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} görüntüleme DocType: User,Hourly,Saatlik apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth İstemci App Kayıt Ol @@ -2363,7 +2412,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Anageçit Adresi apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} olamaz ""{2}"". Bu ""{3}"" biri olmalıdır" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} otomatik kuralı {1} ile kazanılan apps/frappe/frappe/utils/data.py,{0} or {1},{0} veya {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Şifre Güncelleme DocType: Workflow State,trash,Çöp DocType: System Settings,Older backups will be automatically deleted,Eski yedekleri otomatik olarak silinecektir apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Geçersiz Erişim Tuş Kimliği veya Gizli Erişim Tuşu. @@ -2392,6 +2440,7 @@ DocType: Address,Preferred Shipping Address,Tercih edilen Teslimat Adresi apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Harf Beyninle apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{1} oluşturan kişi {0} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},{2} satırında {0}: {1} için izin verilmez. Sınırlı alan: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı ayarlanmadı. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun. DocType: S3 Backup Settings,eu-west-1,ab-batı-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Bu işaretlenirse, geçerli verilere sahip satırlar içe aktarılır ve daha sonra içe aktarmanız için geçersiz satırlar yeni bir dosyaya dökülür." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Belge rolü kullanıcılar tarafından düzenlenebilir @@ -2418,6 +2467,7 @@ DocType: Custom Field,Is Mandatory Field,Zorunlu Alan mi DocType: User,Website User,Web Sitesi Kullanım apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,PDF'ye yazdırırken bazı sütunlar kesilebilir. Sütun sayısını 10'un altında tutmaya çalışın. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Eşit değildir +DocType: Data Import Beta,Don't Send Emails,E-posta Gönderme DocType: Integration Request,Integration Request Service,Entegrasyon Talep Hizmet DocType: Access Log,Access Log,Erişim Günlüğü DocType: Website Script,Script to attach to all web pages.,Senaryo tüm web sayfalarına eklemek için. @@ -2462,6 +2512,7 @@ DocType: Contact,Passive,Pasif DocType: Auto Repeat,Accounts Manager,Hesap Yöneticisi apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} için ödev apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Ödemeniz iptal edildi. +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/views/reports/report_view.js,Select File Type,Dosya Seç Tipi apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Hepsini gör DocType: Help Article,Knowledge Base Editor,Bilgi Bankası Editör @@ -2494,6 +2545,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Veri apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Belge Durumu apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Onay Gerekli +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Dosyanızı içe aktarabilmemiz için aşağıdaki kayıtların oluşturulması gerekir. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Yetki Kodu apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,İçe Aktarıma izin verilmiyor DocType: Deleted Document,Deleted DocType,DocType silindi @@ -2549,8 +2601,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API Kimlik Bilgileri apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Oturum Başlatma Başarısız Oldu apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Oturum Başlatma Başarısız Oldu apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Bu e-posta {0} gönderilecek ve kopyalanan {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},bu dokümanı gönderdi {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yıl önce DocType: Social Login Key,Provider Name,Sağlayıcı Adı apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Yeni {0} oluşturun DocType: Contact,Google Contacts,Google Kişileri @@ -2558,6 +2610,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar Hesabı DocType: Email Rule,Is Spam,Spam mı apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapor {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Open {0} +DocType: Data Import Beta,Import Warnings,Uyarıları İçe Aktar DocType: OAuth Client,Default Redirect URI,Standart Yönlendirme URI DocType: Auto Repeat,Recipients,Alıcılar DocType: Auto Repeat,Recipients,Alıcılar @@ -2679,6 +2732,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Rapor başar apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook Hatası DocType: Email Flag Queue,Unread,Okunmamış DocType: Bulk Update,Desk,Masa +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},{0} sütunu atlanıyor apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtre bir liste veya liste olmalıdır (bir listede) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Bir SELECT sorgusu yazın. Not sonuç (tüm veriler tek seferde gönderilir) disk belleği değildir. DocType: Email Account,Attachment Limit (MB),Eklenti Limiti (MB) @@ -2694,6 +2748,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Yeni Oluştur apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Yeni Oluştur DocType: Workflow State,chevron-down,chevron-down apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Gönderilmez Email {0} (devre dışı / abonelikten) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Dışa aktarılacak alanları seçin DocType: Async Task,Traceback,Geri iz DocType: Currency,Smallest Currency Fraction Value,Küçük Döviz Kesir Değeri apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Rapor hazırlama @@ -2703,6 +2758,7 @@ DocType: Web Page,Enable Comments,Yorumlar etkinleştirin apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notlar apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notlar DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Sadece bu IP adresinden kullanıcı kısıtlayın. Çoklu IP adresleri virgül ile ayırarak eklenebilir. Ayrıca gibi kısmi IP adresleri (111.111.111) kabul +DocType: Data Import Beta,Import Preview,Önizlemeyi İçe Aktar DocType: Communication,From,Itibaren DocType: Communication,From,Itibaren apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,İlk grup düğümünü seçin. @@ -2807,6 +2863,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Arasında DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Sıraya alınmış +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kurulum> Formu Özelleştir DocType: Braintree Settings,Use Sandbox,Kullanım Sandbox apps/frappe/frappe/utils/goal.py,This month,Bu ay apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Yeni Özel Baskı Biçimi @@ -2822,6 +2879,7 @@ DocType: Session Default,Session Default,Oturum Varsayılanı DocType: Chat Room,Last Message,Son Mesaj DocType: OAuth Bearer Token,Access Token,Erişim Anahtarı DocType: About Us Settings,Org History,Org Tarihçe +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Yaklaşık {0} dakika kaldı DocType: Auto Repeat,Next Schedule Date,Sonraki Program Tarihi DocType: Workflow,Workflow Name,İş Akışı Adı DocType: DocShare,Notify by Email,E-postayla bildir @@ -2852,6 +2910,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Yazar apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,gönderme Özgeçmiş apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Yeniden açmak +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Uyarıları Göster apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Satınalma Kullanıcı DocType: Data Migration Run,Push Failed,İtem Başarısız Oldu @@ -2890,6 +2949,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Geliş apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Haber bültenini görüntüleme izniniz yok. DocType: User,Interests,İlgi apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Parola sıfırlama bilgileri e-posta gönderildi +DocType: Energy Point Rule,Allot Points To Assigned Users,Atanan Kullanıcılara Tahsis Noktaları apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Düzey 0, belge düzeyi izinleri, alan düzeyinde izinler için daha üst düzeyler içindir." DocType: Contact Email,Is Primary,Birincil mi @@ -2913,6 +2973,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Yayınlanabilir Anahtar DocType: Stripe Settings,Publishable Key,Yayınlanabilir Anahtar apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,İçe Aktarmayı Başlat +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,İhracat Şekli DocType: Workflow State,circle-arrow-left,daire-ok-sol DocType: System Settings,Force User to Reset Password,Kullanıcı Şifreyi Sıfırlamaya Zorla apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",Güncellenen raporu almak için {0} seçeneğini tıklayın. @@ -2926,8 +2987,10 @@ DocType: Contact,Middle Name,İkinci ad DocType: Custom Field,Field Description,Alan Açıklama apps/frappe/frappe/model/naming.py,Name not set via Prompt,İstemci ile girilmemiş isim apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-posta gelen kutusu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1}, {2} ürününün {0} güncellenmesi" DocType: Auto Email Report,Filters Display,Filtreler Ekran apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Bir değişiklik yapmak için "değiştirilen_" den "alan" olmalı. +DocType: Contact,Numbers,sayılar apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},"{0}, {1} {2} üzerindeki çalışmanızı takdir etti" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filtreleri kaydet DocType: Address,Plant,Tesis @@ -2935,6 +2998,7 @@ DocType: Address,Plant,Tesis apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Hepsini cevapla DocType: DocType,Setup,Kurulum DocType: DocType,Setup,Kurulum +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Tüm Kayıtlar DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google Kişileri senkronize edilecek e-posta adresi. DocType: Email Account,Initial Sync Count,İlk Eşitleme Sayısı DocType: Workflow State,glass,cam @@ -2962,7 +3026,7 @@ DocType: Workflow State,font,Yazı DocType: DocType,Show Preview Popup,Önizleme Açılır Penceresini Göster apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Bu bir üst-100 yaygın şifredir. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Pop-up etkinleştirin -DocType: User,Mobile No,Mobil No +DocType: Contact,Mobile No,Mobil No DocType: Communication,Text Content,Metin İçerik DocType: Customize Form Field,Is Custom Field,Özel Alan mi DocType: Workflow,"If checked, all other workflows become inactive.","Eğer işaretli ise, diğer tüm iş akışları inaktif hale gelir." @@ -3010,6 +3074,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Forml apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Yeni Baskı Biçimi Adı apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Kenar Çubuğunu Aç / Kapat DocType: Data Migration Run,Pull Insert,Çekme Uç +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Çarpan değeri olan puanları çarptıktan sonra izin verilen maksimum puanlar (Not: Sınırsız olarak bu alanı boş bırakın veya 0 olarak ayarlayın) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Geçersiz Şablon apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Geçersiz SQL Sorgusu apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Zorunlu: DocType: Chat Message,Mentions,Mansiyonlar @@ -3024,6 +3091,7 @@ DocType: User Permission,User Permission,Kullanıcı İzni apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP Yüklü Değil apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Verilerle now +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} için değiştirilen değerler DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Bölge @@ -3051,10 +3119,12 @@ DocType: Braintree Settings,Public Key,Genel anahtar DocType: GSuite Settings,GSuite Settings,GSuite Ayarları DocType: Address,Links,Bağlantılar DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,"Bu Hesapta belirtilen E-posta Adresini, bu Hesabı kullanarak gönderilen tüm e-postalar için Gönderenin Adı olarak kullanır." +DocType: Energy Point Rule,Field To Check,Kontrol Edilecek Alan apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Kişileri - {0} Google Kişileri'nde kişi güncellenemedi, hata kodu {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Lütfen Belge Türü'nü seçin. apps/frappe/frappe/model/base_document.py,Value missing for,Değer eksik apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Alt öğe ekle +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,İçe Aktarım İlerlemesi DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",Koşul yerine getirilirse kullanıcı puanla ödüllendirilecektir. Örneğin. doc.status == 'Kapalı' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Sonlandırılmış bir kayıt silinemez. @@ -3092,6 +3162,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google Takvim Erişimi apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Aradığınız sayfa eksik. taşınması veya linkte bir yazım hatası yoktur Bunun nedeni olabilir. apps/frappe/frappe/www/404.html,Error Code: {0},Hata kodu {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Düz metin olarak ilan sayfası Açıklama, çizgilerin sadece bir çift. (Maksimum 140 karakter)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} zorunlu alanlardır DocType: Workflow,Allow Self Approval,Kendi Onayına İzin Ver DocType: Event,Event Category,Etkinlik Kategorisi apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3140,8 +3211,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Taşınmak DocType: Address,Preferred Billing Address,Tercih edilen Fatura Adresi apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Çok fazla bir istek yazıyor. Küçük istekleri gönderin apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive yapılandırıldı. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,{0} belge tipi tekrarlandı. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Değerler Değişti DocType: Workflow State,arrow-up,yukarı-yön +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} tablosu için en az bir satır olmalı apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",Otomatik Tekrarı yapılandırmak için {0} 'dan "Otomatik Tekrarlamaya İzin Ver" i etkinleştirin. DocType: OAuth Bearer Token,Expires In,İçinde sona eriyor DocType: DocField,Allow on Submit,Gönderme Onayı İzni @@ -3232,6 +3305,7 @@ DocType: Custom Field,Options Help,Yardım Seçenekleri 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 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 @@ -3250,6 +3324,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Kodu DocType: Webhook,Webhook Request,Webhook İsteği apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Başarısız: {0} için {1}: {2} DocType: Data Migration Mapping,Mapping Type,Eşleme Türü +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,zorunlu seçin apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Araştır apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","semboller, rakamlar, ya da büyük harfler gerek yok." DocType: DocField,Currency,Para birimi @@ -3283,12 +3358,14 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Temelli Mektup Başlığı apps/frappe/frappe/utils/oauth.py,Token is missing,Jetonu eksik apps/frappe/frappe/www/update-password.html,Set Password,Şifre seç +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} kayıtları başarıyla içe aktarıldı. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Not: Sayfa Adını değiştirmek önceki URL'yi bu sayfaya ayıracaktır. apps/frappe/frappe/utils/file_manager.py,Removed {0},Kaldırıldı {0} DocType: SMS Settings,SMS Settings,SMS Ayarları DocType: SMS Settings,SMS Settings,SMS Ayarları DocType: Company History,Highlight,Vurgulayın DocType: Dashboard Chart,Sum,toplam +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,Veri Alma yoluyla DocType: OAuth Provider Settings,Force,kuvvet apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Son senkronizasyon {0} DocType: DocField,Fold,Kat @@ -3327,6 +3404,7 @@ DocType: Workflow State,Home,Ana Sayfa DocType: OAuth Provider Settings,Auto,Otomatik DocType: System Settings,User can login using Email id or User Name,Kullanıcı e-posta kimliği veya Kullanıcı Adı'nı kullanarak giriş yapabilir DocType: Workflow State,question-sign,question-sign +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} devre dışı apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Web İzleme alanları "rota" zorunlu apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} önündeki Sütun Ekle DocType: Energy Point Rule,The user from this field will be rewarded points,Bu alandaki kullanıcı ödüllendirilecek puanlar olacak @@ -3361,6 +3439,7 @@ DocType: Notification,Print Settings,Yazdırma Ayarları DocType: Page,Yes,Evet DocType: Page,Yes,Evet DocType: DocType,Max Attachments,Max Eklentiler +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Yaklaşık {0} saniye kaldı DocType: Calendar View,End Date Field,Bitiş Tarihi Alanı apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Global Kısayollar DocType: Desktop Icon,Page,Sayfa @@ -3475,6 +3554,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite erişimine izin ver DocType: DocType,DESC,AZALAN DocType: DocType,Naming,Adlandırma apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Tümünü Seç +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},{0} sütunu apps/frappe/frappe/config/customization.py,Custom Translations,özel Çeviriler apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,İlerleme apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,Role Göre @@ -3518,11 +3598,13 @@ DocType: Stripe Settings,Stripe Settings,Şerit Ayarları DocType: Data Migration Mapping,Data Migration Mapping,Veri Taşıma Eşleme DocType: Auto Email Report,Period,Dönem DocType: Auto Email Report,Period,Dönem +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Yaklaşık {0} dakika kaldı apps/frappe/frappe/www/login.py,Invalid Login Token,Geçersiz Girişi Jetonu apps/frappe/frappe/public/js/frappe/chat.js,Discard,ıskarta apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 saat önce DocType: Website Settings,Home Page,Ana Sayfa DocType: Error Snapshot,Parent Error Snapshot,Veli Hata Anlık +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Sütunları {0} alanından {1} alanlarına eşleyin DocType: Access Log,Filters,Filtreler DocType: Workflow State,share-alt,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Kuyruk {0} dan biri olmalıdır @@ -3553,6 +3635,7 @@ DocType: Calendar View,Start Date Field,Başlangıç Tarihi Alanı DocType: Role,Role Name,Rol Adı apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Kontrol Paneline Geç apps/frappe/frappe/config/core.py,Script or Query reports,Yazı veya sorgu raporları +DocType: Contact Phone,Is Primary Mobile,Birincil Mobil mi DocType: Workflow Document State,Workflow Document State,İş Akışı Belge Durumu apps/frappe/frappe/public/js/frappe/request.js,File too big,Dosya çok büyük apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-posta Hesabı birden çok kez eklendi @@ -3602,6 +3685,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Sayfa Ayarları apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Tasarruf ... apps/frappe/frappe/www/update-password.html,Invalid Password,geçersiz şifre +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{0} kaydı başarıyla {1} ürününden içe aktarıldı. DocType: Contact,Purchase Master Manager,Satınalma Usta Müdürü apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Herkese açık / özel arasında geçiş yapmak için kilit simgesine tıklayın DocType: Module Def,Module Name,Modül Adı @@ -3638,6 +3722,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Bazı özellikler tarayıcınızda çalışmayabilir. Lütfen tarayıcınızı en yeni sürüme güncelleyin. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Bazı özellikler tarayıcınızda çalışmayabilir. Lütfen tarayıcınızı en yeni sürüme güncelleyin. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Bilmiyorsanız, 'Yardım' isteyin" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},bu dokümanı iptal etti {0} DocType: DocType,Comments and Communications will be associated with this linked document,Yorumlar ve İletişim bu bağlantılı belge ile ilişkili olacaktır apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtre ... DocType: Workflow State,bold,kalın @@ -3658,6 +3743,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,E-posta Hesap DocType: Comment,Published,Yayınlandı apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,E-postanız için teşekkür ederiz DocType: DocField,Small Text,Küçük Metin +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"{0} sayısı, Telefon için ve Cep Numarası için birincil olarak ayarlanamaz." DocType: Workflow,Allow approval for creator of the document,Belgenin yaratıcısı için onay ver apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Raporu Kaydet DocType: Webhook,on_cancel,on_cancel @@ -3719,6 +3805,7 @@ DocType: Kanban Board Column,Column Name,Sütun Adı DocType: Language,Based On,Göre DocType: Language,Based On,Göre DocType: Email Account,"For more information, click here.","Daha fazla bilgi için buraya tıklayın ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Sütun sayısı verilerle eşleşmiyor apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Varsayılan yap apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Uygulama Süresi: {0} sn apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Geçersiz yol ekle @@ -3813,7 +3900,7 @@ 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} dosya yükle DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync Kimliği DocType: Prepared Report,Report Start Time,Başlangıç saatini bildir -apps/frappe/frappe/config/settings.py,Export Data,Verileri Dışa Aktar +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Verileri Dışa Aktar 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. @@ -3832,7 +3919,6 @@ DocType: Report,Disable Prepared Report,Hazırlanan Raporu Devre Dışı Bırak apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,{0} kullanıcısı veri silme talebinde bulundu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Yasadışı Erişim Jetonu. Lütfen tekrar deneyin apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Uygulama yeni bir sürüme güncellendi, lütfen bu sayfayı yenileyin" -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> Yazdırma ve Markalama> Adres Şablonu'ndan yeni bir tane oluşturun. DocType: Notification,Optional: The alert will be sent if this expression is true,İsteğe bağlı: Bu ifade doğru ise uyarı gönderilir DocType: Data Migration Plan,Plan Name,Plan Adı DocType: Print Settings,Print with letterhead,Antet ile yazdır @@ -3874,6 +3960,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Öğesi tanzim edilmeden iptal edilemez apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Tam Sayfa DocType: DocType,Is Child Table,Alt tablo mu +DocType: Data Import Beta,Template Options,Şablon Seçenekleri apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} mutlaka {1} den olmalıdır apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} bu belgeyi görüntülüyor apps/frappe/frappe/config/core.py,Background Email Queue,Arkaplan E-posta Kuyruğu @@ -3881,7 +3968,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Parola Sıfırlama DocType: Communication,Opened,Açılmış DocType: Workflow State,chevron-left,chevron-left DocType: Communication,Sending,Gönderme -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Bu IP Adresi izin verilmez DocType: Website Slideshow,This goes above the slideshow.,Bu slayt üzerinde gider. DocType: Contact,Last Name,Soyadı DocType: Event,Private,Özel @@ -3896,7 +3982,6 @@ DocType: Workflow Action,Workflow Action,İş Akışı Eylem apps/frappe/frappe/utils/bot.py,I found these: ,Bunları buldum: DocType: Event,Send an email reminder in the morning,Sabah bir hatırlatma e-postası gönder DocType: Blog Post,Published On,Yayınlandı -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı ayarlanmadı. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun. DocType: Contact,Gender,Cinsiyet DocType: Contact,Gender,Cinsiyet apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,Eksik zorunlu bilgiler: @@ -3919,7 +4004,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,warning-sign DocType: Prepared Report,Prepared Report,Hazırlanmış Rapor apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Web sayfalarınıza meta etiketler ekleyin -DocType: Contact,Phone Nos,Telefon numaraları DocType: Workflow State,User,Kullanıcı 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" @@ -3939,6 +4023,7 @@ DocType: User,API Key cannot be regenerated,API Anahtarı yeniden üretilemez apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Bir şeyler yanlış gitti DocType: System Settings,Number Format,Sayı Biçimi DocType: System Settings,Number Format,Sayı Biçimi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} kaydı başarıyla içe aktarıldı. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,özet DocType: Event,Event Participants,Etkinlik Katılımcıları DocType: Auto Repeat,Frequency,frekans @@ -3946,7 +4031,7 @@ DocType: Custom Field,Insert After,Sonra ekle DocType: Event,Sync with Google Calendar,Google Takvim ile senkronize et DocType: Access Log,Report Name,Rapor Adı DocType: Desktop Icon,Reverse Icon Color,Simge Renk Ters -DocType: Notification,Save,Kaydet +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Kaydet apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Sonraki Zamanlanmış Tarih apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,En az ödeve sahip olana tayin edin apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,bölüm başlığı @@ -3970,11 +4055,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kurulum> Formu Özelleştir 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 DocType: Desktop Icon,Category,Kategori +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},{1} için {0} değeri eksik apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Kişileri ekleyin apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,peyzaj apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,JavaScript İstemci tarafı komut dosyası uzantıları @@ -4000,6 +4085,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Enerji noktası güncellemesi apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',başka bir ödeme yöntemi seçin. PayPal '{0}' para biriminde yapılan işlemleri desteklemez DocType: Chat Message,Room Type,Oda tipi +DocType: Data Import Beta,Import Log Preview,Günlük Önizlemesini İçe Aktar apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Arama alanı {0} geçerli değil apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,yüklenen dosya DocType: Workflow State,ok-circle,ok-circle @@ -4072,6 +4158,7 @@ DocType: DocType,Allow Auto Repeat,Otomatik Tekrarlamaya İzin Ver apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Gösterilecek değer yok DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,E-posta şablonu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} kaydı başarıyla güncellendi. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},"{0} kullanıcısı, {1} dokümanı için rol izni yoluyla doktip erişimine sahip değil" apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Kullanıcı adı ve şifre gereklidir apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Son belge almak yenileyin. diff --git a/frappe/translations/uk.csv b/frappe/translations/uk.csv index e8b466b515..dc844fefb2 100644 --- a/frappe/translations/uk.csv +++ b/frappe/translations/uk.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Доступні нові {} версії для наступних додатків apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,"Будь ласка, виберіть поле Сума." +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Завантаження файлу імпорту ... DocType: Assignment Rule,Last User,Останній користувач apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Нова задача, {0}, була призначена вам користувачем {1}. {2}" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,За замовчуванням сесії збережено +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Перезавантажити файл DocType: Email Queue,Email Queue records.,Черга електронної пошти записів. DocType: Post,Post,Post DocType: Address,Punjab,Пенджаб @@ -44,6 +46,7 @@ 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,Параметр @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Щомісяця DocType: Address,Uttarakhand,Уттаракханд DocType: Email Account,Enable Incoming,Включення вхідної apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Небезпека -apps/frappe/frappe/www/login.py,Email Address,Адреса електронної пошти +DocType: Address,Email Address,Адреса електронної пошти DocType: Workflow State,th-large,й за величиною DocType: Communication,Unread Notification Sent,"Непрочитана повідомлення, направленого" apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Експорт не допускаються. Ви повинні {0} роль експорту. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Адмін DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Варіанти контаків, типу ""Звернення з питань продажу, звернення з питань підтримки"" і т.д. кожен з нового рядка або через кому." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Додати тег ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет -DocType: Data Migration Run,Insert,Вставити +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Вставити apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Дозволити доступ до Google Диска apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Виберіть {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,"Будь ласка, введіть базову URL-адресу" @@ -119,17 +122,17 @@ 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,Налаштування теми DocType: Company History,Company History,Історія компанії -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,скидання +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,скидання DocType: Workflow State,volume-up,Обсяг до apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks викликає запити API до веб-додатків +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Показати відстеження DocType: DocType,Default Print Format,За замовчуванням для друку Формат DocType: Workflow State,Tags,Ключові слова apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Нічого: Кінець робочого процесу apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Поле {0} не може бути встановлений як унікальний в {1}, так як не є унікальними існуючі значення" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Типи документів +DocType: Global Search Settings,Document Types,Типи документів DocType: Address,Jammu and Kashmir,Джамму і Кашмір DocType: Workflow,Workflow State Field,Поле стану робочого процесу -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Налаштування> Користувач DocType: Language,Guest,Гість DocType: DocType,Title Field,Назва Область DocType: Error Log,Error Log,Журнал помилок @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Повтори на кшталт ""абвабвабв"" вгадати лише трохи важче, ніж ""абв""" DocType: Notification,Channel,Канал apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Якщо ви думаєте, що це несанкціоноване, будь ласка, змініть пароль адміністратора." +DocType: Data Import Beta,Data Import Beta,Бета-імпорт даних apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} є обов'язковим DocType: Assignment Rule,Assignment Rules,Правила призначення DocType: Workflow State,eject,Витяг @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Назва дії робо apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType не можуть бути об'єднані DocType: Web Form Field,Fieldtype,FieldType apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Чи не поштовий файл +DocType: Global Search DocType,Global Search DocType,Глобальний пошук DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                                New {{ doc.doctype }} #{{ doc.name }}
                                                                                                                ","Щоб додати динамічний предмет, використовуйте теги jinja, такі як
                                                                                                                 New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                                " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc Event apps/frappe/frappe/public/js/frappe/utils/user.js,You,Ви DocType: Braintree Settings,Braintree Settings,Налаштування Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Створено {0} записів успішно. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Зберегти фільтр DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Неможливо видалити {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Введіть URL пар apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,"Автоматичне повторення, створене для цього документа" apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Перегляньте звіт у своєму веб-переглядачі apps/frappe/frappe/config/desk.py,Event and other calendars.,Подія та інші календарі. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 ряд обов'язковий) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Всі поля необхідно надати коментар. DocType: Custom Script,Adds a client custom script to a DocType,Додає користувацький сценарій клієнта до DocType DocType: Print Settings,Printer Name,Ім'я принтера @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Масове оновлення DocType: Workflow State,chevron-up,шеврона до DocType: DocType,Allow Guest to View,"Дозволити для гостей, щоб подивитися" apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},"{0} не повинен бути таким, як {1}" -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Видалити {0} елементи назавжди? apps/frappe/frappe/utils/oauth.py,Not Allowed,Не дозволено @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Дисплей DocType: Email Group,Total Subscribers,Всього Передплатники apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Вгору {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Номер рядка apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Якщо роль не має доступу на рівні 0, то більш високі рівні сенсу." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Зберегти як DocType: Comment,Seen,Відвідування @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,Приклад: DocType: Workflow,Defines workflow states and rules for a document.,Визначає стани робочого процесу і правила для документу. DocType: Workflow State,Filter,Фільтр @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,Закрито DocType: Blog Settings,Blog Title,Назва блогу apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Стандартні ролі не можуть бути відключені apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Тип чату +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Стовпці на карті DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Інформаційний бюлетень apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Неможливо використовувати підзапит в порядку @@ -366,6 +375,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Додати стовпець apps/frappe/frappe/www/contact.html,Your email address,Ваша електронна адреса DocType: Desktop Icon,Module,Модуль +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{0} записів із {1} успішно оновлено. DocType: Notification,Send Alert On,Відправити попередження на DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Налаштувати Label, Друк приховувати, за замовчуванням і т.д." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Розпакування файлів ... @@ -400,6 +410,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Кори DocType: System Settings,Currency Precision,Валюта Precision DocType: System Settings,Currency Precision,Валюта Precision apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,"Інший угода блокує це. Будь ласка, спробуйте ще раз через кілька секунд." +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Очистити фільтри DocType: Test Runner,App,додаток apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Вкладення не можуть бути правильно пов'язані з новим документом DocType: Chat Message Attachment,Attachment,Долучення @@ -425,6 +436,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Не вда apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Календар Google - Не вдалося оновити подію {0} в Календарі Google, код помилки {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Пошук або введіть команду DocType: Activity Log,Timeline Name,терміни Ім'я +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Лише один {0} можна встановити як основний. DocType: Email Account,e.g. smtp.gmail.com,наприклад smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Додати нове правило DocType: Contact,Sales Master Manager,Майстер Менеджер з продажу @@ -442,7 +454,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Поле середнього імені LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Імпорт {0} з {1} DocType: GCalendar Account,Allow GCalendar Access,Дозволити доступ до GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} обов'язкове поле +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} обов'язкове поле apps/frappe/frappe/templates/includes/login/login.js,Login token required,Треба ввімкнути токен apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Щомісячний рейтинг: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Виберіть кілька елементів списку @@ -472,6 +484,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Не вдається п apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Слово саме по собі неважко здогадатися. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Помилка автоматичного призначення: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Пошук ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Будь ласка, виберіть компанію" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Об'єднання можливе тільки між Група-к-групи або аркуш вузол-вузол листа apps/frappe/frappe/utils/file_manager.py,Added {0},Додано {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Немає відповідних записів. Пошук щось нове @@ -484,7 +497,6 @@ DocType: Google Settings,OAuth Client ID,Ідентифікатор клієнт DocType: Auto Repeat,Subject,Тема apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Повернутися до столу DocType: Web Form,Amount Based On Field,Сума На підставі поле -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Установіть обліковий запис електронної пошти за замовчуванням у меню Налаштування> Електронна пошта> Обліковий запис електронної пошти apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,Обов’язково зазначте користувача для оприлюднення DocType: DocField,Hidden,Прихований DocType: Web Form,Allow Incomplete Forms,Дозволити Неповні форми @@ -521,6 +533,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} і {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Почніть бесіду. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Завжди додавайте заголовок ""Чернетка"" при друці проектів документів" apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Помилка повідомлення: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} рік тому DocType: Data Migration Run,Current Mapping Start,Поточне відображення початком apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email був відзначений як спам DocType: Comment,Website Manager,Менеджер веб-сайту @@ -559,6 +572,7 @@ DocType: Workflow State,barcode,штрих-код apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Використання суб-запиту або функції обмежено apps/frappe/frappe/config/customization.py,Add your own translations,Додати свої власні переклади DocType: Country,Country Name,Назва країни +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Порожній шаблон DocType: About Us Team Member,About Us Team Member,Про нас Команда Член apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Дозволи встановлюються для ролей та типів документів (DocTypes) шляхом встановлення таких прав, як: Читання, Запис, Створення, Видалення, Проведення, Скасування, Відновлення, Звіт, Імпорт, Експорт, Друк, E-mail встановлення дозволів користувачам." DocType: Event,Wednesday,Середа @@ -570,6 +584,7 @@ DocType: Website Settings,Website Theme Image Link,Посилання на зо DocType: Web Form,Sidebar Items,Sidebar товари DocType: Web Form,Show as Grid,Показати як сітку apps/frappe/frappe/installer.py,App {0} already installed,Додаток {0} вже встановлено +DocType: Energy Point Rule,Users assigned to the reference document will get points.,"Користувачі, присвоєні довідковому документу, отримають бали." apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Немає попереднього перегляду DocType: Workflow State,exclamation-sign,Окличний знак- apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Нерозпаковані файли {0} @@ -605,6 +620,7 @@ DocType: Notification,Days Before,Днів до apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Щоденні події повинні закінчуватися в той же день. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Редагувати ... DocType: Workflow State,volume-down,Обсяг вниз +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Доступ заборонено з цієї IP-адреси apps/frappe/frappe/desk/reportview.py,No Tags,немає тегів DocType: Email Account,Send Notification to,Відправити повідомлення DocType: DocField,Collapsible,Складаний @@ -661,6 +677,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Розробник apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Створений 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,Мова друку за замовчуванням apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Предки apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Корінь {0} не може бути вилучена @@ -703,6 +720,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",мета = "_blank" DocType: Workflow State,hdd,жорсткий диск DocType: Integration Request,Host,господар +DocType: Data Import Beta,Import File,Імпортувати файл apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Стовпець {0} вже існує. DocType: ToDo,High,Високий apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Нова подія @@ -731,8 +749,6 @@ DocType: User,Send Notifications for Email threads,Надсилайте спов apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,професор apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Не в режимі розробника apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Резервування файлу готово -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Максимально допустиме число балів після множення балів зі значенням множника (Примітка: Для не встановленого граничного значення як 0) DocType: DocField,In Global Search,У Global Пошук DocType: System Settings,Brute Force Security,Брутні сили безпеки DocType: Workflow State,indent-left,відступ зліва- @@ -775,6 +791,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Користувач '{0}' вже грає роль "{1} ' DocType: System Settings,Two Factor Authentication method,Два методу автентифікації факторів apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Спочатку встановіть ім'я та збережіть запис. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 Записи apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Оприлюднено для {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Відмовитися від підписки DocType: View Log,Reference Name,Ім'я посилання @@ -825,6 +842,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Відстеження стану електронної пошти DocType: Note,Notify Users On Every Login,Повідомлення користувачів на кожен вхід DocType: Note,Notify Users On Every Login,Повідомлення користувачів на кожен вхід +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Не можна зіставити стовпчик {0} ні з одним полем +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} записів успішно оновлено. DocType: PayPal Settings,API Password,API Пароль apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Введіть модуль python або виберіть тип коннектора apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname не встановлений настроюване поле @@ -853,9 +872,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,Значення Змінено apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Дублювати ім'я {0} {1} -DocType: Email Queue,Retry,Спроба спробувати +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Спроба спробувати +DocType: Contact Phone,Number,Номер DocType: Web Form Field,Web Form Field,Поле Веб-форми apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Ви отримали нове повідомлення від: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Змінити HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,"Будь ласка, введіть URL-адресу переспрямування" apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -881,7 +902,7 @@ DocType: Notification,View Properties (via Customize Form),Перегляд вл apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,"Клацніть файл, щоб вибрати його." DocType: Note Seen By,Note Seen By,Примітка побачених apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Спробуйте використовувати більш довгий шаблон клавіатури з великою кількістю витків -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LEADERBOARD +,LeaderBoard,LEADERBOARD DocType: DocType,Default Sort Order,Порядок сортування за замовчуванням DocType: Address,Rajasthan,Раджастхан DocType: Email Template,Email Reply Help,Надіслати відповідь довідку @@ -916,6 +937,7 @@ apps/frappe/frappe/utils/data.py,Cent,Цент apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Написати на e-mail apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Стани для робочого процесу (наприклад, Чернетка, Затверджений, Скасований)." DocType: Print Settings,Allow Print for Draft,Дозволити друк чернеток +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/link_selector.js,Set Quantity,Встановити кількість apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Проведіть цей документ для підтвердження DocType: Contact,Unsubscribed,Підписка скасована @@ -947,6 +969,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Організаційни ,Transaction Log Report,Звіт журналу транзакцій DocType: Custom DocPerm,Custom DocPerm,призначені для користувача DocPerm DocType: Newsletter,Send Unsubscribe Link,Надіслати посилання Відмовитися +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,"Є кілька пов'язаних записів, які потрібно створити, перш ніж ми зможемо імпортувати ваш файл. Ви хочете автоматично створити такі відсутні записи?" DocType: Access Log,Method,Метод DocType: Report,Script Report,Повідомити сценарію DocType: OAuth Authorization Code,Scopes,області застосування @@ -988,6 +1011,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Завантажено успішно apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Ви підключені до Інтернету. DocType: Social Login Key,Enable Social Login,Увімкнути соціальний вхід +DocType: Data Import Beta,Warnings,Попередження DocType: Communication,Event,Подія apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","На {0}, {1} написав:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Не вдається видалити стандартне поле. Ви можете приховати його, якщо ви хочете" @@ -1043,6 +1067,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Вста DocType: Kanban Board Column,Blue,Синій apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Всі налаштування будуть видалені. Будь-ласка підтвердіть. DocType: Page,Page HTML,Сторінка HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Експорт помилкових рядків apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Ім'я групи не може бути порожнім. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Подальші вузли можуть бути створені тільки під вузлами типу "група" DocType: SMS Parameter,Header,Тема @@ -1082,13 +1107,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Інтервал очікування для запиту apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Увімкнути / вимкнути домени DocType: Role Permission for Page and Report,Allow Roles,дозволити ролі +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{0} записів із {1} успішно імпортовано. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Просте вираження Python, Приклад: Статус у ("Недійсний")" DocType: User,Last Active,Останнє відвідування DocType: Email Account,SMTP Settings for outgoing emails,Налаштування SMTP для вихідних листів apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,вибрати DocType: Data Export,Filter List,Список фільтрів DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Ваш пароль був оновлений. Ось ваш новий пароль DocType: Email Account,Auto Reply Message,Автоматична відповідь повідомлення DocType: Data Migration Mapping,Condition,Стан apps/frappe/frappe/utils/data.py,{0} hours ago,{0} годин тому @@ -1097,7 +1122,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ідентифікатор користувача DocType: Communication,Sent,Надісланий DocType: Address,Kerala,Керала -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Адміністрація DocType: User,Simultaneous Sessions,одночасних сесій DocType: Social Login Key,Client Credentials,Облікові дані клієнта @@ -1129,7 +1153,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Оно apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,майстер DocType: DocType,User Cannot Create,Користувач не може створювати apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успішно виконано -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Тека {0} не існує apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,доступ Dropbox затверджений! DocType: Customize Form,Enter Form Type,Введіть Form Тип DocType: Google Drive,Authorize Google Drive Access,Авторизуйте доступ до Диска Google @@ -1137,7 +1160,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Немає записів помічені. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,видалити поле apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Ви не підключені до Інтернету. Повторіть спробу через деякий час. -DocType: User,Send Password Update Notification,Відправити повідомлення про зміну паролю apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Дозвіл DOCTYPE, DocType. Будь обережний!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Індивідуальні формати для друку, електронної пошти" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Сума {0} @@ -1223,6 +1245,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Невірний к apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Інтеграція контактів Google вимкнена. DocType: Assignment Rule,Description,Опис DocType: Print Settings,Repeat Header and Footer in PDF,Повторіть Колонтитули в PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Невдача DocType: Address Template,Is Default,За замовчуванням DocType: Data Migration Connector,Connector Type,Тип роз'єму apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Ім'я стовпця не може бути порожнім @@ -1235,6 +1258,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Перейдіть DocType: LDAP Settings,Password for Base DN,Пароль для 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,Колони на основі +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/model/document.py,Action Failed,дія Помилка apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,для користувачів @@ -1288,6 +1312,7 @@ DocType: Print Settings,Enable Raw Printing,Увімкнути сирий дру DocType: Website Route Redirect,Source,Джерело apps/frappe/frappe/templates/includes/list/filters.html,clear,ясно apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Готово +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Налаштування> Користувач DocType: Prepared Report,Filter Values,Значення фільтра DocType: Communication,User Tags,Система Мітки DocType: Data Migration Run,Fail,Невдалий @@ -1344,6 +1369,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,До ,Activity,Діяльність DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Допомога: Для посилання на інший запис в системі, використовуйте "# Форма / Примітка / [Примітка Ім'я]" як URL Link. (не використовуйте "HTTP: //")" DocType: User Permission,Allow,Дозволити +DocType: Data Import Beta,Update Existing Records,Оновити існуючі записи apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Давайте уникати повторюваних слів і символів DocType: Energy Point Rule,Energy Point Rule,Правило енергетичної точки DocType: Communication,Delayed,Затримується @@ -1356,9 +1382,7 @@ DocType: Milestone,Track Field,Бігова доріжка DocType: Notification,Set Property After Alert,Установка властивості Після оповіщення apps/frappe/frappe/config/customization.py,Add fields to forms.,Додавання полів форм. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,"Схоже, щось не так з конфігурацією Paypal цього сайту." -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/sidebar/review.js,Add Review,Додати відгук -DocType: File,rgt,полк apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Розмір шрифту (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Лише стандартні DocTypes можуть бути налаштовані з налаштування форми. DocType: Email Account,Sendgrid,Sendgrid @@ -1395,6 +1419,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Ф apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,"На жаль, Ви не можете видаляти коментарі, що генеруються автоматично" DocType: Google Settings,Used For Google Maps Integration.,Використовується для інтеграції карт Google. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Посилання DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Записи не експортуються DocType: User,System User,Системний користувач DocType: Report,Is Standard,СТАНДАРТ DocType: Desktop Icon,_report,_звіт @@ -1410,6 +1435,7 @@ DocType: Workflow State,minus-sign,мінус знак apps/frappe/frappe/public/js/frappe/request.js,Not Found,Не знайдено apps/frappe/frappe/www/printview.py,No {0} permission,Немає {0} дозвіл apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Дозволи Експорт призначених для користувача +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Немає елементів. DocType: Data Export,Fields Multicheck,Поля Multicheck DocType: Activity Log,Login,Увійти DocType: Web Form,Payments,Платежі @@ -1470,8 +1496,9 @@ DocType: Address,Postal,Поштовий DocType: Email Account,Default Incoming,За замовчуванням Вхідні DocType: Workflow State,repeat,повторення DocType: Website Settings,Banner,Банер +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Значення має бути одним із {0} DocType: Role,"If disabled, this role will be removed from all users.","Якщо ця функція відключена, ця роль буде віддалена від усіх користувачів." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Перейдіть до списку {0} +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,Довідка з пошуку DocType: Milestone,Milestone Tracker,Віховий трекер apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,Зареєстрований але відключений @@ -1485,6 +1512,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Локальне поле DocType: DocType,Track Changes,відстеження змін DocType: Workflow State,Check,Перевірити DocType: Chat Profile,Offline,Offline +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Імпортовано {0} DocType: User,API Key,ключ API DocType: Email Account,Send unsubscribe message in email,Надіслати повідомлення відмови від підписки на електронну пошту apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Редагувати @@ -1511,11 +1539,11 @@ 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/form/footer/timeline.js,changed value of {0} {1},змінене значення {0} {1} 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,Всього сторінок apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} вже призначив значення за замовчуванням для {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                No results found for '

                                                                                                                ,

                                                                                                                Не знайдено результатів для '

                                                                                                                DocType: DocField,Attach Image,Долучити зображення DocType: Workflow State,list-alt,Список Alt- apps/frappe/frappe/www/update-password.html,Password Updated,Пароль оновлено @@ -1536,8 +1564,10 @@ apps/frappe/frappe/permissions.py,Not allowed 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 не є допустимим форматом звіту. Формат звіту повинен \ одну з таких дій% з DocType: Chat Message,Chat,Чат +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Налаштування> Дозволи користувача DocType: LDAP Group Mapping,LDAP Group Mapping,Картографування групи LDAP DocType: Dashboard Chart,Chart Options,Параметри діаграми +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Без назви стовпця apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} від {1} до {2} в ряді #{3} DocType: Communication,Expired,Закінчився apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,"Здається, токен, який ви використовуєте, недійсний!" @@ -1547,6 +1577,7 @@ DocType: DocType,System,Система DocType: Web Form,Max Attachment Size (in MB),Максимальний розмір вкладення (в МБ) apps/frappe/frappe/www/login.html,Have an account? Login,Вже зареєстровані? Ввійти DocType: Workflow State,arrow-down,Стрілка вниз +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Рядок {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Користувач не має права видаляти {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} з {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Оновлене @@ -1564,6 +1595,7 @@ DocType: Custom Role,Custom Role,призначені для користува apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Головна/Тестова Тека 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Введіть пароль DocType: Dropbox Settings,Dropbox Access Secret,Dropbox доступ до секретних +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Обов’язково) 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.,У файлі не знайдено жодних даних. Повторно встановіть новий файл із даними. @@ -1638,6 +1670,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Показ apps/frappe/frappe/desk/form/assign_to.py,New Message,Нове повідомлення DocType: File,Preview HTML,Попередній HTML DocType: Desktop Icon,query-report,запит-звіт +DocType: Data Import Beta,Template Warnings,Попередження про шаблон apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,фільтри збережені DocType: DocField,Percent,Відсотків apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,"Будь ласка, встановіть фільтри" @@ -1659,6 +1692,7 @@ DocType: Custom Field,Custom,Звичай DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Якщо цей параметр увімкнено, користувачі, які входитимуть із обмеженої IP-адреси, не будуть запитані про двофакторний аут" DocType: Auto Repeat,Get Contacts,Отримати контакти apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},"Повідомлення, подані відповідно до {0}" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Пропуск стовпця без назви DocType: Notification,Send alert if date matches this field's value,"Надіслати повідомлення, якщо дата збігається значення поля" DocType: Workflow,Transitions,Переходи apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} до {2} @@ -1682,6 +1716,7 @@ DocType: Workflow State,step-backward,крок назад apps/frappe/frappe/utils/boilerplate.py,{app_title},{} App_title apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Будь ласка, встановіть ключі доступу Dropbox у конфігурації вашого сайту" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,"Видалити цей запис, щоб дозволити відправляти на цей e-mail" +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Якщо нестандартний порт (наприклад, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Налаштувати ярлики apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Лише обов'язкові поля, необхідні для нових записів. Ви можете видалити необов'язкові стовпці, якщо хочете." apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Показати більше активності @@ -1789,7 +1824,9 @@ 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}.,{0} запис із {1} успішно оновлено. 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,Лист DocType: DocType,"Naming Options:
                                                                                                                1. field:[fieldname] - By Field
                                                                                                                2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                                3. Prompt - Prompt user for a name
                                                                                                                4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                                5. @@ -1803,6 +1840,7 @@ DocType: GCalendar Account,Next Sync Token,Далі Синхронізовани DocType: Energy Point Settings,Energy Point Settings,Налаштування енергетичної точки DocType: Async Task,Succeeded,Завершено успішно apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Обов'язкові поля обов'язкові в {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                  No results found for '

                                                                                                                  ,

                                                                                                                  Не знайдено результатів для '

                                                                                                                  apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Скидання дозволів для {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Люди і дозволу DocType: S3 Backup Settings,S3 Backup Settings,Налаштування резервної копії S3 @@ -1873,6 +1911,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,У DocType: Notification,Value Change,Значення Зміна DocType: Google Contacts,Authorize Google Contacts Access,Авторизуйте доступ до контактів Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Показуються лише цифрові поля з звіту +DocType: Data Import Beta,Import Type,Тип імпорту DocType: Access Log,HTML Page,Сторінка HTML DocType: Address,Subsidiary,Дочірня компанія apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Спроба підключення до лотка QZ ... @@ -1883,7 +1922,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Невір DocType: Custom DocPerm,Write,Запис apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Лише адміністратор дозволив створити Query / Script Звіти apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Оновлення -DocType: File,Preview,Попередній перегляд +DocType: Data Import Beta,Preview,Попередній перегляд apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated","Поле "Значення" є обов'язковим. Будь ласка, вкажіть значення для поновлення" DocType: Customize Form,Use this fieldname to generate title,Використовуйте ім'я цього поля щоб генерувати заголовок apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Імпортувати пошту з @@ -1968,6 +2007,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Браузер DocType: Social Login Key,Client URLs,URL-адреси клієнта apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Деяка інформація відсутня apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} успішно створено +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Пропуск {0} з {1}, {2}" DocType: Custom DocPerm,Cancel,Скасувати apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Масове видалення apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,Файл {0} не існує @@ -1995,7 +2035,6 @@ DocType: GCalendar Account,Session Token,Токен сесії DocType: Currency,Symbol,Символ apps/frappe/frappe/model/base_document.py,Row #{0}:,Ряд # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Підтвердити видалення даних -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Новий пароль по електронній пошті apps/frappe/frappe/auth.py,Login not allowed at this time,Вхід не дозволяється у цей час DocType: Data Migration Run,Current Mapping Action,Поточний дію карти DocType: Dashboard Chart Source,Source Name,ім'я джерела @@ -2008,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Пр apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Слідом за DocType: LDAP Settings,LDAP Email Field,LDAP Email Поле apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Список +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Експорт {0} записів apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Вже у списку To Do користувача DocType: User Email,Enable Outgoing,Включити вихідні DocType: Address,Fax,Факс @@ -2067,8 +2107,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Друк документів apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Перейти до поля DocType: Contact Us Settings,Forward To Email Address,Переслати на адресу електронної пошти +DocType: Contact Phone,Is Primary Phone,Первинний телефон apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Надішліть електронний лист на {0}, щоб пов’язати його тут." DocType: Auto Email Report,Weekdays,Будні дні +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} записи будуть експортовані apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Назва поля повинно бути дійсним ім'я_поля DocType: Post Comment,Post Comment,Опублікувати коментар apps/frappe/frappe/config/core.py,Documents,Документи @@ -2087,7 +2129,9 @@ eval:doc.age>18","Це поле з'являється тільки в р DocType: Social Login Key,Office 365,Офіс 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,сьогодні apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,сьогодні +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Після того як ви встановили це, користувачі зможуть тільки доступ до документів (наприклад ,. Блог Пост), де існує зв'язок (наприклад, Blogger.)." +DocType: Data Import Beta,Submit After Import,Надіслати після імпорту DocType: Error Log,Log of Scheduler Errors,Журнал помилок Scheduler DocType: User,Bio,Біо DocType: OAuth Client,App Client Secret,App Client Secret @@ -2106,10 +2150,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Відключити посилання Реєстрація клієнта на сторінці входу apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Призначено / Власника DocType: Workflow State,arrow-left,стрілка наліво +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Експорт 1 запису DocType: Workflow State,fullscreen,повноекранний DocType: Chat Token,Chat Token,Чатовий маркер apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Створення діаграми apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Не імпортуйте DocType: Web Page,Center,Центр DocType: Notification,Value To Be Set,Значення To Be Set apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Редагувати {0} @@ -2129,6 +2175,7 @@ DocType: Print Format,Show Section Headings,Показати Заголовки DocType: Bulk Update,Limit,межа apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},"Ми отримали запит на видалення {0} даних, пов’язаних із: {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Додати новий розділ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Фільтровані записи apps/frappe/frappe/www/printview.py,No template found at path: {0},Не знайдено жодного шаблону за шляхом: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Немає облікового запису електронної пошти DocType: Comment,Cancelled,Скасовано @@ -2216,10 +2263,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Скидання типів документів глобального пошуку. ,Lead Conversion Time,Провідний час конвертації apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Побудувати звіт DocType: Note,Notify users with a popup when they log in,"Повідомте користувачам спливаючого вікна, коли вони увійти" +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Основні модулі {0} не можна шукати в глобальному пошуку. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Відкрити чат apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не існує, виберіть нову ціль для об’єднання" DocType: Data Migration Connector,Python Module,Модуль Python @@ -2236,8 +2286,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Закрити 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Налаштування> Дозволи користувача -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Оновлення +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Оновлення DocType: Transaction Log,Transaction Hash,Транзакція хеш DocType: Error Snapshot,Snapshot View,Знімок Подивитися apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Будь ласка, збережіть бюлетень перед відправкою" @@ -2253,6 +2302,7 @@ DocType: Data Import,In Progress,В процесі apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Queued для резервного копіювання. Це може зайняти кілька хвилин до години. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Користувацький дозвіл вже існує +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Зіставлення стовпця {0} до поля {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Переглянути {0} DocType: User,Hourly,Погодинно apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Реєстрація OAuth Client App @@ -2265,7 +2315,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може бути ""{2}"", а має бути одним з ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},отримано на {0} за допомогою автоматичного правила {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} або {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Оновлення паролю DocType: Workflow State,trash,сміття DocType: System Settings,Older backups will be automatically deleted,Більш старі резервні копії будуть автоматично видалені apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Недійсний ідентифікатор ключа доступу чи секретний ключ доступу. @@ -2294,6 +2343,7 @@ DocType: Address,Preferred Shipping Address,Основна адреса дост apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,З головою Лист apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} створено цей {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Не дозволено для {0}: {1} у рядку {2}. Поле з обмеженням: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не налаштовано обліковий запис електронної пошти. Створіть новий обліковий запис електронної пошти у програмі Налаштування> Електронна пошта> Обліковий запис електронної пошти DocType: S3 Backup Settings,eu-west-1,eu-захід-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Якщо це буде позначено, буде імпортовано рядки з дійсними даними, а недійсні рядки будуть скинуті до нового файлу для імпорту пізніше." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Документ може редагуватись лише користувачами ролі @@ -2320,6 +2370,7 @@ DocType: Custom Field,Is Mandatory Field,Є Поле обов'язково DocType: User,Website User,Користувач веб-сайту apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Деякі стовпці можуть бути відрізані під час друку в PDF. Спробуйте зберегти кількість стовпців під 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Не дорівнює +DocType: Data Import Beta,Don't Send Emails,Не надсилайте електронні листи DocType: Integration Request,Integration Request Service,Запит на обслуговування Інтеграція DocType: Access Log,Access Log,Журнал доступу DocType: Website Script,Script to attach to all web pages.,Сценарій для підключення до всіх веб-сторінок. @@ -2360,6 +2411,7 @@ DocType: Contact,Passive,Пасивний DocType: Auto Repeat,Accounts Manager,Диспетчер облікових записів apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Завдання на {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Ваш платіж буде скасовано. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Установіть обліковий запис електронної пошти за замовчуванням у меню Налаштування> Електронна пошта> Обліковий запис електронної пошти apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,Виберіть тип файлу apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Подивитись все DocType: Help Article,Knowledge Base Editor,База знань Редактор @@ -2392,6 +2444,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Дані apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Стан документу apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Потрібне затвердження +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,"Наступні записи потрібно створити, перш ніж ми зможемо імпортувати ваш файл." DocType: OAuth Authorization Code,OAuth Authorization Code,Код авторизації OAuth apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Чи не дозволяється імпортувати DocType: Deleted Document,Deleted DocType,видаляється DocType @@ -2446,8 +2499,8 @@ DocType: GCalendar Settings,Google API Credentials,Перелік повнова apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Не вдається запустити apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Не вдається запустити apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Цей лист був відправлений на адресу {0} і скопіювати в {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},подав цей документ {0} DocType: Workflow State,th,ї -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} рік тому DocType: Social Login Key,Provider Name,Ім'я провайдера apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Створити нову {0} DocType: Contact,Google Contacts,Контакти Google @@ -2455,6 +2508,7 @@ DocType: GCalendar Account,GCalendar Account,Обліковий запис GCale DocType: Email Rule,Is Spam,спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Повідомити {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Відкрити {0} +DocType: Data Import Beta,Import Warnings,Попередження про імпорт DocType: OAuth Client,Default Redirect URI,За замовчуванням Перенаправлення URI DocType: Auto Repeat,Recipients,Одержувачі DocType: System Settings,Choose authentication method to be used by all users,"Виберіть метод автентифікації, який використовуватиметься всім користувачам" @@ -2573,6 +2627,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Звіт у apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Помилка уповільненої Webhook DocType: Email Flag Queue,Unread,непрочитаний DocType: Bulk Update,Desk,Стільниця +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Пропуск стовпця {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Фільтр повинен бути кортеж або список (в списку) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Написати запит на вибірку. Результат Примітка НЕ вивантажується (всі дані передаються на одному диханні). DocType: Email Account,Attachment Limit (MB),Обмеження на долучення (МБ) @@ -2587,6 +2642,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Створити новий DocType: Workflow State,chevron-down,шеврон вниз apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),E-mail не надсилаються {0} (відписався / відключено) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Виберіть поля для експорту DocType: Async Task,Traceback,Простежити DocType: Currency,Smallest Currency Fraction Value,Значення найменшої частки валюти apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Підготовка звіту @@ -2595,6 +2651,7 @@ DocType: Workflow State,th-list,го-лист DocType: Web Page,Enable Comments,Включити Коментарі apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Примітки DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Обмежити користувача з цього IP-адреси тільки. Кілька IP-адреси можуть бути додані шляхом поділу комами. Також бере часткові IP-адреси, як (111.111.111)" +DocType: Data Import Beta,Import Preview,Імпорт попереднього перегляду DocType: Communication,From,від apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Виберіть вузол групи в першу чергу. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Знайти {0} в {1} @@ -2694,6 +2751,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,між DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,У черзі +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Налаштування> Налаштувати форму DocType: Braintree Settings,Use Sandbox,Використання Пісочниця apps/frappe/frappe/utils/goal.py,This month,Цього місяця apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Новий користувальницький друку Формат @@ -2709,6 +2767,7 @@ DocType: Session Default,Session Default,Сесія за замовчуванн DocType: Chat Room,Last Message,Останнє повідомлення DocType: OAuth Bearer Token,Access Token,Маркер доступу DocType: About Us Settings,Org History,Орг Історія +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Залишилося приблизно {0} хвилин DocType: Auto Repeat,Next Schedule Date,Дата наступного розкладу DocType: Workflow,Workflow Name,Назва робочого процесу DocType: DocShare,Notify by Email,Повідомляти електронною поштою @@ -2738,6 +2797,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,автор apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,резюме Відправка apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Відновити +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Показати попередження apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Купівля користувача DocType: Data Migration Run,Push Failed,Натисніть не вдалося @@ -2776,6 +2836,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,роз apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Вам заборонено переглядати інформаційний бюлетень. DocType: User,Interests,інтереси apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Інструкції щодо зміни паролю були відправлені на вашу електронну пошту +DocType: Energy Point Rule,Allot Points To Assigned Users,Виділити бали призначеним користувачам apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Рівень 0 для дозволу на рівні документа, \ вищих рівнів дозволу на рівні поля." DocType: Contact Email,Is Primary,Первинний @@ -2799,6 +2860,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Ключ до опублікування DocType: Stripe Settings,Publishable Key,Ключ до опублікування apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Почніть імпортувати +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Тип експорту DocType: Workflow State,circle-arrow-left,Круг-стрілка-вліво DocType: System Settings,Force User to Reset Password,Змусити користувача скинути пароль apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Щоб отримати оновлений звіт, натисніть {0}." @@ -2812,13 +2874,16 @@ DocType: Contact,Middle Name,батькові DocType: Custom Field,Field Description,Поле Опис apps/frappe/frappe/model/naming.py,Name not set via Prompt,Ім'я не встановлено за допомогою Підкажіть apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Вхідні +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Оновлення {0} з {1}, {2}" DocType: Auto Email Report,Filters Display,фільтри Показати apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.","Щоб внести поправку, повинно бути присутнє поле "Змінено_від"." +DocType: Contact,Numbers,Числа apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} оцінив вашу роботу {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Збережіть фільтри DocType: Address,Plant,Завод apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Відповісти всім DocType: DocType,Setup,Встановлення +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Усі записи DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Електронна адреса, чиї контакти Google потрібно синхронізувати." DocType: Email Account,Initial Sync Count,Первісна синхронізація Count DocType: Workflow State,glass,скло @@ -2843,7 +2908,7 @@ DocType: Workflow State,font,шрифту DocType: DocType,Show Preview Popup,Показати попередній перегляд спливаючих вікон apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Це звичайний пароль топ-100. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Будь ласка, включіть спливаючі вікна" -DocType: User,Mobile No,Номер мобільного +DocType: Contact,Mobile No,Номер мобільного DocType: Communication,Text Content,Text Content DocType: Customize Form Field,Is Custom Field,На замовлення поле DocType: Workflow,"If checked, all other workflows become inactive.","Якщо прапорець встановлений, всі інші робочі процеси стають неактивними." @@ -2889,6 +2954,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,До apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Ім'я нового формату друку apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Переключити бічну панель DocType: Data Migration Run,Pull Insert,Витягніть вставку +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Максимум балів, допущених після множення балів зі значенням множника (Примітка. Для жодного обмеження не залишайте це поле порожнім або встановіть 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Недійсний шаблон apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Незаконний запит SQL apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Обов'язково: DocType: Chat Message,Mentions,Згадує @@ -2903,6 +2971,7 @@ DocType: User Permission,User Permission,Права користувача apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Блог apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP не встановлено apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Завантажити з даними +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},змінені значення для {0} {1} DocType: Workflow State,hand-right,ручної право DocType: Website Settings,Subdomain,піддомен DocType: S3 Backup Settings,Region,Область @@ -2930,10 +2999,12 @@ DocType: Braintree Settings,Public Key,Відкритий ключ DocType: GSuite Settings,GSuite Settings,налаштування GSuite DocType: Address,Links,Зв'язки DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,"Використовується назва електронної адреси, зазначена в цьому обліковому записі, як Ім'я відправника для всіх електронних листів, надісланих за допомогою цього облікового запису." +DocType: Energy Point Rule,Field To Check,Поле для перевірки apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Контакти Google - не вдалося оновити контакт у контактах Google {0}, код помилки {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,"Будь ласка, виберіть тип документа." apps/frappe/frappe/model/base_document.py,Value missing for,Значення безвісти apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Додати підлеглий елемент +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Імпорт прогресу DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Якщо умову буде виконано, користувач буде нагороджений балами. напр. doc.status == 'Закрито'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Проведений Запис не може бути видалено. @@ -2970,6 +3041,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Авторизуйте apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Сторінка, яку ви шукаєте, відсутня. Можливо, вона була переміщена або у посиланні є помилка." apps/frappe/frappe/www/404.html,Error Code: {0},Код помилки: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Опис для перерахування сторінку, у вигляді звичайного тексту, тільки пару рядків. (макс 140 знаків)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} - обов'язкові поля DocType: Workflow,Allow Self Approval,Дозволити самоврядування DocType: Event,Event Category,Категорія події apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,Джон Доу @@ -3017,8 +3089,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Рухатися DocType: Address,Preferred Billing Address,Основна платіжна адреса apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Занадто багато пише в одному запиті. Будь ласка, відправте менші запити" apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Диск Google налаштовано. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Тип документа {0} повторено. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,значення Змінено DocType: Workflow State,arrow-up,стрілка вгору +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Має бути принаймні один рядок для таблиці {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Щоб налаштувати автоматичне повторення, увімкніть "Дозволити автоматичне повторення" від {0}." DocType: OAuth Bearer Token,Expires In,Завершується В DocType: DocField,Allow on Submit,Дозволити на Надіслати @@ -3105,6 +3179,7 @@ DocType: Custom Field,Options Help,Довідка з опцій 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 запис 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,обмежити домену @@ -3122,6 +3197,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Верфікований код DocType: Webhook,Webhook Request,Запит на Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Не вдалося: {0} до {1}: {2} DocType: Data Migration Mapping,Mapping Type,Тип карти +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Виберіть Обов'язковий apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Переглянути apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Немає необхідності для символів, цифр або букв у верхньому регістрі." DocType: DocField,Currency,Валюта @@ -3152,11 +3228,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Заголовок листа на основі apps/frappe/frappe/utils/oauth.py,Token is missing,Маркер відсутній apps/frappe/frappe/www/update-password.html,Set Password,Встановити пароль +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} записів успішно імпортовано. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Примітка: Зміна імені сторінки зламається попередній URL цієї сторінки. apps/frappe/frappe/utils/file_manager.py,Removed {0},Вилучені {0} DocType: SMS Settings,SMS Settings,Налаштування SMS DocType: Company History,Highlight,Основний момент DocType: Dashboard Chart,Sum,Сума +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,через Імпорт даних DocType: OAuth Provider Settings,Force,сила apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Востаннє синхронізовано {0} DocType: DocField,Fold,Скласти @@ -3193,6 +3271,7 @@ DocType: Workflow State,Home,Головна DocType: OAuth Provider Settings,Auto,автоматичний DocType: System Settings,User can login using Email id or User Name,"Користувач може ввійти, використовуючи ідентифікатор електронної пошти або ім'я користувача" DocType: Workflow State,question-sign,Питання-знак +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} вимкнено apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Поле "route" є обов'язковим для Web Views apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Вставити колонку до {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Користувач з цього поля отримає бали @@ -3226,6 +3305,7 @@ DocType: Website Settings,Top Bar Items,Top Bar елементи DocType: Notification,Print Settings,Налаштування друку DocType: Page,Yes,Так DocType: DocType,Max Attachments,Найбільша кількість долучень +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Залишилося приблизно {0} секунд DocType: Calendar View,End Date Field,Поле закінчення дати apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобальні ярлики DocType: Desktop Icon,Page,Сторінка @@ -3338,6 +3418,7 @@ DocType: GSuite Settings,Allow GSuite access,Дозволити доступ GSu DocType: DocType,DESC,DESC DocType: DocType,Naming,Іменування apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Вибрати все +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Стовпець {0} apps/frappe/frappe/config/customization.py,Custom Translations,призначені для користувача Переклади apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,прогрес apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,за ролями @@ -3380,11 +3461,13 @@ DocType: Stripe Settings,Stripe Settings,налаштування нашивки DocType: Stripe Settings,Stripe Settings,налаштування нашивки DocType: Data Migration Mapping,Data Migration Mapping,Картографія міграції даних DocType: Auto Email Report,Period,Період +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Залишилося приблизно {0} хвилини apps/frappe/frappe/www/login.py,Invalid Login Token,Невірний Логін маркера 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} @@ -3404,6 +3487,7 @@ DocType: Calendar View,Start Date Field,Поле Дата початку DocType: Role,Role Name,Ім'я ролі apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Перемикання на робочий стіл apps/frappe/frappe/config/core.py,Script or Query reports,Сценарій або Запит повідомляє +DocType: Contact Phone,Is Primary Mobile,Первинний мобільний DocType: Workflow Document State,Workflow Document State,Стан документу в робочому процесі apps/frappe/frappe/public/js/frappe/request.js,File too big,Файл занадто великий apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Обліковий запис електронної пошти додано кілька разів @@ -3449,6 +3533,7 @@ DocType: DocField,Float,Поплавок DocType: Print Settings,Page Settings,Параметри сторінки apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Збереження ... apps/frappe/frappe/www/update-password.html,Invalid Password,неправильний пароль +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Запис {0} імпортовано з {1}. DocType: Contact,Purchase Master Manager,Купівля Майстер-менеджер apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,"Клацніть на піктограму блокування, щоб переключити приватне / приватне" DocType: Module Def,Module Name,Ім'я модуля @@ -3483,6 +3568,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,"Деякі з функцій можуть не працювати у вашому браузері. Будь ласка, поновіть свій браузер до останньої версії." apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,"Деякі з функцій можуть не працювати у вашому браузері. Будь ласка, поновіть свій браузер до останньої версії." apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Не знаю, зверніться до ""Довідки""" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},скасував цей документ {0} DocType: DocType,Comments and Communications will be associated with this linked document,Коментарі та комунікації будуть пов'язані з цією пов'язаного документа apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Фільтри ... DocType: Workflow State,bold,сміливий @@ -3501,6 +3587,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Додати DocType: Comment,Published,Опублікований apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Дякую вам за вашу електронну пошту DocType: DocField,Small Text,Малий Текст +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"Номер {0} не можна встановити як основний для телефону, а також номер мобільного телефону" DocType: Workflow,Allow approval for creator of the document,Дозволити схвалення для автора документа apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Зберегти звіт DocType: Webhook,on_cancel,on_cancel @@ -3558,6 +3645,7 @@ DocType: Print Settings,PDF Settings,Параметри PDF DocType: Kanban Board Column,Column Name,Ім'я стовпця DocType: Language,Based On,Грунтуючись на DocType: Email Account,"For more information, click here.","Для отримання додаткової інформації натисніть тут ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Кількість стовпців не збігається з даними apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Чи не з'являтися до суду apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Час виконання: {0} сек apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Недійсний шлях включення @@ -3648,7 +3736,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,Час початку звіту -apps/frappe/frappe/config/settings.py,Export Data,Експортувати дані +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Експортувати дані 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.,Це довідковий звіт. Встановіть відповідні фільтри та генеруйте новий. @@ -3666,7 +3754,6 @@ DocType: Report,Disable Prepared Report,Вимкнути підготовлен apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Користувач {0} подав запит на видалення даних apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Нелегальна Токен доступу. Будь ласка спробуйте ще раз apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Додаток був оновлений до нової версії, будь ласка, поновіть цю сторінку" -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.,Шаблон адреси за замовчуванням не знайдено. Створіть новий із меню Налаштування> Друк та брендинг> Шаблон адреси. DocType: Notification,Optional: The alert will be sent if this expression is true,"Буде відправлено попередження, якщо цей вираз істинно: Необов'язково" DocType: Data Migration Plan,Plan Name,Назва плану DocType: Print Settings,Print with letterhead,Друк за допомогою фірмових бланків @@ -3707,6 +3794,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Неможливо встановити Відновити без Скасувати apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Повна сторінка DocType: DocType,Is Child Table,Є дочірньою таблиці +DocType: Data Import Beta,Template Options,Параметри шаблону apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} повинен бути одним з {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} в даний час переглядає цей документ apps/frappe/frappe/config/core.py,Background Email Queue,Фон E-mail черзі @@ -3714,7 +3802,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Скидання п DocType: Communication,Opened,Відкрито DocType: Workflow State,chevron-left,шеврон наліво DocType: Communication,Sending,Відправка -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Не дозволено з цієї IP-адреси DocType: Website Slideshow,This goes above the slideshow.,Це йде вище слайд-шоу. DocType: Contact,Last Name,Прізвище DocType: Event,Private,Приватний @@ -3728,7 +3815,6 @@ DocType: Workflow Action,Workflow Action,Дія робочого процесу apps/frappe/frappe/utils/bot.py,I found these: ,Я знайшов це: DocType: Event,Send an email reminder in the morning,Надіслати електронною поштою нагадування вранці DocType: Blog Post,Published On,Опубліковано на -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Не налаштовано обліковий запис електронної пошти. Створіть новий обліковий запис електронної пошти у програмі Налаштування> Електронна пошта> Обліковий запис електронної пошти 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} @@ -3749,7 +3835,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,знак застереження DocType: Prepared Report,Prepared Report,Підготовлений звіт apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Додайте метатеги до своїх веб-сторінок -DocType: Contact,Phone Nos,Номер телефону DocType: Workflow State,User,Користувач DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Показати назву у вікні переглядача як ""префікс - назва""" DocType: Payment Gateway,Gateway Settings,Параметри шлюзу @@ -3767,6 +3852,7 @@ DocType: Data Migration Connector,Data Migration,Переміщення дани DocType: User,API Key cannot be regenerated,API-ключ не може бути регенерований apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Щось пішло не так DocType: System Settings,Number Format,Числовий формат +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Запис імпортовано {0}. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Резюме DocType: Event,Event Participants,Учасники події DocType: Auto Repeat,Frequency,частота @@ -3774,7 +3860,7 @@ DocType: Custom Field,Insert After,Вставити після DocType: Event,Sync with Google Calendar,Синхронізуйте з Календарем Google DocType: Access Log,Report Name,Ім'я звіту DocType: Desktop Icon,Reverse Icon Color,Зворотний колір значка -DocType: Notification,Save,Зберегти +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Зберегти apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Наступна запланована дата apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,"Призначають тому, хто має найменше завдань" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Тема розділу @@ -3797,11 +3883,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Налаштування> Налаштувати форму DocType: Google Contacts,Last Sync On,Остання синхронізація включена DocType: Deleted Document,Deleted Document,видаляється документ apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,Нам Щось пішло не так DocType: Desktop Icon,Category,Категорія +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Значення {0} відсутнє для {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Додати контакти apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пейзаж apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Розширення клієнтський сценарій в Javascript @@ -3825,6 +3911,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Оновлення енергетичної точки apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',"Будь ласка, виберіть інший спосіб оплати. PayPal не підтримує транзакції в валюті «{0}»" DocType: Chat Message,Room Type,Тип кімнати +DocType: Data Import Beta,Import Log Preview,Попередній перегляд журналу імпорту apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,Поле пошуку {0} не є дійсним apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,завантажений файл DocType: Workflow State,ok-circle,ОК кола @@ -3893,6 +3980,7 @@ DocType: DocType,Allow Auto Repeat,Дозволити автоматичне п apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Немає значення для показу DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Шаблон електронної пошти +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Запис {0} успішно оновлено. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Користувач {0} не має доступу до документу через дозвіл на роль документа {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,"Треба ввести і ім’я користувача, і пароль" apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Будь ласка, поновіть, щоб отримати останню документ." diff --git a/frappe/translations/ur.csv b/frappe/translations/ur.csv index 9cf1be4788..6671416604 100644 --- a/frappe/translations/ur.csv +++ b/frappe/translations/ur.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,نئی {} مندرجہ ذیل ایپس کے لئے ریلیز دستیاب ہیں apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,ایک رقم فیلڈ براہ مہربانی منتخب کریں. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,درآمد فائل لوڈ ہو رہا ہے… DocType: Assignment Rule,Last User,آخری صارف apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",ایک نیا کام، {0}، {1} ذریعہ آپ کو تفویض کیا گیا ہے. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,سیشن ڈیفالٹس محفوظ ہوگیا۔ +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,فائل کو دوبارہ لوڈ کریں۔ DocType: Email Queue,Email Queue records.,ای میل کی قطار ریکارڈز. DocType: Post,Post,پوسٹ DocType: Address,Punjab,پنجاب @@ -44,6 +46,7 @@ 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,پیرامیٹر @@ -69,7 +72,7 @@ DocType: Auto Repeat,Monthly,ماہانہ DocType: Address,Uttarakhand,اتراکھنڈ DocType: Email Account,Enable Incoming,موصولہ فعال apps/frappe/frappe/core/doctype/version/version_view.html,Danger,خطرہ -apps/frappe/frappe/www/login.py,Email Address,ای میل اڈریس +DocType: Address,Email Address,ای میل اڈریس DocType: Workflow State,th-large,TH-بڑے DocType: Communication,Unread Notification Sent,بھیجا بغیر پڑھے ہوئے نوٹیفکیشن apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,برآمد کی اجازت نہیں. آپ برآمد کرنے {0} کردار کی ضرورت ہے. @@ -97,7 +100,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,ایڈمن DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",وغیرہ "سیلز استفسار، سپورٹ استفسار" کی طرح رابطہ اختیارات، ایک نئی سطر پر ایک یا کوما سے علیحدہ. apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,ٹیگ شامل کریں ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,پورٹریٹ -DocType: Data Migration Run,Insert,داخل کریں +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,داخل کریں apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,گوگل ڈرائیو تک رسائی کی اجازت دیں۔ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},منتخب کریں {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,براہ مہربانی بیس یو آر ایل درج کریں @@ -117,17 +120,17 @@ 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,تھیم تشکیل دیں۔ DocType: Company History,Company History,کمپنی کی تاریخ -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,پھر سیٹ کریں +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,پھر سیٹ کریں DocType: Workflow State,volume-up,آواز اونچی apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks API ایپ کی درخواستوں کو ویب ایپس میں بلا رہا ہے +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,ٹریس بیک دکھائیں۔ DocType: DocType,Default Print Format,پہلے سے طے شدہ پرنٹ کی شکل DocType: Workflow State,Tags,ٹیگز apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,: کوئی کام کے فلو کو کے اختتام apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",غیر منفرد موجودہ اقدار موجود ہیں کے طور {0} میدان، {1} میں کے طور پر منفرد مقرر نہیں کیا جا سکتا -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,دستاویز کی اقسام +DocType: Global Search Settings,Document Types,دستاویز کی اقسام DocType: Address,Jammu and Kashmir,جموں و کشمیر DocType: Workflow,Workflow State Field,کام کے فلو کو ریاست کا میدان -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,سیٹ اپ> صارف۔ DocType: Language,Guest,مہمان DocType: DocType,Title Field,عنوان کے خانے DocType: Error Log,Error Log,خرابی دلے @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","abcabcabc" "اے بی سی" سے اندازہ لگانا صرف تھوڑا سا مشکل ہیں کی طرح دوہراتا DocType: Notification,Channel,چینل apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",آپ کو اس کی اجازت نہیں ہے لگتا ہے، ایڈمنسٹریٹر پاس ورڈ تبدیل کریں. +DocType: Data Import Beta,Data Import Beta,ڈیٹا امپورٹ بیٹا۔ apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} لازمی ہے DocType: Assignment Rule,Assignment Rules,تفویض اصول DocType: Workflow State,eject,نکالنا @@ -161,6 +165,7 @@ DocType: Workflow Action Master,Workflow Action Name,کام کے فلو کو ا apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DOCTYPE ضم نہیں کیا جا سکتا DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,ایک زپ فائل نہیں +DocType: Global Search DocType,Global Search DocType,گلوبل سرچ ڈاک ٹائپ۔ DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                                  New {{ doc.doctype }} #{{ doc.name }}
                                                                                                                  ","متحرک موضوع کو شامل کرنے کے لئے، جینجا ٹیگ استعمال کریں
                                                                                                                   New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                                  " @@ -182,6 +187,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,ڈاکٹر کا واقعہ apps/frappe/frappe/public/js/frappe/utils/user.js,You,آپ DocType: Braintree Settings,Braintree Settings,برائنٹری ترتیبات +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,کامیابی کے ساتھ {0} ریکارڈ بنائے گئے۔ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,فلٹر محفوظ کریں DocType: Print Format,Helvetica,ہیلویٹکا apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} حذف نہیں کر سکتا @@ -208,6 +214,7 @@ DocType: SMS Settings,Enter url parameter for message,پیغام کے لئے ی apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,اس دستاویز کے لئے خود کار اعادہ تیار کیا گیا ہے۔ apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,اپنے براؤزر میں رپورٹ دیکھیں apps/frappe/frappe/config/desk.py,Event and other calendars.,واقعہ اور دوسرے کیلنڈروں. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 صف لازمی) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,تمام شعبوں تبصرہ پیش کرنے کے لئے ضروری ہیں. DocType: Custom Script,Adds a client custom script to a DocType,ڈاکٹ ٹائپ میں کلائنٹ کسٹم اسکرپٹ شامل کرتا ہے۔ DocType: Print Settings,Printer Name,پرنٹر کا نام @@ -248,7 +255,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},جا DocType: Bulk Update,Bulk Update,بلک اپ ڈیٹ DocType: Workflow State,chevron-up,شیوران اپ DocType: DocType,Allow Guest to View,مہمان دیکھنے کے لئے اجازت -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,مستقل طور {0} اشیاء کو حذف کریں؟ apps/frappe/frappe/utils/oauth.py,Not Allowed,اجازت نہیں ہے @@ -264,6 +270,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,ڈسپلے DocType: Email Group,Total Subscribers,کل والے apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},اوپر {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,صف نمبر apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",ایک کردار لیول 0 سے تک رسائی حاصل نہیں ہے، تو اعلی سطح معنی ہیں. apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,ایسے محفوظ کریں DocType: Comment,Seen,دیکھا @@ -326,6 +333,7 @@ DocType: Activity Log,Closed,بند DocType: Blog Settings,Blog Title,بلاگ کے عنوان apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,سٹینڈرڈ کے کردار غیر فعال نہیں کیا جا سکتا apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,چیٹ کی قسم +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,نقشہ کالم DocType: Address,Mizoram,میزورم DocType: Newsletter,Newsletter,نیوز لیٹر apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,کی طرف سے آرڈر میں ذیلی استفسار کا استعمال نہیں کر سکتے ہیں @@ -360,6 +368,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,New Value,نئے وی apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,ایک کالم کا اضافہ کریں apps/frappe/frappe/www/contact.html,Your email address,آپ کا ای میل ایڈریس DocType: Desktop Icon,Module,ماڈیول +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{1} میں سے {0} ریکارڈ کامیابی کے ساتھ اپ ڈیٹ ہوئے۔ DocType: Notification,Send Alert On,انتباہ بھیج DocType: Customize Form,"Customize Label, Print Hide, Default etc.",لیبل، پرنٹ چھپائیں تخصیص، پہلے سے طے شدہ وغیرہ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,فائلوں کو غیر زپ کیا جارہا ہے… @@ -393,6 +402,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} خا DocType: System Settings,Currency Precision,کرنسی پریسجن DocType: System Settings,Currency Precision,کرنسی پریسجن apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,ایک ٹرانزیکشن یہ ایک بلاک کر رہا ہے. چند سیکنڈ میں دوبارہ کوشش کریں. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,فلٹرز صاف کریں۔ DocType: Test Runner,App,اپلی کیشن apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,منسلکہ نئے دستاویز سے صحیح طریقے سے منسلک نہیں کیا جا سکتا DocType: Chat Message Attachment,Attachment,منسلکہ @@ -417,6 +427,7 @@ apps/frappe/frappe/core/page/dashboard/dashboard.js,Dashboard,ڈیش بورڈ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,اس وقت ای میلز بھیجنے سے قاصر ہے apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,تلاش یا ایک کمانڈ ٹائپ کریں DocType: Activity Log,Timeline Name,ٹائم لائن کا نام +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,صرف ایک {0} کو بطور پرائمری سیٹ کیا جاسکتا ہے۔ DocType: Email Account,e.g. smtp.gmail.com,مثال کے طور پر smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,ایک نیا قاعدہ شامل DocType: Contact,Sales Master Manager,سیلز ماسٹر مینیجر @@ -434,7 +445,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,ایل ڈی اے پی مڈل نام فیلڈ۔ apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} میں سے {0} درآمد کرنا DocType: GCalendar Account,Allow GCalendar Access,GCalendar رسائی کی اجازت دیں -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} لازمی میدان ہے +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} لازمی میدان ہے apps/frappe/frappe/templates/includes/login/login.js,Login token required,لاگ ان ٹوکن کی ضرورت ہے apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,ماہانہ درجہ بندی: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,متعدد فہرست اشیاء منتخب کریں۔ @@ -464,6 +475,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},رابطہ قائم نہ apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,خود کی طرف سے ایک لفظ اندازہ لگانا آسان ہے. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},آٹو تفویض ناکام: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,تلاش کریں ... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,کمپنی کا انتخاب کریں apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,ولی کے درمیان صرف ممکن ہے گروپ گروپ یا پتی کی نوڈ ٹو پتی کی نوڈ apps/frappe/frappe/utils/file_manager.py,Added {0},شامل کر دیا گیا {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,کوئی مماثل ریکارڈز. کچھ نیا تلاش @@ -476,7 +488,6 @@ DocType: Google Settings,OAuth Client ID,OAuth کلائنٹ کی شناخت DocType: Auto Repeat,Subject,موضوع apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,ڈیسک پر واپس DocType: Web Form,Amount Based On Field,رقم فیلڈ کی بناء -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے ڈیفالٹ ای میل اکاؤنٹ مرتب کریں۔ apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,صارف بانٹیں لئے لازمی ہے DocType: DocField,Hidden,چھپا ہو ا DocType: Web Form,Allow Incomplete Forms,نامکمل فارم کی اجازت دیں @@ -513,6 +524,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} اور {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,بات چیت شروع کرو. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",ہمیشہ پرنٹنگ ڈرافٹ دستاویزات کے لئے سرخی "مسودہ" کا اضافہ apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},اطلاع میں خرابی: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال (سال پہلے) DocType: Data Migration Run,Current Mapping Start,موجودہ نقشہ سازی شروع کریں apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,ای میل سپیم کے طور پر نشان زد کیا گیا ہے DocType: Comment,Website Manager,ویب سائٹ کے مینیجر @@ -551,6 +563,7 @@ DocType: Workflow State,barcode,بارکوڈ apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,ذیلی سوال یا فنکشن کا استعمال محدود ہے apps/frappe/frappe/config/customization.py,Add your own translations,اپنا خود کا ترجمہ شامل کریں DocType: Country,Country Name,ملک کا نام +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,خالی سانچہ۔ DocType: About Us Team Member,About Us Team Member,ہم سے ٹیم کے رکن کے بارے میں apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.",اجازت، رپورٹ، درآمد، برآمد، پرنٹ، ای میل اور سیٹ صارف کی اجازت، لکھیں تخلیق، حذف، جمع کرائیں، منسوخ، ترمیم، کردار اور پڑھیں طرح حقوق ترتیب کی طرف سے دستاویز کی اقسام (کہا جاتا DocTypes) پر مقرر کیا جاتا ہے. DocType: Event,Wednesday,بدھ @@ -562,6 +575,7 @@ DocType: Website Settings,Website Theme Image Link,ویب سائٹ تھیم تص DocType: Web Form,Sidebar Items,سائڈبار اشیا DocType: Web Form,Show as Grid,گرڈ کے طور پر دکھائیں apps/frappe/frappe/installer.py,App {0} already installed,اپلی کیشن {0} کے پاس پہلے سے نصب +DocType: Energy Point Rule,Users assigned to the reference document will get points.,ریفرنس دستاویز میں تفویض کردہ صارفین کو پوائنٹس ملیں گے۔ apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,کوئی پیش نظارہ نہیں DocType: Workflow State,exclamation-sign,فجائیہ نشان apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,ان زپ کردہ {0} فائلیں۔ @@ -597,6 +611,7 @@ DocType: Notification,Days Before,دن پہلے apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,روزانہ کی تقریبات اسی دن ختم ہوجائیں۔ apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,ترمیم... DocType: Workflow State,volume-down,حجم نیچے +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,اس IP پتے سے رسائی کی اجازت نہیں ہے۔ apps/frappe/frappe/desk/reportview.py,No Tags,کوئی ٹیگز DocType: Email Account,Send Notification to,کو نوٹیفکیشن بھیجنے کے DocType: DocField,Collapsible,تہ @@ -653,6 +668,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,ڈیولپر apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,پیدا کیا apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} قطار میں {1} دونوں یو آر ایل اور بچے اشیاء نہیں کر سکتے ہیں +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,ڈیفالٹ پرنٹ زبان۔ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,کے باپ دادا apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,{0} روٹ خارج نہیں کیا جا سکتا @@ -694,6 +710,7 @@ apps/frappe/frappe/contacts/doctype/address/address.py,There is an error in your DocType: Footer Item,"target = ""_blank""",ہدف = "_blank" DocType: Workflow State,hdd,کوائف نامہ DocType: Integration Request,Host,میزبان +DocType: Data Import Beta,Import File,فائل درآمد کریں۔ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,کالم {0} پہلے ہی موجود ہے. DocType: ToDo,High,ہائی apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,نیا واقعہ @@ -722,8 +739,6 @@ DocType: User,Send Notifications for Email threads,ای میل کے دھاگوں apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,پروفیسر apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,نہیں ڈیولپر موڈ میں apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,فائل بیک اپ تیار ہے -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",ضوابط کی ضوابط کے ساتھ ضرب پوائنٹس کے بعد زیادہ سے زیادہ پوائنٹس کی اجازت دی گئی (نوٹ: حد کی حد کی قیمت 0 نہیں) DocType: DocField,In Global Search,گلوبل تلاش میں DocType: System Settings,Brute Force Security,برٹ فورس سیکورٹی DocType: Workflow State,indent-left,پوٹ بائیں @@ -766,6 +781,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',صارف '{0}' پہلے ہی کردار ہے '{1}' DocType: System Settings,Two Factor Authentication method,دو فیکٹر کی توثیق کا طریقہ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,سب سے پہلے نام قائم اور ریکارڈ کو بچانے کے. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 ریکارڈ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},کے ساتھ مشترکہ {0} apps/frappe/frappe/email/queue.py,Unsubscribe,رکنیت ختم DocType: View Log,Reference Name,حوالہ کا نام @@ -816,6 +832,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,ای میل کی حیثیت کو ٹریک کریں DocType: Note,Notify Users On Every Login,ہر لاگ ان پر صارفین کو مطلع DocType: Note,Notify Users On Every Login,ہر لاگ ان پر صارفین کو مطلع +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,کسی بھی فیلڈ کے ساتھ کالم {0} سے مماثل نہیں ہوسکتا ہے۔ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,کامیابی کے ساتھ {0} ریکارڈز کو اپ ڈیٹ کیا گیا۔ DocType: PayPal Settings,API Password,API پاس ورڈ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,ازگر ماڈیول درج کریں یا کنیکٹر کی قسم منتخب کریں apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,FIELDNAME کسٹم فیلڈ کے لئے مقرر نہیں @@ -844,9 +862,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,قیمت کو تبدیل apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},ڈپلیکیٹ نام {0} {1} -DocType: Email Queue,Retry,دوبارہ کوشش کریں +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,دوبارہ کوشش کریں +DocType: Contact Phone,Number,نمبر DocType: Web Form Field,Web Form Field,ویب فارم فیلڈ apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,آپ کے پاس ایک نیا پیغام ہے: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTML میں ترمیم کریں apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,براہ کرم ری ڈائریکٹ یو آر ایل درج کریں apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Restore Original Permissions,حقیقی اجازت بحال @@ -870,7 +890,7 @@ DocType: Notification,View Properties (via Customize Form),(اپنی مرضی ک apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,کسی فائل کو منتخب کرنے کے لئے اس پر کلک کریں۔ DocType: Note Seen By,Note Seen By,کی طرف سے دیکھا نوٹ apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,زیادہ موڑ کے ساتھ ایک طویل بورڈ پیٹرن استعمال کرنے کی کوشش کریں -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,لیڈر +,LeaderBoard,لیڈر DocType: DocType,Default Sort Order,پہلے سے طے شدہ ترتیب ترتیب DocType: Address,Rajasthan,راجستھان DocType: Email Template,Email Reply Help,ای میل جواب دیں مدد @@ -905,6 +925,7 @@ apps/frappe/frappe/utils/data.py,Cent,فیصد apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,ای میل تحریر کریں apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).",کام کے فلو کو کے لئے ریاستوں (مثلا ڈرافٹ، منظور، منسوخ کر دیا گیا). DocType: Print Settings,Allow Print for Draft,ڈرافٹ کے لئے پرنٹ کرنے کی اجازت دیں +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/link_selector.js,Set Quantity,مقرر مقدار apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,تصدیق کے لئے اس دستاویز جمع کرائیں DocType: Contact,Unsubscribed,سبسکرائب @@ -935,6 +956,7 @@ DocType: LDAP Settings,Organizational Unit for Users,صارفین کے لئے ت ,Transaction Log Report,ٹرانزیکشن لاگ رپورٹ DocType: Custom DocPerm,Custom DocPerm,اپنی مرضی DocPerm DocType: Newsletter,Send Unsubscribe Link,رکنیت ختم لنک بھیجیں +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,کچھ منسلک ریکارڈ موجود ہیں جن کو تیار کرنے کی ضرورت ہے اس سے پہلے کہ ہم آپ کی فائل درآمد کرسکیں۔ کیا آپ درج ذیل گمشدہ ریکارڈز خود بخود بنانا چاہتے ہیں؟ DocType: Access Log,Method,طریقہ DocType: Report,Script Report,سکرپٹ رپورٹ DocType: OAuth Authorization Code,Scopes,اسکوپ @@ -976,6 +998,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,کامیابی کے ساتھ اپ لوڈ ہوا۔ apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,آپ انٹرنیٹ سے منسلک ہیں. DocType: Social Login Key,Enable Social Login,سوشل لاگ ان کو فعال کریں +DocType: Data Import Beta,Warnings,انتباہ DocType: Communication,Event,تقریب apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",{0} پر، {1} لکھا ہے: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,معیاری فیلڈ کو خارج نہیں کیا جا سکتا. اگر آپ چاہتے ہیں آپ کو یہ چھپا سکتے ہیں @@ -1031,6 +1054,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,ذیل م DocType: Kanban Board Column,Blue,بلیو apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,تمام اصلاح ہٹا دیا جائے گا. برائے مہربانی تصدیق کریں. DocType: Page,Page HTML,صفحے کے HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,غلط خطوط برآمد کریں۔ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,گروپ کا نام خالی نہیں ہوسکتا ہے. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,مزید نوڈس صرف 'گروپ' قسم نوڈس کے تحت پیدا کیا جا سکتا DocType: SMS Parameter,Header,ہیڈر @@ -1070,13 +1094,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,ختم درخواست apps/frappe/frappe/config/settings.py,Enable / Disable Domains,ڈومینز کو فعال / غیر فعال کریں DocType: Role Permission for Page and Report,Allow Roles,کردار کی اجازت دیں +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,کامیابی کے ساتھ {1} میں سے {0} ریکارڈز درآمد کیا گیا۔ DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")",سادہ ازگر اظہار ، مثال: حیثیت ("غلط") DocType: User,Last Active,ایکٹو آخری DocType: Email Account,SMTP Settings for outgoing emails,سبکدوش ہونے والے ای میلز کے لئے SMTP کی ترتیبات apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,ایک کا انتخاب DocType: Data Export,Filter List,فلٹر کی فہرست DocType: Data Export,Excel,ایکسل -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,آپ کا پاس ورڈ تبدیل کر دیا گیا. یہاں اپنا نیا پاس ورڈ ہے DocType: Email Account,Auto Reply Message,آٹو جواب پیغام DocType: Data Migration Mapping,Condition,حالت apps/frappe/frappe/utils/data.py,{0} hours ago,{0} گھنٹے پہلے @@ -1085,7 +1109,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,صارف کی شناخت DocType: Communication,Sent,بھیجا DocType: Address,Kerala,کیرالہ -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,انتظامیہ۔ DocType: User,Simultaneous Sessions,بیک وقت سیشن DocType: Social Login Key,Client Credentials,کلائنٹ اسناد @@ -1117,7 +1140,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},تاز apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,ماسٹر DocType: DocType,User Cannot Create,صارف نہیں بنا سکتے apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,کامیابی سے ہو گیا۔ -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,فولڈر {0} موجود نہیں ہے۔ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,ڈراپ باکس تک رسائی کی منظوری دے دی جاتی ہے! DocType: Customize Form,Enter Form Type,فارم کی قسم درج DocType: Google Drive,Authorize Google Drive Access,گوگل ڈرائیو تک رسائی کی اجازت دیں۔ @@ -1125,7 +1147,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,کوئی ریکارڈ ٹیگ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,فیلڈ کو ہٹا دیں apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,آپ انٹرنیٹ سے منسلک نہیں ہیں. کچھ دیر بعد دوبارہ کوشش کریں. -DocType: User,Send Password Update Notification,پاس ورڈ اپ ڈیٹ نوٹیفکیشن بھیجیں apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",DOCTYPE، DOCTYPE کی اجازت دیتا ہے. محتاط رہیں! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",پرنٹنگ، ای میل کے لئے اپنی مرضی کے مطابق ترتیب apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0} کا جوڑ @@ -1208,6 +1229,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,غلط توثیق ک apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,گوگل رابطوں کا انضمام غیر فعال ہے۔ DocType: Assignment Rule,Description,تفصیل DocType: Print Settings,Repeat Header and Footer in PDF,پی ڈی ایف میں ہیڈر اور فٹر دہرائیں +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,ناکامی۔ DocType: Address Template,Is Default,پہلے سے طے شدہ DocType: Data Migration Connector,Connector Type,کنیکٹر کی قسم apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,کالم کا نام خالی نہیں رہ سکتا @@ -1220,6 +1242,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} صفحہ پر ج 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,کالم کی بنیاد پر +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/model/document.py,Action Failed,ایکشن میں ناکام apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,صارف کے لئے @@ -1270,6 +1293,7 @@ DocType: Print Settings,Enable Raw Printing,خام طباعت کو فعال کر DocType: Website Route Redirect,Source,ماخذ apps/frappe/frappe/templates/includes/list/filters.html,clear,واضح apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,ختم +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,سیٹ اپ> صارف۔ DocType: Prepared Report,Filter Values,فلٹر اقدار DocType: Communication,User Tags,صارف ٹیگز DocType: Data Migration Run,Fail,ناکام @@ -1326,6 +1350,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,پی ,Activity,سرگرمی DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",مدد:، نظام میں ایک اور ریکارڈ کرنے کے لئے یو آر ایل لنک لنک کے طور پر "# فارم / نوٹ / [نام نوٹ]" استعمال کرنے. (استعمال نہ کریں "HTTP: //") DocType: User Permission,Allow,اجازت دیں +DocType: Data Import Beta,Update Existing Records,موجودہ ریکارڈز کو اپ ڈیٹ کریں۔ apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,کے بار بار الفاظ اور حروف سے بچنے کے DocType: Energy Point Rule,Energy Point Rule,انرجی پوائنٹ رول۔ DocType: Communication,Delayed,تاخیر @@ -1338,9 +1363,7 @@ DocType: Milestone,Track Field,ٹریک فیلڈ DocType: Notification,Set Property After Alert,انتباہ کے بعد جائیداد پر مقرر کریں apps/frappe/frappe/config/customization.py,Add fields to forms.,فارم پر شعبوں میں شامل کریں. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,کچھ کی طرح لگتا ہے اس سائٹ کے پے پال کی ترتیب کے ساتھ غلط ہے. -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/sidebar/review.js,Add Review,جائزہ شامل کریں -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),فونٹ سائز (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,صرف معیاری دستاویزات کو حسب ضرورت فارم سے حسب ضرورت بنانے کی اجازت ہے۔ DocType: Email Account,Sendgrid,میل Sendgrid @@ -1376,6 +1399,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,ف apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,معاف کیجئے گا! آپ آٹو تخلیق تبصروں کو حذف نہیں کر سکتے ہیں DocType: Google Settings,Used For Google Maps Integration.,گوگل میپ انٹیگریشن کے لئے استعمال کیا جاتا ہے۔ apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,حوالہ DOCTYPE +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,کوئی ریکارڈ برآمد نہیں کیا جائے گا۔ DocType: User,System User,سسٹم صارف DocType: Report,Is Standard,معیاری ہے DocType: Desktop Icon,_report,_report @@ -1390,6 +1414,7 @@ DocType: Workflow State,minus-sign,مائنس نشانی apps/frappe/frappe/public/js/frappe/request.js,Not Found,نہیں ملا apps/frappe/frappe/www/printview.py,No {0} permission,کوئی {0} کی اجازت apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ایکسپورٹ اپنی مرضی کی اجازتیں +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,کوئی چیز نہیں ملی. DocType: Data Export,Fields Multicheck,فیلڈز ملائشک DocType: Activity Log,Login,لاگ ان DocType: Web Form,Payments,ادائیگی @@ -1449,7 +1474,7 @@ DocType: Email Account,Default Incoming,پہلے سے طے شدہ موصولہ DocType: Workflow State,repeat,دوبارہ DocType: Website Settings,Banner,بینر DocType: Role,"If disabled, this role will be removed from all users.",غیر فعال، اس کردار کے تمام صارفین کی طرف سے ہٹا دیا جائے گا. -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} فہرست پر جائیں۔ +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,تلاش کرنے میں مدد DocType: Milestone,Milestone Tracker,سنگ میل ٹریکر apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,رجسٹرڈ لیکن غیر فعال @@ -1492,7 +1517,6 @@ DocType: Notification,"Trigger on valid methods like ""before_insert"", ""after_ 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,کل صفحات -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                  No results found for '

                                                                                                                  ,"

                                                                                                                  کے لئے کوئی نتائج نہیں ملے

                                                                                                                  " DocType: DocField,Attach Image,تصویر منسلک DocType: Workflow State,list-alt,فہرست ALT apps/frappe/frappe/www/update-password.html,Password Updated,پاس ورڈ کو اپ ڈیٹ @@ -1512,8 +1536,10 @@ 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,چیٹ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,سیٹ اپ> صارف کی اجازت۔ DocType: LDAP Group Mapping,LDAP Group Mapping,ایل ڈی اے پی گروپ میپنگ۔ DocType: Dashboard Chart,Chart Options,چارٹ کے اختیارات۔ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,بلا عنوان کالم۔ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} سے {1} {2} میں صف # کرنے {3} DocType: Communication,Expired,میعاد ختم ہوگئی apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,لگتا ہے کہ آپ کا استعمال ٹوکن غلط ہے. @@ -1523,6 +1549,7 @@ DocType: DocType,System,سسٹم DocType: Web Form,Max Attachment Size (in MB),میکس منسلکہ سائز (MB میں) apps/frappe/frappe/www/login.html,Have an account? Login,کیا آپ کا اکاؤنٹ ہے؟ لاگ ان DocType: Workflow State,arrow-down,تیر نیچے +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},قطار {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},صارف کو خارج کرنے کی اجازت نہیں {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} کا {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,آخری بار اپ ڈیٹ @@ -1540,6 +1567,7 @@ DocType: Custom Role,Custom Role,اپنی مرضی کے کردار apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,ہوم / ٹیسٹ کے فولڈر 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,آپ اپنا پاس ورڈ درج کریں DocType: Dropbox Settings,Dropbox Access Secret,ڈراپ باکس تک رسائی خفیہ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(لازمی) 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.,فائل میں کوئی ڈیٹا نہیں ملا. براہ کرم اعداد و شمار کے ساتھ نئی فائل دوبارہ بھیجیں. @@ -1611,6 +1639,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,ڈیش ب apps/frappe/frappe/desk/form/assign_to.py,New Message,نیا پیغام DocType: File,Preview HTML,ایچ ٹی ایم ایل کا مشاہدہ کریں DocType: Desktop Icon,query-report,استفسار رپورٹ +DocType: Data Import Beta,Template Warnings,سانچہ انتباہات۔ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,فلٹرز کو بچا لیا DocType: DocField,Percent,فیصد apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,فلٹر مقرر کریں @@ -1632,6 +1661,7 @@ DocType: Custom Field,Custom,اپنی مرضی کے مطابق DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",اگر فعال ہو تو، صارفین کو جو پابندی IP ایڈریس سے لاگ ان کرتے ہیں، دو فیکٹر مصنف کے لئے حوصلہ افزائی نہیں کی جائے گی DocType: Auto Repeat,Get Contacts,رابطے حاصل کریں apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},کے تحت دائر پوسٹس {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,بلا عنوان کالم چھوڑنا۔ DocType: Notification,Send alert if date matches this field's value,تاریخ اس میدان کی قدر سے میل کھاتا ہے تو انتباہ بھیج دیا DocType: Workflow,Transitions,ٹرانزیشن apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} کو {2} @@ -1655,6 +1685,7 @@ DocType: Workflow State,step-backward,قدم پیچھے apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,آپ کی ویب سائٹ تشکیل میں ڈراپ باکس رسائی کی چابیاں مقرر کریں apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,اس ای میل ایڈریس پر بھیجنے کی اجازت دینے کے لیے اس ریکارڈ کو حذف کریں +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)",اگر غیر معیاری پورٹ (جیسے POP3: 995/110 ، IMAP: 993/143) apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,شارٹ کٹس کو اپنی مرضی کے مطابق بنائیں۔ apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,صرف لازمی شعبوں نئے ریکارڈ کے لئے ضروری ہیں. اگر تم چاہو تو غیر لازمی کالم حذف کر سکتے ہیں. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,مزید سرگرمی دکھائیں۔ @@ -1759,7 +1790,9 @@ 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,اے ٹی پی اے اے پی پی +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,خط DocType: DocType,"Naming Options:
                                                                                                                  1. field:[fieldname] - By Field
                                                                                                                  2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                                  3. Prompt - Prompt user for a name
                                                                                                                  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                                  5. @@ -1773,6 +1806,7 @@ DocType: GCalendar Account,Next Sync Token,اگلا ہم آہنگ ٹوکن DocType: Energy Point Settings,Energy Point Settings,انرجی پوائنٹ کی ترتیبات۔ DocType: Async Task,Succeeded,کامیاب apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},میں ضرورت لازمی شعبوں {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                    No results found for '

                                                                                                                    ,"

                                                                                                                    کے لئے کوئی نتائج نہیں ملے

                                                                                                                    " apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,کے لئے ری سیٹ اجازت {0}؟ apps/frappe/frappe/config/desktop.py,Users and Permissions,صارفین اور اجازت DocType: S3 Backup Settings,S3 Backup Settings,S3 بیک اپ ترتیبات @@ -1843,6 +1877,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,میں DocType: Notification,Value Change,قدر تبدیل DocType: Google Contacts,Authorize Google Contacts Access,گوگل رابطوں تک رسائی کی اجازت دیں۔ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,رپورٹ سے صرف تعداد کے شعبوں کو دکھا رہا ہے +DocType: Data Import Beta,Import Type,درآمد کی قسم DocType: Access Log,HTML Page,ایچ ٹی ایم ایل پیج DocType: Address,Subsidiary,ماتحت apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,کیو زیڈ ٹرے سے رابطے کی کوشش کر رہا ہے… @@ -1853,7 +1888,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,غلط س DocType: Custom DocPerm,Write,لکھیں apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,صرف ایڈمنسٹریٹر استفسار / سکرپٹ رپورٹیں پیدا کرنے کے لئے کی اجازت دے دی apps/frappe/frappe/public/js/frappe/form/save.js,Updating,اپ ڈیٹ -DocType: File,Preview,کا مشاہدہ کریں +DocType: Data Import Beta,Preview,کا مشاہدہ کریں apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",فیلڈ "VALUE" لازمی ہے. اپ ڈیٹ کرنے کی قدر کی وضاحت کریں DocType: Customize Form,Use this fieldname to generate title,عنوان پیدا کرنے کے لئے اس کا استعمال کریں FIELDNAME apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,سے درآمد ای میل @@ -1964,7 +1999,6 @@ DocType: GCalendar Account,Session Token,سیشن ٹوکن DocType: Currency,Symbol,علامت apps/frappe/frappe/model/base_document.py,Row #{0}:,صف # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,ڈیٹا کے حذف ہونے کی تصدیق کریں۔ -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,نیا پاس ورڈ ای میل apps/frappe/frappe/auth.py,Login not allowed at this time,اس وقت کی اجازت نہیں لاگ ان DocType: Data Migration Run,Current Mapping Action,موجودہ تعریفیں ایکشن DocType: Dashboard Chart Source,Source Name,ماخذ نام @@ -1977,6 +2011,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,عا apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,اس کے بعد DocType: LDAP Settings,LDAP Email Field,LDAP ای میل فیلڈ apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} کی فہرست +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} ریکارڈ برآمد کریں۔ apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,پہلے صارف کے میں فہرست کرنے کے لئے DocType: User Email,Enable Outgoing,سبکدوش ہونے والے فعال DocType: Address,Fax,فیکس @@ -2035,7 +2070,9 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,پرنٹ دستاویزات apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,میدان میں کودنا۔ DocType: Contact Us Settings,Forward To Email Address,فارورڈ ای میل ایڈریس +DocType: Contact Phone,Is Primary Phone,پرائمری فون ہے۔ DocType: Auto Email Report,Weekdays,ہفتے کے دن +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} ریکارڈ برآمد کیے جائیں گے۔ apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,عنوان کے خانے ایک درست FIELDNAME ہونا ضروری ہے DocType: Post Comment,Post Comment,تبصرہ کریں apps/frappe/frappe/config/core.py,Documents,دستاویزات @@ -2054,7 +2091,9 @@ eval:doc.age>18",یہ فیلڈ دکھایا جائے گا FIELDNAME یہاں DocType: Social Login Key,Office 365,آفس 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,آج apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,آج +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",آپ کو اس سیٹ ہے ایک بار، صارفین کو صرف قابل رسائی دستاویزات ہو جائے گا (مثال کے طور پر. بلاگ پوسٹ) لنک (مثلا بلاگر) موجود ہے جہاں. +DocType: Data Import Beta,Submit After Import,درآمد کے بعد جمع کروائیں۔ DocType: Error Log,Log of Scheduler Errors,تخسوچک نقائص کے لاگ ان DocType: User,Bio,تعارف DocType: OAuth Client,App Client Secret,اپلی کلائنٹ سیکرٹ @@ -2073,10 +2112,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,لاگ ان صفحے میں غیر فعال کسٹمر سائن اپ لنک apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,/ مالک کو تفویض DocType: Workflow State,arrow-left,تیر بائیں +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1 ریکارڈ برآمد کریں۔ DocType: Workflow State,fullscreen,مکمل اسکرین یا بڑی اسکرین DocType: Chat Token,Chat Token,چیٹ ٹوکن apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,چارٹ بنائیں۔ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,درآمد نہ کریں۔ DocType: Web Page,Center,سینٹر DocType: Notification,Value To Be Set,ویلیو مقرر کیا جا کرنے کے لئے apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},ترمیم کریں {0} @@ -2095,6 +2136,7 @@ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under DocType: Print Format,Show Section Headings,دکھائیں دفعہ سرخیاں DocType: Bulk Update,Limit,حد apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,ایک نیا حصہ شامل کریں +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,فلٹر ریکارڈز apps/frappe/frappe/www/printview.py,No template found at path: {0},راستے میں نہیں ملا سانچے: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,کوئی ای میل اکاؤنٹ DocType: Comment,Cancelled,منسوخ @@ -2180,7 +2222,9 @@ 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} نہیں 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 ہو جائے گا +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,گلوبل سرچ دستاویز کی قسمیں دوبارہ ترتیب دیں۔ ,Lead Conversion Time,لیڈر تبادلوں کے وقت apps/frappe/frappe/desk/page/activity/activity.js,Build Report,رپورٹ تشکیل دیں DocType: Note,Notify users with a popup when they log in,وہ میں لاگ ان کریں جب ایک پاپ اپ کے ساتھ صارفین کو مطلع کریں @@ -2200,8 +2244,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,بند کریں 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,سیٹ اپ> صارف کی اجازت۔ -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,اپ ڈیٹ کریں +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,اپ ڈیٹ کریں DocType: Transaction Log,Transaction Hash,ٹرانزیکشن ہش DocType: Error Snapshot,Snapshot View,سنیپشاٹ دیکھیں apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,بھیجنے سے پہلے نیوز لیٹر بچا لو @@ -2228,7 +2271,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,پوائنٹ الا DocType: SMS Settings,SMS Gateway URL,SMS گیٹ وے یو آر ایل apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} نہیں ہو سکتا "{2}". اس میں سے ایک ہونا چاہئے "{3}" apps/frappe/frappe/utils/data.py,{0} or {1},{0} یا {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,پاس ورڈ کی تازہ کاری کریں DocType: Workflow State,trash,ردی کی ٹوکری DocType: System Settings,Older backups will be automatically deleted,پرانے بیک اپ کو خود کار طریقے سے خارج کر دیا جائے گا apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,غلط رسائی کلیدی شناخت یا خفیہ رسائی کی چابی. @@ -2256,6 +2298,7 @@ apps/frappe/frappe/public/js/frappe/social/pages/UserList.vue,No user found,کو DocType: Address,Preferred Shipping Address,پسندیدہ شپنگ ایڈریس apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,خط سر کے ساتھ apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} بنا یا {1} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں ہے۔ براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے نیا ای میل اکاؤنٹ بنائیں۔ DocType: S3 Backup Settings,eu-west-1,eu-West-1۔ DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",اگر یہ جانچ پڑتال کی جاتی ہے تو، درست ڈیٹا کے ساتھ قطار درآمد کی جائیں گی اور بعد میں درآمد کرنے کے لئے قطع قطاروں کو نئی فائل میں ڈمپ کیا جائے گا. apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,دستاویز کے کردار کے صارفین کی طرف سے صرف قابل تدوین ہے @@ -2282,6 +2325,7 @@ DocType: Custom Field,Is Mandatory Field,لازمی میدان ہے DocType: User,Website User,ویب سائٹ کے صارف apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,پی ڈی ایف میں طباعت کرتے وقت کچھ کالم منقطع ہو سکتے ہیں۔ کالموں کی تعداد 10 سے کم رکھنے کی کوشش کریں۔ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,نہیں برابر +DocType: Data Import Beta,Don't Send Emails,ای میلز مت بھیجیں۔ DocType: Integration Request,Integration Request Service,انٹیگریشن کی درخواست سروس DocType: Access Log,Access Log,رسائی لاگ DocType: Website Script,Script to attach to all web pages.,سکرپٹ تمام ویب صفحات سے منسلک کرنے. @@ -2321,6 +2365,7 @@ DocType: Contact,Passive,غیر فعال DocType: Auto Repeat,Accounts Manager,اکاؤنٹس منیجر apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} کے لئے تفویض apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,آپ کی ادائیگی کو منسوخ کر دیا گیا ہے. +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے پہلے سے طے شدہ ای میل اکاؤنٹ مرتب کریں۔ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,منتخب فائل کی قسم apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,سب دیکھیں DocType: Help Article,Knowledge Base Editor,سویدی ایڈیٹر @@ -2352,6 +2397,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,ڈیٹا apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,دستاویز کی حیثیت apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,منظوری ضروری ہے۔ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,ہم آپ کی فائل کو درآمد کرنے سے پہلے درج ذیل ریکارڈز تخلیق کرنے کی ضرورت ہے۔ DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth کا اجازت کوڈ apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,درآمد کرنے کی اجازت نہیں DocType: Deleted Document,Deleted DocType,خارج کر دیا گیا DOCTYPE @@ -2404,8 +2450,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API کریڈٹیزس apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,سیشن شروع ناکام ہوگیا apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,سیشن شروع ناکام ہوگیا apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},یہ ای میل {0} کو بھیجا اور میں کاپی کیا گیا {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},اس دستاویز کو پیش کیا {0} DocType: Workflow State,th,ویں -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال (سال پہلے) DocType: Social Login Key,Provider Name,فراہم کنندہ کا نام apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},ایک نئے {0} DocType: Contact,Google Contacts,گوگل رابطے۔ @@ -2413,6 +2459,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar اکاؤنٹ DocType: Email Rule,Is Spam,فضول ہے apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},رپورٹ {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},کھولیں {0} +DocType: Data Import Beta,Import Warnings,انتباہات درآمد کریں۔ DocType: OAuth Client,Default Redirect URI,پہلے سے طے شدہ لوٹایا URI DocType: Auto Repeat,Recipients,وصول کنندگان DocType: System Settings,Choose authentication method to be used by all users,تمام صارفین کی طرف سے استعمال کرنے کے لئے توثیق کا طریقہ منتخب کریں @@ -2542,6 +2589,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,نیا بنائیں DocType: Workflow State,chevron-down,شیوران نیچے apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),نہیں بھیجا ای میل {0} (غیر فعال / رکنیت ختم) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,برآمد کرنے کے لئے کھیتوں کو منتخب کریں۔ DocType: Async Task,Traceback,واپس تلاش کرنا، پھر جانچنا DocType: Currency,Smallest Currency Fraction Value,چھوٹا کرنسی کسر ویلیو apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,رپورٹ کی تیاری۔ @@ -2550,6 +2598,7 @@ DocType: Workflow State,th-list,ویں کی فہرست DocType: Web Page,Enable Comments,تبصرے فعال کریں apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,نوٹس DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),صرف اس آئی پی ایڈریس سے صارف کو محدود. ایک سے زیادہ IP پتوں کو کوما سے الگ کی طرف سے شامل کیا جا سکتا ہے. بھی طرح جزوی IP پتوں قبول (111.111.111) +DocType: Data Import Beta,Import Preview,پیش نظارہ امپورٹ کریں۔ DocType: Communication,From,سے apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,سب سے پہلے ایک گروپ نوڈ کو منتخب کریں. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},تلاش {0} میں {1} @@ -2647,6 +2696,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,کے درمیان DocType: Social Login Key,fairlogin,عادلین DocType: Async Task,Queued,قطار میں +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,سیٹ اپ> فارم کو کسٹمائز کریں۔ DocType: Braintree Settings,Use Sandbox,سینڈباکس استعمال apps/frappe/frappe/utils/goal.py,This month,اس مہینے apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,نئے اپنی مرضی کے پرنٹ کی شکل @@ -2661,6 +2711,7 @@ DocType: Session Default,Session Default,سیشن ڈیفالٹ۔ DocType: Chat Room,Last Message,آخری پیغام DocType: OAuth Bearer Token,Access Token,رسائی کا ٹوکن DocType: About Us Settings,Org History,تنظیم کی تاریخ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,تقریبا{ {0} منٹ باقی ہیں۔ DocType: Auto Repeat,Next Schedule Date,اگلی شیڈول تاریخ DocType: Workflow,Workflow Name,کام کے فلو کو نام DocType: DocShare,Notify by Email,ای میل کے ذریعے مطلع کریں @@ -2690,6 +2741,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,مصنف apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,بھیجنے دوبارہ شروع apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,دوبارہ کھولنے +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,انتباہات دکھائیں۔ apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},براہ مہربانی دوبارہ کوشش {0} DocType: Address,Purchase User,خریداری صارف DocType: Data Migration Run,Push Failed,پش ناکام ہوگیا @@ -2727,6 +2779,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,برت apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,آپ کو نیوز لیٹر کو دیکھنے کی اجازت نہیں ہے. DocType: User,Interests,دلچسپیاں apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,پاس ورڈ دوبارہ ترتیب کی ہدایات آپ کا ای میل کرنے کے لئے بھیج دیا گیا ہے +DocType: Energy Point Rule,Allot Points To Assigned Users,تفویض شدہ صارفین کو پوائنٹس الاٹ کریں۔ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",لیول 0 دستاویز کی سطح کی اجازت، \ فیلڈ کی سطح کی اجازت کے لئے اعلی سطح کے لئے ہے. DocType: Contact Email,Is Primary,پرائمری ہے۔ @@ -2750,6 +2803,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,Publishable کلید DocType: Stripe Settings,Publishable Key,Publishable کلید apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,درآمد شروع کریں +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,برآمد کی قسم DocType: Workflow State,circle-arrow-left,دائرے تیر بائیں DocType: System Settings,Force User to Reset Password,صارف کو پاس ورڈ کو دوبارہ ترتیب دینے پر مجبور کریں۔ apps/frappe/frappe/sessions.py,Redis cache server not running. Please contact Administrator / Tech support,Redis کیشے سرور نہیں چل. منتظم / ٹیک مدد سے رابطہ کریں @@ -2764,10 +2818,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,پرامپٹ کے ذ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ای میل ان باکس DocType: Auto Email Report,Filters Display,فلٹرز ڈسپلے apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",ترمیم کرنے کے لئے "ترمیم شدہ_تعلیم" فیلڈ موجود ہونا چاہئے۔ +DocType: Contact,Numbers,نمبر apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,فلٹرز کو محفوظ کریں۔ DocType: Address,Plant,پلانٹ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,تمام کو جواب دیں DocType: DocType,Setup,سیٹ اپ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,تمام ریکارڈز DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ای میل ایڈریس جس کے گوگل روابط کو ہم آہنگی کرنا ہے۔ DocType: Email Account,Initial Sync Count,ابتدائی مطابقت پذیری شمار DocType: Workflow State,glass,گلاس @@ -2792,7 +2848,7 @@ DocType: Workflow State,font,فونٹ DocType: DocType,Show Preview Popup,پیش نظارہ پاپ اپ دکھائیں۔ apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,یہ ایک سب سے اوپر 100 عام پاسورڈ ہے. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,پاپ اپ کو چالو براہ کرم -DocType: User,Mobile No,موبائل نہیں +DocType: Contact,Mobile No,موبائل نہیں DocType: Communication,Text Content,متن کے مواد DocType: Customize Form Field,Is Custom Field,اپنی مرضی کے میدان ہے DocType: Workflow,"If checked, all other workflows become inactive.",جانچ پڑتال تو، دیگر تمام workflows کے غیر فعال ہو. @@ -2838,6 +2894,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,فا apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,نئے پرنٹ کی شکل کا نام apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,سائڈبار ٹوگل کریں DocType: Data Migration Run,Pull Insert,داخل کریں +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",ضرب کی قیمت کے ساتھ ضرب پوائنٹس کے بعد زیادہ سے زیادہ پوائنٹس کی اجازت دی گئی (نوٹ: کسی حد کے لئے اس فیلڈ کو خالی نہیں چھوڑیں یا 0 مرتب کریں) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,غلط سانچہ۔ apps/frappe/frappe/model/db_query.py,Illegal SQL Query,غیر قانونی ایس کیو ایل سوال apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,لازمی: DocType: Chat Message,Mentions,دماغ @@ -2877,9 +2936,11 @@ DocType: Braintree Settings,Public Key,عوامی کلید DocType: GSuite Settings,GSuite Settings,GSuite ترتیبات DocType: Address,Links,روابط DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,اس اکاؤنٹ میں درج ای میل ایڈریس نام استعمال کرتے ہیں جو اس اکاؤنٹ کو استعمال کرکے بھیجے گئے تمام ای میلز کے لئے مرسل کا نام ہے۔ +DocType: Energy Point Rule,Field To Check,چیک کرنے کے لئے فیلڈ apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,براہ کرم دستاویز کی قسم منتخب کریں. apps/frappe/frappe/model/base_document.py,Value missing for,قیمت کے لئے لاپتہ apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,چائلڈ شامل +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,درآمد کی پیشرفت۔ DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",اگر شرط مطمئن ہے تو صارف کو پوائنٹس سے نوازا جائے گا۔ جیسے doc.status == 'بند' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: پیش ریکارڈ خارج نہیں کیا جا سکتا. @@ -2965,6 +3026,7 @@ apps/frappe/frappe/database/database.py,Too many writes in one request. Please s apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,گوگل ڈرائیو تشکیل دی گئی ہے۔ apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,اقدار کو تبدیل کر دیا DocType: Workflow State,arrow-up,تیر اپ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} ٹیبل کے ل at کم از کم ایک قطار ہونی چاہئے۔ DocType: OAuth Bearer Token,Expires In,میں ختم ہوجاتا ہے DocType: DocField,Allow on Submit,جمع کرانے پر کی اجازت دیں DocType: DocField,HTML,HTML @@ -3049,6 +3111,7 @@ DocType: Custom Field,Options Help,اختیارات مدد 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 ریکارڈ برآمد کیا جائے گا۔ 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 تک محدود @@ -3065,6 +3128,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfication کوڈ DocType: Webhook,Webhook Request,Webhook درخواست apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},*** میں ناکام ہوگیا: {0} سے {1}: {2} DocType: Data Migration Mapping,Mapping Type,نقشہ سازی کی قسم +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,لازمی کریں apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,براؤز کریں apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.",علامات، ہندسوں، یا بڑے حروف کی ضرورت نہیں ہے. DocType: DocField,Currency,کرنسی @@ -3100,6 +3164,7 @@ apps/frappe/frappe/utils/file_manager.py,Removed {0},ہٹا دیا گیا {0} DocType: SMS Settings,SMS Settings,SMS کی ترتیبات DocType: Company History,Highlight,نمایاں کریں DocType: Dashboard Chart,Sum,رقم +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,ڈیٹا امپورٹ کے ذریعے۔ DocType: OAuth Provider Settings,Force,فورس apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},آخری بار مطابقت پذیر {0} DocType: DocField,Fold,گنا @@ -3168,6 +3233,7 @@ DocType: Website Settings,Top Bar Items,اوپر بار اشیا DocType: Notification,Print Settings,پرنٹ ترتیبات DocType: Page,Yes,جی ہاں DocType: DocType,Max Attachments,زیادہ سے زیادہ کے ساتھ منسلک +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,تقریبا About {0} سیکنڈ باقی ہے۔ DocType: Calendar View,End Date Field,اختتام تاریخ فیلڈ apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,عالمی شارٹ کٹ DocType: Desktop Icon,Page,صفحہ @@ -3275,6 +3341,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite رسائی کی اجازت DocType: DocType,DESC,DESC DocType: DocType,Naming,نام apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,تمام منتخب کریں +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},کالم {0} apps/frappe/frappe/config/customization.py,Custom Translations,اپنی مرضی کے ترجمہ apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,پیش رفت apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,کردار کی طرف سے @@ -3316,6 +3383,7 @@ DocType: Stripe Settings,Stripe Settings,پٹی ترتیبات DocType: Stripe Settings,Stripe Settings,پٹی ترتیبات DocType: Data Migration Mapping,Data Migration Mapping,ڈیٹا منتقلی نقشہ سازی DocType: Auto Email Report,Period,مدت +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,تقریبا{ {0} منٹ باقی ہے۔ apps/frappe/frappe/www/login.py,Invalid Login Token,غلط لاگ ان ٹوکن apps/frappe/frappe/public/js/frappe/chat.js,Discard,رکھو apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 گھنٹہ پہلے @@ -3340,6 +3408,7 @@ DocType: Calendar View,Start Date Field,تاریخ کی تاریخ شروع کر DocType: Role,Role Name,رول نام apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,ڈیسک سے جوڑئیے apps/frappe/frappe/config/core.py,Script or Query reports,سکرپٹ یا استفسار رپورٹ +DocType: Contact Phone,Is Primary Mobile,پرائمری موبائل ہے۔ DocType: Workflow Document State,Workflow Document State,کام کے فلو کو دستاویز ریاست apps/frappe/frappe/public/js/frappe/request.js,File too big,بہت بڑی فائل apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,ای میل اکاؤنٹ کئی بار شامل کیا @@ -3384,6 +3453,7 @@ DocType: DocField,Float,فلوٹ DocType: Print Settings,Page Settings,صفحہ ترتیبات apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,بچت ... apps/frappe/frappe/www/update-password.html,Invalid Password,غلط پاسورڈ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,کامیابی کے ساتھ {1} میں سے {0} ریکارڈ درآمد کیا گیا۔ DocType: Contact,Purchase Master Manager,خریداری ماسٹر مینیجر apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,پبلک / پرائیویٹ ٹوگل کرنے کے لئے لاک آئیکون پر کلک کریں۔ DocType: Module Def,Module Name,ماڈیول کا نام @@ -3416,6 +3486,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,درست موبائل نمبر درج کریں apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,خصوصیات میں سے کچھ آپ کے براؤزر میں کام نہیں کر سکتے. تازہ ترین ورژن کے لئے اپنے براؤزر کو اپ ڈیٹ کریں. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",، معلوم نہیں پوچھیں 'مدد' +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},اس دستاویز کو منسوخ کردیا {0} DocType: DocType,Comments and Communications will be associated with this linked document,تبصرے اور کموینیکیشن اس منسلک دستاویز کے ساتھ منسلک کیا جائے گا apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,فلٹر ... DocType: Workflow State,bold,جرات مندانہ @@ -3490,6 +3561,7 @@ DocType: Print Settings,PDF Settings,پی ڈی ایف کی ترتیبات DocType: Kanban Board Column,Column Name,کالم کا نام DocType: Language,Based On,پر مبنی DocType: Email Account,"For more information, click here.","مزید معلومات کے لئے ، یہاں کلک کریں ۔" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,کالموں کی تعداد ڈیٹا کے ساتھ مماثل نہیں ہے۔ apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,پہلے سے طے شدہ بنائیں apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,پھانسی کا وقت: {0} سیکنڈ apps/frappe/frappe/model/utils/__init__.py,Invalid include path,راستہ شامل کرنا غلط ہے۔ @@ -3577,7 +3649,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You,س apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have atleast one recipient,نیوز لیٹر میں کم سے کم ایک وصول کنندہ ہونا چاہئے۔ DocType: Deleted Document,GCalendar Sync ID,GCalendar Sync ID DocType: Prepared Report,Report Start Time,شروع وقت کی اطلاع دیں -apps/frappe/frappe/config/settings.py,Export Data,برآمد ڈیٹا +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,برآمد ڈیٹا 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.,یہ ایک پس منظر کی رپورٹ ہے۔ براہ کرم مناسب فلٹرز مرتب کریں اور پھر ایک نیا تیار کریں۔ @@ -3594,7 +3666,6 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},{0} تخلی DocType: Report,Disable Prepared Report,تیار کردہ رپورٹ کو غیر فعال کریں۔ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,غیر قانونی رسائی ٹوکن. دوبارہ کوشش کریں apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",درخواست ایک نیا ورژن کے لئے اپ ڈیٹ کیا گیا ہے، اس صفحے کو ریفریش کریں -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.,پتہ کا کوئی طے شدہ سانچہ نہیں ملا۔ براہ کرم سیٹ اپ> پرنٹنگ اور برانڈنگ> ایڈریس ٹیمپلیٹ سے ایک نیا بنائیں۔ DocType: Notification,Optional: The alert will be sent if this expression is true,اختیاری: اس اظہار سچ ہے تو الرٹ بھیجا جائے گا DocType: Data Migration Plan,Plan Name,منصوبہ کا نام DocType: Print Settings,Print with letterhead,لیٹرہیڈ ساتھ پرنٹ @@ -3634,6 +3705,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: بغیر منسوخ ترمیم مقرر نہیں کر سکتے ہیں apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,مکمل پیج DocType: DocType,Is Child Table,بچوں کی میز ہے +DocType: Data Import Beta,Template Options,سانچہ کے اختیارات۔ apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} میں سے ایک ہونا ضروری ہے {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} اس وقت اس دستاویز دیکھ رہا ہے apps/frappe/frappe/config/core.py,Background Email Queue,پس منظر ای میل قطار @@ -3641,7 +3713,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,پاس ورڈ ری DocType: Communication,Opened,کھولا DocType: Workflow State,chevron-left,شیوران بائیں DocType: Communication,Sending,بھیجنا -apps/frappe/frappe/auth.py,Not allowed from this IP Address,اس IP ایڈریس سے کی اجازت نہیں DocType: Website Slideshow,This goes above the slideshow.,یہ شو اوپر جاتا ہے. DocType: Contact,Last Name,آخری نام DocType: Event,Private,ذاتی @@ -3655,7 +3726,6 @@ DocType: Workflow Action,Workflow Action,کام کے فلو کو ایکشن apps/frappe/frappe/utils/bot.py,I found these: ,میں نے ان کو پایا: DocType: Event,Send an email reminder in the morning,صبح میں ایک ای میل یاددہانی بھیجیں DocType: Blog Post,Published On,پر شائع -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں ہے۔ براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے نیا ای میل اکاؤنٹ بنائیں۔ DocType: Contact,Gender,صنفی apps/frappe/frappe/website/doctype/web_form/web_form.py,Mandatory Information missing:,لازمی معلومات لاپتہ: apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Check Request URL,درخواست URL چیک کریں @@ -3675,7 +3745,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,انتباہ سائن ان کریں DocType: Prepared Report,Prepared Report,تیار کردہ رپورٹ apps/frappe/frappe/config/website.py,Add meta tags to your web pages,اپنے ویب صفحات میں میٹا ٹیگ شامل کریں۔ -DocType: Contact,Phone Nos,فون نمبر DocType: Workflow State,User,صارف DocType: Website Settings,"Show title in browser window as ""Prefix - title""",براؤزر ونڈو میں شو عنوان "اپسرگ - عنوان" DocType: Payment Gateway,Gateway Settings,گیٹ وے کی ترتیبات @@ -3700,7 +3769,7 @@ DocType: Custom Field,Insert After,بعد ڈالیں DocType: Event,Sync with Google Calendar,گوگل کیلنڈر کے ساتھ ہم آہنگی بنائیں۔ DocType: Access Log,Report Name,رپورٹ کا نام DocType: Desktop Icon,Reverse Icon Color,ریورس آئکن رنگ -DocType: Notification,Save,محفوظ کریں +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,محفوظ کریں apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,اگلے شیڈول شدہ تاریخ apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,جس کو کم سے کم اسائنمنٹس ہوں اسے تفویض کریں۔ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,دفعہ سرخی @@ -3723,7 +3792,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,سیٹ اپ> فارم کو کسٹمائز کریں۔ DocType: Google Contacts,Last Sync On,آخری مطابقت پذیری DocType: Deleted Document,Deleted Document,حذف شدہ دستاویز apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,افوہ! کچھ غلط ہو گیا @@ -3751,6 +3819,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,انرجی پوائنٹ کی تازہ کاری۔ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',ایک اور طریقہ ادائیگی کا انتخاب کریں. تعمیل پے پال کرنسی میں لین دین کی حمایت نہیں کرتا '{0}' DocType: Chat Message,Room Type,کمرہ کی قسم +DocType: Data Import Beta,Import Log Preview,لاگ کا مشاہدہ درآمد کریں۔ apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,تلاش فیلڈ {0} درست نہیں ہے apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,اپ لوڈ فائل DocType: Workflow State,ok-circle,ٹھیک دائرے @@ -3816,6 +3885,7 @@ DocType: DocType,Allow Auto Repeat,خودکار اعادہ کی اجازت دی apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,کوئی قدر نہیں ظاہر کرنے کے لئے۔ DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,ای میل سانچہ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,کامیابی کے ساتھ {0} ریکارڈ کو اپ ڈیٹ کیا گیا۔ apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,ضرورت دونوں لاگ ان اور پاس ورڈ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,تازہ ترین دستاویز حاصل کرنے کے لئے تازہ کریں. DocType: User,Security Settings,سیکورٹی کی ترتیبات diff --git a/frappe/translations/uz.csv b/frappe/translations/uz.csv index d33240845f..a9c258beaa 100644 --- a/frappe/translations/uz.csv +++ b/frappe/translations/uz.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Quyidagi ilovalar uchun yangi {} versiyalar mavjud apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Miqdor maydoni tanlang. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Import qilingan fayl yuklanmoqda ... DocType: Assignment Rule,Last User,So'nggi foydalanuvchi apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",{1} tomonidan sizga yangi vazifa ({0}) tayinlangan. {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Seans birlamchi sozlamalari saqlandi +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Faylni qayta yuklash DocType: Email Queue,Email Queue records.,Email Queue qaydlari. DocType: Post,Post,Post DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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 @@ -68,7 +71,7 @@ DocType: Auto Repeat,Monthly,Oylik DocType: Address,Uttarakhand,Uttarkand DocType: Email Account,Enable Incoming,Kirishni yoqish apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Xavf -apps/frappe/frappe/www/login.py,Email Address,Elektron pochta manzili +DocType: Address,Email Address,Elektron pochta manzili DocType: Workflow State,th-large,juda katta DocType: Communication,Unread Notification Sent,O'qilmagan xabarnoma yuborildi apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Eksportga ruxsat berilmaydi. Eksport qilish uchun sizga {0} rol kerak. @@ -97,7 +100,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Administrat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""Savollar so'rovi, qo'llab-quvvatlash so'rovi" va hokazo. Kabi yangi variantni tanlang yoki vergul bilan ajrating." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Teg qo'shish ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret -DocType: Data Migration Run,Insert,Qo'shish +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Qo'shish apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Google Drive kirishiga ruxsat bering apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} ni tanlang apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,"Iltimos, asosiy URL manzilini kiriting" @@ -117,17 +120,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 daqiqa o 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 DocType: Company History,Company History,Kompaniya tarixi -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Nolga o'rnatish +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Nolga o'rnatish DocType: Workflow State,volume-up,ovoz balandligi apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Veb-ilovalar API so'rovlarini veb-ilovalarga chaqiradi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Kuzatish rejimini ko'rsatish DocType: DocType,Default Print Format,Standart nashr formati DocType: Workflow State,Tags,Teglar apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Hech kim: Ish xarining oxiri apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} maydonini yagona noyob mavjud qiymatlar bo'lgani uchun {1} da noyob deb belgilash mumkin emas -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Hujjat turlari +DocType: Global Search Settings,Document Types,Hujjat turlari DocType: Address,Jammu and Kashmir,Jammu va Kashmir DocType: Workflow,Workflow State Field,Ish jarayoni holati maydoni -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sozlash> Foydalanuvchi DocType: Language,Guest,Mehmon DocType: DocType,Title Field,Sarlavha maydoni DocType: Error Log,Error Log,Xato jurnali @@ -136,6 +139,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""","Abcabcabc" kabi takrorlash faqat "abc" ga qaraganda ancha qiynaladi DocType: Notification,Channel,Kanal apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Agar bu ruxsatsiz deb hisoblasangiz, ma'mur parolini o'zgartiring." +DocType: Data Import Beta,Data Import Beta,Beta-ma’lumotlarni import qilish apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} majburiydir DocType: Assignment Rule,Assignment Rules,Topshirish qoidalari DocType: Workflow State,eject,chiqarish @@ -161,6 +165,7 @@ DocType: Workflow Action Master,Workflow Action Name,Ish oqimining nomi apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType birlashtirilmaydi DocType: Web Form Field,Fieldtype,Maydon turi apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Zip fayli emas +DocType: Global Search DocType,Global Search DocType,Global qidirish DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                                    New {{ doc.doctype }} #{{ doc.name }}
                                                                                                                    ","Dinamik mavzuni qo'shish uchun, kabi jinja teglaridan foydalaning
                                                                                                                     New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                                    " @@ -182,6 +187,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Doc faoliyati apps/frappe/frappe/public/js/frappe/utils/user.js,You,Siz DocType: Braintree Settings,Braintree Settings,Braintree Sozlamalari +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,{0} yozuvlar muvaffaqiyatli yaratildi. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filtrni saqlang DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},{0} o'chirib bo'lmadi @@ -208,6 +214,7 @@ DocType: SMS Settings,Enter url parameter for message,Xabar uchun url parametrin apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Avtomatik takrorlash ushbu hujjat uchun yaratilgan apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Hisobotni brauzeringizda ko'rish apps/frappe/frappe/config/desk.py,Event and other calendars.,Voqealar va boshqa kalendarlar. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (1 qator majburiy) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Fikrlarni yuborish uchun barcha joylar kerak. DocType: Custom Script,Adds a client custom script to a DocType,DocType-ga mijozning maxsus skriptini qo'shadi DocType: Print Settings,Printer Name,Printer nomi @@ -250,7 +257,6 @@ DocType: Bulk Update,Bulk Update,Ommaviy yangilanish DocType: Workflow State,chevron-up,chevron-up DocType: DocType,Allow Guest to View,Mehmonni ko'rishga ruxsat berish apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} {1} bilan bir xil bo'lmasligi kerak -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: 10dan foydalaning (5 va 10 orasidagi qiymatlar uchun)." DocType: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,{0} mahsulotni doimiy o'chirib tashlash kerakmi? apps/frappe/frappe/utils/oauth.py,Not Allowed,Ruxsat berilmagan @@ -266,6 +272,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Ko'rish DocType: Email Group,Total Subscribers,Jami abonentlar apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Top {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Qator raqami apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Agar rolda 0 darajasida kirish imkoni bo'lmasa, unda yuqori darajalar mazmunsiz bo'ladi." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Turli Saqlash DocType: Comment,Seen,Ko'rinadi @@ -305,6 +312,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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: DocType: Workflow,Defines workflow states and rules for a document.,Hujjat uchun ish oqimining qoidalarini va qoidalarini belgilaydi. DocType: Workflow State,Filter,Filtrni tanlang @@ -327,6 +335,7 @@ DocType: Activity Log,Closed,Yopiq DocType: Blog Settings,Blog Title,Blog sarlavhasi apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Standart rollarni o'chirib bo'lmaydi apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Chat turi +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Xaritadagi ustunlar DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Xabarnoma apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Pastki so'rovlarni tartibda ishlatish mumkin emas @@ -362,6 +371,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Ustun qo'shing apps/frappe/frappe/www/contact.html,Your email address,Sizning e-pochta manzilingiz DocType: Desktop Icon,Module,Modul +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,{1} dan {0} yozuvi muvaffaqiyatli yangilandi. DocType: Notification,Send Alert On,Ogohlantirish yoqilsin DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Yorliqni moslash, bosib chiqarishni yashirish, asl qiymati va h.k." apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Fayllar ochilmoqda ... @@ -392,6 +402,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has be apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,{0} foydalanuvchisini o'chirib bo'lmaydi DocType: System Settings,Currency Precision,Valyutalar aniqligi apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,"Yana bir bitim buni blokirovka qiladi. Iltimos, bir necha soniyadan so'ng qayta urinib ko'ring." +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Filtrlarni tozalang DocType: Test Runner,App,Ilova apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Qo'shimchalar yangi hujjatga to'g'ri bog'langan bo'lishi mumkin emas DocType: Chat Message Attachment,Attachment,Qo'shimcha @@ -417,6 +428,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Hozirgi vaqt apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Google Taqvimi - Google Taqvimda {0} hodisasini yangilab bo'lmadi, xato kodi {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Buyruqni tering yoki yozing DocType: Activity Log,Timeline Name,Vaqt jadvalining nomi +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Faqat bitta {0} asosiy sifatida o'rnatilishi mumkin. DocType: Email Account,e.g. smtp.gmail.com,"masalan, smtp.gmail.com" apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Yangi qoidani qo'shing DocType: Contact,Sales Master Manager,Sotuvlar bo'yicha menejer @@ -433,7 +445,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP-familiya maydoni apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} dan {0} ni import qilish DocType: GCalendar Account,Allow GCalendar Access,GCalendarga ruxsat berish -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} - majburiy maydon +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} - majburiy maydon apps/frappe/frappe/templates/includes/login/login.js,Login token required,Kirish tokenlari talab qilinadi apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Oylik reyting: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Bir nechta ro'yxat elementlarini tanlang @@ -463,6 +475,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Ulanmayapti: {0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,O'z so'zini o'zi taxmin qilish oson. apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Avtomatik tayinlash amalga oshmadi: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Qidirmoq... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,"Iltimos, Kompaniya-ni tanlang" apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Birlashish faqatgina Guruh-guruh yoki barg tugunlaridan to-bargli tugungacha bo'lishi mumkin apps/frappe/frappe/utils/file_manager.py,Added {0},Qo'shilgan {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Hech qanday mos yozuvlar yo'q. Yangi narsalarni qidirish @@ -475,7 +488,6 @@ DocType: Google Settings,OAuth Client ID,OAuth mijoz identifikatori DocType: Auto Repeat,Subject,Mavzu apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Stolga qayting DocType: Web Form,Amount Based On Field,Maydondagi miqdori -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Foydalanuvchi ulashish uchun majburiydir DocType: DocField,Hidden,Yashirin DocType: Web Form,Allow Incomplete Forms,Tugatilmagan shakllarga ruxsat berish @@ -512,6 +524,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} va {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Suhbatni boshlang. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Loyiha hujjatlarini chop etish uchun har doim "Taslak" qo'shing apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Bildirishnomada xato: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yil oldin DocType: Data Migration Run,Current Mapping Start,Joriy xaritalash boshlang apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,E-pochta spam sifatida belgilandi DocType: Comment,Website Manager,Veb-sayt boshqaruvchisi @@ -549,6 +562,7 @@ DocType: Workflow State,barcode,shtrix kodi apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Sub-so'rov yoki funktsiyadan foydalanish cheklangan apps/frappe/frappe/config/customization.py,Add your own translations,O'zingizning tarjimalaringizni qo'shing DocType: Country,Country Name,Davlat nomi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Bo'sh shablon DocType: About Us Team Member,About Us Team Member,Biz haqimizda jamoa a'zosi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Ruxlar va Hujjat turlari (DocTypes deb nomlanadi) O'qish, Yozish, Yaratish, O'chirish, Yuborish, Bekor qilish, O'chirish, Hisobot berish, Import qilish, eksport qilish, Chop etish, E-pochtani o'rnatish va Foydalanish Ruxsati kabi huquqlarni o'rnatish orqali belgilanadi." DocType: Event,Wednesday,Chorshanba @@ -560,6 +574,7 @@ DocType: Website Settings,Website Theme Image Link,Veb-sayt mavzusi rasmiga havo DocType: Web Form,Sidebar Items,Yonaloq buyumlari DocType: Web Form,Show as Grid,Grid sifatida ko'rsatish apps/frappe/frappe/installer.py,App {0} already installed,{0} ilovasi allaqachon o'rnatilgan +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Ma'lumotnoma hujjatiga tayinlangan foydalanuvchilar ball oladi. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Ko'rib chiqish yo'q DocType: Workflow State,exclamation-sign,ishora belgisi apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Ajratilgan {0} fayl @@ -595,6 +610,7 @@ DocType: Notification,Days Before,Avvalgi kunlar apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Kundalik tadbirlar xuddi shu kuni tugashi kerak. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Tahrirlash ... DocType: Workflow State,volume-down,ovoz balandligi pastga +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,Ushbu IP-manzildan kirish taqiqlangan apps/frappe/frappe/desk/reportview.py,No Tags,Teglar yo'q DocType: Email Account,Send Notification to,Bildirishnoma yuborish DocType: DocField,Collapsible,Katlanabilir @@ -650,6 +666,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Dasturchi apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Yaratildi apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{1} qatoridagi {0} URL va parollar ham bo'lishi mumkin emas +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Quyidagi jadvallar uchun bitta qator atleast bo'lishi kerak: {0} DocType: Print Format,Default Print Language,Standart bosib chiqarish tili apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Otalari apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Ildiz {0} o'chirib bo'lmaydi @@ -692,6 +709,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Xost +DocType: Data Import Beta,Import File,Faylni import qilish apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,{0} ustun allaqachon mavjud. DocType: ToDo,High,Oliy apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Yangi hodisa @@ -720,8 +738,6 @@ DocType: User,Send Notifications for Email threads,Elektron pochta xabarlari uch apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Uz Top reyting www.uz. apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Developer rejimida emas apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Fayl zahirasi tayyor -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Ballarni multiplikator qiymatiga ko'paytirgandan so'ng ruxsat etilgan maksimal ballar (Izoh: Belgilangan qiymat 0 sifatida belgilanmagan). DocType: DocField,In Global Search,Global izlovchilarda DocType: System Settings,Brute Force Security,Brute Force Xavfsizlik DocType: Workflow State,indent-left,indent-chap @@ -763,6 +779,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}','{0}' foydalanuvchi allaqachon '{1}' DocType: System Settings,Two Factor Authentication method,Ikki omil autentifikatsiya usuli apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Avval nomni o'rnating va yozib oling. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 yozuvlar apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},{0} bilan ulashilgan apps/frappe/frappe/email/queue.py,Unsubscribe,Obunani bekor qilish DocType: View Log,Reference Name,Malumot nomi @@ -811,6 +828,8 @@ DocType: Data Migration Connector,Data Migration Connector,Ma'lumotlarni uza 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 DocType: Note,Notify Users On Every Login,Foydalanuvchilarni har bir kirishda xabardor qiling +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,{0} ustunini biron bir maydon bilan moslab bo'lmadi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,{0} yozuvlari muvaffaqiyatli yangilandi. DocType: PayPal Settings,API Password,API Password apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Python modulini kiriting yoki ulagichning turini tanlang apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname maxsus maydonchaga o'rnatilmagan @@ -839,9 +858,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Duplicate name {0} {1} -DocType: Email Queue,Retry,Qayta urin +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Qayta urin +DocType: Contact Phone,Number,Raqam DocType: Web Form Field,Web Form Field,Veb formasi maydoni apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Sizda yangi xabaringiz bor: +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: 10dan foydalaning (5 va 10 orasidagi qiymatlar uchun)." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,HTMLni tahrirlash apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,"Iltimos, yo'naltirish URL manzilini kiriting" apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -866,7 +887,7 @@ DocType: Notification,View Properties (via Customize Form),Xususiyatlarni ko' apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Faylni tanlash uchun uni bosing. DocType: Note Seen By,Note Seen By,Eslatmalar apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Ko'proq navbatlar bilan ko'proq klaviatura naqshidan foydalanishga harakat qiling -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,LeaderBoard +,LeaderBoard,LeaderBoard DocType: DocType,Default Sort Order,Odatiy tartiblash tartibi DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Elektron pochta orqali javob berish yordami @@ -901,6 +922,7 @@ apps/frappe/frappe/utils/data.py,Cent,Cent apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,E-pochtani tuzing apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Ish yuritish uchun davlatlar (masalan, loyiha, ma'qullangan, bekor qilingan)." DocType: Print Settings,Allow Print for Draft,Taslak uchun chop etishga ruxsat berish +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/link_selector.js,Set Quantity,Miqdori belgilang apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Tasdiqlash uchun ushbu hujjatni yuboring DocType: Contact,Unsubscribed,Obunani bekor qilish @@ -932,6 +954,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Foydalanuvchilar uchun tash ,Transaction Log Report,Jurnal hisoboti hisoboti DocType: Custom DocPerm,Custom DocPerm,Maxsus DocPerm DocType: Newsletter,Send Unsubscribe Link,Obunani bekor qilish havolasini yuboring +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Faylingizni import qilishdan oldin yaratilishi kerak bo'lgan ba'zi bir-biriga bog'langan yozuvlar mavjud. Quyidagi yo'qolgan yozuvlarni avtomatik ravishda yaratmoqchimisiz? DocType: Access Log,Method,Boshqaruv DocType: Report,Script Report,Skript haqida hisobot DocType: OAuth Authorization Code,Scopes,Maydonlar @@ -972,6 +995,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Muvaffaqiyatli yuklandi apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Siz internetga ulangansiz. DocType: Social Login Key,Enable Social Login,Ijtimoiy kirishni yoqish +DocType: Data Import Beta,Warnings,Ogohlantirishlar DocType: Communication,Event,Voqealar apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","{0} da, {1} da shunday deb yozgan edi:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,"Standart maydonni o'chirib bo'lmaydi. Agar xohlasangiz, uni yashirishingiz mumkin" @@ -1027,6 +1051,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Quyidagil DocType: Kanban Board Column,Blue,Moviy apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,"Barcha sozlashlar olib tashlanadi. Iltimos, tasdiqlang." DocType: Page,Page HTML,HTML-sahifa +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Xato qatorlarni eksport qilish apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Guruh nomi bo'sh bo'lishi mumkin emas. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Boshqa tugunlarni faqat "Guruh" tipidagi tugunlar ostida yaratish mumkin DocType: SMS Parameter,Header,Sarlavha @@ -1065,13 +1090,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Vaqtni talab qilish muddati apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Domendlarni yoqish / o'chirish DocType: Role Permission for Page and Report,Allow Roles,Rollarga ruxsat berish +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,{1} dan {0} yozuvlar muvaffaqiyatli import qilindi. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Oddiy Python iborasi, misol: in ("Noto'g'ri") holati" DocType: User,Last Active,So'nggi Foydalanuvchi bilan DocType: Email Account,SMTP Settings for outgoing emails,Chiqish e-pochta xabarlari uchun SMTP sozlamalari apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,tanlang DocType: Data Export,Filter List,Filtr ro'yxati DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,"Parolingiz yangilandi. Mana, sizning yangi parolingiz" 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 @@ -1080,7 +1105,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,foydalanuvchi IDsi DocType: Communication,Sent,Yuborildi DocType: Address,Kerala,Kerala -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Ma'muriyat DocType: User,Simultaneous Sessions,Sinxron sessiyalar DocType: Social Login Key,Client Credentials,Mijozning hisobga olish ma'lumotlari @@ -1112,7 +1136,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Yangila apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Ustoz DocType: DocType,User Cannot Create,Foydalanuvchi yaratolmaydi apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Muvaffaqiyatli bajarildi -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,{0} jildi mavjud emas apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropboxga ruxsat tasdiqlandi! DocType: Customize Form,Enter Form Type,Shakli turini kiriting DocType: Google Drive,Authorize Google Drive Access,Google Drive kirishiga ruxsat bering @@ -1120,7 +1143,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Hech qanday yozuv yozilmagan. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Joyni o'chirish apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Siz Internetga ulanmagansiz. Birozdan so'ng qayta urinib ko'ring. -DocType: User,Send Password Update Notification,Parolni yangilab turing apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType ruxsat berish. Ehtiyot bo'ling!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Chop etish uchun maxsus formatlar, elektron pochta" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Jami {0} @@ -1205,6 +1227,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Noto'g'ri ta apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Contacts Integration o'chirilgan. DocType: Assignment Rule,Description,Ta'rif DocType: Print Settings,Repeat Header and Footer in PDF,PDF-da bosh va pastki tugmani takrorlang +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Muvaffaqiyatsiz DocType: Address Template,Is Default,Standart DocType: Data Migration Connector,Connector Type,Ulagich turi apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Ustun nomi bo'sh bo'lishi mumkin emas @@ -1217,6 +1240,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,{0} sahifasiga o' DocType: LDAP Settings,Password for Base DN,Base DN uchun parol apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,Jadval maydoni 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/model/document.py,Action Failed,Amal bajarilmadi apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,Foydalanuvchi uchun @@ -1270,6 +1294,7 @@ DocType: Print Settings,Enable Raw Printing,Xom chop etishni yoqish DocType: Website Route Redirect,Source,Manba apps/frappe/frappe/templates/includes/list/filters.html,clear,aniq apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Tugadi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sozlash> Foydalanuvchi DocType: Prepared Report,Filter Values,Filtr qiymatlari DocType: Communication,User Tags,Foydalanuvchi teglari DocType: Data Migration Run,Fail,Muvaffaqiyatsiz @@ -1325,6 +1350,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Kuza ,Activity,Faoliyat DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Yordam: Tizimda yana bir yozuvni bog'lash uchun, "# Form / Note / [Note Name]" dan foydalaning. ("http: //" foydalanmang)" DocType: User Permission,Allow,Ruxsat ber +DocType: Data Import Beta,Update Existing Records,Mavjud yozuvlarni yangilang apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,"Keling, takrorlanadigan so'zlar va belgilardan qochamiz" DocType: Energy Point Rule,Energy Point Rule,Energiya nuqtasi qoidasi DocType: Communication,Delayed,Geciktirildi @@ -1337,9 +1363,7 @@ DocType: Milestone,Track Field,Trek maydoni DocType: Notification,Set Property After Alert,Alertdan keyin obyektni sozlash apps/frappe/frappe/config/customization.py,Add fields to forms.,Formalarga joy qo'shing. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Ushbu saytning PayPal konfiguratsiyasida biror narsa noto'g'ri. -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/sidebar/review.js,Add Review,Sharh qo'shish -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Shrift hajmi (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Faqat Custom DocTypes-ni Customize Form-dan moslashtirish mumkin. DocType: Email Account,Sendgrid,Sendgrid @@ -1376,6 +1400,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,Fil apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Kechirasiz! Avtomatik yaratilgan fikrlarni o'chirib bo'lmaydi DocType: Google Settings,Used For Google Maps Integration.,Google Maps integratsiyasi uchun ishlatiladi. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Yo'naltirilgan DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Hech qanday yozuvlar eksport qilinmaydi DocType: User,System User,Tizim foydalanuvchisi DocType: Report,Is Standard,Standart DocType: Desktop Icon,_report,_report @@ -1390,6 +1415,7 @@ DocType: Workflow State,minus-sign,manfiy belgisi apps/frappe/frappe/public/js/frappe/request.js,Not Found,Topilmadi apps/frappe/frappe/www/printview.py,No {0} permission,{0} ruxsat yo'q apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Maxsus ruxsatnomalarni eksport qilish +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Hech qanday mahsulot topilmadi. DocType: Data Export,Fields Multicheck,Maydonlar Multicheck DocType: Activity Log,Login,Kirish DocType: Web Form,Payments,To'lovlar @@ -1449,8 +1475,9 @@ DocType: Address,Postal,Pochta DocType: Email Account,Default Incoming,Standart kirish DocType: Workflow State,repeat,takrorlang DocType: Website Settings,Banner,Banner +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Qiymat {0} dan biri bo‘lishi kerak DocType: Role,"If disabled, this role will be removed from all users.","Agar o'chirib qo'yilgan bo'lsa, unda barcha foydalanuvchilar o'chiriladi." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,{0} ro'yxatiga o'ting +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,{0} ro'yxatiga o'ting 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" @@ -1464,6 +1491,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Mahalliy nom DocType: DocType,Track Changes,O'zgarishlarni kuzatib boring DocType: Workflow State,Check,Tekshiring DocType: Chat Profile,Offline,Oflayn +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},{0} muvaffaqiyatli import qilindi DocType: User,API Key,API kaliti DocType: Email Account,Send unsubscribe message in email,E-pochtaga obunani bekor qilish xabarini yuboring apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Sarlavha tahrir @@ -1490,11 +1518,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} allaqachon {1} uchun asl qiymatni tayinlagan. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                    No results found for '

                                                                                                                    ,

                                                                                                                    'Uchun natijalar topilmadi

                                                                                                                    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 @@ -1515,8 +1543,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} uchun ruxsat 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sozlash> Foydalanuvchi ruxsati DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP guruhini xaritalash DocType: Dashboard Chart,Chart Options,Grafik parametrlari +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Nomsiz ustun apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},# {3} qatoridagi {1} dan {2} gacha bo'lgan {0} DocType: Communication,Expired,Muddati o'tgan apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Siz foydalanayotgan parol noto'g'ri! @@ -1526,6 +1556,7 @@ DocType: DocType,System,Tizim DocType: Web Form,Max Attachment Size (in MB),Maksimal qo'shish kattaligi (MB da) apps/frappe/frappe/www/login.html,Have an account? Login,Hisob bormi? Kirish DocType: Workflow State,arrow-down,pastga-pastga +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},{0} qator apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Foydalanuvchining {0} o'chirib tashlashga ruxsat berilmagan: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} dan {0} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Oxirgi yangilangan @@ -1542,6 +1573,7 @@ DocType: Custom Role,Custom Role,Maxsus rol apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Bosh sahifa / Sinovlarni tekshirish 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Parolingizni kiriting DocType: Dropbox Settings,Dropbox Access Secret,Dropboxga kirish maxfiyligi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Majburiy) 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. @@ -1615,6 +1647,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Asboblar p apps/frappe/frappe/desk/form/assign_to.py,New Message,Yangi xabar DocType: File,Preview HTML,HTMLni oldindan ko'rish DocType: Desktop Icon,query-report,so'rov-hisobot +DocType: Data Import Beta,Template Warnings,Andoza ogohlantirishlari apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtrlar saqlandi DocType: DocField,Percent,Foiz apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Filtrni o'rnating @@ -1636,6 +1669,7 @@ DocType: Custom Field,Custom,Maxsus DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Agar yoqilgan bo'lsa, cheklangan IP-manzildan kirgan foydalanuvchilar ikkita Factor Auth uchun so'ralmaydi" DocType: Auto Repeat,Get Contacts,Kontaktlarni oling apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},{0} da berilgan xabarlar +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Nomsiz ustunni o'tkazib yuborish DocType: Notification,Send alert if date matches this field's value,"Agar sana ushbu maydonning qiymatiga mos bo'lsa, ogohlantirish yuboring" DocType: Workflow,Transitions,O'tish apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} dan {2} gacha @@ -1659,6 +1693,7 @@ DocType: Workflow State,step-backward,qadam orqaga apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Iltimos, saytingiz konfiguratsiyasidagi Dropbox kirish kalitlarini o'rnating" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Ushbu e-pochta manziliga yuborishga ruxsat berish uchun ushbu yozuvni o'chirib tashlang +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Agar nostandart port bo'lsa (masalan, POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Yorliqlarni sozlang apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Yangi yozuvlar uchun majburiy joylar kerak. Siz xohlamagan ustunlarni o'chirishingiz mumkin. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Ko'proq faollikni ko'rsatish @@ -1766,7 +1801,9 @@ DocType: Note,Seen By Table,Jadvalda ko'rib chiqildi apps/frappe/frappe/www/third_party_apps.html,Logged in,Kiritilgan apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standart yuborish va Kirish qutisi DocType: System Settings,OTP App,OTP ilovasi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,{1} dan {0} yozuvi muvaffaqiyatli yangilandi. DocType: Google Drive,Send Email for Successful Backup,Muvaffaqiyatli zahira uchun elektron pochta xabarini yuboring +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Rejalashtiruvchi ishlamayapti. Ma’lumotlarni import qilib bo‘lmadi. DocType: Print Settings,Letter,Maktub DocType: DocType,"Naming Options:
                                                                                                                    1. field:[fieldname] - By Field
                                                                                                                    2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                                    3. Prompt - Prompt user for a name
                                                                                                                    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                                    5. @@ -1780,6 +1817,7 @@ DocType: GCalendar Account,Next Sync Token,Keyingi Sync Token DocType: Energy Point Settings,Energy Point Settings,Energiya nuqtasini sozlash DocType: Async Task,Succeeded,Muvaffaqiyatli bo'ldi apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} da majburiy maydonlar kerak +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                      No results found for '

                                                                                                                      ,

                                                                                                                      'Uchun natijalar topilmadi

                                                                                                                      apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,{0} uchun ruxsatni qayta tiklash? apps/frappe/frappe/config/desktop.py,Users and Permissions,Foydalanuvchilar va ruxsatnomalar DocType: S3 Backup Settings,S3 Backup Settings,S3 Zahiralash sozlamalari @@ -1850,6 +1888,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,In DocType: Notification,Value Change,Qiymat o'zgarishi DocType: Google Contacts,Authorize Google Contacts Access,Google Kontaktlarga kirishga ruxsat bering apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Hisobotdagi faqat raqamli maydonlarni ko'rsatish +DocType: Data Import Beta,Import Type,Import turi DocType: Access Log,HTML Page,HTML sahifasi DocType: Address,Subsidiary,Sho'ba korxonasi apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,QZ trayiga ulanishga urinilmoqda ... @@ -1860,7 +1899,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Chiquvchi DocType: Custom DocPerm,Write,Yozing apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Faqat Administrator so'rovlar / skriptlar hisobotlarini yaratishga ruxsat berildi apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Yangilanmoqda -DocType: File,Preview,Ko'rib chiqish +DocType: Data Import Beta,Preview,Ko'rib chiqish apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Maydoni "qiymat" majburiydir. Yangilanadigan qiymatni ko'rsating DocType: Customize Form,Use this fieldname to generate title,Sarlavha yaratish uchun ushbu maydon nomidan foydalaning apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Elektron pochtadan import @@ -1943,6 +1982,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Brauzer qo' DocType: Social Login Key,Client URLs,Mijoz URL'lari apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Ba'zi ma'lumotlar yo'q apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} muvaffaqiyatli yaratildi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","{1}, {2} ning {0} o'tkazib yuborilishi" DocType: Custom DocPerm,Cancel,Bekor qilish apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Ommaviy o'chirish apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,{0} fayl mavjud emas @@ -1970,7 +2010,6 @@ DocType: GCalendar Account,Session Token,Kirish Token DocType: Currency,Symbol,Ramz apps/frappe/frappe/model/base_document.py,Row #{0}:,# {0} qatori: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Ma'lumotni yo'q qilishni tasdiqlang -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Yangi parol elektron pochta orqali yuborildi apps/frappe/frappe/auth.py,Login not allowed at this time,Bu vaqtda kirish uchun ruxsat berilmaydi DocType: Data Migration Run,Current Mapping Action,Joriy xaritalash harakati DocType: Dashboard Chart Source,Source Name,Manba nomi @@ -1983,6 +2022,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Duny apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Dan so'ng DocType: LDAP Settings,LDAP Email Field,LDAP elektron pochta manzili apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Ro'yxat +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,{0} yozuvlarni eksport qilish apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Siz allaqachon foydalanuvchi bajaradigan ro'yxatida DocType: User Email,Enable Outgoing,Chiqishni yoqish DocType: Address,Fax,Faks @@ -2040,8 +2080,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,Hujjatlarni chop eting apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Maydonga o'ting DocType: Contact Us Settings,Forward To Email Address,E-pochta manziliga yo'naltirish +DocType: Contact Phone,Is Primary Phone,Bu asosiy telefon apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Bu yerga bog'lash uchun {0} ga elektron pochta xabarini yuboring. DocType: Auto Email Report,Weekdays,Hafta kunlari +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} yozuvlar eksport qilinadi apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,Sarlavha maydoni tegishli maydon nomi bo'lishi kerak DocType: Post Comment,Post Comment,Fikr qoldiring apps/frappe/frappe/config/core.py,Documents,Hujjatlar @@ -2059,7 +2101,9 @@ eval:doc.myfield=='My Value' eval:doc.age>18",Bu maydon faqat bu erda ko'rsatilgan maydon nomiga qiymat yoki qoidalar haqiqiy (misollar) bo'lsa paydo bo'ladi: myfield eval: doc.myfield == 'Mening qiymatim' eval: doc.age> 18 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Bugun +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Siz buni o'rnatganingizdan so'ng, foydalanuvchilar faqatgina link mavjud bo'lgan hujjatlarga (masalan, Blog Post) kirish imkoniyatiga ega bo'ladi (masalan, Blogger)." +DocType: Data Import Beta,Submit After Import,Import qilinganidan keyin yuborish DocType: Error Log,Log of Scheduler Errors,Jadvaldagi xatolar ro'yxati DocType: User,Bio,Bio DocType: OAuth Client,App Client Secret,Ilova mijoz sirlari @@ -2078,10 +2122,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Kirish sahifasida xaridorni ro'yxatdan o'tkazish havolasini o'chirib qo'yish apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Tayinlangan / Sohibi DocType: Workflow State,arrow-left,o'q-chap +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,1 yozuvni eksport qiling DocType: Workflow State,fullscreen,to'liq ekran DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Grafik yarating apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Import qilmang DocType: Web Page,Center,Markaziy DocType: Notification,Value To Be Set,Qiymati belgilanadi apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},{0} tahrirlash @@ -2100,6 +2146,7 @@ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under DocType: Print Format,Show Section Headings,Bo'lim sarlavhalarini ko'rsatish DocType: Bulk Update,Limit,Limit apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Yangi bo'lim qo'shish +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Filtrlangan yozuvlar apps/frappe/frappe/www/printview.py,No template found at path: {0},Yo'lda hech shablon topilmadi: {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,E-pochta hisob yo'q DocType: Comment,Cancelled,Bekor qilindi @@ -2186,10 +2233,13 @@ DocType: Communication Link,Communication Link,Aloqa aloqasi apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Invalid Output Format,Chiqish formati noto'g'ri apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot {0} {1},{0} {1} DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Agar foydalanuvchi foydalanuvchi bo'lsa, ushbu qoidani qo'llang" +DocType: Global Search Settings,Global Search Settings,Global qidirish sozlamalari apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,Will be your login ID,Kirish identifikatoringiz bo'ladi +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Global qidiruv hujjatlari turlarini tiklash. ,Lead Conversion Time,Qo'rg'oshin ishlab chiqarish vaqti apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Hisobotni tuzing DocType: Note,Notify users with a popup when they log in,Foydalanuvchilarga kirishda popup bilan xabar bering +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,{0} asosiy modullarini Global Search-da qidirish mumkin emas. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Chat-ni oching apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} yo'q, birlashtirish uchun yangi maqsadni tanlang" DocType: Data Migration Connector,Python Module,Python moduli @@ -2206,8 +2256,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Yoping 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sozlash> Foydalanuvchi ruxsati -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Yangilash +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Yangilash DocType: Transaction Log,Transaction Hash,Transaction Hash DocType: Error Snapshot,Snapshot View,Oniy tasvir ko'rinishi apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,"Iltimos, xabarni yuborishdan oldin saqlang" @@ -2223,6 +2272,7 @@ DocType: Data Import,In Progress,Jarayonda apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Zaxira uchun navbatga qo'yildi. Bir soatdan bir necha daqiqa o'tishi mumkin. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Foydalanuvchi ruxsati allaqachon mavjud +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},{0} ustunini {1} maydoniga solishtirish apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},{0} ko'rinishi DocType: User,Hourly,Soat apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth mijoz ilovasini ro'yxatdan o'tkazing @@ -2235,7 +2285,6 @@ DocType: SMS Settings,SMS Gateway URL,SMS Gateway URL manzili apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" bo'lishi mumkin emas. Bu "{3}" dan biri bo'lishi kerak apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{1} avtomatik qoida orqali {0} tomonidan qo'lga kiritildi apps/frappe/frappe/utils/data.py,{0} or {1},{0} yoki {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Parolni yangilash DocType: Workflow State,trash,axlat DocType: System Settings,Older backups will be automatically deleted,Eski zaxiralashlar avtomatik ravishda o'chirib tashlanadi apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,Noto'g'ri kirish kalit identifikatori yoki maxfiy kirish tugmachasi. @@ -2263,6 +2312,7 @@ DocType: Address,Preferred Shipping Address,Tanlangan yuk jo'natish manzili apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Letter boshi bilan apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} bu {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},{2} qatorda {0}: {1} uchun ruxsat berilmagan. Cheklangan maydon: {3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Elektron pochta hisobi sozlanmadi. Iltimos, sozlash> Elektron pochta> Elektron pochta hisob qaydnomasidan yangi elektron pochta qayd yozuvini yarating" DocType: S3 Backup Settings,eu-west-1,eu-g'arbiy-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Agar bu belgilansa, joriy ma'lumotlarga ega bo'lgan qatorlar import qilinadi va keyinroq import qilish uchun bekor qilingan qatorlar yangi faylga tashlanadi." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Hujjat faqatgina foydalanuvchilar tomonidan tahrir qilinadi @@ -2289,6 +2339,7 @@ DocType: Custom Field,Is Mandatory Field,Majburiy maydon DocType: User,Website User,Sayt foydalanuvchisi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,PDF-ga chop etishda ba'zi ustunlar kesilishi mumkin. Ustunlar sonini 10 tagacha saqlashga harakat qiling. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Teng emas +DocType: Data Import Beta,Don't Send Emails,Elektron pochta xabarlarini yubormang DocType: Integration Request,Integration Request Service,Integration Request Service DocType: Access Log,Access Log,Kirish jurnali DocType: Website Script,Script to attach to all web pages.,Barcha veb-sahifalarga biriktirish uchun skript. @@ -2328,6 +2379,7 @@ DocType: Contact,Passive,Passiv DocType: Auto Repeat,Accounts Manager,Hisob menejeri apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1} uchun topshirish apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,To'lovingiz bekor qilinadi. +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/views/reports/report_view.js,Select File Type,Fayl turini tanlang apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Hammasini ko'rish DocType: Help Article,Knowledge Base Editor,Ma'lumotlar bazasi muharriri @@ -2360,6 +2412,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Ma'lumotlar apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Hujjat holati apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Tasdiqlash talab etiladi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Faylingizni import qilishdan oldin quyidagi yozuvlar yaratilishi kerak. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth avtorizatsiya kodi apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Import qilish mumkin emas DocType: Deleted Document,Deleted DocType,O'chirilgan DocType @@ -2413,8 +2466,8 @@ DocType: System Settings,System Settings,Tizim sozlamalari DocType: GCalendar Settings,Google API Credentials,Google API sertifikatlari apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Seans ochilmadi apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ushbu e-pochta {0} ga yuborildi va {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},ushbu hujjatni {0} yubordi DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yil oldin DocType: Social Login Key,Provider Name,Provayder nomi apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Yangi {0} yaratish DocType: Contact,Google Contacts,Google Kontaktlari @@ -2422,6 +2475,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar hisobi DocType: Email Rule,Is Spam,Spammi? apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Hisobot {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},{0} oching +DocType: Data Import Beta,Import Warnings,Import haqida ogohlantirishlar DocType: OAuth Client,Default Redirect URI,Standart yo'naltirish URI DocType: Auto Repeat,Recipients,Qabul qiluvchilar DocType: System Settings,Choose authentication method to be used by all users,Barcha foydalanuvchilar tomonidan ishlatiladigan autentifikatsiya usulini tanlang @@ -2538,6 +2592,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Hisobot muva apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Webhook xatolik yuz berdi DocType: Email Flag Queue,Unread,O'qilmagan DocType: Bulk Update,Desk,Stol +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},{0} ustunini o‘tkazib yuborish apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Filtrni bir nusxa yoki ro'yxat bo'lishi kerak (ro'yxatda) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,TANLOV so'rovini yozing. Izoh natija olinmaydi (barcha ma'lumotlar bir martalik yuboriladi). DocType: Email Account,Attachment Limit (MB),Qo'shimcha cheklov (MB) @@ -2552,6 +2607,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Yangi yaratish DocType: Workflow State,chevron-down,chevron pastga apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),{0} ga yuborilgan xat (e-pochta manzili) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Eksport qilish uchun maydonlarni tanlang DocType: Async Task,Traceback,Orqaga DocType: Currency,Smallest Currency Fraction Value,Eng kichik valyuta kursi qiymati apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Hisobot tayyorlash @@ -2560,6 +2616,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,Sharhlarni yoqish apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Eslatmalar DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),"Foydalanuvchini bu IP manzildan cheklash. Ko'p IP-manzillar vergul bilan ajralib turishi mumkin. Shuningdek, (111.111.111) kabi qisman IP manzillarni qabul qiladi," +DocType: Data Import Beta,Import Preview,Oldindan ko'rish DocType: Communication,From,From apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Avval guruh tugunni tanlang. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{1} da {0} toping @@ -2658,6 +2715,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,O'rtasida DocType: Social Login Key,fairlogin,Fairlogin DocType: Async Task,Queued,Navbatga qo'yildi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sozlash> Formani sozlash DocType: Braintree Settings,Use Sandbox,Sandboxdan foydalaning apps/frappe/frappe/utils/goal.py,This month,Shu oy apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Yangi maxsus chop formati @@ -2673,6 +2731,7 @@ DocType: Session Default,Session Default,Seans birlamchi DocType: Chat Room,Last Message,Oxirgi xabar DocType: OAuth Bearer Token,Access Token,Kirish tokeni DocType: About Us Settings,Org History,Org tarixi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Taxminan {0} daqiqa qoldi DocType: Auto Repeat,Next Schedule Date,Keyingi Jadval tarixi DocType: Workflow,Workflow Name,Ish oqimi nomi DocType: DocShare,Notify by Email,E-pochta orqali xabar berish @@ -2702,6 +2761,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,Muallif apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Resume yuborish apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Qayta oching +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Ogohlantirishlarni ko'rsating apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Re: {0} DocType: Address,Purchase User,Foydalanuvchini sotib oling DocType: Data Migration Run,Push Failed,Push Failed @@ -2738,6 +2798,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Kengay apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Axborot byulletenlarini ko`rishingiz mumkin emas. DocType: User,Interests,Qiziqishlar apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Parolni tiklash ko'rsatmalari elektron pochtangizga yuborildi +DocType: Energy Point Rule,Allot Points To Assigned Users,Belgilangan foydalanuvchilarga ajratish apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","0-darajali hujjat darajasidagi ruxsatnomalar uchun, \ maydon darajasi ruxsatnomalari uchun yuqori darajalar." DocType: Contact Email,Is Primary,Birlamchi @@ -2760,6 +2821,7 @@ apps/frappe/frappe/email/doctype/notification/notification.py,"Not allowed to at 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 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Eksport turi DocType: Workflow State,circle-arrow-left,doira-o'q-chap DocType: System Settings,Force User to Reset Password,Parolni tiklash uchun foydalanuvchini majburlash apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",Yangilangan hisobotni olish uchun {0} ustiga bosing. @@ -2772,13 +2834,16 @@ DocType: Contact,Middle Name,Otasini ismi DocType: Custom Field,Field Description,Yarim ta'rif apps/frappe/frappe/model/naming.py,Name not set via Prompt,Nomi "Tez so'raladigan" orqali o'rnatilmadi apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Elektron pochta qutisi +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","{1}, {2} ning {0} yangilanishi" DocType: Auto Email Report,Filters Display,Filtrlar ko'rsatish apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",O'zgartirish kiritish uchun "amended_from" maydoni bo'lishi kerak. +DocType: Contact,Numbers,Raqamlar apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} {1} {2} dagi ishlaringizni baholadi apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Filtrlarni saqlang DocType: Address,Plant,O'simlik apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Hammaga javob bering DocType: DocType,Setup,Sozlash +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Barcha yozuvlar DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google kontaktlari sinxronlashtiriladigan elektron pochta manzili. DocType: Email Account,Initial Sync Count,Dastlabki sinxronlashlar soni DocType: Workflow State,glass,shisha @@ -2803,7 +2868,7 @@ DocType: Workflow State,font,shrift DocType: DocType,Show Preview Popup,Oldindan ko‘rish qalqonini ko‘rsatish apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Bu top-100 umumiy parol. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,"Iltimos, pop-up'larni yoqing" -DocType: User,Mobile No,Mobil raqami +DocType: Contact,Mobile No,Mobil raqami DocType: Communication,Text Content,Matn mazmuni DocType: Customize Form Field,Is Custom Field,Maxsus maydon bormi? DocType: Workflow,"If checked, all other workflows become inactive.","Belgilangan bo'lsa, boshqa barcha ishchi oqimlar faolsiz qoladi." @@ -2849,6 +2914,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Forma apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Yangi Print Formatining nomi apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Yon panelini almashtirish DocType: Data Migration Run,Pull Insert,Qo'shing +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",Ballarni multiplikator qiymati bilan ko'paytirgandan so'ng ruxsat etilgan maksimal ballar (Eslatma: Cheklovsiz bu maydonni bo'sh qoldiring yoki 0 o'rnating) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Andoza noto‘g‘ri apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Noqonuniy SQL so'rovi apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Majburiy: DocType: Chat Message,Mentions,Mentions @@ -2863,6 +2931,7 @@ DocType: User Permission,User Permission,Foydalanuvchi ruxsati apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP o'rnatilmagan apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Ma'lumotlarni yuklab olish +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1} uchun o'zgargan qiymatlar DocType: Workflow State,hand-right,qo'l-o'ng DocType: Website Settings,Subdomain,Subdomain DocType: S3 Backup Settings,Region,Mintaqa @@ -2889,10 +2958,12 @@ DocType: Braintree Settings,Public Key,Umumiy kalit DocType: GSuite Settings,GSuite Settings,GSuite sozlamalari DocType: Address,Links,Linklar DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Ushbu hisob qaydnomasida ko'rsatilgan elektron pochta manzili nomini ushbu hisob qaydnomasi yordamida yuborilgan barcha elektron pochta xabarlari uchun Yuboruvchining ismi sifatida ishlatadi. +DocType: Energy Point Rule,Field To Check,Tekshirish uchun maydon apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Google Contacts - {0}, xato kodi {1} da kontaktni yangilab bo‘lmadi." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,"Iltimos, Hujjat turini tanlang." apps/frappe/frappe/model/base_document.py,Value missing for,Qiymati yo'q apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Bola qo'shish +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Import jarayoni DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ","Agar talab qondirilsa, foydalanuvchi ballar bilan taqdirlanadi. masalan. doc.status == 'Yopiq'" apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: yuborilgan yozuvni o'chirib bo'lmaydi. @@ -2929,6 +3000,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Google Calendar Access apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,"Siz izlayotgan sahifa etishmayotgan. Buning sababi shundaki, u ko'chiriladi yoki havolada typo mavjud." apps/frappe/frappe/www/404.html,Error Code: {0},Xato kodi: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Lug'at sahifasining tavsifi, tekis matnda, faqat bir nechta satr. (maksimal 140 belgi)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} - majburiy maydonlar DocType: Workflow,Allow Self Approval,O'zingizni tasdiqlang DocType: Event,Event Category,Voqealar kategoriyasi apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,Jon Doe @@ -2976,8 +3048,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Ga o'tish DocType: Address,Preferred Billing Address,Tanlangan to'lov manzili apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Juda ko'p odamlar bir so'rovda yozadilar. Kichik so'rovlarni yuboring apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive sozlandi. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,{0} hujjat turi takrorlangan. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Qadriyatlar o'zgartirildi DocType: Workflow State,arrow-up,o'q-up +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0} jadval uchun atreast bitta qator bo'lishi kerak apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",Avtomatik takrorlashni sozlash uchun {0} dan "Avtomatik takrorlashga ruxsat berish" ni yoqing. DocType: OAuth Bearer Token,Expires In,Muddati tugaydi DocType: DocField,Allow on Submit,Yuborishga ruxsat berish @@ -3064,6 +3138,7 @@ DocType: Custom Field,Options Help,Tanlovlar yordami 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 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 @@ -3081,6 +3156,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Verfikatsiya kodi DocType: Webhook,Webhook Request,Webhook Request apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** bajarilmadi: {0} dan {1} ga: {2} DocType: Data Migration Mapping,Mapping Type,Turi turi +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,Majburiy tanlang apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,Ko'zdan kechiring apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Belgilar, raqamlar yoki katta harflar kerak emas." DocType: DocField,Currency,Valyuta @@ -3111,11 +3187,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Bosh harfga asoslangan apps/frappe/frappe/utils/oauth.py,Token is missing,To'xan yo'q apps/frappe/frappe/www/update-password.html,Set Password,Parol o'rnating +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,{0} yozuvlar muvaffaqiyatli import qilindi. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Eslatma: Sahifa nomini o'zgartirish ushbu sahifaga avvalgi URLni buzadi. apps/frappe/frappe/utils/file_manager.py,Removed {0},{0} o'chirib tashlandi DocType: SMS Settings,SMS Settings,SMS sozlamalari DocType: Company History,Highlight,Ajratib turing DocType: Dashboard Chart,Sum,Sum +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,Data Import orqali DocType: OAuth Provider Settings,Force,Majburlash apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},So‘nggi sinxronlangan {0} DocType: DocField,Fold,Kattalashtirilgan @@ -3152,6 +3230,7 @@ DocType: Workflow State,Home,Bosh sahifa DocType: OAuth Provider Settings,Auto,Avto DocType: System Settings,User can login using Email id or User Name,Foydalanuvchi e-pochta identifikatori yoki foydalanuvchi nomi orqali login qilishi mumkin DocType: Workflow State,question-sign,savol belgisi +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} o‘chirib qo‘yilgan apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Veb-saytlar uchun "marshrut" maydonchasi majburiydir apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},{0} dan oldin ustunni kiriting DocType: Energy Point Rule,The user from this field will be rewarded points,Ushbu maydondan foydalanuvchi yutuqli ballarni oladi @@ -3185,6 +3264,7 @@ DocType: Website Settings,Top Bar Items,Top Bar buyumlari DocType: Notification,Print Settings,Chop etish sozlamalari DocType: Page,Yes,Ha DocType: DocType,Max Attachments,Maksimal birikma +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Taxminan {0} soniya qoldi DocType: Calendar View,End Date Field,Tugash sanasi maydoni apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Global yorliqlar DocType: Desktop Icon,Page,Sahifa @@ -3295,6 +3375,7 @@ DocType: GSuite Settings,Allow GSuite access,GSuite xizmatiga ruxsat berish DocType: DocType,DESC,DESC DocType: DocType,Naming,Nomlanishi apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Hammasini belgilash +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},{0} ustun apps/frappe/frappe/config/customization.py,Custom Translations,Maxsus tarjimalar apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,Harakatlaning apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,Rol bilan @@ -3336,11 +3417,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Send Read Receipt,O&# DocType: Stripe Settings,Stripe Settings,Strip Sozlamalari DocType: Data Migration Mapping,Data Migration Mapping,Ma'lumotlarni ko'chirish xaritalash DocType: Auto Email Report,Period,Davr +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Taxminan {0} daqiqa qoldi apps/frappe/frappe/www/login.py,Invalid Login Token,Noto'g'ri kirish tokeni apps/frappe/frappe/public/js/frappe/chat.js,Discard,Bekor qiling apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 soat oldin DocType: Website Settings,Home Page,Bosh sahifa DocType: Error Snapshot,Parent Error Snapshot,Ota-ona xatosi +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},{0} dan ustunlarni {1} maydonlariga xaritalash DocType: Access Log,Filters,Filtrlar DocType: Workflow State,share-alt,ulush-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Navbat {0} dan biri bo'lishi kerak @@ -3360,6 +3443,7 @@ DocType: Calendar View,Start Date Field,Boshlash sanasi maydoni DocType: Role,Role Name,Romen nomi apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Stolga o'tish apps/frappe/frappe/config/core.py,Script or Query reports,Skript yoki So'rov hisobotlari +DocType: Contact Phone,Is Primary Mobile,Birlamchi mobil DocType: Workflow Document State,Workflow Document State,Ish yuritish hujjati holati apps/frappe/frappe/public/js/frappe/request.js,File too big,Fayl juda katta apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,E-pochta hisobi bir necha marta qo'shilgan @@ -3405,6 +3489,7 @@ DocType: DocField,Float,Float DocType: Print Settings,Page Settings,Sahifa sozlamalari apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Saqlanmoqda ... apps/frappe/frappe/www/update-password.html,Invalid Password,Parol noto'g'ri +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,{1} dan {0} yozuv muvaffaqiyatli olib kirildi. DocType: Contact,Purchase Master Manager,Master Manager sotib oling apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Umumiy yoki shaxsiy holatni almashtirish uchun qulflash belgisini bosing DocType: Module Def,Module Name,Moduli nomi @@ -3438,6 +3523,7 @@ apps/frappe/frappe/templates/includes/login/login.js,OTP setup using OTP App was apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid mobile nos,"Iltimos, tegishli mobil noslarni kiriting" apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Ba'zi xususiyatlar brauzeringizda ishlamasligi mumkin. Brauzeringizni so'nggi versiyasini yangilang. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Bilmayman, "yordam" so'rash" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},ushbu hujjatni bekor qildi {0} DocType: DocType,Comments and Communications will be associated with this linked document,Sharh va aloqalar ushbu bog'langan hujjat bilan bog'liq bo'ladi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Filtrni ... DocType: Workflow State,bold,qalin @@ -3456,6 +3542,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,E-pochta hiso DocType: Comment,Published,Nashr etildi apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,E-pochtangiz uchun rahmat DocType: DocField,Small Text,Kichik matn +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,"{0} raqamini Telefon uchun ham, Uyali raqamini ham asosiy qilib o'rnatib bo'lmaydi." DocType: Workflow,Allow approval for creator of the document,Hujjatni yaratuvchisi uchun tasdiqlashga ruxsat bering apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Hisobotni saqlash DocType: Webhook,on_cancel,on_cancel @@ -3513,6 +3600,7 @@ DocType: Print Settings,PDF Settings,PDF sozlamalari DocType: Kanban Board Column,Column Name,Ustun nomi DocType: Language,Based On,Shunga asosan DocType: Email Account,"For more information, click here.","Qo'shimcha ma'lumot olish uchun bu erni bosing ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Ustunlar soni ma'lumotlar bilan mos kelmadi apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Varsaylik qilish apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Bajarilish vaqti: {0} sek apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Yo‘l noto‘g‘ri ko‘rsatilgan @@ -3602,7 +3690,7 @@ 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} fayllarni yuklang DocType: Deleted Document,GCalendar Sync ID,GCalendar sinxronlash identifikatori DocType: Prepared Report,Report Start Time,Hisobotni boshlash vaqti -apps/frappe/frappe/config/settings.py,Export Data,Ma'lumotlarni eksport qilish +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Ma'lumotlarni eksport qilish 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." @@ -3620,7 +3708,6 @@ DocType: Report,Disable Prepared Report,Tayyorlangan hisobotni o'chirish apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,{0} foydalanuvchisi ma'lumotlarni o'chirishni so'radi apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,"Noqonuniy kirish uchun tok. Iltimos, yana bir bor urinib ko'ring" apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Dastur yangi versiyaga yangilandi, iltimos ushbu sahifani yangilang" -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." DocType: Notification,Optional: The alert will be sent if this expression is true,Majburiy emas: Agar bu ifoda to'g'ri bo'lsa ogohlantirish yuboriladi DocType: Data Migration Plan,Plan Name,Muzika nomi DocType: Print Settings,Print with letterhead,Antetli qog'oz bilan chop etish @@ -3661,6 +3748,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Bekor qilmasdan o'zgartirish mumkin emas apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,To'liq sahifa DocType: DocType,Is Child Table,Bolalar jadvali +DocType: Data Import Beta,Template Options,Andoza parametrlari apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} {1} dan biri bo'lishi kerak apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} hozirda ushbu hujjatni ko'rib turibdi apps/frappe/frappe/config/core.py,Background Email Queue,Background Email Queue @@ -3668,7 +3756,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Parolni tiklash DocType: Communication,Opened,Ochilgan DocType: Workflow State,chevron-left,chevron-chap DocType: Communication,Sending,Yuborilmoqda -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Ushbu IP manzildan ruxsat berilmaydi DocType: Website Slideshow,This goes above the slideshow.,Bu slaydshouning ustida. DocType: Contact,Last Name,Familiya DocType: Event,Private,Xususiy @@ -3682,7 +3769,6 @@ DocType: Workflow Action,Workflow Action,Ish xarishi apps/frappe/frappe/utils/bot.py,I found these: ,Buni topdim: DocType: Event,Send an email reminder in the morning,Ertalab e-pochta xabari yuboring DocType: Blog Post,Published On,Chop etildi -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 qaydnomalaridan yangi elektron pochta qayd yozuvini yarating" 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 @@ -3703,7 +3789,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,ogohlantirish belgisi DocType: Prepared Report,Prepared Report,Tayyorlangan hisobot apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Veb-sahifalaringizga meta-teglar qo'shing -DocType: Contact,Phone Nos,Telefon raqamlari 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 @@ -3720,6 +3805,7 @@ DocType: Data Migration Connector,Data Migration,Ma'lumotlarni ko'chiris DocType: User,API Key cannot be regenerated,API kaliti yangilanib bo'lmadi apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Nimadir noto'g'ri bajarildi DocType: System Settings,Number Format,Raqamli format +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,{0} yozuvi muvaffaqiyatli import qilindi. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Xulosa DocType: Event,Event Participants,Tadbir ishtirokchilari DocType: Auto Repeat,Frequency,Chastotani @@ -3727,7 +3813,7 @@ DocType: Custom Field,Insert After,Keyin qo'shing DocType: Event,Sync with Google Calendar,Google Taqvim bilan sinxronlashtiring DocType: Access Log,Report Name,Hisobot nomi DocType: Desktop Icon,Reverse Icon Color,Orqa rangli teskari rang -DocType: Notification,Save,Saqlash +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Saqlash apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Keyingi rejalashtirilgan sana apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Eng kam topshiriq olgan odamga tayinlang apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Bo'lim sarlavhasi @@ -3750,11 +3836,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sozlash> Formani sozlash 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 DocType: Desktop Icon,Category,Turkum +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},{1} uchun {0} qiymati yo‘q apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Kontaktlarni qo'shish apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landshaft apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Javascriptdagi mijozlar buyrug'i kengaytmalari @@ -3777,6 +3863,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiya nuqtasini yangilash apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Boshqa to'lov usulini tanlang. PayPal "{0}" valyutasidagi operatsiyalarni qo'llab-quvvatlamaydi DocType: Chat Message,Room Type,Xona turi +DocType: Data Import Beta,Import Log Preview,Jurnalni oldindan ko'rishni import qilish apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,{0} qidiruv maydoni haqiqiy emas apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,yuklangan fayl DocType: Workflow State,ok-circle,ok-doira @@ -3843,6 +3930,7 @@ DocType: DocType,Allow Auto Repeat,Avtomatik takrorlashga ruxsat berish apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ko‘rsatadigan qiymatlar yo‘q DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Email shablonni +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,{0} yozuvi muvaffaqiyatli yangilandi. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},{0} foydalanuvchisida {1} hujjat uchun rolga ruxsat berish orqali hujjatlar turiga kirish huquqi yo'q. apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Har ikkala login va parol talab qilinadi apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Iltimos, eng yangi hujjatni olish uchun yangilang." diff --git a/frappe/translations/vi.csv b/frappe/translations/vi.csv index 8d9517b487..ef9eb7b501 100644 --- a/frappe/translations/vi.csv +++ b/frappe/translations/vi.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,Đã có bản phát hành {} mới cho các ứng dụng sau apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,Vui lòng chọn một Dòng Số tiền. +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,Đang tải tệp nhập ... DocType: Assignment Rule,Last User,Người dùng cuối apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}","Một nhiệm vụ mới, {0}, đã được {1}. {2} giao cho bạn" apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,Mặc định phiên đã lưu +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,Tải lại tập tin DocType: Email Queue,Email Queue records.,Hàng chờ bản ghi email DocType: Post,Post,Bài DocType: Address,Punjab,Punjab @@ -44,6 +46,7 @@ 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ố @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,Hàng tháng DocType: Address,Uttarakhand,Utttarakhand DocType: Email Account,Enable Incoming,Kích hoạt tính năng Incoming apps/frappe/frappe/core/doctype/version/version_view.html,Danger,Nguy hiểm -apps/frappe/frappe/www/login.py,Email Address,Địa chỉ Email +DocType: Address,Email Address,Địa chỉ Email DocType: Workflow State,th-large,th - rộng DocType: Communication,Unread Notification Sent,Thông báo chưa đọc đã gửi apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,Xuất khẩu không được phép. Bạn cần {0} vai trò xuất khẩu. @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,Quản tr DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Tùy chọn liên hệ, như ""Truy vấn Bán hàng, Truy vấn Hỗ trợ"" v.v.. mỗi thứ một dòng mới hoặc cách nhau bằng dấu phẩy." apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,Thêm một đánh dấu ... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Chân dung -DocType: Data Migration Run,Insert,Chèn +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,Chèn apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,Cho phép truy cập Google Drive apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Chọn {0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,Hãy nhập URL cơ sở @@ -119,17 +122,17 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 phút tr 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ủ đề DocType: Company History,Company History,Lịch sử công ty -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,Thiết lập lại +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,Thiết lập lại DocType: Workflow State,volume-up,tăng âm lượng apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks gọi các yêu cầu API vào các ứng dụng web +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,Hiển thị Trac trở lại DocType: DocType,Default Print Format,Mặc định In Định dạng DocType: Workflow State,Tags,các lần đánh dấu apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Không: Kết thúc quy trình làm việc apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0}Lĩnh vực không thể được thiết lập là duy nhất trong {1}, vì đang tồn tại những giá trị không phải duy nhất" -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,Các loại tài liệu +DocType: Global Search Settings,Document Types,Các loại tài liệu DocType: Address,Jammu and Kashmir,Jammu và Kashmir DocType: Workflow,Workflow State Field,Đoạn trạng thái công việc -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Cài đặt> Người dùng DocType: Language,Guest,Khách DocType: DocType,Title Field,Đoạn tiêu đề DocType: Error Log,Error Log,Lỗi hệ thống @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Lặp đi lặp lại như "abcabcabc" chỉ hơi khó đoán hơn "abc" DocType: Notification,Channel,Kênh apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.","Nếu bạn nghĩ rằng điều này là không được phép, hãy thay đổi mật khẩu quản trị." +DocType: Data Import Beta,Data Import Beta,Beta nhập dữ liệu apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0} là bắt buộc DocType: Assignment Rule,Assignment Rules,Quy tắc chuyển nhượng DocType: Workflow State,eject,đào thải @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,Tên hành động công vi apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,DocType không thể được sáp nhập DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,Không phải là một tập tin zip +DocType: Global Search DocType,Global Search DocType,Tài liệu tìm kiếm toàn cầu DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                                      New {{ doc.doctype }} #{{ doc.name }}
                                                                                                                      ","Để thêm chủ đề động, hãy sử dụng thẻ jinja như
                                                                                                                       New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                                      " @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,Sự kiện Doc apps/frappe/frappe/public/js/frappe/utils/user.js,You,Bạn DocType: Braintree Settings,Braintree Settings,Cài đặt Braintree +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,Tạo hồ sơ {0} thành công. apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Lưu bộ lọc DocType: Print Format,Helvetica,Helvetica apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},Không thể xóa {0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,Nhập tham số url cho t apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,Tự động lặp lại được tạo cho tài liệu này apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,Xem báo cáo trong trình duyệt của bạn apps/frappe/frappe/config/desk.py,Event and other calendars.,Tổ chức sự kiện và lịch khác. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0} (bắt buộc 1 hàng) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,Tất cả các trường là cần thiết để duyệt bình luận DocType: Custom Script,Adds a client custom script to a DocType,Thêm tập lệnh tùy chỉnh của máy khách vào DocType DocType: Print Settings,Printer Name,Tên máy in @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,Cật nhật hàng loạt DocType: Workflow State,chevron-up,Chevron-up DocType: DocType,Allow Guest to View,Cho phép Khách đến Xem apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0} không nên giống với {1} -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,Xóa {0} mục vĩnh viễn? apps/frappe/frappe/utils/oauth.py,Not Allowed,Không được phép @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,Hiển thị DocType: Email Group,Total Subscribers,Tổng số người theo dõi apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},Đầu {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,Số lượng hàng apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Nếu một vai trò không có quyền truy cập ở cấp độ 0, sau đó cấp độ cao hơn là vô nghĩa." apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,Lưu DocType: Comment,Seen,Đã xem @@ -308,6 +315,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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ụ: 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. DocType: Workflow State,Filter,bộ lọc @@ -330,6 +338,7 @@ DocType: Activity Log,Closed,Đã đóng DocType: Blog Settings,Blog Title,Nhan đề blog apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,Các vai trò tiêu chuẩn không thể bị vô hiệu hóa apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,Loại Trò chuyện +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,Cột bản đồ DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Đăng ký nhận bản tin apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,Không thể sử dụng phụ truy vấn theo thứ tự bằng @@ -365,6 +374,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType {0} provided f apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,Thêm một cột apps/frappe/frappe/www/contact.html,Your email address,Địa chỉ email của bạn DocType: Desktop Icon,Module,Mô-đun +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,Đã cập nhật thành công các bản ghi {0} trong số {1}. DocType: Notification,Send Alert On,Gửi báo Mở DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Tùy chỉnh Label, In Ẩn, Default, vv" apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Giải nén tập tin ... @@ -398,6 +408,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,Người DocType: System Settings,Currency Precision,Tiền tệ chính xác DocType: System Settings,Currency Precision,Tiền tệ chính xác apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,Giao dịch khác là chặn này. Vui lòng thử lại trong vài giây. +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,Xóa bộ lọc DocType: Test Runner,App,App apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,Các tệp đính kèm không thể được liên kết chính xác với tài liệu mới DocType: Chat Message Attachment,Attachment,Đính kèm @@ -423,6 +434,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,Không thể apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.","Lịch Google - Không thể cập nhật Sự kiện {0} trong Lịch Google, mã lỗi {1}." apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Tìm kiếm hoặc gõ lệnh DocType: Activity Log,Timeline Name,tên dòng thời gian +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,Chỉ một {0} có thể được đặt làm chính. DocType: Email Account,e.g. smtp.gmail.com,ví dụ: smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,Thêm một quy tắc mới DocType: Contact,Sales Master Manager,QUản lý bản hàng gốc @@ -440,7 +452,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,Trường tên đệm LDAP apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Nhập {0} trong số {1} DocType: GCalendar Account,Allow GCalendar Access,Cho phép Truy cập GCalendar -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0} là một trường bắt buộc +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0} là một trường bắt buộc apps/frappe/frappe/templates/includes/login/login.js,Login token required,Đăng nhập mã thông báo yêu cầu apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,Xếp hạng hàng tháng: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Chọn nhiều mục danh sách @@ -470,6 +482,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},Không thể kết nối apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,Một từ đơn giản dễ đoán apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},Tự động gán không thành công: {0} apps/frappe/frappe/templates/includes/search_box.html,Search...,Tìm kiếm... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,Vui lòng chọn Công ty apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Sáp nhập chỉ có thể giữa nhóm - tới - nhóm hoặc nút lá - tới - nút lá apps/frappe/frappe/utils/file_manager.py,Added {0},Thêm {0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,Không có bản ghi phù hợp. Hãy kiếm bản khác. @@ -482,7 +495,6 @@ DocType: Google Settings,OAuth Client ID,ID khách hàng OAuth DocType: Auto Repeat,Subject,Chủ đề apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,Quay lại Desk DocType: Web Form,Amount Based On Field,Số tiền Dựa Trên Dòng -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/core/doctype/docshare/docshare.py,User is mandatory for Share,Người sử dụng là bắt buộc đối với chia sẻ DocType: DocField,Hidden,ẩn DocType: Web Form,Allow Incomplete Forms,Cho phép hình thức không đầy đủ @@ -519,6 +531,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} và {1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,Bắt đầu một cuộc trò chuyện. DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",Luôn luôn thêm "Dự thảo" Heading cho dự thảo văn bản in ấn apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},Lỗi trong thông báo: {} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} năm trước DocType: Data Migration Run,Current Mapping Start,Bắt đầu lập bản đồ hiện tại apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,Email đã được đánh dấu là spam DocType: Comment,Website Manager,Quản trị viên Website @@ -556,6 +569,7 @@ DocType: Workflow State,barcode,mã vạch apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,Việc sử dụng truy vấn phụ hoặc chức năng bị hạn chế apps/frappe/frappe/config/customization.py,Add your own translations,Thêm bản dịch của riêng bạn DocType: Country,Country Name,Tên nước +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,Mẫu trống DocType: About Us Team Member,About Us Team Member,Thành viên nhóm 'Về chúng tôi' apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Quyền hạn được thiết lập trên vai trò và các loại tài liệu (gọi là doctypes) bằng cách thiết lập quyền như Đọc, Viết, Tạo, Xóa, Gửi, Hủy bỏ, sửa đổi, Báo cáo, nhập khẩu, xuất khẩu, in, email và thiết lập quyền người dùng" DocType: Event,Wednesday,Thứ tư @@ -567,6 +581,7 @@ DocType: Website Settings,Website Theme Image Link,link ảnh giao diện websit DocType: Web Form,Sidebar Items,Mục bên DocType: Web Form,Show as Grid,Hiển thị dưới dạng lưới apps/frappe/frappe/installer.py,App {0} already installed,Phần mềm {0} đã được cài đặt +DocType: Energy Point Rule,Users assigned to the reference document will get points.,Người dùng được gán cho tài liệu tham khảo sẽ nhận được điểm. apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,Không có xem trước DocType: Workflow State,exclamation-sign,chấm than-dấu apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,Giải nén tập tin {0} @@ -602,6 +617,7 @@ DocType: Notification,Days Before,những ngày trước đó apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,Sự kiện hàng ngày sẽ kết thúc vào cùng một ngày. apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,Chỉnh sửa... DocType: Workflow State,volume-down,giảm âm lượng +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 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 @@ -658,6 +674,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,Nhà phát triển apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,Tạo apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,{0} trong dãy {1} không thể đồng thời có cả URL và các vật tư nhỏ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for the following tables: {0},Cần có ít nhất một hàng cho các bảng sau: {0} DocType: Print Format,Default Print Language,Ngôn ngữ in mặc định apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,Tổ tiên của apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,Gốc {0} không thể bị xóa @@ -700,6 +717,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","mục tiêu = ""_trống""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,Chủ +DocType: Data Import Beta,Import File,Nhập tệp apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,Cột {0} đã tồn tại. DocType: ToDo,High,Cao apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,Sự kiện mới @@ -728,8 +746,6 @@ DocType: User,Send Notifications for Email threads,Gửi thông báo cho chủ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,Cấp cao apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,Không có trong chế độ nhà phát triển apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,Sao lưu tệp đã sẵn sàng -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",Điểm tối đa được phép sau khi nhân điểm với giá trị số nhân (Lưu ý: Không có giá trị đặt giới hạn là 0) DocType: DocField,In Global Search,Trong Tìm kiếm Toàn cầu DocType: System Settings,Brute Force Security,Brute Force Security DocType: Workflow State,indent-left,thụt lề trái @@ -772,6 +788,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',Tài '{0}' đã có vai trò '{1}' DocType: System Settings,Two Factor Authentication method,Phương pháp xác thực hai yếu tố apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Trước tiên hãy đặt tên và lưu bản ghi. +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5 hồ sơ apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},Chia sẻ với {0} apps/frappe/frappe/email/queue.py,Unsubscribe,Hủy đăng ký DocType: View Log,Reference Name,Tên tài liệu tham khảo @@ -822,6 +839,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,Theo dõi trạng thái email DocType: Note,Notify Users On Every Login,Thông báo cho người dùng mỗi lần đăng nhập DocType: Note,Notify Users On Every Login,Thông báo cho người dùng mỗi lần đăng nhập +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,Không thể khớp cột {0} với bất kỳ trường nào +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,Cập nhật thành công hồ sơ {0}. DocType: PayPal Settings,API Password,API Mật khẩu apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,Nhập mô-đun python hoặc chọn loại kết nối apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,Fieldname không được thiết lập cho Trường Tuỳ chỉnh @@ -850,9 +869,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0 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ị apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},Trùng lặp tên {0} {1} -DocType: Email Queue,Retry,Thử lại +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,Thử lại +DocType: Contact Phone,Number,Con số DocType: Web Form Field,Web Form Field,Trường mẫu Web apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,Bạn có một tin nhắn mới từ: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,Chỉnh sửa HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,Vui lòng nhập URL chuyển hướng apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -878,7 +899,7 @@ DocType: Notification,View Properties (via Customize Form),Xem Tài sản (qua m apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,Nhấn vào một tập tin để chọn nó. DocType: Note Seen By,Note Seen By,Ghi chú đã xem bởi apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,Hãy thử sử dụng một mô hình bàn phím lâu hơn với nhiều lượt hơn -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,Bảng thành tích +,LeaderBoard,Bảng thành tích DocType: DocType,Default Sort Order,Thứ tự sắp xếp mặc định DocType: Address,Rajasthan,Rajasthan DocType: Email Template,Email Reply Help,Trợ giúp trả lời qua email @@ -913,6 +934,7 @@ apps/frappe/frappe/utils/data.py,Cent,Phần trăm apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,Soạn email apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).","Báo cáo quy trình công việc (ví dụ như Dự thảo, phê duyệt, hủy bỏ)." DocType: Print Settings,Allow Print for Draft,cho phép in nháp +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/link_selector.js,Set Quantity,Đặt Số lượng apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Gửi tài liệu này để xác nhận DocType: Contact,Unsubscribed,Bỏ đăng ký @@ -944,6 +966,7 @@ DocType: LDAP Settings,Organizational Unit for Users,Đơn vị tổ chức cho ,Transaction Log Report,Báo cáo nhật ký giao dịch DocType: Custom DocPerm,Custom DocPerm,tuỳ chỉnh DocPerm DocType: Newsletter,Send Unsubscribe Link,Gửi Hủy đăng ký liên kết +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,Có một số bản ghi được liên kết cần được tạo trước khi chúng tôi có thể nhập tệp của bạn. Bạn có muốn tự động tạo các bản ghi bị thiếu sau đây không? DocType: Access Log,Method,Phương pháp DocType: Report,Script Report,Kịch bản Báo cáo DocType: OAuth Authorization Code,Scopes,scopes @@ -985,6 +1008,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,Tải lên thành công apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,Bạn đã kết nối internet. DocType: Social Login Key,Enable Social Login,Bật đăng nhập xã hội +DocType: Data Import Beta,Warnings,Cảnh báo DocType: Communication,Event,Sự Kiện apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:","Trên {0}, {1} đã viết:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,Không thể xóa lĩnh vực tiêu chuẩn. Bạn có thể ẩn nó nếu bạn muốn @@ -1040,6 +1064,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,Chèn ph DocType: Kanban Board Column,Blue,Màu xanh da trời apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,Tất cả các tùy chỉnh sẽ được gỡ bỏ. Vui lòng xác nhận. DocType: Page,Page HTML,Trang HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,Xuất khẩu hàng bị xóa apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Tên nhóm không thể để trống. apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,Các nút khác có thể chỉ có thể tạo ra dưới các nút kiểu 'Nhóm' DocType: SMS Parameter,Header,Phần đầu @@ -1079,13 +1104,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Yêu cầu Timed Out apps/frappe/frappe/config/settings.py,Enable / Disable Domains,Bật / Tắt tên miền DocType: Role Permission for Page and Report,Allow Roles,cho phép Vai trò +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,Đã nhập thành công các bản ghi {0} trong số {1}. DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")","Biểu thức Python đơn giản, Ví dụ: Trạng thái trong ("Không hợp lệ")" DocType: User,Last Active,Hoạt động cuối DocType: Email Account,SMTP Settings for outgoing emails,Cài đặt SMTP cho email gửi đi apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,Chọn một DocType: Data Export,Filter List,Danh sách bộ lọc DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,Mật khẩu của bạn đã được cập nhật. Đây là mật khẩu mới của bạ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 @@ -1094,7 +1119,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,ID người dùng DocType: Communication,Sent,Đã gửi DocType: Address,Kerala,Kerala -DocType: File,Lft,lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,Quản trị DocType: User,Simultaneous Sessions,phiên đồng thời DocType: Social Login Key,Client Credentials,Giây chứng nhận khách hàng @@ -1126,7 +1150,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},Cập n apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,Tổng DocType: DocType,User Cannot Create,Người sử dụng không thể tạo apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Thực hiện thành công -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,Thư mục {0} không tồn tại apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,truy cập Dropbox được chấp nhận! DocType: Customize Form,Enter Form Type,Nhập Loại Mẫu DocType: Google Drive,Authorize Google Drive Access,Cho phép truy cập Google Drive @@ -1134,7 +1157,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,Không có bản ghi được gắn thẻ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Di Dòng apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,Bạn không kết nối Internet. Thử lại sau khi. -DocType: User,Send Password Update Notification,Gửi mật khẩu thông báo Update apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Cho phép DocType, DocType. Chị cẩn thận đó!" apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email","Các định dạng tùy chỉnh cho in ấn, Email" apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},Tổng của {0} @@ -1220,6 +1242,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,Mã xác minh không apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Tích hợp danh bạ Google bị vô hiệu hóa. DocType: Assignment Rule,Description,Mô tả DocType: Print Settings,Repeat Header and Footer in PDF,Lặp lại Header và Footer trong PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,Sự thất bại DocType: Address Template,Is Default,Mặc định là DocType: Data Migration Connector,Connector Type,Loại trình kết nối apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,Tên cột không thể để trống @@ -1232,6 +1255,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,Chuyển đến tran DocType: LDAP Settings,Password for Base DN,Mật khẩu cho cơ sở DN apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,bảng Dòng 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/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 @@ -1285,6 +1309,7 @@ DocType: Print Settings,Enable Raw Printing,Cho phép in thô DocType: Website Route Redirect,Source,Nguồn apps/frappe/frappe/templates/includes/list/filters.html,clear,trong sáng apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,Đã kết thúc +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Cài đặt> Người dùng DocType: Prepared Report,Filter Values,Giá trị bộ lọc DocType: Communication,User Tags,Các lần đánh dấu người sử dụng DocType: Data Migration Run,Fail,Thất bại @@ -1341,6 +1366,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,Theo ,Activity,Hoạt động DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Giúp đỡ: Để liên kết đến bản ghi khác trong hệ thống, sử dụng ""# Mẫu / Lưu ý / [Chú ý Tên]"" như URL liên kết. (Không sử dụng ""http://"")" DocType: User Permission,Allow,Cho phép +DocType: Data Import Beta,Update Existing Records,Cập nhật hồ sơ hiện có apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,Hãy tránh những từ và ký tự lặp đi lặp lại DocType: Energy Point Rule,Energy Point Rule,Quy tắc điểm năng lượng DocType: Communication,Delayed,Bị hoãn @@ -1353,9 +1379,7 @@ DocType: Milestone,Track Field,Linh vực theo doi DocType: Notification,Set Property After Alert,Đặt thuộc tính Sau khi Thông báo apps/frappe/frappe/config/customization.py,Add fields to forms.,Thêm các lĩnh vực với các hình thức. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,Có vẻ như có gì đó không ổn với cấu hình Paypal của trang web này. -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/sidebar/review.js,Add Review,Thêm nhận xét -DocType: File,rgt,rgt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),Cỡ chữ (px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,Chỉ các DocTypes tiêu chuẩn mới được phép tùy chỉnh từ Biểu mẫu tùy chỉnh. DocType: Email Account,Sendgrid,Sendgrid @@ -1392,6 +1416,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,L apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,Xin lỗi! Bạn không thể xóa nhận xét tự động tạo ra DocType: Google Settings,Used For Google Maps Integration.,Được sử dụng để tích hợp Google Maps. apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,Tài liệu tham khảo DocType +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,Không có hồ sơ sẽ được xuất khẩu DocType: User,System User,Hệ thống tài DocType: Report,Is Standard,Là tiêu chuẩn DocType: Desktop Icon,_report,_bài báo cáo @@ -1407,6 +1432,7 @@ DocType: Workflow State,minus-sign,dấu trừ apps/frappe/frappe/public/js/frappe/request.js,Not Found,Không tìm thấy apps/frappe/frappe/www/printview.py,No {0} permission,Không {0} quyền hạn apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Xuất Quyền Tuỳ chỉnh +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,Không tìm thấy vật nào. DocType: Data Export,Fields Multicheck,Trường Multicheck DocType: Activity Log,Login,Đăng nhập DocType: Web Form,Payments,Thanh toán @@ -1467,8 +1493,9 @@ DocType: Address,Postal,Bưu chính DocType: Email Account,Default Incoming,Mặc định Incoming DocType: Workflow State,repeat,lặp lại DocType: Website Settings,Banner,Biểu ngữ +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},Giá trị phải là một trong {0} DocType: Role,"If disabled, this role will be removed from all users.","Nếu vô hiệu hóa, vai trò này sẽ được gỡ bỏ khỏi tất cả người dùng." -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,Chuyển đến Danh sách {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Go to {0} List,Chuyển đến Danh sách {0} 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 @@ -1482,6 +1509,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,Tên trường địa ph DocType: DocType,Track Changes,theo dõi các thay đổi DocType: Workflow State,Check,Kiểm tra DocType: Chat Profile,Offline,ẩn +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},Đã nhập thành công {0} DocType: User,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Gửi tin nhắn hủy bỏ đăng ký trong email apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,Sửa Tiêu đề @@ -1508,11 +1536,11 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Attach Document Print 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/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 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0} đã gán giá trị mặc định cho {1}. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                      No results found for '

                                                                                                                      ,

                                                                                                                      Không tìm thấy kết quả nào cho '

                                                                                                                      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 @@ -1533,8 +1561,10 @@ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Không được phép 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Thiết lập> Quyền người dùng DocType: LDAP Group Mapping,LDAP Group Mapping,Ánh xạ nhóm LDAP DocType: Dashboard Chart,Chart Options,Tùy chọn biểu đồ +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,Cột không tên apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0} từ {1} đến {2} trong hàng # {3} DocType: Communication,Expired,Hết hạn apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,Dường như mã thông báo bạn đang sử dụng không hợp lệ! @@ -1544,6 +1574,7 @@ DocType: DocType,System,Hệ thống DocType: Web Form,Max Attachment Size (in MB),Max Size Attachment (tính bằng MB) apps/frappe/frappe/www/login.html,Have an account? Login,Có một tài khoản? Đăng nhập DocType: Workflow State,arrow-down,mũi tên xuống +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},Hàng {0} apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},Người sử dụng không được phép xóa {0}: {1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} trong tổng số {1} apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Lần cập nhật cuối vào @@ -1561,6 +1592,7 @@ DocType: Custom Role,Custom Role,Vai trò tùy chỉnh apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,Trang chủ / kiểm tra Thư mục 2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Nhập mật khẩu của bạn DocType: Dropbox Settings,Dropbox Access Secret,Dropbox truy cập bí mật +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(Bắt buộ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. @@ -1635,6 +1667,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,Hiển th apps/frappe/frappe/desk/form/assign_to.py,New Message,Tin nhắn mới DocType: File,Preview HTML,Preview HTML DocType: Desktop Icon,query-report,truy vấn báo cáo +DocType: Data Import Beta,Template Warnings,Cảnh báo mẫu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Bộ lọc lưu DocType: DocField,Percent,Phần trăm apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,Xin hãy thiết lập bộ lọc @@ -1656,6 +1689,7 @@ DocType: Custom Field,Custom,Tuỳ chỉnh DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth","Nếu được bật, người dùng đăng nhập từ Địa chỉ IP bị hạn chế sẽ không được nhắc về Xác thực hai yếu tố" DocType: Auto Repeat,Get Contacts,Tải danh sách liên hệ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},Bài viết đệ dưới {0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,Bỏ qua cột không tên DocType: Notification,Send alert if date matches this field's value,Gửi cảnh báo nếu ngày phù hợp với giá trị của lĩnh vực này DocType: Workflow,Transitions,Chuyển tiếp apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} đến {2} @@ -1679,6 +1713,7 @@ DocType: Workflow State,step-backward,bước lùi apps/frappe/frappe/utils/boilerplate.py,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Xin vui lòng thiết lập các phím truy cập Dropbox trong cấu hình trang web của bạn apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,Xóa hồ sơ này để cho phép gửi đến địa chỉ email này +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)","Nếu cổng không chuẩn (ví dụ: POP3: 995/110, IMAP: 993/143)" apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,Tùy chỉnh phím tắt apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Chỉ các trường bắt buộc là cần thiết để làm hồ sơ mới. Bạn có thể xóa các cột không bắt buộc nếu bạn muốn. apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,Hiển thị thêm hoạt động @@ -1786,7 +1821,9 @@ DocType: Note,Seen By Table,Nhìn thấy bằng Bảng apps/frappe/frappe/www/third_party_apps.html,Logged in,Đăng nhập apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Mặc định Gửi và Inbox DocType: System Settings,OTP App,Ứng dụng OTP +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record out of {1}.,Đã cập nhật thành công bản ghi {0} trong số {1}. DocType: Google Drive,Send Email for Successful Backup,Gửi email để sao lưu thành công +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.py,Scheduler is inactive. Cannot import data.,Trình lập lịch biểu không hoạt động. Không thể nhập dữ liệu. DocType: Print Settings,Letter,Chữ DocType: DocType,"Naming Options:
                                                                                                                      1. field:[fieldname] - By Field
                                                                                                                      2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                                      3. Prompt - Prompt user for a name
                                                                                                                      4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                                      5. @@ -1800,6 +1837,7 @@ DocType: GCalendar Account,Next Sync Token,Mã thông báo đồng bộ hóa ti DocType: Energy Point Settings,Energy Point Settings,Cài đặt điểm năng lượng DocType: Async Task,Succeeded,Thành công apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Trường bắt buộc là cần thiết trong {0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                        No results found for '

                                                                                                                        ,

                                                                                                                        Không tìm thấy kết quả nào cho '

                                                                                                                        apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,Thiết lập lại Quyền cho {0}? apps/frappe/frappe/config/desktop.py,Users and Permissions,Người sử dụng và Quyền DocType: S3 Backup Settings,S3 Backup Settings,Cài đặt sao lưu S3 @@ -1871,6 +1909,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,Trong DocType: Notification,Value Change,Thay đổi giá trị DocType: Google Contacts,Authorize Google Contacts Access,Cho phép truy cập danh bạ Google apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Chỉ hiển thị các trường Số liệu từ Báo cáo +DocType: Data Import Beta,Import Type,Loại nhập khẩu DocType: Access Log,HTML Page,Trang HTML DocType: Address,Subsidiary,Công ty con apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,Đang cố gắng kết nối với khay QZ ... @@ -1881,7 +1920,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,Mail serve DocType: Custom DocPerm,Write,Viết apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,Quản trị viên chỉ được phép tạo ra truy vấn / bản thảo báo cáo apps/frappe/frappe/public/js/frappe/form/save.js,Updating,Đang cập nhật -DocType: File,Preview,Xem trước +DocType: Data Import Beta,Preview,Xem trước apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",Dòng "giá trị" là bắt buộc. Hãy xác định giá trị được cập nhật DocType: Customize Form,Use this fieldname to generate title,Sử dụng đoạn tên này để tạo tiêu đề apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,Nhập Email Từ @@ -1966,6 +2005,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,Trình duyệt DocType: Social Login Key,Client URLs,URL máy khách apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,Một số thông tin là mất tích apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,Đã tạo thành công {0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}","Bỏ qua {0} trong số {1}, {2}" DocType: Custom DocPerm,Cancel,Hủy bỏ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Xóa hàng loạt apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,File {0} không tồn tại @@ -1993,7 +2033,6 @@ DocType: GCalendar Account,Session Token,Mã thông báo phiên DocType: Currency,Symbol,Biểu tượng apps/frappe/frappe/model/base_document.py,Row #{0}:,Hàng # {0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,Xác nhận xóa dữ liệu -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,Mật khẩu mới đã được email apps/frappe/frappe/auth.py,Login not allowed at this time,Đăng nhập không được phép tại thời điểm này DocType: Data Migration Run,Current Mapping Action,Hành động lập bản đồ hiện tại DocType: Dashboard Chart Source,Source Name,Tên nguồn @@ -2006,6 +2045,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,Pin apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,Theo dõi bởi DocType: LDAP Settings,LDAP Email Field,Trường Email LDAP apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Danh sách +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,Xuất bản ghi {0} apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,Đã được sử dụng để làm của danh sách DocType: User Email,Enable Outgoing,Kích hoạt Outgoing DocType: Address,Fax,Fax @@ -2065,8 +2105,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,In tài liệu apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Nhảy đến trường DocType: Contact Us Settings,Forward To Email Address,Chuyển tiếp tới địa chỉ email +DocType: Contact Phone,Is Primary Phone,Là điện thoại chính apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Gửi email đến {0} để liên kết nó ở đây. DocType: Auto Email Report,Weekdays,Ngày thường +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0} hồ sơ sẽ được xuất apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,đoạn tiêu đề phải là một đoạn tên hợp lệ DocType: Post Comment,Post Comment,đăng bình luận apps/frappe/frappe/config/core.py,Documents,Tài liệu @@ -2085,7 +2127,9 @@ eval:doc.age>18",Trường này sẽ chỉ xuất hiện nếu fieldname đ DocType: Social Login Key,Office 365,Văn phòng 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hôm nay apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,Hôm nay +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Một khi bạn đã thiết lập điều này, người dùng sẽ chỉ có khả năng truy cập các tài liệu (ví dụ: Bài viết trên blog) nơi liên kết tồn tại (ví dụ: Blogger)." +DocType: Data Import Beta,Submit After Import,Gửi sau khi nhập DocType: Error Log,Log of Scheduler Errors,Các lỗi đăng nhập của người lập trình DocType: User,Bio,Sinh học DocType: OAuth Client,App Client Secret,App Khách hàng Bí mật @@ -2104,10 +2148,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,Vô hiệu hóa liên kết ở mục Đăng ký khách hàng trong trang đăng nhập apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,Để giao / chủ sở hữu DocType: Workflow State,arrow-left,mũi tên bên trái +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,Xuất 1 bản ghi DocType: Workflow State,fullscreen,toàn màn hình DocType: Chat Token,Chat Token,Chat Token apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,Tạo biểu đồ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,Không nhập DocType: Web Page,Center,Trung tâm DocType: Notification,Value To Be Set,Giá trị Để Đặt apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},Chỉnh sửa {0} @@ -2127,6 +2173,7 @@ DocType: Print Format,Show Section Headings,Hiện tiêu đề mục DocType: Bulk Update,Limit,Giới hạn apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},Chúng tôi đã nhận được yêu cầu xóa dữ liệu {0} được liên kết với: {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,Thêm mục mới +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,Hồ sơ đã lọc apps/frappe/frappe/www/printview.py,No template found at path: {0},Không có mẫu tìm thấy tại đường : {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Không có tài khoản email DocType: Comment,Cancelled,Hủy @@ -2214,10 +2261,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,Đặt lại loại tài liệu tìm kiếm toàn cầu. ,Lead Conversion Time,Thời gian chuyển đổi khách hàng tiềm năng apps/frappe/frappe/desk/page/activity/activity.js,Build Report,Báo cáo xây dựng DocType: Note,Notify users with a popup when they log in,Thông báo cho người sử dụng với một popup khi họ đăng nhập +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,Mô-đun lõi {0} không thể được tìm kiếm trong Tìm kiếm toàn cầu. apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,Trò chuyện mở apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} không tồn tại, hãy chọn một mục tiêu mới để hợp nhất" DocType: Data Migration Connector,Python Module,Mô đun Python @@ -2234,8 +2284,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,Đóng 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Thiết lập> Quyền người dùng -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,Cập nhật +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,Cập nhật DocType: Transaction Log,Transaction Hash,Giao dịch Hash DocType: Error Snapshot,Snapshot View,Xem ảnh chụp apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,Xin vui lòng lưu bản tin trước khi gửi đi @@ -2251,6 +2300,7 @@ DocType: Data Import,In Progress,Trong tiến trình apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,Xếp hàng đợi để sao lưu. Nó có thể mất một vài phút đến một giờ. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,Quyền của người dùng đã tồn tại +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},Cột ánh xạ {0} đến trường {1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},Xem {0} DocType: User,Hourly,Hàng giờ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Đăng ký OAuth ứng dụng khách hàng @@ -2263,7 +2313,6 @@ DocType: SMS Settings,SMS Gateway URL,URL cổng tin nhắn apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} không thể là ""{2}"". Nó phải là một trong những ""{3}""" apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},đạt được {0} thông qua quy tắc tự động {1} apps/frappe/frappe/utils/data.py,{0} or {1},{0} hoặc {1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,Mật khẩu Cập nhật DocType: Workflow State,trash,thùng rác DocType: System Settings,Older backups will be automatically deleted,sao lưu cũ sẽ được tự động xóa apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,ID truy cập không hợp lệ hoặc khóa truy cập bí mật. @@ -2291,6 +2340,7 @@ DocType: Address,Preferred Shipping Address,Địa chỉ giao hàng ưu tiên apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,Với đầu thư apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0} đã tạo ra {1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},Không được phép cho {0}: {1} trong Hàng {2}. Trường bị hạn chế: {3} +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 DocType: S3 Backup Settings,eu-west-1,eu-tây-1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.","Nếu điều này được chọn, các hàng có dữ liệu hợp lệ sẽ được nhập và các hàng không hợp lệ sẽ được bán vào một tệp mới để bạn nhập sau này." apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,Tài liệu chỉ có thể sửa bằng cách sử dụng của vai trò @@ -2317,6 +2367,7 @@ DocType: Custom Field,Is Mandatory Field,là Trường bắt buộc DocType: User,Website User,Website của người dùng apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,Một số cột có thể bị cắt khi in sang PDF. Cố gắng giữ số lượng cột dưới 10. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,Không bằng +DocType: Data Import Beta,Don't Send Emails,Không gửi email DocType: Integration Request,Integration Request Service,Yêu cầu dịch vụ tích hợp DocType: Access Log,Access Log,Nhật ký truy cập DocType: Website Script,Script to attach to all web pages.,Script để đính kèm vào tất cả các trang web. @@ -2357,6 +2408,7 @@ DocType: Contact,Passive,Thụ động DocType: Auto Repeat,Accounts Manager,Quản lý tài khoản apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},Bài tập cho {0} {1} apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,Thanh toán của bạn bị hủy. +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/views/reports/report_view.js,Select File Type,Chọn File Type apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,Xem tất cả DocType: Help Article,Knowledge Base Editor,Người biên tập kiến thức nền @@ -2389,6 +2441,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,Dữ liệu apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,Trạng thái bản ghi apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,Chấp nhận những thứ thật cần thiết +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,Các hồ sơ sau đây cần được tạo trước khi chúng tôi có thể nhập tệp của bạn. DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Mã ủy quyền apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,Không được phép nhập khẩu DocType: Deleted Document,Deleted DocType,DocType xóa @@ -2443,8 +2496,8 @@ DocType: GCalendar Settings,Google API Credentials,Thông tin xác thực API c apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Bắt đầu phiên không thành công apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Bắt đầu phiên không thành công apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Email này được gửi tới {0} và sao chép vào {1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},đã gửi tài liệu này {0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} năm trước DocType: Social Login Key,Provider Name,Tên nhà cung cấp apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},Tạo một {0} mới DocType: Contact,Google Contacts,Danh bạ Google @@ -2452,6 +2505,7 @@ DocType: GCalendar Account,GCalendar Account,Tài khoản GCalendar DocType: Email Rule,Is Spam,là Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Báo cáo {0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},Mở {0} +DocType: Data Import Beta,Import Warnings,Cảnh báo nhập khẩu DocType: OAuth Client,Default Redirect URI,Mặc định Redirect URI DocType: Auto Repeat,Recipients,Những Người nhận DocType: System Settings,Choose authentication method to be used by all users,Chọn phương thức xác thực để sử dụng bởi tất cả người dùng @@ -2570,6 +2624,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,Báo cáo c apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Lỗi Webhook Slack DocType: Email Flag Queue,Unread,chưa đọc DocType: Bulk Update,Desk,Bàn giấy +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},Bỏ qua cột {0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),Bộ lọc phải là một dãy hữu hạn hoặc một danh sách (trong 1 danh sách) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,Viết một truy vấn LỰA CHỌN. Ghi nhận kết quả không đánh số trang (tất cả các dữ liệu được gửi trong một đi). DocType: Email Account,Attachment Limit (MB),Giới hạn Attachment (MB) @@ -2584,6 +2639,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,Tạo mới DocType: Workflow State,chevron-down,Chevron xuống apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),Gửi mail không được gửi đến {0} (bỏ đăng ký / vô hiệu hóa) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,Chọn các trường để xuất DocType: Async Task,Traceback,Tìm lại DocType: Currency,Smallest Currency Fraction Value,Nhỏ nhất Fraction tệ Giá trị apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,Chuẩn bị báo cáo @@ -2592,6 +2648,7 @@ DocType: Workflow State,th-list,th-danh sách DocType: Web Page,Enable Comments,Cho phép nhận xét apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Ghi chú: DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Hạn chế người dùng từ địa chỉ IP này mà thôi. Nhiều địa chỉ IP có thể được thêm bằng cách tách biệt bằng dấu phẩy. Cũng chấp nhận địa chỉ IP một phần như (111.111.111) +DocType: Data Import Beta,Import Preview,Xem trước nhập DocType: Communication,From,Từ apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,Chọn một nút nhóm đầu tiên. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Tìm {0} trong {1} @@ -2691,6 +2748,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,Giữa DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,Xếp hàng +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: Braintree Settings,Use Sandbox,sử dụng Sandbox apps/frappe/frappe/utils/goal.py,This month,Tháng này apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Định dạng in mặc định mới @@ -2706,6 +2764,7 @@ DocType: Session Default,Session Default,Phiên mặc định DocType: Chat Room,Last Message,Tin nhắn cuối cùng DocType: OAuth Bearer Token,Access Token,Mã truy cập DocType: About Us Settings,Org History,Org Lịch sử +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,Khoảng {0} phút còn lại DocType: Auto Repeat,Next Schedule Date,Ngày Lịch kế tiếp DocType: Workflow,Workflow Name,Tên công việc DocType: DocShare,Notify by Email,Thông báo qua email @@ -2735,6 +2794,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,tác giả apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,Tiếp tục gửi apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,Mở cửa trở lại +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,Hiển thị cảnh báo apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},Lại: {0} DocType: Address,Purchase User,Mua người dùng DocType: Data Migration Run,Push Failed,Đẩy không thành công @@ -2773,6 +2833,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,Tìm k apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,Bạn không được phép xem bản tin. DocType: User,Interests,Sở thích apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,Hướng dẫn đặt lại mật khẩu đã được gửi đến email của bạn +DocType: Energy Point Rule,Allot Points To Assigned Users,Phân bổ điểm cho người dùng được chỉ định apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Cấp độ 0 là dành cho quyền cấp tài liệu, \ cấp cao hơn cho quyền cấp trường." DocType: Contact Email,Is Primary,Là chính @@ -2796,6 +2857,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S 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 apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,Bắt đầu Nhập +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,Loại xuất khẩu DocType: Workflow State,circle-arrow-left,vòng tròn mũi tên bên trái DocType: System Settings,Force User to Reset Password,Buộc người dùng đặt lại mật khẩu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.","Để nhận báo cáo cập nhật, nhấp vào {0}." @@ -2809,13 +2871,16 @@ DocType: Contact,Middle Name,Tên đệm DocType: Custom Field,Field Description,Dòng Mô tả apps/frappe/frappe/model/naming.py,Name not set via Prompt,Tên được không thiết lập thông qua kỳ hạn apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Hộp thư đến email +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}","Cập nhật {0} trong số {1}, {2}" DocType: Auto Email Report,Filters Display,Bộ lọc hiển thị apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",Trường "đã sửa đổi" phải có mặt để thực hiện sửa đổi. +DocType: Contact,Numbers,Số apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0} đánh giá cao công việc của bạn trên {1} {2} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,Lưu bộ lọc DocType: Address,Plant,Cây apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Trả lời tất cả DocType: DocType,Setup,Cài đặt +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,Tất cả hồ sơ DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Địa chỉ Email có Danh bạ Google sẽ được đồng bộ hóa. DocType: Email Account,Initial Sync Count,Tính toán đồng bộ ban đầu DocType: Workflow State,glass,ly @@ -2840,7 +2905,7 @@ DocType: Workflow State,font,font chữ DocType: DocType,Show Preview Popup,Hiển thị xem trước Popup apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Đây là một top-100 mật khẩu chung. apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,Vui lòng kích hoạt cửa sổ pop-ups -DocType: User,Mobile No,Số Điện thoại di động +DocType: Contact,Mobile No,Số Điện thoại di động DocType: Communication,Text Content,Nội dung văn bản DocType: Customize Form Field,Is Custom Field,Là Trường Tuỳ chỉnh DocType: Workflow,"If checked, all other workflows become inactive.","Nếu được kiểm tra, tất cả các công việc khác trở nên không hoạt động." @@ -2886,6 +2951,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,Thêm apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,Tên của Format In mới apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,Chuyển đổi Sidebar DocType: Data Migration Run,Pull Insert,Kéo chèn +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)","Điểm tối đa được phép sau khi nhân điểm với giá trị số nhân (Lưu ý: Không giới hạn, hãy để trống trường này hoặc đặt 0)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,Mẫu không hợp lệ apps/frappe/frappe/model/db_query.py,Illegal SQL Query,Truy vấn SQL bất hợp pháp apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,Bắt buộc: DocType: Chat Message,Mentions,Đề cập @@ -2900,6 +2968,7 @@ DocType: User Permission,User Permission,Giấy phép sử dụng apps/frappe/frappe/templates/includes/blog/blog.html,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP không được cài đặt apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,Tải dữ liệu +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},thay đổi giá trị cho {0} {1} DocType: Workflow State,hand-right,tay phải DocType: Website Settings,Subdomain,Tên miền phụ DocType: S3 Backup Settings,Region,Vùng @@ -2927,10 +2996,12 @@ DocType: Braintree Settings,Public Key,Khóa công khai DocType: GSuite Settings,GSuite Settings,cài đặt GSuite DocType: Address,Links,Liên kết DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,Sử dụng Tên Địa chỉ Email được đề cập trong Tài khoản này làm Tên Người gửi cho tất cả các email được gửi bằng Tài khoản này. +DocType: Energy Point Rule,Field To Check,Trường để kiểm tra apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.","Danh bạ Google - Không thể cập nhật liên hệ trong Danh bạ Google {0}, mã lỗi {1}." apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,Vui lòng chọn Loại tài liệu. apps/frappe/frappe/model/base_document.py,Value missing for,Giá trị mất tích apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,Thêm mẫu con +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,Tiến độ nhập khẩu DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",Nếu điều kiện được thỏa mãn người dùng sẽ được thưởng điểm. ví dụ. doc.status == 'Đã đóng' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:đã đệ trình bản ghi không thể xóa @@ -2967,6 +3038,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,Cho phép truy cập l apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,Các trang web mà bạn đang tìm kiếm là mất tích. Đây có thể là vì nó được di chuyển hoặc có một lỗi đánh máy trong liên kết. apps/frappe/frappe/www/404.html,Error Code: {0},Mã lỗi: {0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Mô tả cho trang danh sách, trong văn bản đơn giản, chỉ có một vài dòng. (Tối đa 140 ký tự)" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0} là các trường bắt buộc DocType: Workflow,Allow Self Approval,Cho phép tự phê duyệt DocType: Event,Event Category,Danh mục sự kiện apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3015,8 +3087,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Chuyển tới DocType: Address,Preferred Billing Address,Địa chỉ thanh toán ưu tiên apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Quá nhiều kí tự trong một yêu cầu. Xin vui lòng gửi yêu cầu ngắn hơn apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,Google Drive đã được định cấu hình. +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,Loại tài liệu {0} đã được lặp lại. apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,giá trị thay đổi DocType: Workflow State,arrow-up,mũi tên lên +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,Cần có ít nhất một hàng cho bảng {0} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.","Để định cấu hình Lặp lại tự động, bật "Cho phép lặp lại tự động" từ {0}." DocType: OAuth Bearer Token,Expires In,hết hạn trong DocType: DocField,Allow on Submit,Cho phép khi Đệ trình @@ -3103,6 +3177,7 @@ DocType: Custom Field,Options Help,Tùy chọn Trợ giúp 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 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 @@ -3120,6 +3195,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,Mã xác minh DocType: Webhook,Webhook Request,Yêu cầu Webhook apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},** Thất bại: {0} đến {1}: {2} DocType: Data Migration Mapping,Mapping Type,Loại bản đồ +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,chọn Bắt buộc apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,duyệt apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.","Không cần ký hiệu, chữ số, hoặc con chữ in hoa" DocType: DocField,Currency,Tiền tệ @@ -3150,11 +3226,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,Đầu thư dựa trên apps/frappe/frappe/utils/oauth.py,Token is missing,Thông báo bị mất apps/frappe/frappe/www/update-password.html,Set Password,Đặt mật khẩu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,Nhập thành công hồ sơ {0}. apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,Lưu ý: Việc thay đổi tên trang sẽ xóa URL trước đó của trang apps/frappe/frappe/utils/file_manager.py,Removed {0},Đã Loại bỏ {0} DocType: SMS Settings,SMS Settings,Thiết lập tin nhắn SMS DocType: Company History,Highlight,Điểm nổi bật DocType: Dashboard Chart,Sum,Tổng +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,thông qua nhập dữ liệu DocType: OAuth Provider Settings,Force,Sức ảnh hưởng apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Đã đồng bộ hóa lần cuối {0} DocType: DocField,Fold,Gập lại @@ -3191,6 +3269,7 @@ DocType: Workflow State,Home,Trang chủ DocType: OAuth Provider Settings,Auto,Tự động DocType: System Settings,User can login using Email id or User Name,Người dùng có thể đăng nhập bằng cách sử dụng Email id hoặc User Name DocType: Workflow State,question-sign,câu hỏi-dấu +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0} bị vô hiệu hóa apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Trường "tuyến đường" là bắt buộc đối với Lượt xem web apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},Chèn Cột Trước {0} DocType: Energy Point Rule,The user from this field will be rewarded points,Người dùng từ lĩnh vực này sẽ được thưởng điểm @@ -3224,6 +3303,7 @@ DocType: Website Settings,Top Bar Items,Các mẫu hàng ở thanh trên cùng DocType: Notification,Print Settings,Thông số in ấn DocType: Page,Yes,Đồng ý DocType: DocType,Max Attachments,Max File đính kèm +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,Khoảng {0} giây còn lại DocType: Calendar View,End Date Field,Trường ngày kết thúc apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Phím tắt toàn cầu DocType: Desktop Icon,Page,Trang @@ -3336,6 +3416,7 @@ DocType: GSuite Settings,Allow GSuite access,Cho phép truy cập GSuite DocType: DocType,DESC,DESC DocType: DocType,Naming,Đặt tên apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,Chọn tất cả +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},Cột {0} apps/frappe/frappe/config/customization.py,Custom Translations,tuỳ chỉnh Dịch apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,"Tiến bộ, tiến trình" apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,bởi Vai trò @@ -3378,11 +3459,13 @@ DocType: Stripe Settings,Stripe Settings,Cài đặt Sọc DocType: Stripe Settings,Stripe Settings,Cài đặt Sọc DocType: Data Migration Mapping,Data Migration Mapping,Lập bản đồ chuyển đổi dữ liệu DocType: Auto Email Report,Period,Thời gian +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,Khoảng {0} phút còn lại apps/frappe/frappe/www/login.py,Invalid Login Token,Đăng nhập vào thông báo không hợp lệ apps/frappe/frappe/public/js/frappe/chat.js,Discard,Huỷ bỏ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 hour ago,1 giờ trước DocType: Website Settings,Home Page,Trang chủ DocType: Error Snapshot,Parent Error Snapshot,Lỗi chụp nhanh gốc +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map columns from {0} to fields in {1},Ánh xạ các cột từ {0} đến các trường trong {1} DocType: Access Log,Filters,Bộ lọc DocType: Workflow State,share-alt,cổ alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Hàng chờ nên là một trong {0} @@ -3413,6 +3496,7 @@ DocType: Calendar View,Start Date Field,Trường ngày bắt đầu DocType: Role,Role Name,Tên vai trò apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,Chuyển đến Desk apps/frappe/frappe/config/core.py,Script or Query reports,Script hoặc báo cáo Truy vấn +DocType: Contact Phone,Is Primary Mobile,Là thiết bị di động chính DocType: Workflow Document State,Workflow Document State,Công việc tài liệu nhà nước apps/frappe/frappe/public/js/frappe/request.js,File too big,Tệp quá lớn apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,Tài khoản Email thêm nhiều lần @@ -3458,6 +3542,7 @@ DocType: DocField,Float,Phao DocType: Print Settings,Page Settings,Cài đặt trang apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,Tiết kiệm... apps/frappe/frappe/www/update-password.html,Invalid Password,Mật khẩu không hợp lệ +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,Đã nhập thành công bản ghi {0} trong số {1}. DocType: Contact,Purchase Master Manager,Mua chủ quản lý apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,Nhấp vào biểu tượng khóa để chuyển đổi công khai / riêng tư DocType: Module Def,Module Name,Tên mô-đun @@ -3492,6 +3577,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Một số tính năng có thể không hoạt động trong trình duyệt của bạn. Vui lòng cập nhật trình duyệt của bạn lên phiên bản mới nhất. apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,Một số tính năng có thể không hoạt động trong trình duyệt của bạn. Vui lòng cập nhật trình duyệt của bạn lên phiên bản mới nhất. apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'","Không biết, hãy hỏi mục 'Trợ giúp'" +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},đã hủy tài liệu này {0} DocType: DocType,Comments and Communications will be associated with this linked document,Nhận xét và Truyền thông sẽ được liên kết với các tài liệu liên kết này apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,Bộ lọc ... DocType: Workflow State,bold,Đậm @@ -3510,6 +3596,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,Thêm / Quả DocType: Comment,Published,Công bố apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Cảm ơn vì email này DocType: DocField,Small Text,Tiêu đề nhỏ +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,Số {0} không thể được đặt làm chính cho Điện thoại cũng như Số di động. DocType: Workflow,Allow approval for creator of the document,Cho phép phê duyệt đối với người tạo tài liệu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,Lưu lại báo cáo DocType: Webhook,on_cancel,on_cancel @@ -3567,6 +3654,7 @@ DocType: Print Settings,PDF Settings,Thiết lập định dạng file PDF DocType: Kanban Board Column,Column Name,Tên cột DocType: Language,Based On,Dựa trên DocType: Email Account,"For more information, click here.","Để biết thêm thông tin, bấm vào đây ." +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,Số lượng cột không khớp với dữ liệu apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,Thiết lập mặc định apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,Thời gian thực hiện: {0} giây apps/frappe/frappe/model/utils/__init__.py,Invalid include path,Đường dẫn bao gồm không hợp lệ @@ -3657,7 +3745,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,Tải lên tập tin {0} 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/config/settings.py,Export Data,Xuất dữ liệu +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,Xuất dữ liệu 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. @@ -3675,7 +3763,6 @@ DocType: Report,Disable Prepared Report,Vô hiệu hóa báo cáo đã chuẩn b apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,Người dùng {0} đã yêu cầu xóa dữ liệu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,Truy cập thông báo bất hợp pháp. Vui lòng thử lại apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Ứng dụng này đã được cập nhật lên phiên bản mới, hãy làm mới trang này" -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ỉ. DocType: Notification,Optional: The alert will be sent if this expression is true,Tùy chọn: Các cảnh báo sẽ được gửi nếu biểu thức này là đúng sự thật DocType: Data Migration Plan,Plan Name,Tên kế hoạch DocType: Print Settings,Print with letterhead,In cùng với tiêu đề trang @@ -3716,6 +3803,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}: Không thể thiết lập Sửa mà không chọn Hủy bỏ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,Trang đầy đủ DocType: DocType,Is Child Table,Là bảng con +DocType: Data Import Beta,Template Options,Tùy chọn mẫu apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0} phải là một trong {1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0} hiện tại đang xem tài liệu này apps/frappe/frappe/config/core.py,Background Email Queue,Nền hàng chờ email @@ -3723,7 +3811,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,Đặt lại mật k DocType: Communication,Opened,Khai trương DocType: Workflow State,chevron-left,Chevron bên trái DocType: Communication,Sending,Gửi -apps/frappe/frappe/auth.py,Not allowed from this IP Address,Không được phép từ địa chỉ IP này DocType: Website Slideshow,This goes above the slideshow.,Điều này đi trên các slideshow. DocType: Contact,Last Name,Tên DocType: Event,Private,Riêng @@ -3737,7 +3824,6 @@ DocType: Workflow Action,Workflow Action,Công việc hành động apps/frappe/frappe/utils/bot.py,I found these: ,Tôi tìm thấy sau đây: DocType: Event,Send an email reminder in the morning,Gửi một email nhắc nhở trong buổi sáng DocType: Blog Post,Published On,Được công bố trên -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 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} @@ -3758,7 +3844,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,Dấu hiệu cảnh báo DocType: Prepared Report,Prepared Report,Báo cáo đã chuẩn bị apps/frappe/frappe/config/website.py,Add meta tags to your web pages,Thêm thẻ meta vào các trang web của bạn -DocType: Contact,Phone Nos,Số điện thoại 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 @@ -3776,6 +3861,7 @@ DocType: Data Migration Connector,Data Migration,Di chuyển dữ liệu DocType: User,API Key cannot be regenerated,Không thể tạo lại Khóa API apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Có gì đó sai sót DocType: System Settings,Number Format,Định dạng số +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,Đã nhập thành công bản ghi {0}. apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,Tóm lược DocType: Event,Event Participants,Người tham gia sự kiện DocType: Auto Repeat,Frequency,Tần số @@ -3783,7 +3869,7 @@ DocType: Custom Field,Insert After,Chèn sau DocType: Event,Sync with Google Calendar,Đồng bộ hóa với Lịch Google DocType: Access Log,Report Name,Tên báo cáo DocType: Desktop Icon,Reverse Icon Color,Màu biển tượng đảo ngược -DocType: Notification,Save,Lưu +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,Lưu apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,Ngày theo lịch tiếp theo apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,Chỉ định cho người có ít bài tập nhất apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,Mục Heading @@ -3806,11 +3892,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Cài đặt> Tùy chỉnh biểu mẫu 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 DocType: Desktop Icon,Category,thể loại +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},Giá trị {0} bị thiếu cho {1} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,Thêm liên hệ apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Phong cảnh apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,Phần mở rộng phía khách hàng script trong Javascript @@ -3834,6 +3920,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Cập nhật điểm năng lượng apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',Vui lòng chọn phương thức thanh toán khác. PayPal không hỗ trợ các giao dịch bằng tiền tệ '{0}' DocType: Chat Message,Room Type,Loại phòng +DocType: Data Import Beta,Import Log Preview,Nhập nhật ký xem trước apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,lĩnh vực tìm kiếm {0} là không hợp lệ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,tập tin tải lên DocType: Workflow State,ok-circle,ok-vòng tròn @@ -3902,6 +3989,7 @@ DocType: DocType,Allow Auto Repeat,Cho phép tự động lặp lại apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Không có giá trị để hiển thị DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,Mẫu email +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,Cập nhật thành công bản ghi {0}. apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},Người dùng {0} không có quyền truy cập doctype thông qua quyền vai trò cho tài liệu {1} apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,Phải có cả tên đăng nhập và mật khẩu apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Xin vui lòng làm mới để có được những tài liệu mới nhất. diff --git a/frappe/translations/zh.csv b/frappe/translations/zh.csv index 5469dc870f..6296af3b9a 100644 --- a/frappe/translations/zh.csv +++ b/frappe/translations/zh.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,可以使用以下应用程序的新{}版本 apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,请选择一个金额字段。 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,正在载入汇入档案... DocType: Assignment Rule,Last User,最后用户 apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",一个新的任务,{0},已分配给您{1}。 {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,会话默认值已保存 +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,重新载入档案 DocType: Email Queue,Email Queue records.,电子邮件队列记录。 DocType: Post,Post,发送 DocType: Address,Punjab,旁遮普 @@ -44,6 +46,7 @@ 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,参数 @@ -70,7 +73,7 @@ DocType: Auto Repeat,Monthly,每月 DocType: Address,Uttarakhand,北阿坎德邦 DocType: Email Account,Enable Incoming,通过该邮箱接收邮件 apps/frappe/frappe/core/doctype/version/version_view.html,Danger,危险 -apps/frappe/frappe/www/login.py,Email Address,电子邮件地址 +DocType: Address,Email Address,电子邮件地址 DocType: Workflow State,th-large,th-large DocType: Communication,Unread Notification Sent,未读发送通知 apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,不允许导出,您没有{0}的角色。 @@ -99,7 +102,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,已登录 DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",联系人选项,如“销售查询,支持查询”等每个新行或以逗号分隔。 apps/frappe/frappe/public/js/frappe/ui/tag_editor.js,Add a tag ...,添加标签... apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,肖像 -DocType: Data Migration Run,Insert,插入 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Insert,插入 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Allow Google Drive Access,允许访问谷歌云端硬盘 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},选择{0} apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Base URL,请输入基本网址 @@ -119,17 +122,17 @@ 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,配置主题 DocType: Company History,Company History,公司历史 -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,重启 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,重启 DocType: Workflow State,volume-up,提升音量 apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhook将API请求调用到Web应用程序中 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,显示回溯 DocType: DocType,Default Print Format,默认打印格式 DocType: Workflow State,Tags,标签 apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,无:结束的工作流程 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0}字段不能在{1}中设置为唯一,因为这里存在非唯一的数值 -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,文档类型 +DocType: Global Search Settings,Document Types,文档类型 DocType: Address,Jammu and Kashmir,查谟和克什米尔 DocType: Workflow,Workflow State Field,工作流状态字段 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,设置>用户 DocType: Language,Guest,访客 DocType: DocType,Title Field,标题字段 DocType: Error Log,Error Log,错误日志 @@ -138,6 +141,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,La apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",重复像“ABCABCABC”只比“ABC”较难猜测一点 DocType: Notification,Channel,渠道 apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",如果你认为这是未经授权的,请更改管理员密码。 +DocType: Data Import Beta,Data Import Beta,数据导入Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0}是必填项 DocType: Assignment Rule,Assignment Rules,作业规则 DocType: Workflow State,eject,退出 @@ -164,6 +168,7 @@ DocType: Workflow Action Master,Workflow Action Name,工作流操作名称 apps/frappe/frappe/core/doctype/doctype/doctype.py,DocType can not be merged,文档类型不能合并 DocType: Web Form Field,Fieldtype,字段类型 apps/frappe/frappe/core/doctype/file/file.py,Not a zip file,没有一个zip文件 +DocType: Global Search DocType,Global Search DocType,全局搜索DocType DocType: Auto Repeat,"To add dynamic subject, use jinja tags like
                                                                                                                        New {{ doc.doctype }} #{{ doc.name }}
                                                                                                                        ",要添加动态主题,请使用jinja标签
                                                                                                                         New {{ doc.doctype }} #{{ doc.name }} 
                                                                                                                        @@ -185,6 +190,7 @@ apps/frappe/frappe/core/page/background_jobs/background_jobs.html,No pending or DocType: Webhook,Doc Event,文件事件 apps/frappe/frappe/public/js/frappe/utils/user.js,You,你 DocType: Braintree Settings,Braintree Settings,Braintree设置 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Created {0} records successfully.,已成功创建{0}条记录。 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,保存过滤器 DocType: Print Format,Helvetica,黑体 apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},无法删除{0} @@ -211,6 +217,7 @@ DocType: SMS Settings,Enter url parameter for message,请输入消息的URL参 apps/frappe/frappe/public/js/frappe/utils/common.js,Auto Repeat created for this document,为此文档创建了自动重复 apps/frappe/frappe/templates/emails/auto_email_report.html,View report in your browser,在浏览器中查看报告 apps/frappe/frappe/config/desk.py,Event and other calendars.,事件和其他日历。 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} (1 row mandatory),{0}(必填1行) apps/frappe/frappe/templates/includes/comments/comments.html,All fields are necessary to submit the comment.,所有字段都必须提交评论。 DocType: Custom Script,Adds a client custom script to a DocType,将客户端自定义脚本添加到DocType DocType: Print Settings,Printer Name,打印机名称 @@ -253,7 +260,6 @@ DocType: Bulk Update,Bulk Update,批量更新 DocType: Workflow State,chevron-up,V形向上 DocType: DocType,Allow Guest to View,允许访客查看 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0}不应与{1}相同 -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: Webhook,on_change,on_change apps/frappe/frappe/public/js/frappe/list/list_view.js,Delete {0} items permanently?,删除{0}项目永久? apps/frappe/frappe/utils/oauth.py,Not Allowed,不允许 @@ -269,6 +275,7 @@ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migratio DocType: DocField,Display,显示 DocType: Email Group,Total Subscribers,用户总数 apps/frappe/frappe/templates/emails/energy_points_summary.html,Top {0},最高{0} +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,行号 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",如果角色没有0级的访问权限,那么无需设置更高级权限 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,另存为 DocType: Comment,Seen,可见 @@ -309,6 +316,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up 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:,例如: DocType: Workflow,Defines workflow states and rules for a document.,定义文档工作流状态和规则。 DocType: Workflow State,Filter,过滤器 @@ -331,6 +339,7 @@ DocType: Activity Log,Closed,已关闭 DocType: Blog Settings,Blog Title,博客标题 apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,标准的角色不能被禁用 apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,聊天类型 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,地图列 DocType: Address,Mizoram,米佐拉姆 DocType: Newsletter,Newsletter,通讯 apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,不能按。。。次序使用子查询 @@ -365,6 +374,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,New Value,新价值 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html,Add a column,添加列 apps/frappe/frappe/www/contact.html,Your email address,您的电子邮件地址 DocType: Desktop Icon,Module,模块 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,成功更新了{1}个记录中的{0}个记录。 DocType: Notification,Send Alert On,开启警报发送 DocType: Customize Form,"Customize Label, Print Hide, Default etc.",自定义标签,打印隐藏,默认值等。 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,解压缩文件... @@ -399,6 +409,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,用户{0 DocType: System Settings,Currency Precision,货币精确度 DocType: System Settings,Currency Precision,货币精确度 apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,另一个交易禁用这个。请几分钟后再试。 +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,清除过滤器 DocType: Test Runner,App,应用 apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,附件无法正确链接到新文档 DocType: Chat Message Attachment,Attachment,附件 @@ -424,6 +435,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,暂时无法 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Google日历 - 无法更新Google日历中的活动{0},错误代码为{1}。 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,搜索或输入命令 DocType: Activity Log,Timeline Name,时间轴名称 +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,只能将一个{0}设置为主。 DocType: Email Account,e.g. smtp.gmail.com,例如smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,新建规则 DocType: Contact,Sales Master Manager,销售经理大师 @@ -441,7 +453,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linkin DocType: LDAP Settings,LDAP Middle Name Field,LDAP中间名字段 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},导入{1}的{0} DocType: GCalendar Account,Allow GCalendar Access,允许GCalendar访问 -apps/frappe/frappe/core/doctype/data_import/importer.py,{0} is a mandatory field,{0}是必填字段 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} is a mandatory field,{0}是必填字段 apps/frappe/frappe/templates/includes/login/login.js,Login token required,需要登录令牌 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Monthly Rank: ,月度排名: apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,选择多个列表项 @@ -471,6 +483,7 @@ apps/frappe/frappe/email/receive.py,Cannot connect: {0},无法连接:{0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,很容易猜到的一个字 apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},自动分配失败:{0} apps/frappe/frappe/templates/includes/search_box.html,Search...,搜索... +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,请选择公司 apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,只有组和组,叶节点和叶节点之间能合并 apps/frappe/frappe/utils/file_manager.py,Added {0},添加{0} apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,没有符合条件的记录。搜索新的东西 @@ -483,7 +496,6 @@ DocType: Google Settings,OAuth Client ID,OAuth客户端ID DocType: Auto Repeat,Subject,主题 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,返回主页 DocType: Web Form,Amount Based On Field,用量以现场 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认电子邮件帐户 apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,请选择要分享的用户 DocType: DocField,Hidden,已隐藏 DocType: Web Form,Allow Incomplete Forms,允许不完整的表格 @@ -520,6 +532,7 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0}和{1} apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,开始对话。 DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents",随时添加“草案”标题打印文件草案 apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification: {},通知错误:{} +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年之前 DocType: Data Migration Run,Current Mapping Start,当前映射开始 apps/frappe/frappe/core/doctype/communication/communication.js,Email has been marked as spam,电子邮件已被标记为垃圾邮件 DocType: Comment,Website Manager,网站管理员 @@ -558,6 +571,7 @@ DocType: Workflow State,barcode,条码 apps/frappe/frappe/model/db_query.py,Use of sub-query or function is restricted,子查询或功能的使用受到限制 apps/frappe/frappe/config/customization.py,Add your own translations,添加您自己的翻译 DocType: Country,Country Name,国家名称 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Blank Template,空白模板 DocType: About Us Team Member,About Us Team Member,关于我们 团队成员 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.",权限是根据角色和文件类型(也称DocTypes)设置的,如设置权利如喜欢读权限,写,创建,删除,提交,取消,修改,报表,导入,导出,打印,电子邮件和设置用户权限 DocType: Event,Wednesday,星期三 @@ -569,6 +583,7 @@ DocType: Website Settings,Website Theme Image Link,网站主题图像链接 DocType: Web Form,Sidebar Items,边栏项目 DocType: Web Form,Show as Grid,显示为网格 apps/frappe/frappe/installer.py,App {0} already installed,已安装App {0} +DocType: Energy Point Rule,Users assigned to the reference document will get points.,分配给参考文档的用户将获得积分。 apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,没有预览 DocType: Workflow State,exclamation-sign,惊叹号 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,解压缩{0}个文件 @@ -604,6 +619,7 @@ DocType: Notification,Days Before,前几天 apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,每日活动应在同一天结束。 apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,编辑... DocType: Workflow State,volume-down,降低音量 +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,不允许从该IP地址访问 apps/frappe/frappe/desk/reportview.py,No Tags,没有标签 DocType: Email Account,Send Notification to,通知发送到 DocType: DocField,Collapsible,可折叠 @@ -660,6 +676,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,开发者 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,创建 apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,行{1}中的{0}不能同时有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,默认打印语言 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Ancestors Of,祖先 apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,根{0}无法删除 @@ -702,6 +719,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd DocType: Integration Request,Host,主办 +DocType: Data Import Beta,Import File,导入文件 apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,列{0}已经存在。 DocType: ToDo,High,高 apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,New Event,新事件 @@ -730,8 +748,6 @@ DocType: User,Send Notifications for Email threads,发送电子邮件主题通 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Prof,教授 apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,不在开发模式 apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,文件备份就绪 -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",将点乘以乘数值后允许的最大点数(注意:没有限制设定值为0) DocType: DocField,In Global Search,在全局搜索 DocType: System Settings,Brute Force Security,蛮力安全 DocType: Workflow State,indent-left,靠左缩进 @@ -774,6 +790,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',用户“{0}”已经拥有了角色“{1}” DocType: System Settings,Two Factor Authentication method,双因素认证方法 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,首先设置名称并保存记录。 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5条记录 apps/frappe/frappe/public/js/frappe/form/sidebar/share.js,Shared with {0},共享{0} apps/frappe/frappe/email/queue.py,Unsubscribe,退订 DocType: View Log,Reference Name,参考名称 @@ -824,6 +841,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,跟踪电子邮件状态 DocType: Note,Notify Users On Every Login,每次登录时通知用户 DocType: Note,Notify Users On Every Login,每次登录时通知用户 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,无法将列{0}与任何字段匹配 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,已成功更新{0}条记录。 DocType: PayPal Settings,API Password,应用程序界面密码 apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,输入python模块或选择连接器类型 apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,必须为自定义字段设置设置字段名 @@ -852,9 +871,11 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,值已更改 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},重复的名称{0} {1} -DocType: Email Queue,Retry,重试 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,重试 +DocType: Contact Phone,Number,数 DocType: Web Form Field,Web Form Field,Web表单字段 apps/frappe/frappe/templates/emails/new_message.html,You have a new message from: ,您收到以下新消息: +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,编辑HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,请输入重定向网址 apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -879,7 +900,7 @@ DocType: Notification,View Properties (via Customize Form),视图属性(通过 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,单击文件以选择它。 DocType: Note Seen By,Note Seen By,注意 已阅 apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,尝试使用更多的匝数较长的键盘模式 -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,管理者看板 +,LeaderBoard,管理者看板 DocType: DocType,Default Sort Order,默认排序顺序 DocType: Address,Rajasthan,拉贾斯坦邦 DocType: Email Template,Email Reply Help,电邮答复帮助 @@ -914,6 +935,7 @@ apps/frappe/frappe/utils/data.py,Cent,一分钱 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,写邮件 apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).",工作流程状况(例如草稿,已批准,已取消) 。 DocType: Print Settings,Allow Print for Draft,允许打印草稿 +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应用程序才能使用“原始打印”功能。

                                                                                                                        单击此处下载并安装QZ托盘
                                                                                                                        单击此处以了解有关原始印刷的更多信息 。" apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,设置数量 apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,提交该文件以确认 DocType: Contact,Unsubscribed,已退订 @@ -945,6 +967,7 @@ DocType: LDAP Settings,Organizational Unit for Users,用户组织单位 ,Transaction Log Report,交易日志报告 DocType: Custom DocPerm,Custom DocPerm,自DocPerm DocType: Newsletter,Send Unsubscribe Link,发送退订链接 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,在我们导入您的文件之前,需要创建一些链接记录。您是否要自动创建以下丢失的记录? DocType: Access Log,Method,方法 DocType: Report,Script Report,脚本报告 DocType: OAuth Authorization Code,Scopes,领域 @@ -986,6 +1009,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.js,Synci apps/frappe/frappe/public/js/frappe/file_uploader/FilePreview.vue,Uploaded successfully,已成功上传 apps/frappe/frappe/public/js/frappe/dom.js,You are connected to internet.,你已连接到互联网。 DocType: Social Login Key,Enable Social Login,启用社交登录 +DocType: Data Import Beta,Warnings,警告 DocType: Communication,Event,事件 apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:",{0},{1}写道: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Cannot delete standard field. You can hide it if you want,无法删除标准的字段。你可以将其隐藏,如果你想 @@ -1041,6 +1065,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,下面插 DocType: Kanban Board Column,Blue,蓝色 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,所有自定义更改都将被删除,请确认 DocType: Page,Page HTML,页面的HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,导出错误的行 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,组名不能为空。 apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,只能在“组”节点下新建节点 DocType: SMS Parameter,Header,头 @@ -1080,13 +1105,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,请求超时 apps/frappe/frappe/config/settings.py,Enable / Disable Domains,启用/禁用域 DocType: Role Permission for Page and Report,Allow Roles,允许角色 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,已成功导入{0}条记录中的{0}条记录。 DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")",简单的Python表达式,示例:状态(“无效”) DocType: User,Last Active,最后活动 DocType: Email Account,SMTP Settings for outgoing emails,外发邮件的SMTP设置 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,选择一个 DocType: Data Export,Filter List,过滤器列表 DocType: Data Export,Excel,Excel -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,您的密码已更新。这是您的新密码 DocType: Email Account,Auto Reply Message,自动回复留言 DocType: Data Migration Mapping,Condition,条件 apps/frappe/frappe/utils/data.py,{0} hours ago,{0} 小时前 @@ -1095,7 +1120,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified, DocType: Contact,User ID,用户ID DocType: Communication,Sent,已发送 DocType: Address,Kerala,喀拉拉邦 -DocType: File,Lft,Lft apps/frappe/frappe/public/js/frappe/desk.js,Administration,管理 DocType: User,Simultaneous Sessions,并发会话 DocType: Social Login Key,Client Credentials,客户端凭证 @@ -1127,7 +1151,6 @@ apps/frappe/frappe/desk/page/activity/activity_row.html,Updated {0}: {1},更新{ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,大师 DocType: DocType,User Cannot Create,用户无法创建 apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,成功完成 -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,文件夹{0}不存在 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox的访问被批准! DocType: Customize Form,Enter Form Type,输入表单类型 DocType: Google Drive,Authorize Google Drive Access,授权Google Drive Access @@ -1135,7 +1158,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,没有记录标记。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,删除字段 apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,你没有连接到互联网。在某个时间后重试。 -DocType: User,Send Password Update Notification,发送密码更新通知 apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",允许的DOCTYPE,的DocType 。要小心! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",自定义打印格式,电子邮件 apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0}的总和 @@ -1221,6 +1243,7 @@ apps/frappe/frappe/twofactor.py,Incorrect Verification code,验证码不正确 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google联系人集成已停用。 DocType: Assignment Rule,Description,描述 DocType: Print Settings,Repeat Header and Footer in PDF,重复页眉和页脚的PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,失败 DocType: Address Template,Is Default,是否默认 DocType: Data Migration Connector,Connector Type,连接器类型 apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,列名不能为空 @@ -1233,6 +1256,7 @@ apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,转到{0}页面 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,基于列 +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/model/document.py,Action Failed,操作失败 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,对于用户 @@ -1286,6 +1310,7 @@ DocType: Print Settings,Enable Raw Printing,启用原始打印 DocType: Website Route Redirect,Source,源 apps/frappe/frappe/templates/includes/list/filters.html,clear,清除 apps/frappe/frappe/core/page/background_jobs/background_jobs.html,Finished,成品 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,设置>用户 DocType: Prepared Report,Filter Values,过滤值 DocType: Communication,User Tags,用户标签 DocType: Data Migration Run,Fail,失败 @@ -1342,6 +1367,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,跟 ,Activity,活动 DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",帮助:要链接到系统中的另一个记录,请使用“#表单/记录/ [记录名]”作为链接。不要使用“http://”格式的链接。 DocType: User Permission,Allow,允许 +DocType: Data Import Beta,Update Existing Records,更新现有记录 apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,让我们避免重复的字和字符 DocType: Energy Point Rule,Energy Point Rule,能量点规则 DocType: Communication,Delayed,延迟 @@ -1354,9 +1380,7 @@ DocType: Milestone,Track Field,田径场 DocType: Notification,Set Property After Alert,警报后设置属性 apps/frappe/frappe/config/customization.py,Add fields to forms.,为表单添加字段。 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,看起来这个网站的Paypal配置有问题。 -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应用程序才能使用原始打印功能。

                                                                                                                        点击此处下载并安装QZ托盘
                                                                                                                        单击此处以了解有关原始打印的更多信息" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,添加评论 -DocType: File,rgt,RGT apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),字体大小(px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,只允许从“自定义表单”自定义标准DocType。 DocType: Email Account,Sendgrid,Sendgrid @@ -1393,6 +1417,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,过 apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,抱歉!不能删除自动生成的注释 DocType: Google Settings,Used For Google Maps Integration.,用于Google Maps Integration。 apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,参考文档类型 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,没有记录将被导出 DocType: User,System User,系统用户 DocType: Report,Is Standard,是否为标准 DocType: Desktop Icon,_report,_报告 @@ -1408,6 +1433,7 @@ DocType: Workflow State,minus-sign,减号-标记 apps/frappe/frappe/public/js/frappe/request.js,Not Found,未找到 apps/frappe/frappe/www/printview.py,No {0} permission,无{0}权限 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,导出客户许可 +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,未找到任何项目。 DocType: Data Export,Fields Multicheck,字段多重检查 DocType: Activity Log,Login,登录 DocType: Web Form,Payments,付款 @@ -1468,8 +1494,9 @@ DocType: Address,Postal,邮政 DocType: Email Account,Default Incoming,默认收入 DocType: Workflow State,repeat,重复 DocType: Website Settings,Banner,横幅 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},值必须为{0}之一 DocType: Role,"If disabled, this role will be removed from all users.",如果禁用了,这个角色将会从所有用户中删除。 -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,转到{0}列表 +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,搜索帮助 DocType: Milestone,Milestone Tracker,里程碑跟踪器 apps/frappe/frappe/core/doctype/user/user.py,Registered but disabled,注册但被禁用 @@ -1483,6 +1510,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,本地字段名称 DocType: DocType,Track Changes,跟踪变化 DocType: Workflow State,Check,检查 DocType: Chat Profile,Offline,离线 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},成功导入{0} DocType: User,API Key,应用程序界面密钥 DocType: Email Account,Send unsubscribe message in email,发送电子邮件退订消息 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,编辑标题 @@ -1509,11 +1537,11 @@ 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”触发(取决于所选的文档类型) +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed value of {0} {1},{0} {1}的值已更改 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,总页数 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0}已为{1}分配了默认值。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                        No results found for '

                                                                                                                        ,

                                                                                                                        找不到'结果'

                                                                                                                        DocType: DocField,Attach Image,附加图片 DocType: Workflow State,list-alt,备选清单 apps/frappe/frappe/www/update-password.html,Password Updated,密码更新 @@ -1534,8 +1562,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,设置>用户权限 DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP组映射 DocType: Dashboard Chart,Chart Options,图表选项 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,无标题栏 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},在列 #{3} 中 {0} 从 {1} 到 {2} DocType: Communication,Expired,已过期 apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,似乎你使用的令牌是无效的! @@ -1545,6 +1575,7 @@ DocType: DocType,System,系统 DocType: Web Form,Max Attachment Size (in MB),最大附件大小(MB) apps/frappe/frappe/www/login.html,Have an account? Login,有账户?登录 DocType: Workflow State,arrow-down,向下箭头 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row {0},第{0}行 apps/frappe/frappe/model/delete_doc.py,User not allowed to delete {0}: {1},用户不能删除{0}:{1} apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},第{0}项 / 共{1}项 apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,最后更新日期 @@ -1562,6 +1593,7 @@ DocType: Custom Role,Custom Role,自定义角色 apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,主页/测试文件夹2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,输入密码 DocType: Dropbox Settings,Dropbox Access Secret,Dropbox的密码 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(必须) 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.,在文件中找不到数据。请用数据重新附加新文件。 @@ -1636,6 +1668,7 @@ apps/frappe/frappe/desk/doctype/dashboard/dashboard.js,Show Dashboard,显示仪 apps/frappe/frappe/desk/form/assign_to.py,New Message,新消息 DocType: File,Preview HTML,预览HTML DocType: Desktop Icon,query-report,查询的报告 +DocType: Data Import Beta,Template Warnings,模板警告 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,过滤器保存 DocType: DocField,Percent,百分之 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Please set filters,请设置过滤器 @@ -1657,6 +1690,7 @@ DocType: Custom Field,Custom,自定义 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",如果启用,从限制IP地址登录的用户将不会被提示输入双因素身份验证 DocType: Auto Repeat,Get Contacts,获取联系人 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts filed under {0},帖子下提出{0} +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,跳过无标题列 DocType: Notification,Send alert if date matches this field's value,如果日期匹配该字段的值则发送警报 DocType: Workflow,Transitions,迁移 apps/frappe/frappe/desk/page/activity/activity_row.html,{0} {1} to {2},{0} {1} 到 {2} @@ -1680,6 +1714,7 @@ DocType: Workflow State,step-backward,step-backward apps/frappe/frappe/utils/boilerplate.py,{app_title},{应用名称} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,请在您的网站配置设置Dropbox的访问键 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,删除此记录允许发送此邮件地址 +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)",如果是非标准端口(例如POP3:995/110,IMAP:993/143) apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,自定义快捷方式 apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,只有必填字段所必需的新记录。如果你愿意,你可以删除非强制性列。 apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,显示更多活动 @@ -1787,7 +1822,9 @@ 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,信 DocType: DocType,"Naming Options:
                                                                                                                        1. field:[fieldname] - By Field
                                                                                                                        2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                                        3. Prompt - Prompt user for a name
                                                                                                                        4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                                        5. @@ -1801,6 +1838,7 @@ DocType: GCalendar Account,Next Sync Token,下一个同步令牌 DocType: Energy Point Settings,Energy Point Settings,能量点设置 DocType: Async Task,Succeeded,成功 apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},在需要的必填字段{0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                          No results found for '

                                                                                                                          ,

                                                                                                                          找不到与“

                                                                                                                          apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,重置权限{0} ? apps/frappe/frappe/config/desktop.py,Users and Permissions,用户和权限 DocType: S3 Backup Settings,S3 Backup Settings,S3备份设置 @@ -1871,6 +1909,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,In,在 DocType: Notification,Value Change,更改值 DocType: Google Contacts,Authorize Google Contacts Access,授权Google通讯录访问权限 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,仅显示来自报告的数字字段 +DocType: Data Import Beta,Import Type,导入类型 DocType: Access Log,HTML Page,HTML页面 DocType: Address,Subsidiary,子机构 apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,尝试连接QZ托盘...... @@ -1881,7 +1920,7 @@ apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,无效的 DocType: Custom DocPerm,Write,写 apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,只有管理员可以创建查询/报告的脚本 apps/frappe/frappe/public/js/frappe/form/save.js,Updating,更新 -DocType: File,Preview,预览 +DocType: Data Import Beta,Preview,预览 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",字段“值”是强制性的。请指定值进行更新 DocType: Customize Form,Use this fieldname to generate title,使用该字段名来生成标题 apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,导入电子邮件.. @@ -1966,6 +2005,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,浏览器不 DocType: Social Login Key,Client URLs,客户端网址 apps/frappe/frappe/templates/pages/integrations/braintree_checkout.py,Some information is missing,一些信息缺失 apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0}已成功创建 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}",跳过{1},{2}中的{0} DocType: Custom DocPerm,Cancel,取消 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,批量删除 apps/frappe/frappe/core/doctype/file/file.py,File {0} does not exist,文件{0}不存在 @@ -1993,7 +2033,6 @@ DocType: GCalendar Account,Session Token,会话令牌 DocType: Currency,Symbol,符号 apps/frappe/frappe/model/base_document.py,Row #{0}:,行#{0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,确认删除数据 -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,新密码已通过电子邮件发送 apps/frappe/frappe/auth.py,Login not allowed at this time,不允许在这个时候登录 DocType: Data Migration Run,Current Mapping Action,当前映射行为 DocType: Dashboard Chart Source,Source Name,源名称 @@ -2006,6 +2045,7 @@ apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,全 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Followed by,其次是 DocType: LDAP Settings,LDAP Email Field,LDAP电子邮件字段 apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0}列表 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,导出{0}条记录 apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,已经在用户的待办列表 DocType: User Email,Enable Outgoing,通过该邮箱发送邮件 DocType: Address,Fax,传真 @@ -2065,8 +2105,10 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Print Documents,打印文件 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,跳到现场 DocType: Contact Us Settings,Forward To Email Address,转发到邮件地址 +DocType: Contact Phone,Is Primary Phone,是主要电话 apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,发送电子邮件至{0}以将其链接到此处。 DocType: Auto Email Report,Weekdays,工作日 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0}条记录将被导出 apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,标题字段必须是有效的字段名 DocType: Post Comment,Post Comment,发表评论 apps/frappe/frappe/config/core.py,Documents,文档 @@ -2085,7 +2127,9 @@ eval:doc.age>18",该字段只有在此处定义的字段名具有值或规则 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,今天 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Today,今天 +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",一旦你设置这个,用户将只能访问在其链路存在时(如博主的)文档(如博客文章) 。 +DocType: Data Import Beta,Submit After Import,导入后提交 DocType: Error Log,Log of Scheduler Errors,日程安排程序错误日志 DocType: User,Bio,个人简历 DocType: OAuth Client,App Client Secret,应用程序客户端密钥 @@ -2104,10 +2148,12 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,禁用登录页面的客户注册链接 apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,已分配给/所有者 DocType: Workflow State,arrow-left,向左箭头 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,导出1条记录 DocType: Workflow State,fullscreen,全屏 DocType: Chat Token,Chat Token,聊天令牌 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,创建图表 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,john@doe.com,john@doe.com +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,不导入 DocType: Web Page,Center,中心 DocType: Notification,Value To Be Set,价值待定 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},编辑{0} @@ -2127,6 +2173,7 @@ DocType: Print Format,Show Section Headings,显示部分标题 DocType: Bulk Update,Limit,限制 apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},我们收到了删除与以下相关的{0}数据的请求:{1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Add a new section,添加新部分 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,筛选记录 apps/frappe/frappe/www/printview.py,No template found at path: {0},从{0}路径中找不到模板 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,没有电子邮件帐户 DocType: Comment,Cancelled,已取消 @@ -2214,10 +2261,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,全局搜索文档类型重置。 ,Lead Conversion Time,商机转换时间 apps/frappe/frappe/desk/page/activity/activity.js,Build Report,生成报告 DocType: Note,Notify users with a popup when they log in,用户登录时有弹出一个通知 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,无法在全局搜索中搜索核心模块{0}。 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,打开聊天 apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1}不存在,选择一个新的目标合并 DocType: Data Migration Connector,Python Module,Python模块 @@ -2234,8 +2284,7 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,关闭 apps/frappe/frappe/model/document.py,Cannot change docstatus from 0 to 2,不能将文档状态由0改为2 DocType: File,Attached To Field,已附加到字段 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,设置>用户权限 -apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js,Update,更新 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta_list.js,Update,更新 DocType: Transaction Log,Transaction Hash,交易哈希 DocType: Error Snapshot,Snapshot View,快照视图 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,请在发送之前保存通讯 @@ -2251,6 +2300,7 @@ DocType: Data Import,In Progress,进行中 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,排队等待备份。这可能需要几分钟到一个小时。 DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,用户权限已经存在 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},将列{0}映射到字段{1} apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,View {0},查看{0} DocType: User,Hourly,每小时 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,注册开放式验证客户端应用程序 @@ -2263,7 +2313,6 @@ DocType: SMS Settings,SMS Gateway URL,短信网关的URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1}不能为“{2}”。它应该是一个“{3}” apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},由{0}通过自动规则{1}获得 apps/frappe/frappe/utils/data.py,{0} or {1},{0}或{1} -apps/frappe/frappe/core/doctype/user/user.py,Password Update,密码更新 DocType: Workflow State,trash,垃圾 DocType: System Settings,Older backups will be automatically deleted,旧的备份将被自动删除 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,无效的访问密钥ID或秘密访问密钥。 @@ -2292,6 +2341,7 @@ DocType: Address,Preferred Shipping Address,首选送货地址 apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,随着信头 apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0}创建了{1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},第{2}行中不允许{0}:{1}。受限制的字段:{3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建一个新的电子邮件帐户 DocType: S3 Backup Settings,eu-west-1,欧盟 - 西1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",如果选中此选项,将导入包含有效数据的行,并将无效行转储到新文件中以供稍后导入。 apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,文件只有通过编辑角色的用户 @@ -2318,6 +2368,7 @@ DocType: Custom Field,Is Mandatory Field,是否必须项 DocType: User,Website User,网站用户 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,打印到PDF时,某些列可能会被切断。尽量保持列数低于10。 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,不等于 +DocType: Data Import Beta,Don't Send Emails,不要发送电子邮件 DocType: Integration Request,Integration Request Service,集成请求服务 DocType: Access Log,Access Log,访问日志 DocType: Website Script,Script to attach to all web pages.,插入到所有网页的脚本 @@ -2358,6 +2409,7 @@ DocType: Contact,Passive,被动 DocType: Auto Repeat,Accounts Manager,会计经理 apps/frappe/frappe/desk/form/assign_to.py,Assignment for {0} {1},{0} {1}的分配 apps/frappe/frappe/templates/pages/integrations/payment-cancel.html,Your payment is cancelled.,您的付款已取消。 +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认的电子邮件帐户 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,选择文件类型 apps/frappe/frappe/core/doctype/success_action/success_action.js,View All,查看全部 DocType: Help Article,Knowledge Base Editor,知识库编辑器 @@ -2390,6 +2442,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting wit DocType: Deleted Document,Data,数据 apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,文档状态 apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Approval Required,需要批准 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,在导入文件之前,需要创建以下记录。 DocType: OAuth Authorization Code,OAuth Authorization Code,开放式验证的授权码 apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,不允许导入 DocType: Deleted Document,Deleted DocType,删除的DocType @@ -2444,8 +2497,8 @@ DocType: GCalendar Settings,Google API Credentials,Google API凭证 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,会话开始失败 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,会话开始失败 apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},此电子邮件发送到{0},并复制到{1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},提交了该文档{0} DocType: Workflow State,th,th -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前 DocType: Social Login Key,Provider Name,提供者名称 apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},创建一个新的{0} DocType: Contact,Google Contacts,Google通讯录 @@ -2453,6 +2506,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar帐户 DocType: Email Rule,Is Spam,是垃圾邮件 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},报告{0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},打开{0} +DocType: Data Import Beta,Import Warnings,导入警告 DocType: OAuth Client,Default Redirect URI,默认重定向URI DocType: Auto Repeat,Recipients,收件人 DocType: System Settings,Choose authentication method to be used by all users,选择所有用户使用的身份验证方法 @@ -2571,6 +2625,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,报告已成 apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook错误 DocType: Email Flag Queue,Unread,未读 DocType: Bulk Update,Desk,主页(桌面) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},跳过列{0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),过滤器必须是元组或列表(在列表中) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,写一个SELECT查询语句。注意返回的结果不会分页。 DocType: Email Account,Attachment Limit (MB),附件限制(MB) @@ -2585,6 +2640,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,创建新的 DocType: Workflow State,chevron-down,V形向下 apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),电子邮件不会被发送到{0}(退订/禁用) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,选择要导出的字段 DocType: Async Task,Traceback,回溯 DocType: Currency,Smallest Currency Fraction Value,最小的货币分数值 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,准备报告 @@ -2593,6 +2649,7 @@ DocType: Workflow State,th-list,th-list DocType: Web Page,Enable Comments,启用评论 apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,便签 DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),仅限制此IP地址的用户。多个IP地址,可以通过用逗号分隔的补充。也接受像(111.111.111)部分的IP地址 +DocType: Data Import Beta,Import Preview,导入预览 DocType: Communication,From,从 apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,请先选择一个组节点。 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},在{1}中找到{0} @@ -2692,6 +2749,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,之间 DocType: Social Login Key,fairlogin,直接登录 DocType: Async Task,Queued,排队 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,设置>自定义表格 DocType: Braintree Settings,Use Sandbox,使用沙盒 apps/frappe/frappe/utils/goal.py,This month,这个月 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,新的自定义打印格式 @@ -2707,6 +2765,7 @@ DocType: Session Default,Session Default,会话默认 DocType: Chat Room,Last Message,最后的消息 DocType: OAuth Bearer Token,Access Token,访问令牌 DocType: About Us Settings,Org History,组织历史 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,剩余约{0}分钟 DocType: Auto Repeat,Next Schedule Date,下一个附表日期 DocType: Workflow,Workflow Name,工作流名称 DocType: DocShare,Notify by Email,通过电子邮件通知 @@ -2736,6 +2795,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set DocType: Help Article,Author,作者 apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,发送简历 apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,重新打开 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,显示警告 apps/frappe/frappe/core/doctype/communication/communication.js,Re: {0},回复:{0} DocType: Address,Purchase User,购买用户 DocType: Data Migration Run,Push Failed,推送失败 @@ -2774,6 +2834,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,高级 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,您不能查看简报。 DocType: User,Interests,兴趣 apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,密码重置说明已发送到您的电子邮件 +DocType: Energy Point Rule,Allot Points To Assigned Users,向分配的用户分配点 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",级别0是用于文档级别权限,\更高级别的字段级权限。 DocType: Contact Email,Is Primary,是主要的 @@ -2797,6 +2858,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,可发布密钥 DocType: Stripe Settings,Publishable Key,可发布密钥 apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,开始导入 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,导出类型 DocType: Workflow State,circle-arrow-left,圆圈箭头向左 DocType: System Settings,Force User to Reset Password,强制用户重置密码 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",要获取更新的报告,请单击{0}。 @@ -2810,13 +2872,16 @@ DocType: Contact,Middle Name,中间名 DocType: Custom Field,Field Description,字段说明 apps/frappe/frappe/model/naming.py,Name not set via Prompt,名称未通过提示符设置 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,收件箱 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Updating {0} of {1}, {2}",更新{1},{2}中的{0} DocType: Auto Email Report,Filters Display,显示过滤器 apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",必须出现“modified_from”字段才能进行修改。 +DocType: Contact,Numbers,数字 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0}感谢您对{1} {2}的工作 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,保存过滤器 DocType: Address,Plant,厂 apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,全部回复 DocType: DocType,Setup,设置 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,所有记录 DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,要同步其Google通讯录的电子邮件地址。 DocType: Email Account,Initial Sync Count,初始同步计数 DocType: Workflow State,glass,玻璃 @@ -2841,7 +2906,7 @@ DocType: Workflow State,font,字体 DocType: DocType,Show Preview Popup,显示预览弹出窗口 apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,这是一个前100名的常用密码。 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,请启用弹出窗口 -DocType: User,Mobile No,手机号码 +DocType: Contact,Mobile No,手机号码 DocType: Communication,Text Content,文本内容 DocType: Customize Form Field,Is Custom Field,是自定义字段 DocType: Workflow,"If checked, all other workflows become inactive.",如果勾选,那么其他的工作流将变为非活动。 @@ -2887,6 +2952,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,为 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,新打印格式的名称 apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,切换边栏 DocType: Data Migration Run,Pull Insert,下拉插入 +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",将点乘以乘数值后允许的最大点(注意:无限制,将此字段留空或设置为0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,无效的模板 apps/frappe/frappe/model/db_query.py,Illegal SQL Query,非法SQL查询 apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,必须项: DocType: Chat Message,Mentions,提及 @@ -2901,6 +2969,7 @@ DocType: User Permission,User Permission,用户权限 apps/frappe/frappe/templates/includes/blog/blog.html,Blog,博客 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP Not Installed,LDAP未安装 apps/frappe/frappe/core/doctype/data_import/data_import.js,Download with data,下载数据 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,changed values for {0} {1},{0} {1}的值已更改 DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Subdomain,子域名 DocType: S3 Backup Settings,Region,区域 @@ -2928,10 +2997,12 @@ DocType: Braintree Settings,Public Key,公钥 DocType: GSuite Settings,GSuite Settings,GSuite设置 DocType: Address,Links,链接 DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,使用此帐户中提到的电子邮件地址名称作为使用此帐户发送的所有电子邮件的发件人姓名。 +DocType: Energy Point Rule,Field To Check,现场检查 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.",Google通讯录 - 无法更新Google通讯录{0}中的联系人,错误代码{1}。 apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,请选择文件类型。 apps/frappe/frappe/model/base_document.py,Value missing for,缺少值 apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,添加子项 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,进口进度 DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",如果条件满足,用户将获得积分奖励。例如。 doc.status =='已关闭' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:提交记录不能被删除。 @@ -2968,6 +3039,7 @@ DocType: Google Calendar,Authorize Google Calendar Access,授权Google日历访 apps/frappe/frappe/www/404.html,The page you are looking for is missing. This could be because it is moved or there is a typo in the link.,您正在访问的网页不存在。可能是网页被移到别处了或您输入的网址不正确。 apps/frappe/frappe/www/404.html,Error Code: {0},错误代码:{0} DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",列表页面说明,使用纯文本(最多140个字符)。 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,{0} are mandatory fields,{0}是必填字段 DocType: Workflow,Allow Self Approval,允许自我批准 DocType: Event,Event Category,活动类别 apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,John Doe,John Doe @@ -3016,8 +3088,10 @@ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,搬去 DocType: Address,Preferred Billing Address,首选帐单地址 apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,请求中包括内容。请发送少些内容的请求 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,已配置Google云端硬盘。 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,文档类型{0}已重复。 apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,值已更改 DocType: Workflow State,arrow-up,向上箭头 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0}表至少应有一行 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",要配置自动重复,请从{0}启用“允许自动重复”。 DocType: OAuth Bearer Token,Expires In,过期日期在 DocType: DocField,Allow on Submit,允许提交 @@ -3104,6 +3178,7 @@ DocType: Custom Field,Options Help,选项帮助 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条记录 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,限制域名 @@ -3121,6 +3196,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,验证码 DocType: Webhook,Webhook Request,Webhook请求 apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},**失败:{0} {1}:{2} DocType: Data Migration Mapping,Mapping Type,映射类型 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,强制性选择 apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,浏览 apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.",无需符号,数字和大写字母。 DocType: DocField,Currency,货币 @@ -3151,11 +3227,13 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,基于的信头 apps/frappe/frappe/utils/oauth.py,Token is missing,令牌丢失 apps/frappe/frappe/www/update-password.html,Set Password,设置密码 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,成功导入了{0}条记录。 apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,注意:更改页面名称将会断开之前链接到此页面URL。 apps/frappe/frappe/utils/file_manager.py,Removed {0},删除{0} DocType: SMS Settings,SMS Settings,短信设置 DocType: Company History,Highlight,高亮 DocType: Dashboard Chart,Sum,和 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,通过数据导入 DocType: OAuth Provider Settings,Force,力 apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},上次同步{0} DocType: DocField,Fold,折叠 @@ -3192,6 +3270,7 @@ DocType: Workflow State,Home,主页 DocType: OAuth Provider Settings,Auto,自动 DocType: System Settings,User can login using Email id or User Name,用户可以使用电子邮件ID或用户名登录 DocType: Workflow State,question-sign,问题-签名 +apps/frappe/frappe/model/base_document.py,{0} is disabled,{0}被禁用 apps/frappe/frappe/core/doctype/doctype/doctype.py,"Field ""route"" is mandatory for Web Views",Web视图必须使用字段“路由” apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Insert Column Before {0},在{0}之前插入列 DocType: Energy Point Rule,The user from this field will be rewarded points,来自此字段的用户将获得奖励积分 @@ -3225,6 +3304,7 @@ DocType: Website Settings,Top Bar Items,顶栏项目 DocType: Notification,Print Settings,打印设置 DocType: Page,Yes,是 DocType: DocType,Max Attachments,最大附件 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,剩余约{0}秒 DocType: Calendar View,End Date Field,结束日期字段 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,全球捷径 DocType: Desktop Icon,Page,页面 @@ -3337,6 +3417,7 @@ DocType: GSuite Settings,Allow GSuite access,允许GSuite访问 DocType: DocType,DESC,DESC DocType: DocType,Naming,命名 apps/frappe/frappe/core/doctype/data_import/data_import.js,Select All,全选 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Column {0},列{0} apps/frappe/frappe/config/customization.py,Custom Translations,翻译定制 apps/frappe/frappe/public/js/frappe/socketio_client.js,Progress,进展 apps/frappe/frappe/public/js/frappe/form/workflow.js, by Role ,按角色 @@ -3379,11 +3460,13 @@ DocType: Stripe Settings,Stripe Settings,条纹设置 DocType: Stripe Settings,Stripe Settings,条纹设置 DocType: Data Migration Mapping,Data Migration Mapping,数据迁移映射 DocType: Auto Email Report,Period,期 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,剩余约{0}分钟 apps/frappe/frappe/www/login.py,Invalid Login Token,无效的登录令牌 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,share-alt apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},队列应该是{0} @@ -3414,6 +3497,7 @@ DocType: Calendar View,Start Date Field,开始日期字段 DocType: Role,Role Name,角色名称 apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,切换到主页(桌面) apps/frappe/frappe/config/core.py,Script or Query reports,脚本或查询报告 +DocType: Contact Phone,Is Primary Mobile,是主要手机 DocType: Workflow Document State,Workflow Document State,工作流文档状态 apps/frappe/frappe/public/js/frappe/request.js,File too big,文件太大 apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,多次添加的电子邮件帐户 @@ -3459,6 +3543,7 @@ DocType: DocField,Float,浮点数 DocType: Print Settings,Page Settings,页面设置 apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,保存... apps/frappe/frappe/www/update-password.html,Invalid Password,无效的密码 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,已成功导入{1}中的{0}条记录。 DocType: Contact,Purchase Master Manager,采购方面的主要经理 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,单击锁定图标以切换公共/私人 DocType: Module Def,Module Name,模块名称 @@ -3493,6 +3578,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,您的浏览器中的某些功能可能无法正常工作。请将您的浏览器更新到最新版本。 apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,您的浏览器中的某些功能可能无法正常工作。请将您的浏览器更新到最新版本。 apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",不知道,问'帮助' +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},取消了此文档{0} DocType: DocType,Comments and Communications will be associated with this linked document,评论与通讯将与此链接的文档关联 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,过滤器... DocType: Workflow State,bold,加粗 @@ -3511,6 +3597,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,添加/管理 DocType: Comment,Published,发布时间 apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,谢谢您的邮件 DocType: DocField,Small Text,短文 +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,不能将数字{0}设置为主电话,也不能将其设置为移动号码。 DocType: Workflow,Allow approval for creator of the document,允许批准文档的创建者 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,保存报告 DocType: Webhook,on_cancel,on_cancel @@ -3568,6 +3655,7 @@ DocType: Print Settings,PDF Settings,PDF设置 DocType: Kanban Board Column,Column Name,列名 DocType: Language,Based On,基于 DocType: Email Account,"For more information, click here.","有关更多信息, 请单击此处 。" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,列数与数据不匹配 apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,设为默认 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,执行时间:{0}秒 apps/frappe/frappe/model/utils/__init__.py,Invalid include path,包含路径无效 @@ -3658,7 +3746,7 @@ 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: Deleted Document,GCalendar Sync ID,GCalendar同步ID DocType: Prepared Report,Report Start Time,报告开始时间 -apps/frappe/frappe/config/settings.py,Export Data,导出数据 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,导出数据 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.,这是一份后台报告。请设置适当的过滤器,然后生成一个新过滤器。 @@ -3676,7 +3764,6 @@ DocType: Report,Disable Prepared Report,禁用准备报告 apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,用户{0}已请求删除数据 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,非法访问令牌。请再试一次 apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",该应用程序已被更新到新版本,请刷新本页面 -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.,找不到默认地址模板。请从“设置”>“打印和品牌”>“地址模板”中创建一个新的。 DocType: Notification,Optional: The alert will be sent if this expression is true,可选:警报会在这个表达式为true发送 DocType: Data Migration Plan,Plan Name,计划名称 DocType: Print Settings,Print with letterhead,打印信头 @@ -3717,6 +3804,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} :没有“取消”的情况下不能设置“修订” apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,全页 DocType: DocType,Is Child Table,是否子表 +DocType: Data Import Beta,Template Options,模板选项 apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0}必须属于{1} apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0}正在查看该文档 apps/frappe/frappe/config/core.py,Background Email Queue,后台电子邮件队列 @@ -3724,7 +3812,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,密码重置 DocType: Communication,Opened,开业 DocType: Workflow State,chevron-left,V形向左 DocType: Communication,Sending,发送中 -apps/frappe/frappe/auth.py,Not allowed from this IP Address,不允许此IP地址访问 DocType: Website Slideshow,This goes above the slideshow.,这将置在幻灯片上面。 DocType: Contact,Last Name,姓 DocType: Event,Private,私人 @@ -3738,7 +3825,6 @@ DocType: Workflow Action,Workflow Action,工作流操作 apps/frappe/frappe/utils/bot.py,I found these: ,我发现这些: DocType: Event,Send an email reminder in the morning,在早上发送邮件提醒 DocType: Blog Post,Published On,发表于 -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建新的电子邮件帐户 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}上恢复了积分 @@ -3759,7 +3845,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,警告标识 DocType: Prepared Report,Prepared Report,准备报告 apps/frappe/frappe/config/website.py,Add meta tags to your web pages,将元标记添加到您的网页 -DocType: Contact,Phone Nos,电话号码 DocType: Workflow State,User,用户 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",标题显示在浏览器窗口中的“前缀 - 标题” DocType: Payment Gateway,Gateway Settings,网关设置 @@ -3777,6 +3862,7 @@ DocType: Data Migration Connector,Data Migration,数据迁移 DocType: User,API Key cannot be regenerated,应用程序界面密钥无法重新生成 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,出了些问题 DocType: System Settings,Number Format,数字格式 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,已成功导入{0}记录。 apps/frappe/frappe/public/js/frappe/views/interaction.js,Summary,概要 DocType: Event,Event Participants,活动参与者 DocType: Auto Repeat,Frequency,频率 @@ -3784,7 +3870,7 @@ DocType: Custom Field,Insert After,在后边插入 DocType: Event,Sync with Google Calendar,与Google日历同步 DocType: Access Log,Report Name,报告名称 DocType: Desktop Icon,Reverse Icon Color,反向图标颜色 -DocType: Notification,Save,保存 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,保存 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,下一个预定日期 apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,分配给分配最少的人 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,标题节 @@ -3807,11 +3893,11 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,设置>自定义表单 DocType: Google Contacts,Last Sync On,上次同步开启 DocType: Deleted Document,Deleted Document,删除的文档 apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,糟糕!出错了 DocType: Desktop Icon,Category,类别 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value {0} missing for {1},缺少{1}的值{0} apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,添加联系人 apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,景观 apps/frappe/frappe/config/core.py,Client side script extensions in Javascript,在JavaScript客户端脚本扩展 @@ -3835,6 +3921,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,能量点更新 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',请选择其他付款方式。贝宝不支持货币交易“{0}” DocType: Chat Message,Room Type,房型 +DocType: Data Import Beta,Import Log Preview,导入日志预览 apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,搜索栏{0}无效 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,上传的文件 DocType: Workflow State,ok-circle,ok-circle @@ -3903,6 +3990,7 @@ DocType: DocType,Allow Auto Repeat,允许自动重复 apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,没有要显示的值 DocType: Desktop Icon,_doctype,_doctype DocType: Communication,Email Template,电子邮件模板 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,成功更新了{0}条记录。 apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},用户{0}没有通过文档{1}的角色权限访问doctype apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,登录名和密码是必须项 apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,请刷新以获得最新的文档。 diff --git a/frappe/translations/zh_tw.csv b/frappe/translations/zh_tw.csv index 299e658a57..a8c51ae1e2 100644 --- a/frappe/translations/zh_tw.csv +++ b/frappe/translations/zh_tw.csv @@ -1,8 +1,10 @@ apps/frappe/frappe/utils/change_log.py,New {} releases for the following apps are available,可以使用以下應用程序的新{}版本 apps/frappe/frappe/website/doctype/web_form/web_form.py,Please select a Amount Field.,請選擇一個金額字段。 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Loading import file...,正在載入匯入檔案... DocType: Assignment Rule,Last User,最後用戶 apps/frappe/frappe/desk/form/assign_to.py,"A new task, {0}, has been assigned to you by {1}. {2}",一個新的任務,{0},已分配給您{1}。 {2} apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js,Session Defaults Saved,會話默認值已保存 +apps/frappe/frappe/public/js/frappe/form/controls/attach.js,Reload File,重新載入檔案 DocType: Email Queue,Email Queue records.,電子郵件隊列記錄。 DocType: Post,Post,文章 apps/frappe/frappe/config/settings.py,Rename many items by uploading a .csv file.,通過上傳csv文件重命名多個項目。 @@ -41,6 +43,7 @@ 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,參數 @@ -63,7 +66,7 @@ DocType: Test Runner,Test Runner,測試運行 DocType: Auto Repeat,Monthly,每月一次 DocType: Email Account,Enable Incoming,啟用傳入 apps/frappe/frappe/core/doctype/version/version_view.html,Danger,危險 -apps/frappe/frappe/www/login.py,Email Address,電子郵件地址 +DocType: Address,Email Address,電子郵件地址 DocType: Workflow State,th-large,TH-大 DocType: Communication,Unread Notification Sent,未讀發送通知 apps/frappe/frappe/public/js/frappe/utils/tools.js,Export not allowed. You need {0} role to export.,不允許導出。您需要{0}的角色。 @@ -106,17 +109,17 @@ 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,配置主題 DocType: Company History,Company History,公司歷史 -apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js,Reset,重啟 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Reset,重啟 DocType: Workflow State,volume-up,容積式 apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhook將API請求調用到Web應用程序中 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Show Traceback,顯示回溯 DocType: DocType,Default Print Format,預設列印格式 DocType: Workflow State,Tags,標籤 apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,無:結束的工作流程 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0}字段不能設置在{1}是獨一無二的,因為有非唯一存在的價值 -apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Document Types,文檔類型 +DocType: Global Search Settings,Document Types,文檔類型 DocType: Address,Jammu and Kashmir,查謨和克什米爾 DocType: Workflow,Workflow State Field,工作流程狀態字段 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設置>用戶 DocType: Language,Guest,客人 DocType: DocType,Title Field,標題字段 DocType: Error Log,Error Log,錯誤日誌 @@ -124,6 +127,7 @@ apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Invalid URL, apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,Last 7 days,過去7天 apps/frappe/frappe/utils/password_strength.py,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",重複像“ABCABCABC”只稍硬比“ABC”猜測 apps/frappe/frappe/templates/emails/administrator_logged_in.html,"If you think this is unauthorized, please change the Administrator password.",如果你認為這是未經授權的,請更改管理員密碼。 +DocType: Data Import Beta,Data Import Beta,數據導入Beta apps/frappe/frappe/email/doctype/email_account/email_account.py,{0} is mandatory,{0}是強制性的 DocType: Assignment Rule,Assignment Rules,作業規則 DocType: Workflow State,eject,噴射 @@ -163,6 +167,7 @@ DocType: Email Account,UNSEEN,看不見 DocType: Website Settings,"HTML Header, Robots and Redirects",HTML標頭,機器人和重定向 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}條記錄。 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,保存過濾器 DocType: Print Format,Helvetica,黑體 apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Cannot delete {0},無法刪除{0} @@ -222,7 +227,6 @@ DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaS DocType: Workflow State,chevron-up,人字形-上 DocType: DocType,Allow Guest to View,允許訪客查看 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} should not be same as {1},{0}不應與{1}相同 -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/list/list_view.js,Delete {0} items permanently?,刪除{0}項目永久? apps/frappe/frappe/utils/oauth.py,Not Allowed,不允許 DocType: DocShare,Internal record of document shares,文件股內部記錄 @@ -234,6 +238,7 @@ DocType: Data Import,Update records,更新記錄 apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Invalid module path,無效的模塊路徑 DocType: DocField,Display,顯示 DocType: Email Group,Total Subscribers,用戶總數 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Row Number,行號 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",如果角色沒有訪問權限級別為0級,那麼更高的水平是沒有意義的。 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Save As,另存為 DocType: Comment,Seen,可見 @@ -272,6 +277,7 @@ apps/frappe/frappe/config/website.py,Javascript to append to the head section of 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}行 DocType: Workflow,Defines workflow states and rules for a document.,定義文檔工作流狀態和規則。 DocType: Workflow State,Filter,過濾器 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,Check the Error Log for more information: {0},檢查錯誤日誌以獲取更多信息:{0} @@ -289,6 +295,7 @@ DocType: Activity Log,Closed,關閉 DocType: Blog Settings,Blog Title,部落格標題 apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be disabled,標準的角色不能被禁用 apps/frappe/frappe/public/js/frappe/chat.js,Chat Type,聊天類型 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Map Columns,地圖列 DocType: Newsletter,Newsletter,新聞 apps/frappe/frappe/model/db_query.py,Cannot use sub-query in order by,不能使用子查詢,以便 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType for field {1} in row {2},{0}:選項必須是行{2}中字段{1}的有效DocType @@ -316,6 +323,7 @@ DocType: Block Module,Block Module,封鎖模組 apps/frappe/frappe/core/doctype/version/version_view.html,New Value,新價值 apps/frappe/frappe/www/contact.html,Your email address,您的電子郵件地址 DocType: Desktop Icon,Module,模組 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records out of {1}.,成功更新了{1}個記錄中的{0}個記錄。 DocType: Notification,Send Alert On,發送警示在 DocType: Customize Form,"Customize Label, Print Hide, Default etc.",自定義標籤,列印隱藏,預設值等。 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,解壓縮文件... @@ -347,6 +355,7 @@ apps/frappe/frappe/core/doctype/user/user.py,User {0} cannot be deleted,用戶{0 DocType: System Settings,Currency Precision,貨幣精確度 DocType: System Settings,Currency Precision,貨幣精確度 apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking this one. Please try again in a few seconds.,另一個事務阻塞這一個。請稍後再試。 +apps/frappe/frappe/public/js/frappe/ui/filters/filter_list.js,Clear filters,清除過濾器 DocType: Test Runner,App,應用 apps/frappe/frappe/public/js/frappe/views/interaction.js,The attachments could not be correctly linked to the new document,附件無法正確鏈接到新文檔 DocType: Property Setter,Field Name,欄位名稱 @@ -366,6 +375,7 @@ apps/frappe/frappe/email/smtp.py,Unable to send emails at this time,無法在這 apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,"Google Calendar - Could not update Event {0} in Google Calendar, error code {1}.",Google日曆 - 無法更新Google日曆中的活動{0},錯誤代碼為{1}。 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,搜索或輸入命令 DocType: Activity Log,Timeline Name,時間軸名稱 +apps/frappe/frappe/contacts/doctype/contact/contact.py,Only one {0} can be set as primary.,只能將一個{0}設置為主。 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,添加新的規則 DocType: Contact,Sales Master Manager,銷售主檔經理 DocType: User Permission,For Value,為價值 @@ -406,6 +416,7 @@ DocType: Domain Settings,Domain Settings,域設置 apps/frappe/frappe/email/receive.py,Cannot connect: {0},無法連接:{0} apps/frappe/frappe/utils/password_strength.py,A word by itself is easy to guess.,本身一個字很容易猜到。 apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.py,Auto assignment failed: {0},自動分配失敗:{0} +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,Please select Company,請選擇公司 apps/frappe/frappe/utils/nestedset.py,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,合併是唯一可能的組到組或葉節點到葉節點 apps/frappe/frappe/templates/includes/search_template.html,No matching records. Search something new,沒有符合條件的記錄。搜索新的東西 DocType: Chat Profile,Away,遠 @@ -417,7 +428,6 @@ DocType: Google Settings,OAuth Client ID,OAuth客戶端ID DocType: Auto Repeat,Subject,主題 apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Back to Desk,回到辦公桌 DocType: Web Form,Amount Based On Field,用量以現場 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認電子郵件帳戶 apps/frappe/frappe/core/doctype/docshare/docshare.py,User is mandatory for Share,用戶是強制性的分享 DocType: DocField,Hidden,隱藏 DocType: Web Form,Allow Incomplete Forms,允許不完整的表格 @@ -491,6 +501,7 @@ DocType: Website Settings,Website Theme Image Link,網站主題圖像鏈接 DocType: Web Form,Sidebar Items,邊欄項目 DocType: Web Form,Show as Grid,顯示為網格 apps/frappe/frappe/installer.py,App {0} already installed,已安裝App {0} +DocType: Energy Point Rule,Users assigned to the reference document will get points.,分配給參考文檔的用戶將獲得積分。 apps/frappe/frappe/printing/doctype/print_settings/print_settings.js,No Preview,沒有預覽 DocType: Workflow State,exclamation-sign,驚嘆號標誌 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,解壓縮{0}個文件 @@ -519,6 +530,7 @@ DocType: Notification,Days Before,前幾天 apps/frappe/frappe/desk/doctype/event/event.py,Daily Events should finish on the Same Day.,每日活動應在同一天結束。 apps/frappe/frappe/core/page/dashboard/dashboard.js,Edit...,編輯... DocType: Workflow State,volume-down,容積式 +apps/frappe/frappe/auth.py,Access not allowed from this IP Address,不允許從該IP地址訪問 apps/frappe/frappe/desk/reportview.py,No Tags,沒有標籤 DocType: Email Account,Send Notification to,通知發送到 DocType: DocField,Collapsible,可折疊 @@ -570,6 +582,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js apps/frappe/frappe/config/desktop.py,Developer,開發者 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,Created,創建 apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} in row {1} cannot have both URL and child items,第{1}行的{0}不能同時有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,默認打印語言 apps/frappe/frappe/utils/nestedset.py,Root {0} cannot be deleted,root{0}無法刪除 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,No comments yet,還沒有評論 @@ -608,6 +621,7 @@ apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.py,{0} is an inval DocType: Footer Item,"target = ""_blank""",目標=“_blank” DocType: Workflow State,hdd,硬盤 DocType: Integration Request,Host,主辦 +DocType: Data Import Beta,Import File,導入文件 apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column {0} already exist.,列{0}已經存在。 DocType: S3 Backup Settings,Secret Access Key,秘密訪問密鑰 apps/frappe/frappe/core/doctype/user/user.py,OTP Secret has been reset. Re-registration will be required on next login.,OTP Secret已被重置。下次登錄時需要重新註冊。 @@ -630,8 +644,6 @@ DocType: Contact Us Settings,Introductory information for the Contact Us Page, DocType: User,Send Notifications for Email threads,發送電子郵件主題通知 apps/frappe/frappe/core/doctype/page/page.py,Not in Developer Mode,不開發模式 apps/frappe/frappe/desk/page/backups/backups.py,File backup is ready,文件備份就緒 -DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value -(Note: For no limit set value as 0)",將點乘以乘數值後允許的最大點數(注意:無限制設定值為0) DocType: DocField,In Global Search,在全球搜索 DocType: System Settings,Brute Force Security,蠻力安全 DocType: Workflow State,indent-left,左邊縮排 @@ -672,6 +684,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,Select atleast 1 rec apps/frappe/frappe/core/doctype/has_role/has_role.py,User '{0}' already has the role '{1}',用戶“{0}”已經擁有了角色“{1}” DocType: System Settings,Two Factor Authentication method,雙因素認證方法 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,首先設置名稱並保存記錄。 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,5 Records,5條記錄 apps/frappe/frappe/email/queue.py,Unsubscribe,退訂 DocType: View Log,Reference Name,參考名稱 apps/frappe/frappe/desk/page/user_profile/user_profile.js,Change User,改變用戶 @@ -712,6 +725,8 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} reverted {1} DocType: Email Account,Track Email Status,跟踪電子郵件狀態 DocType: Note,Notify Users On Every Login,每次登錄時通知用戶 DocType: Note,Notify Users On Every Login,每次登錄時通知用戶 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Cannot match column {0} with any field,無法將列{0}與任何字段匹配 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} records.,已成功更新{0}條記錄。 DocType: PayPal Settings,API Password,API密碼 apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.py,Enter python module or select connector type,輸入python模塊或選擇連接器類型 apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Fieldname not set for Custom Field,自定義欄位之欄位名稱未設定 @@ -736,8 +751,10 @@ apps/frappe/frappe/auth.py,Your account has been locked and will resume after {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,更改的值 apps/frappe/frappe/model/base_document.py,Duplicate name {0} {1},重複的名稱{0} {1} -DocType: Email Queue,Retry,重試 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Retry,重試 +DocType: Contact Phone,Number,數 DocType: Web Form Field,Web Form Field,網頁表單欄位 +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/printing/page/print_format_builder/print_format_builder_field.html,Edit HTML,編輯HTML apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Redirect URL,請輸入重定向網址 apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, @@ -762,7 +779,7 @@ DocType: Notification,View Properties (via Customize Form),視圖屬性(通過 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on a file to select it.,單擊文件以選擇它。 DocType: Note Seen By,Note Seen By,注意看通過 apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,嘗試使用更多的匝數較長的鍵盤模式 -apps/frappe/frappe/desk/page/user_profile/user_profile_sidebar.html,LeaderBoard,排行榜 +,LeaderBoard,排行榜 DocType: DocType,Default Sort Order,默認排序順序 DocType: Address,Rajasthan,拉賈斯坦邦 DocType: Email Template,Email Reply Help,電郵答复幫助 @@ -791,6 +808,7 @@ apps/frappe/frappe/utils/data.py,Cent,一分錢 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Compose Email,寫郵件 apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved, Cancelled).",工作流程狀態(例如草稿,已批准,已取消)。 DocType: Print Settings,Allow Print for Draft,允許打印草稿 +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應用程序才能使用“原始打印”功能。

                                                                                                                          單擊此處下載並安裝QZ托盤
                                                                                                                          單擊此處以了解有關原始印刷的更多信息 。" apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,設置數量 apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,提交該文件以確認 DocType: Contact,Unsubscribed,退訂 @@ -815,6 +833,7 @@ apps/frappe/frappe/printing/doctype/letter_head/letter_head.py,Header HTML set f DocType: LDAP Settings,Organizational Unit for Users,用戶組織單位 ,Transaction Log Report,事務日誌報告 DocType: Newsletter,Send Unsubscribe Link,發送退訂鏈接 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,There are some linked records which needs to be created before we can import your file. Do you want to create the following missing records automatically?,在我們導入您的文件之前,需要創建一些鏈接記錄。您是否要自動創建以下丟失的記錄? DocType: Report,Script Report,腳本報告 DocType: OAuth Authorization Code,Scopes,領域 DocType: About Us Settings,Company Introduction,公司簡介 @@ -899,6 +918,7 @@ apps/frappe/frappe/public/js/frappe/form/grid_row_form.js,Insert Below,插入下 DocType: Kanban Board Column,Blue,藍色 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,All customizations will be removed. Please confirm.,所有自定義都將被刪除。請確認。 DocType: Page,Page HTML,頁面的HTML +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Export Errored Rows,導出錯誤的行 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,組名不能為空。 apps/frappe/frappe/public/js/frappe/views/treeview.js,Further nodes can be only created under 'Group' type nodes,此外節點可以在'集團'類型的節點上創建 DocType: SMS Parameter,Header,頁首 @@ -937,13 +957,13 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,請求超時 apps/frappe/frappe/config/settings.py,Enable / Disable Domains,啟用/禁用域 DocType: Role Permission for Page and Report,Allow Roles,允許角色 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records out of {1}.,已成功導入{0}條記錄中的{0}條記錄。 DocType: Assignment Rule,"Simple Python Expression, Example: Status in (""Invalid"")",簡單的Python表達式,示例:狀態(“無效”) DocType: User,Last Active,最後活動 DocType: Email Account,SMTP Settings for outgoing emails,SMTP設置外發郵件 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,choose an,選擇一個 DocType: Data Export,Filter List,過濾器列表 DocType: Data Export,Excel,高強 -apps/frappe/frappe/templates/emails/password_update.html,Your password has been updated. Here is your new password,您的密碼已更新。這是您的新密碼 DocType: Email Account,Auto Reply Message,自動回复留言 DocType: Data Migration Mapping,Condition,條件 apps/frappe/frappe/utils/data.py,{0} hours ago,{0}小時前 @@ -951,7 +971,6 @@ apps/frappe/frappe/utils/data.py,1 month ago,1個月前 apps/frappe/frappe/public/js/frappe/list/list_sidebar_group_by.js,Not Specified,未標明 DocType: Contact,User ID,使用者 ID DocType: Communication,Sent,已送出 -DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,並發會話 DocType: Social Login Key,Client Credentials,客戶端憑證 apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Open a module or tool,打開一個模塊或工具 @@ -978,7 +997,6 @@ DocType: Access Log,Log Data,日誌數據 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Criticize,批評 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Master,主 DocType: DocType,User Cannot Create,無法建立使用者 -apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,文件夾{0}不存在 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox access is approved!,Dropbox的訪問被批准! DocType: Customize Form,Enter Form Type,輸入表單類型 DocType: Google Drive,Authorize Google Drive Access,授權Google Drive Access @@ -986,7 +1004,6 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing paramete apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html,No records tagged.,沒有記錄標記。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,刪除字段 apps/frappe/frappe/public/js/frappe/request.js,You are not connected to Internet. Retry after sometime.,你沒有連接到互聯網。在某個時間後重試。 -DocType: User,Send Password Update Notification,發送密碼更新通知 apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",允許的DOCTYPE,DocType 。要小心! apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",自定義列印及電子郵件的格式, apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Sum of {0},{0}的總和 @@ -1065,6 +1082,7 @@ DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""",例如“ apps/frappe/frappe/twofactor.py,Incorrect Verification code,驗證碼不正確 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google聯繫人集成已停用。 DocType: Print Settings,Repeat Header and Footer in PDF,重複頁眉和頁腳的PDF +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Failure,失敗 DocType: Address Template,Is Default,是預設 DocType: Data Migration Connector,Connector Type,連接器類型 apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py,Column Name cannot be empty,列名不能為空 @@ -1076,6 +1094,7 @@ apps/frappe/frappe/templates/emails/new_message.html,Login and view in Browser, apps/frappe/frappe/core/doctype/page/page.js,Go to {0} Page,轉到{0}頁面 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/model/document.py,Action Failed,操作失敗 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For User,對於用戶 @@ -1122,6 +1141,7 @@ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} minutes ago,{0}分 DocType: Kanban Board Column,lightblue,淺藍 apps/frappe/frappe/integrations/doctype/webhook/webhook.py,Same Field is entered more than once,相同字段不止一次輸入 DocType: Print Settings,Enable Raw Printing,啟用原始打印 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設置>用戶 DocType: Prepared Report,Filter Values,過濾值 DocType: Communication,User Tags,用戶標籤 DocType: Data Migration Run,Fail,失敗 @@ -1166,6 +1186,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Follow,跟 ,Activity,活動 DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",說明:要鏈接到另一筆在系統中的記錄,使用「#Form/Note/[Note Name]」建立鏈接。(不要使用的「http://」) DocType: User Permission,Allow,允許 +DocType: Data Import Beta,Update Existing Records,更新現有記錄 apps/frappe/frappe/utils/password_strength.py,Let's avoid repeated words and characters,讓我們避免重複的字和字符 DocType: Energy Point Rule,Energy Point Rule,能量點規則 DocType: Communication,Delayed,延遲 @@ -1178,7 +1199,6 @@ DocType: Milestone,Track Field,田徑場 DocType: Notification,Set Property After Alert,警報後設置屬性 apps/frappe/frappe/config/customization.py,Add fields to forms.,將欄位添加到表單。 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Looks like something is wrong with this site's Paypal configuration.,看起來這個網站的Paypal配置有問題。 -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應用程序才能使用原始打印功能。

                                                                                                                          點擊此處下載並安裝QZ托盤
                                                                                                                          單擊此處以了解有關原始打印的更多信息" apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Add Review,添加評論 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),字體大小(px) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Only standard DocTypes are allowed to be customized from Customize Form.,只允許從“自定義表單”自定義標準DocType。 @@ -1212,6 +1232,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Filter {0} missing,過 apps/frappe/frappe/core/doctype/activity_log/activity_log.py,Sorry! You cannot delete auto-generated comments,抱歉!不能刪除自動生成的註釋 DocType: Google Settings,Used For Google Maps Integration.,用於Google Maps Integration。 apps/frappe/frappe/core/doctype/communication/communication.js,Reference DocType,DocType參照 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,No records will be exported,沒有記錄將被導出 DocType: User,System User,系統用戶 DocType: Report,Is Standard,為標準 DocType: Desktop Icon,_report,_報告 @@ -1224,6 +1245,7 @@ DocType: Personal Data Download Request,User Name,用戶名 DocType: Workflow State,minus-sign,減號 apps/frappe/frappe/www/printview.py,No {0} permission,無{0}的權限 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,導出自定義權限 +apps/frappe/frappe/desk/page/leaderboard/leaderboard.js,No items found.,未找到任何項目。 DocType: Data Export,Fields Multicheck,字段Multicheck DocType: Activity Log,Login,登入 apps/frappe/frappe/www/qrcode.html,Hi {0},{0} @@ -1274,8 +1296,9 @@ DocType: Address,Postal,郵政 DocType: Email Account,Default Incoming,預設傳入信箱 DocType: Workflow State,repeat,重複 DocType: Website Settings,Banner,橫幅 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Value must be one of {0},值必須為{0}之一 DocType: Role,"If disabled, this role will be removed from all users.",如果禁用了,這個角色將會從所有用戶中刪除。 -apps/frappe/frappe/core/doctype/doctype/doctype.js,Go to {0} List,轉到{0}列表 +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/templates/emails/auto_repeat_fail.html,The Auto Repeat for this document has been disabled.,此文檔的自動重複已被禁用。 @@ -1287,6 +1310,7 @@ DocType: Data Migration Mapping Detail,Local Fieldname,本地字段名稱 DocType: DocType,Track Changes,跟踪變化 DocType: Workflow State,Check,查 DocType: Chat Profile,Offline,離線 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0},成功導入{0} DocType: User,API Key,API密鑰 DocType: Email Account,Send unsubscribe message in email,發送電子郵件退訂消息 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Edit Title,編輯標題 @@ -1314,7 +1338,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User DocType: Chat Message,URLs,網址 DocType: Data Migration Run,Total Pages,總頁數 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,{0} has already assigned default value for {1}.,{0}已為{1}分配了默認值。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                          No results found for '

                                                                                                                          ,

                                                                                                                          找不到'結果'

                                                                                                                          DocType: DocField,Attach Image,附上圖片 DocType: Workflow State,list-alt,列表ALT apps/frappe/frappe/www/update-password.html,Password Updated,密碼更新 @@ -1332,8 +1355,10 @@ 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/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設置>用戶權限 DocType: LDAP Group Mapping,LDAP Group Mapping,LDAP組映射 DocType: Dashboard Chart,Chart Options,圖表選項 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Untitled Column,無標題欄 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2} in row #{3},{0}從{1}到{2}中的行#{3} DocType: Communication,Expired,過期 apps/frappe/frappe/templates/pages/integrations/razorpay_checkout.py,Seems token you are using is invalid!,似乎你使用的令牌是無效的! @@ -1358,6 +1383,7 @@ DocType: Custom Role,Custom Role,自定義角色 apps/frappe/frappe/core/doctype/file/test_file.py,Home/Test Folder 2,首頁/測試文件夾2 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,輸入密碼 DocType: Dropbox Settings,Dropbox Access Secret,Dropbox的訪問秘密 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,(Mandatory),(必須) 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.,在文件中找不到數據。請用數據重新附加新文件。 @@ -1442,6 +1468,7 @@ apps/frappe/frappe/public/js/frappe/request.js,You do not have enough permission DocType: Custom Field,Custom,自訂 DocType: System Settings,"If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth",如果啟用,從限制IP地址登錄的用戶將不會被提示輸入雙因素身份驗證 DocType: Auto Repeat,Get Contacts,獲取聯繫人 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping Untitled Column,跳過無標題列 DocType: Notification,Send alert if date matches this field's value,發送警示,如果日期匹配該欄位的值 DocType: Workflow,Transitions,轉換 DocType: User,Login After,登錄後 @@ -1460,6 +1487,7 @@ DocType: Workflow State,step-backward,往後退 apps/frappe/frappe/utils/boilerplate.py,{app_title},{ app_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,請在您的網站配置設定Dropbox的存取碼 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,Delete this record to allow sending to this email address,刪除此記錄允許發送此郵件地址 +DocType: Email Account,"If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)",如果是非標準端口(例如POP3:995/110,IMAP:993/143) apps/frappe/frappe/public/js/frappe/views/components/DeskSection.vue,Customize Shortcuts,自定義快捷方式 apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,只有必填字段所必需的新記錄。如果你願意,你可以刪除非強制性列。 apps/frappe/frappe/desk/page/user_profile/user_profile.html,Show More Activity,顯示更多活動 @@ -1550,7 +1578,9 @@ 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: DocType,"Naming Options:
                                                                                                                          1. field:[fieldname] - By Field
                                                                                                                          2. naming_series: - By Naming Series (field called naming_series must be present
                                                                                                                          3. Prompt - Prompt user for a name
                                                                                                                          4. [series] - Series by prefix (separated by a dot); for example PRE.#####
                                                                                                                          5. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
                                                                                                                          ",命名選項:
                                                                                                                          1. 字段:[fieldname] - 按字段
                                                                                                                          2. naming_series: - 通過命名系列(必須存在名為naming_series的字段
                                                                                                                          3. 提示 - 提示用戶輸入名稱
                                                                                                                          4. [系列] - 前綴系列(以點分隔);例如PRE。#####
                                                                                                                          5. 格式:示例 - {MM} morewords {fieldname1} - {fieldname2} - {#####} - 將所有支撐的單詞(字段名,日期字(DD,MM,YY),系列)替換為其值。在大括號外,可以使用任何字符。
                                                                                                                          @@ -1560,6 +1590,7 @@ apps/frappe/frappe/permissions.py,You are not allowed to export {} doctype,您 apps/frappe/frappe/desk/form/assign_to.py,Shared with user {0} with read access,與用戶{0}共享讀取權限 DocType: GCalendar Account,Next Sync Token,下一個同步令牌 DocType: Energy Point Settings,Energy Point Settings,能量點設置 +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

                                                                                                                          No results found for '

                                                                                                                          ,

                                                                                                                          找不到與“

                                                                                                                          apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Reset Permissions for {0}?,對{0}重置權限? apps/frappe/frappe/config/desktop.py,Users and Permissions,用戶和權限 DocType: S3 Backup Settings,S3 Backup Settings,S3備份設置 @@ -1621,6 +1652,7 @@ DocType: Data Migration Mapping,Remote Primary Key,遠程主鍵 DocType: Notification,Value Change,值變動 DocType: Google Contacts,Authorize Google Contacts Access,授權Google通訊錄訪問權限 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,僅顯示報告中的數字字段 +DocType: Data Import Beta,Import Type,導入類型 DocType: Access Log,HTML Page,HTML頁面 DocType: Address,Subsidiary,副 apps/frappe/frappe/public/js/frappe/form/print.js,Attempting Connection to QZ Tray...,嘗試連接QZ托盤...... @@ -1630,7 +1662,7 @@ apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,With Letterhead,與 apps/frappe/frappe/email/smtp.py,Invalid Outgoing Mail Server or Port,無效的發送郵件服務器或端口 DocType: Custom DocPerm,Write,寫 apps/frappe/frappe/core/doctype/report/report.py,Only Administrator allowed to create Query / Script Reports,只有管理員可以創建查詢/腳本的報告 -DocType: File,Preview,預覽 +DocType: Data Import Beta,Preview,預覽 apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js,"Field ""value"" is mandatory. Please specify value to be updated",場“價值”是強制性的。請指定值進行更新 DocType: Customize Form,Use this fieldname to generate title,使用該字段名來生成標題 apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Email From,輸入電子郵件從 @@ -1700,6 +1732,7 @@ apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,瀏覽器不 apps/frappe/frappe/public/js/frappe/desk.js,Browser not supported,瀏覽器不支持 DocType: Social Login Key,Client URLs,客戶端網址 apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0}已成功創建 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,"Skipping {0} of {1}, {2}",跳過{1},{2}中的{0} apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,批量刪除 DocType: Dashboard Chart,Dashboard Chart,儀表板圖表 DocType: Dashboard Chart,Last Quarter,上個季度 @@ -1724,7 +1757,6 @@ DocType: GCalendar Account,Session Token,會話令牌 DocType: Currency,Symbol,符號 apps/frappe/frappe/model/base_document.py,Row #{0}:,列#{0}: apps/frappe/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py,Confirm Deletion of Data,確認刪除數據 -apps/frappe/frappe/core/doctype/user/user.py,New password emailed,新的密碼通過電子郵件發送 apps/frappe/frappe/auth.py,Login not allowed at this time,在這個時候不允許登錄 DocType: Data Migration Run,Current Mapping Action,當前映射行為 DocType: Dashboard Chart Source,Source Name,源名稱 @@ -1735,6 +1767,7 @@ DocType: Contact Us Settings,Introduction,介紹 apps/frappe/frappe/public/js/frappe/social/components/Post.vue,Pin Globally,全球銷 DocType: LDAP Settings,LDAP Email Field,LDAP電子郵件字段 apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0}目錄 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export {0} records,導出{0}條記錄 apps/frappe/frappe/desk/form/assign_to.py,Already in user's To Do list,已經在用戶的To Do列表 DocType: User Email,Enable Outgoing,啟用外 DocType: Address,Fax,傳真 @@ -1786,8 +1819,10 @@ DocType: Workflow State,flag,旗標 DocType: Web Page,Text Align,文本對齊 apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,跳到現場 DocType: Contact Us Settings,Forward To Email Address,轉發到郵件地址 +DocType: Contact Phone,Is Primary Phone,是主要電話 apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,發送電子郵件至{0}以將其鏈接到此處。 DocType: Auto Email Report,Weekdays,平日 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,{0} records will be exported,{0}條記錄將被導出 apps/frappe/frappe/core/doctype/doctype/doctype.py,Title field must be a valid fieldname,標題字段必須是有效的字段名 DocType: Post Comment,Post Comment,發表評論 apps/frappe/frappe/config/core.py,Documents,文件 @@ -1802,7 +1837,9 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",該字段將顯示僅在此處定義的字段名具有值或規則是真實的(例子):MyField的EVAL:doc.myfield =='我的價值'的eval:doc.age> 18 +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/core/page/permission_manager/permission_manager_help.html,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",一旦你設置這個,用戶將只能訪問有聯結的文檔(如博客文章)。 +DocType: Data Import Beta,Submit After Import,導入後提交 DocType: Error Log,Log of Scheduler Errors,日程安排程序錯誤日誌 DocType: User,Bio,生物 DocType: OAuth Client,App Client Secret,應用程序客戶端密鑰 @@ -1820,7 +1857,9 @@ DocType: DocType,"If enabled, document views are tracked, this can happen multip DocType: Website Settings,Disable Customer Signup link in Login page,禁止客戶在登入頁面的註冊連結 apps/frappe/frappe/desk/report/todo/todo.py,Assigned To/Owner,指派給/所有者 DocType: Workflow State,arrow-left,箭頭左 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export 1 record,導出1條記錄 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Create Chart,創建圖表 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Don't Import,不要導入 DocType: Notification,Value To Be Set,價值待定 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Edit {0},編輯{0} apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,第一級 @@ -1836,6 +1875,7 @@ apps/frappe/frappe/utils/password_strength.py,"Repeats like ""aaa"" are easy to DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",如果您設定此項,這個項目會存在於選定的父物件的下拉選單中。 DocType: Print Format,Show Section Headings,顯示部分標題 apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},我們收到了刪除與以下相關的{0}數據的請求:{1} +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Filtered Records,篩選記錄 apps/frappe/frappe/www/printview.py,No template found at path: {0},沒有找到模板於路徑:{0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,沒有電子郵件帳戶 DocType: Comment,Cancelled,註銷 @@ -1914,10 +1954,13 @@ 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} 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 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.js,Global Search Document Types Reset.,全局搜索文檔類型重置。 ,Lead Conversion Time,線索轉換時間 apps/frappe/frappe/desk/page/activity/activity.js,Build Report,建立報告 DocType: Note,Notify users with a popup when they log in,通知用戶有一個彈出登錄時 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Core Modules {0} cannot be searched in Global Search.,無法在全局搜索中搜索核心模塊{0}。 apps/frappe/frappe/public/js/frappe/social/components/ActivitySidebar.vue,Open Chat,打開聊天 apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} 不存在, 請選擇要合併的新目標" DocType: Data Migration Connector,Python Module,Python模塊 @@ -1932,7 +1975,6 @@ apps/frappe/frappe/integrations/doctype/google_calendar/google_calendar.py,Enter apps/frappe/frappe/core/doctype/communication/communication.js,Close,關閉 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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設置>用戶權限 DocType: Transaction Log,Transaction Hash,事務哈希 DocType: Error Snapshot,Snapshot View,快照視圖 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Please save the Newsletter before sending,請在發送之前保存信件 @@ -1947,6 +1989,7 @@ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py,P DocType: Data Import,In Progress,進行中 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Queued for backup. It may take a few minutes to an hour.,排隊等待備份。這可能需要幾分鐘到一個小時。 apps/frappe/frappe/core/doctype/user_permission/user_permission.py,User permission already exists,用戶權限已經存在 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Mapping column {0} to field {1},將列{0}映射到字段{1} DocType: User,Hourly,每小時 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,註冊OAuth客戶端應用程序 DocType: DocField,Fetch If Empty,獲取如果為空 @@ -1957,7 +2000,6 @@ DocType: Energy Point Settings,Point Allocation Periodicity,點分配週期 DocType: SMS Settings,SMS Gateway URL,短信閘道的URL apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} 不能為“{2}”。它應該是“{3}”的其中一個 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},由{0}通過自動規則{1}獲得 -apps/frappe/frappe/core/doctype/user/user.py,Password Update,密碼更新 DocType: System Settings,Older backups will be automatically deleted,舊的備份將被自動刪除 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,無效的訪問密鑰ID或秘密訪問密鑰。 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You lost some energy points,你失去了一些能量點 @@ -1985,6 +2027,7 @@ DocType: Address,Preferred Shipping Address,偏好的送貨地址 apps/frappe/frappe/public/js/frappe/form/print.js,With Letter head,隨著信頭 apps/frappe/frappe/public/js/frappe/form/sidebar/form_sidebar.js,{0} created this {1},{0}新增此{1} apps/frappe/frappe/permissions.py,Not allowed for {0}: {1} in Row {2}. Restricted field: {3},第{2}行中不允許{0}:{1}。受限制的字段:{3} +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建一個新的電子郵件帳戶 DocType: S3 Backup Settings,eu-west-1,歐盟 - 西1 DocType: Data Import,"If this is checked, rows with valid data will be imported and invalid rows will be dumped into a new file for you to import later.",如果選中此選項,將導入包含有效數據的行,並將無效行轉儲到新文件中以供稍後導入。 apps/frappe/frappe/public/js/frappe/form/workflow.js,Document is only editable by users of role,文件只有通過編輯角色的用戶 @@ -2011,6 +2054,7 @@ DocType: Custom Field,Is Mandatory Field,是必須填寫 DocType: User,Website User,網站用戶 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html,Some columns might get cut off when printing to PDF. Try to keep number of columns under 10.,打印到PDF時,某些列可能會被切斷。盡量保持列數低於10。 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not equals,不等於 +DocType: Data Import Beta,Don't Send Emails,不要發送電子郵件 DocType: Integration Request,Integration Request Service,集成請求服務 DocType: Access Log,Access Log,訪問日誌 DocType: Website Script,Script to attach to all web pages.,腳本安裝到所有網頁。 @@ -2046,6 +2090,7 @@ DocType: Address,Phone,電話 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Document Type or Role to start.,選擇文件類型或角色開始。 DocType: Contact,Passive,被動 DocType: Auto Repeat,Accounts Manager,會計經理 +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認的電子郵件帳戶 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Select File Type,選擇文件類型 DocType: Help Article,Knowledge Base Editor,知識庫編輯器 apps/frappe/frappe/public/js/frappe/views/container.js,Page not found,找不到網頁 @@ -2073,6 +2118,7 @@ DocType: System Settings,Background Workers,背景工人 apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} conflicting with meta object,字段名{0}與元對象衝突 DocType: Deleted Document,Data,數據 apps/frappe/frappe/public/js/frappe/model/model.js,Document Status,文檔狀態 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,The following records needs to be created before we can import your file.,在導入文件之前,需要創建以下記錄。 DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth的授權碼 apps/frappe/frappe/core/doctype/data_import/importer.py,Not allowed to Import,不允許輸入 DocType: Deleted Document,Deleted DocType,刪除的DocType @@ -2120,6 +2166,7 @@ DocType: GCalendar Settings,Google API Credentials,Google API憑證 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,會話開始失敗 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,會話開始失敗 apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},此電子郵件發送到{0},並複製到{1} +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,submitted this document {0},提交了該文檔{0} DocType: Workflow State,th,日 DocType: Social Login Key,Provider Name,提供者名稱 apps/frappe/frappe/public/js/frappe/list/list_view.js,Create a new {0},建立一個新的{0} @@ -2128,6 +2175,7 @@ DocType: GCalendar Account,GCalendar Account,GCalendar帳戶 DocType: Email Rule,Is Spam,是垃圾郵件 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},報告{0} apps/frappe/frappe/desk/doctype/todo/todo_list.js,Open {0},打開{0} +DocType: Data Import Beta,Import Warnings,導入警告 DocType: OAuth Client,Default Redirect URI,默認重定向URI DocType: Auto Repeat,Recipients,受助人 DocType: System Settings,Choose authentication method to be used by all users,選擇所有用戶使用的身份驗證方法 @@ -2234,6 +2282,7 @@ apps/frappe/frappe/desk/query_report.py,Report updated successfully,報告已成 apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,Slack Webhook Error,Slack Webhook錯誤 DocType: Email Flag Queue,Unread,未讀 DocType: Bulk Update,Desk,辦公桌 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Skipping column {0},跳過列{0} apps/frappe/frappe/utils/data.py,Filter must be a tuple or list (in a list),過濾器必須是元組或列表(在列表中) apps/frappe/frappe/core/doctype/report/report.js,Write a SELECT query. Note result is not paged (all data is sent in one go).,寫一個SELECT查詢。注結果不分頁(所有數據都一氣呵成發送)。 DocType: Email Account,Attachment Limit (MB),附件限制(MB) @@ -2247,6 +2296,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Core DocTypes apps/frappe/frappe/public/js/frappe/views/treeview.js,Create New,新建立 DocType: Workflow State,chevron-down,人字形-下 apps/frappe/frappe/public/js/frappe/views/communication.js,Email not sent to {0} (unsubscribed / disabled),電子郵件不會被發送到{0}(退訂/禁用) +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select fields to export,選擇要導出的字段 DocType: Currency,Smallest Currency Fraction Value,最小的貨幣分數值 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Preparing Report,準備報告 apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,指派給 @@ -2254,6 +2304,7 @@ DocType: Workflow State,th-list,日列表 DocType: Web Page,Enable Comments,啟用評論 apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,筆記 DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),僅限此IP地址用戶。多個IP地址可以通過用逗號分隔的方式輸入。也接受部分的IP地址區段如(111.111.111) +DocType: Data Import Beta,Import Preview,導入預覽 DocType: Communication,From,從 apps/frappe/frappe/public/js/frappe/views/treeview.js,Select a group node first.,首先選擇一組節點。 apps/frappe/frappe/public/js/frappe/social/components/PostLoader.vue,No posts yet,還沒有帖子 @@ -2336,6 +2387,7 @@ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Between,之間 DocType: Social Login Key,fairlogin,fairlogin DocType: Async Task,Queued,排隊 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設置>自定義表格 apps/frappe/frappe/utils/goal.py,This month,這個月 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,新自定義列印格式 DocType: Custom DocPerm,Create,建立 @@ -2350,6 +2402,7 @@ DocType: Session Default,Session Default,會話默認 DocType: Chat Room,Last Message,最後的消息 DocType: OAuth Bearer Token,Access Token,存取 Token DocType: About Us Settings,Org History,組織歷史 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minutes remaining,剩餘約{0}分鐘 DocType: Auto Repeat,Next Schedule Date,下一個附表日期 DocType: Workflow,Workflow Name,工作流程名稱 DocType: DocShare,Notify by Email,通過電子郵件通知 @@ -2377,6 +2430,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Select Language...,選擇語 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You can't set 'Options' for field {0},您不能為字段{0}設置“選項” apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js,Resume Sending,發送簡歷 apps/frappe/frappe/core/doctype/communication/communication.js,Reopen,重新打開 +apps/frappe/frappe/public/js/frappe/data_import/import_preview.js,Show Warnings,顯示警告 DocType: Address,Purchase User,購買用戶 DocType: Data Migration Run,Push Failed,推送失敗 DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.",本文件可存在的不同「狀態」。如「開啟」、「延後批准」等。 @@ -2409,6 +2463,7 @@ apps/frappe/frappe/public/js/frappe/form/controls/link.js,Advanced Search,高級 apps/frappe/frappe/email/doctype/newsletter/newsletter.py,You are not permitted to view the newsletter.,您不能查看簡報。 DocType: User,Interests,興趣 apps/frappe/frappe/core/doctype/user/user.py,Password reset instructions have been sent to your email,密碼重置說明已發送到您的電子郵件 +DocType: Energy Point Rule,Allot Points To Assigned Users,向分配的用戶分配點 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",級別0是用於文檔級別權限,\更高級別的字段級權限。 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,From Document Type,從文檔類型 @@ -2429,6 +2484,7 @@ apps/frappe/frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py,S DocType: Stripe Settings,Publishable Key,可發布密鑰 DocType: Stripe Settings,Publishable Key,可發布密鑰 apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,開始導入 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Type,導出類型 DocType: Workflow State,circle-arrow-left,圓圈箭頭向左 DocType: System Settings,Force User to Reset Password,強制用戶重置密碼 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"To get the updated report, click on {0}.",請點選{0}來取得更新的報表。 @@ -2442,10 +2498,12 @@ apps/frappe/frappe/model/naming.py,Name not set via Prompt,名稱未通過設置 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,電子郵件收件箱 DocType: Auto Email Report,Filters Display,顯示過濾器 apps/frappe/frappe/public/js/frappe/form/form.js,"""amended_from"" field must be present to do an amendment.",必須出現“modified_from”字段才能進行修改。 +DocType: Contact,Numbers,數字 apps/frappe/frappe/public/js/frappe/ui/toolbar/energy_points_notifications.js,{0} appreciated your work on {1} {2},{0}感謝您對{1} {2}的工作 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,保存過濾器 DocType: Address,Plant,廠 DocType: DocType,Setup,設定 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,All Records,所有記錄 DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,要同步其Google通訊錄的電子郵件地址。 DocType: Email Account,Initial Sync Count,初始同步計數 DocType: DocType,Timeline Field,時間軸場 @@ -2467,7 +2525,7 @@ DocType: Workflow State,font,字形 DocType: DocType,Show Preview Popup,顯示預覽彈出窗口 apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,這是一個頂100公共密碼。 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js,Please enable pop-ups,請啟用彈出窗口 -DocType: User,Mobile No,手機號碼 +DocType: Contact,Mobile No,手機號碼 DocType: Communication,Text Content,文本內容 DocType: Customize Form Field,Is Custom Field,是自定義字段 DocType: Workflow,"If checked, all other workflows become inactive.",如果選中,所有其他的工作流程變得無效。 @@ -2510,6 +2568,9 @@ apps/frappe/frappe/config/customization.py,Add custom javascript to forms.,添 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Name of the new Print Format,新列印格式的名稱 apps/frappe/frappe/public/js/frappe/list/list_view.js,Toggle Sidebar,切換邊欄 DocType: Data Migration Run,Pull Insert,拉插入 +DocType: Energy Point Rule,"Maximum points allowed after multiplying points with the multiplier value +(Note: For no limit leave this field empty or set 0)",將點乘以乘數值後允許的最大點(注意:無限制,將此字段留空或設置為0) +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Invalid Template,無效的模板 apps/frappe/frappe/model/db_query.py,Illegal SQL Query,非法SQL查詢 apps/frappe/frappe/core/doctype/data_export/exporter.py,Mandatory:,強制性: apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,"To use Google Contacts, enable {0}.",要使用Google通訊錄,請啟用{0}。 @@ -2546,9 +2607,11 @@ DocType: Braintree Settings,Public Key,公鑰 DocType: GSuite Settings,GSuite Settings,GSuite設置 DocType: Address,Links,鏈接 DocType: Email Account,Uses the Email Address Name mentioned in this Account as the Sender's Name for all emails sent using this Account.,使用此帳戶中提到的電子郵件地址名稱作為使用此帳戶發送的所有電子郵件的發件人姓名。 +DocType: Energy Point Rule,Field To Check,要檢查的領域 apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,"Google Contacts - Could not update contact in Google Contacts {0}, error code {1}.",Google通訊錄 - 無法更新Google通訊錄{0}中的聯繫人,錯誤代碼{1}。 apps/frappe/frappe/core/doctype/data_export/data_export.js,Please select the Document Type.,請選擇文件類型。 apps/frappe/frappe/public/js/frappe/views/treeview.js,Add Child,新增子項目 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Import Progress,進口進度 DocType: Energy Point Rule,"If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed' ",如果條件滿足,用戶將獲得積分獎勵。例如。 doc.status =='已關閉' apps/frappe/frappe/model/delete_doc.py,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:已呈交的記錄不能被刪除。 @@ -2619,7 +2682,9 @@ DocType: Email Account,Ignore attachments over this size,忽略附件超過此 DocType: Address,Preferred Billing Address,偏好的帳單地址 apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,太多的寫在一個請求。請將較小的請求 apps/frappe/frappe/integrations/doctype/google_drive/google_drive.py,Google Drive has been configured.,已配置Google雲端硬盤。 +apps/frappe/frappe/desk/doctype/global_search_settings/global_search_settings.py,Document Type {0} has been repeated.,文檔類型{0}已重複。 DocType: Workflow State,arrow-up,向上箭頭 +apps/frappe/frappe/core/doctype/data_import/importer_new.py,There should be atleast one row for {0} table,{0}表至少應有一行 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat.js,"To configure Auto Repeat, enable ""Allow Auto Repeat"" from {0}.",要配置自動重複,請從{0}啟用“允許自動重複”。 DocType: OAuth Bearer Token,Expires In,過期日期在 DocType: DocField,Allow on Submit,允許在提交 @@ -2693,6 +2758,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Se 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條記錄 DocType: DocField,Report Hide,報告隱藏 apps/frappe/frappe/public/js/frappe/views/treeview.js,Tree view not available for {0},不適用於樹視圖{0} DocType: Domain,Domain,網域 @@ -2708,6 +2774,7 @@ apps/frappe/frappe/twofactor.py,Verfication Code,驗證碼 DocType: Webhook,Webhook Request,Webhook請求 apps/frappe/frappe/model/rename_doc.py,** Failed: {0} to {1}: {2},**失敗:{0}到 {1}:{2} DocType: Data Migration Mapping,Mapping Type,映射類型 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Select Mandatory,強制性選擇 apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,瀏覽 apps/frappe/frappe/utils/password_strength.py,"No need for symbols, digits, or uppercase letters.",無需符號,數字和大寫字母。 DocType: DocField,Currency,貨幣 @@ -2735,10 +2802,12 @@ DocType: Workflow State,Workflow state represents the current state of a documen DocType: Letter Head,Letter Head Based On,基於的信頭 apps/frappe/frappe/utils/oauth.py,Token is missing,令牌丟失 apps/frappe/frappe/www/update-password.html,Set Password,設置密碼 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} records.,成功導入了{0}條記錄。 apps/frappe/frappe/public/js/frappe/utils/utils.js,Note: Changing the Page Name will break previous URL to this page.,注意:更改頁面名稱將會破壞此頁面的上一個URL。 apps/frappe/frappe/utils/file_manager.py,Removed {0},刪除{0} DocType: SMS Settings,SMS Settings,簡訊設定 DocType: Company History,Highlight,突出 +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,via Data Import,通過數據導入 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}不能是必需的 @@ -2796,6 +2865,7 @@ apps/frappe/frappe/utils/password_strength.py,All-uppercase is almost as easy to DocType: Website Settings,Top Bar Items,頂欄項目 DocType: Notification,Print Settings,列印設置 DocType: Page,Yes,是的 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} seconds remaining,剩餘約{0}秒 DocType: Calendar View,End Date Field,結束日期字段 apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,全球捷徑 DocType: Desktop Icon,Page,頁面 @@ -2924,11 +2994,13 @@ DocType: Stripe Settings,Stripe Settings,條紋設置 DocType: Stripe Settings,Stripe Settings,條紋設置 DocType: Data Migration Mapping,Data Migration Mapping,數據遷移映射 DocType: Auto Email Report,Period,期間 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,About {0} minute remaining,剩餘約{0}分鐘 apps/frappe/frappe/www/login.py,Invalid Login Token,無效的登錄令牌 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} @@ -2959,6 +3031,7 @@ DocType: Calendar View,Start Date Field,開始日期字段 DocType: Role,Role Name,角色名稱 apps/frappe/frappe/templates/includes/navbar/navbar_login.html,Switch To Desk,切換到台 apps/frappe/frappe/config/core.py,Script or Query reports,腳本或查詢報告 +DocType: Contact Phone,Is Primary Mobile,是主要手機 DocType: Workflow Document State,Workflow Document State,工作流程文件狀態 apps/frappe/frappe/core/doctype/user/user.py,Email Account added multiple times,電子郵件帳戶多次添加 DocType: Energy Point Settings,Last Point Allocation Date,最後一點分配日期 @@ -2997,6 +3070,7 @@ apps/frappe/frappe/public/js/frappe/web_form/web_form_list.js,Sr,序號 DocType: DocField,Float,浮動 DocType: Print Settings,Page Settings,頁面設置 apps/frappe/frappe/www/update-password.html,Invalid Password,無效的密碼 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record out of {1}.,已成功導入{1}中的{0}條記錄。 DocType: Contact,Purchase Master Manager,採購主檔經理 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Click on the lock icon to toggle public/private,單擊鎖定圖標以切換公共/私人 DocType: Module Def,Module Name,模塊名稱 @@ -3027,6 +3101,7 @@ apps/frappe/frappe/core/doctype/sms_settings/sms_settings.py,Please enter valid apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,您的瀏覽器中的某些功能可能無法正常工作。請將您的瀏覽器更新到最新版本。 apps/frappe/frappe/public/js/frappe/desk.js,Some of the features might not work in your browser. Please update your browser to the latest version.,您的瀏覽器中的某些功能可能無法正常工作。請將您的瀏覽器更新到最新版本。 apps/frappe/frappe/utils/bot.py,"Don't know, ask 'help'",不知道,問'幫助' +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document {0},取消了此文檔{0} DocType: DocType,Comments and Communications will be associated with this linked document,評論與通訊將與此鏈接的文檔關聯 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html,Filter...,過濾器... DocType: Workflow State,bold,粗體 @@ -3043,6 +3118,7 @@ apps/frappe/frappe/config/settings.py,Add / Manage Email Accounts.,新增 / 管 DocType: Comment,Published,已發行 apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,感謝您的電子郵件 DocType: DocField,Small Text,小文 +apps/frappe/frappe/contacts/doctype/contact/contact.py,Number {0} cannot be set as primary for Phone as well as Mobile No.,不能將數字{0}設置為主電話,也不能將其設置為移動號碼。 DocType: Workflow,Allow approval for creator of the document,允許批准文檔的創建者 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Save Report,保存報告 DocType: Social Login Key,API Endpoint Args,API端點參數 @@ -3093,6 +3169,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers, DocType: Print Settings,PDF Settings,PDF設置 DocType: Language,Based On,基於 DocType: Email Account,"For more information, click here.","有關更多信息, 請單擊此處 。" +apps/frappe/frappe/core/doctype/data_import/importer_new.py,Number of columns does not match with data,列數與數據不匹配 apps/frappe/frappe/printing/doctype/print_format/print_format.js,Make Default,設為默認 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Execution Time: {0} sec,執行時間:{0}秒 apps/frappe/frappe/model/utils/__init__.py,Invalid include path,包含路徑無效 @@ -3173,7 +3250,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,The First User: You, apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Newsletter should have atleast one recipient,通訊應該至少有一個收件人 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,Upload {0} files,上傳{0}個文件 DocType: Prepared Report,Report Start Time,報告開始時間 -apps/frappe/frappe/config/settings.py,Export Data,導出數據 +apps/frappe/frappe/public/js/frappe/data_import/data_exporter.js,Export Data,導出數據 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/www/login.py,Missing parameters for login,缺少參數登錄 @@ -3189,7 +3266,6 @@ DocType: Report,Disable Prepared Report,禁用準備報告 apps/frappe/frappe/templates/emails/data_deletion_approval.html,User {0} has requested for data deletion,用戶{0}已請求刪除數據 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Illegal Access Token. Please try again,非法訪問令牌。請再試一次 apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",該應用程序已被更新到新版本,請刷新本頁面 -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.,找不到默認地址模板。請從“設置”>“打印和品牌”>“地址模板”中創建一個新的。 DocType: Notification,Optional: The alert will be sent if this expression is true,可選:警報會在這個表達式為true發送 DocType: Data Migration Plan,Plan Name,計劃名稱 DocType: Print Settings,Print with letterhead,打印信頭 @@ -3225,6 +3301,7 @@ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Ple apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0} :如果沒有取消便無法設為修改 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Full Page,全頁 DocType: DocType,Is Child Table,是子表 +DocType: Data Import Beta,Template Options,模板選項 apps/frappe/frappe/utils/csvutils.py,{0} must be one of {1},{0}必須是{1} 之一 apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} is currently viewing this document,{0}正在查看該文檔 apps/frappe/frappe/config/core.py,Background Email Queue,背景電子郵件佇列 @@ -3232,7 +3309,6 @@ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,密碼重置 DocType: Communication,Opened,開業 DocType: Workflow State,chevron-left,人字形-左 DocType: Communication,Sending,發出 -apps/frappe/frappe/auth.py,Not allowed from this IP Address,不接受來自此IP地址 DocType: Website Slideshow,This goes above the slideshow.,這正好幻燈片上面。 apps/frappe/frappe/email/doctype/notification/notification.js,No alerts for today,沒有警報今天 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),發送郵件列印附件為PDF格式(推薦) @@ -3243,7 +3319,6 @@ DocType: Workflow Action,Workflow Action,工作流程執行 apps/frappe/frappe/utils/bot.py,I found these: ,我發現這些: DocType: Event,Send an email reminder in the morning,在早上發送電子郵件提醒 DocType: Blog Post,Published On,發表於 -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建新的電子郵件帳戶 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}上恢復了積分 @@ -3263,7 +3338,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Use DocType: Workflow State,warning-sign,警告符號 DocType: Prepared Report,Prepared Report,準備報告 apps/frappe/frappe/config/website.py,Add meta tags to your web pages,將元標記添加到您的網頁 -DocType: Contact,Phone Nos,電話號碼 DocType: Workflow State,User,使用者 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",標題顯示在瀏覽器窗口中的“前綴 - 標題” DocType: Payment Gateway,Gateway Settings,網關設置 @@ -3278,13 +3352,14 @@ DocType: Data Migration Connector,Data Migration,數據遷移 DocType: User,API Key cannot be regenerated,API密鑰無法重新生成 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,出了些問題 DocType: System Settings,Number Format,數字格式 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully imported {0} record.,已成功導入{0}記錄。 DocType: Event,Event Participants,活動參與者 DocType: Auto Repeat,Frequency,頻率 DocType: Custom Field,Insert After,於後方插入 DocType: Event,Sync with Google Calendar,與Google日曆同步 DocType: Access Log,Report Name,報告名稱 DocType: Desktop Icon,Reverse Icon Color,反向圖標顏色 -DocType: Notification,Save,儲存 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Save,儲存 apps/frappe/frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html,Next Scheduled Date,下一個預定日期 apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,分配給分配最少的人 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Section Heading,標題節 @@ -3304,7 +3379,6 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,values separated by co 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/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設置>自定義表單 DocType: Google Contacts,Last Sync On,上次同步開啟 DocType: Deleted Document,Deleted Document,刪除的文檔 apps/frappe/frappe/templates/includes/login/login.js,Oops! Something went wrong,糟糕!出事了 @@ -3329,6 +3403,7 @@ apps/frappe/frappe/workflow/doctype/workflow/workflow.py,{0} not a valid State,{ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to all Documents Types,適用於所有文檔類型 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,能量點更新 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Please select another payment method. PayPal does not support transactions in currency '{0}',請選擇其他付款方式。貝寶不支持貨幣交易“{0}” +DocType: Data Import Beta,Import Log Preview,導入日誌預覽 apps/frappe/frappe/core/doctype/doctype/doctype.py,Search field {0} is not valid,搜索欄{0}無效 apps/frappe/frappe/public/js/frappe/file_uploader/FileUploader.vue,uploaded file,上傳的文件 DocType: Workflow State,ok-circle,OK-圈 @@ -3390,6 +3465,7 @@ DocType: DocType,Allow Auto Repeat,允許自動重複 apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,沒有要顯示的值 DocType: Desktop Icon,_doctype,_文件格式 DocType: Communication,Email Template,電子郵件模板 +apps/frappe/frappe/core/doctype/data_import_beta/data_import_beta.js,Successfully updated {0} record.,成功更新了{0}條記錄。 apps/frappe/frappe/permissions.py,User {0} does not have doctype access via role permission for document {1},用戶{0}沒有通過文檔{1}的角色權限訪問doctype apps/frappe/frappe/templates/includes/login/login.js,Both login and password required,需要登錄名稱和密碼 apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,請更新以取得最新的文檔。 From a2d9e5df1ac9ebc025bc98467d44af4f5251f469 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Tue, 1 Oct 2019 19:06:55 +0530 Subject: [PATCH 209/274] fix: Ingore permissions while creating file for prepared report --- frappe/core/doctype/prepared_report/prepared_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/prepared_report/prepared_report.py b/frappe/core/doctype/prepared_report/prepared_report.py index 989a99511a..071bb4afc0 100644 --- a/frappe/core/doctype/prepared_report/prepared_report.py +++ b/frappe/core/doctype/prepared_report/prepared_report.py @@ -87,7 +87,7 @@ def create_json_gz_file(data, dt, dn): "attached_to_name": dn, "content": compressed_content }) - _file.save() + _file.save(ignore_permissions=True) @frappe.whitelist() From 14ad837969f12744f7c3c2a06c5f93ef2c246711 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Wed, 2 Oct 2019 09:10:28 +0530 Subject: [PATCH 210/274] fix: Typo --- .../patches/v12_0/set_default_incoming_email_port.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frappe/patches/v12_0/set_default_incoming_email_port.py b/frappe/patches/v12_0/set_default_incoming_email_port.py index 6ab98258c9..eb225c683d 100644 --- a/frappe/patches/v12_0/set_default_incoming_email_port.py +++ b/frappe/patches/v12_0/set_default_incoming_email_port.py @@ -3,17 +3,17 @@ from frappe.email.utils import get_port def execute(): ''' - 1. Set default incoming mmail port in email domin - 2. Set default incoming mmail port in all email account (for those account where domain is missing) + 1. Set default incoming email port in email domain + 2. Set default incoming email port in all email account (for those account where domain is missing) ''' frappe.reload_doc("email", "doctype", "email_domain", force=True) frappe.reload_doc("email", "doctype", "email_account", force=True) - setup_incomming_email_port_in_email_domains() - setup_incomming_email_port_in_email_accounts() + setup_incoming_email_port_in_email_domains() + setup_incoming_email_port_in_email_accounts() -def setup_incomming_email_port_in_email_domains(): +def setup_incoming_email_port_in_email_domains(): email_domains = frappe.db.get_all("Email Domain", ['incoming_port', 'use_imap', 'use_ssl', 'name']) for domain in email_domains: if not domain.incoming_port: @@ -23,7 +23,7 @@ def setup_incomming_email_port_in_email_domains(): #update incoming email port in all frappe.db.sql('''update `tabEmail Account` set incoming_port=%s where domain = %s''', (domain.incoming_port, domain.name)) -def setup_incomming_email_port_in_email_accounts(): +def setup_incoming_email_port_in_email_accounts(): email_accounts = frappe.db.get_all("Email Account", ['incoming_port', 'use_imap', 'use_ssl', 'name', 'enable_incoming']) for account in email_accounts: From 3c7125a2eb86ef7c20512929d474cfbc197d91b9 Mon Sep 17 00:00:00 2001 From: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> Date: Wed, 2 Oct 2019 09:18:27 +0530 Subject: [PATCH 211/274] style: Fix formatting --- frappe/public/js/frappe/form/controls/currency.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/currency.js b/frappe/public/js/frappe/form/controls/currency.js index 141eae1e8e..1961985117 100644 --- a/frappe/public/js/frappe/form/controls/currency.js +++ b/frappe/public/js/frappe/form/controls/currency.js @@ -1,6 +1,6 @@ frappe.ui.form.ControlCurrency = frappe.ui.form.ControlFloat.extend({ eval_expression: function(value) { - if (typeof value ==='string' + if (typeof value === 'string' && value.match(/^[0-9+-/* ]+$/) // paresFloat('1,44,000') returns 1.0 // 1,44,000 are being passed when we paste rows from excel sheet to a table From acd33a4e5058e451d72b38f39006d43a4ff196db Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Wed, 2 Oct 2019 10:45:09 +0530 Subject: [PATCH 212/274] fix: Prevent long review text from busting out of the body --- frappe/public/less/sidebar.less | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/public/less/sidebar.less b/frappe/public/less/sidebar.less index eae197d01d..246cd721ac 100644 --- a/frappe/public/less/sidebar.less +++ b/frappe/public/less/sidebar.less @@ -465,6 +465,7 @@ body[data-route^="Module"] .main-menu { } .subject, .body { padding: 12px; + overflow-wrap: break-word; } } From 915b1947d38d9516d9e1eb475b41074e7f2c3783 Mon Sep 17 00:00:00 2001 From: Deepesh Garg <42651287+deepeshgarg007@users.noreply.github.com> Date: Wed, 2 Oct 2019 11:29:49 +0530 Subject: [PATCH 213/274] feat: Fully customizable query reports (#8516) * fix: Custom print format * fix: Allow deleting columns in custom report --- frappe/public/js/frappe/form/print.js | 23 +++++++++- .../js/frappe/views/reports/query_report.js | 46 +++++++++++++------ 2 files changed, 54 insertions(+), 15 deletions(-) diff --git a/frappe/public/js/frappe/form/print.js b/frappe/public/js/frappe/form/print.js index b6e152562d..eb9c0240f5 100644 --- a/frappe/public/js/frappe/form/print.js +++ b/frappe/public/js/frappe/form/print.js @@ -470,7 +470,7 @@ frappe.ui.form.PrintPreview = Class.extend({ } }); -frappe.ui.get_print_settings = function (pdf, callback, letter_head) { +frappe.ui.get_print_settings = function (pdf, callback, letter_head, pick_columns) { var print_settings = locals[":Print Settings"]["Print Settings"]; var default_letter_head = locals[":Company"] && frappe.defaults.get_default('company') @@ -499,6 +499,27 @@ frappe.ui.get_print_settings = function (pdf, callback, letter_head) { default: "Landscape" }]; + if (pick_columns) { + columns.push( + { + label: __("Pick Columns"), + fieldtype: "Check", + fieldname: "pick_columns", + }, + { + label: __("Select Columns"), + fieldtype: "MultiCheck", + fieldname: "columns", + depends_on: "pick_columns", + columns: 2, + options: pick_columns.map(df => ({ + label: __(df.label), + value: df.fieldname + })) + } + ); + } + return frappe.prompt(columns, function (data) { var data = $.extend(print_settings, data); if (!data.with_letter_head) { diff --git a/frappe/public/js/frappe/views/reports/query_report.js b/frappe/public/js/frappe/views/reports/query_report.js index 690a3b6f30..51845a10dc 100644 --- a/frappe/public/js/frappe/views/reports/query_report.js +++ b/frappe/public/js/frappe/views/reports/query_report.js @@ -837,16 +837,17 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { const custom_format = this.report_settings.html_format || null; const filters_html = this.get_filters_html_for_print(); const landscape = print_settings.orientation == 'Landscape'; + this.make_access_log('Print', 'PDF'); frappe.render_grid({ - template: custom_format, + template: print_settings.columns ? 'print_grid' : custom_format, title: __(this.report_name), subtitle: filters_html, print_settings: print_settings, landscape: landscape, filters: this.get_filter_values(), data: this.get_data_for_print(), - columns: custom_format ? this.columns : this.get_columns_for_print(), + columns: this.get_columns_for_print(print_settings, custom_format), original_data: this.data, report: this }); @@ -858,18 +859,17 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { const landscape = print_settings.orientation == 'Landscape'; const custom_format = this.report_settings.html_format || null; - const columns = custom_format ? this.columns : this.get_columns_for_print(); const data = this.get_data_for_print(); const applied_filters = this.get_filter_values(); const filters_html = this.get_filters_html_for_print(); - const content = frappe.render_template(custom_format || 'print_grid', { + const content = frappe.render_template(print_settings.columns ? 'print_grid' : custom_format, { title: __(this.report_name), subtitle: filters_html, filters: applied_filters, data: data, original_data: this.data, - columns: columns, + columns: this.get_columns_for_print(print_settings, custom_format), report: this }); @@ -987,8 +987,18 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { return rows; } - get_columns_for_print() { - return this.get_visible_columns(); + get_columns_for_print(print_settings, custom_format) { + let columns = []; + + if (print_settings && print_settings.columns) { + columns = this.get_visible_columns().filter(column => + print_settings.columns.includes(column.fieldname) + ); + } else { + columns = custom_format ? this.columns : this.get_visible_columns(); + } + + return columns; } get_menu_items() { @@ -1010,7 +1020,8 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { let dialog = frappe.ui.get_print_settings( false, print_settings => this.print_report(print_settings), - this.report_doc.letter_head + this.report_doc.letter_head, + this.get_visible_columns() ); this.add_portrait_warning(dialog); }, @@ -1023,7 +1034,8 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { let dialog = frappe.ui.get_print_settings( false, print_settings => this.pdf_report(print_settings), - this.report_doc.letter_head + this.report_doc.letter_head, + this.get_visible_columns() ); this.add_portrait_warning(dialog); @@ -1060,8 +1072,16 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { .filter(frappe.model.is_value_type) .map(df => ({ label: df.label, value: df.fieldname })); - d.set_df_property('field', 'options', options); - + d.set_df_property('field', 'options', options.sort(function(a, b) { + if (a.label < b.label) { + return -1; + } + if (a.label > b.label) { + return 1; + } + return 0; + }) + ); }); } }, @@ -1104,7 +1124,6 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { d.hide(); } }); - this.show_save = true; this.set_menu_items(); } }) @@ -1132,7 +1151,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { args: { reference_report: this.report_name, report_name: values.report_name, - columns: this.columns + columns: this.get_visible_columns() }, callback: function(r) { this.show_save = false; @@ -1144,7 +1163,6 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { }); d.show(); }, - condition: () => this.show_save, standard: true }, { From a5a48f2054f7649dea1b799da9b304c17a0a2967 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Wed, 2 Oct 2019 11:39:25 +0530 Subject: [PATCH 214/274] fix: left join Tag Link --- frappe/public/js/frappe/list/list_sidebar.js | 7 +- frappe/public/js/frappe/ui/filters/filter.js | 6 ++ .../js/frappe/ui/toolbar/global_tags.js | 73 +++---------------- frappe/utils/global_tags.py | 5 +- 4 files changed, 22 insertions(+), 69 deletions(-) diff --git a/frappe/public/js/frappe/list/list_sidebar.js b/frappe/public/js/frappe/list/list_sidebar.js index d841125f87..0000a3dc73 100644 --- a/frappe/public/js/frappe/list/list_sidebar.js +++ b/frappe/public/js/frappe/list/list_sidebar.js @@ -333,13 +333,14 @@ frappe.views.ListSidebar = class ListSidebar { field: field, stat: stats, sum: sum, - label: field === '_user_tags' ? (tags ? __(label) : __("Tags")) : __(label), + label: field === '_user_tags' ? (tags ? __(label) : __("Tag")) : __(label), }; $(frappe.render_template("list_sidebar_stat", context)) .on("click", ".stat-link", function() { + var doctype = "Tag Link"; var fieldname = $(this).attr('data-field'); var label = $(this).attr('data-label'); - var condition = "like"; + var condition = "="; var existing = me.list_view.filter_area.filter_list.get_filter(fieldname); if(existing) { existing.remove(); @@ -348,7 +349,7 @@ frappe.views.ListSidebar = class ListSidebar { label = "%,%"; condition = "not like"; } - me.list_view.filter_area.filter_list.add_filter(me.list_view.doctype, fieldname, condition, label) + me.list_view.filter_area.filter_list.add_filter(doctype, fieldname, condition, label) .then(function() { me.list_view.refresh(); }); diff --git a/frappe/public/js/frappe/ui/filters/filter.js b/frappe/public/js/frappe/ui/filters/filter.js index fdf5266216..128ea4e872 100644 --- a/frappe/public/js/frappe/ui/filters/filter.js +++ b/frappe/public/js/frappe/ui/filters/filter.js @@ -61,6 +61,7 @@ frappe.ui.Filter = class { doctype: this.parent_doctype, filter_fields: this.filter_fields, select: (doctype, fieldname) => { + console.log(doctype, fieldname); this.set_field(doctype, fieldname); } }); @@ -173,6 +174,11 @@ frappe.ui.Filter = class { if(this.field) for(let k in this.field.df) cur[k] = this.field.df[k]; let original_docfield = (this.fieldselect.fields_by_name[doctype] || {})[fieldname]; + + if (doctype === "Tag Link") { + original_docfield = {fieldname: "tag", fieldtype: "Data", label: "Tags", parent: doctype}; + } + if(!original_docfield) { console.warn(`Field ${fieldname} is not selectable.`); this.remove(); diff --git a/frappe/public/js/frappe/ui/toolbar/global_tags.js b/frappe/public/js/frappe/ui/toolbar/global_tags.js index ce565b9e02..1c9f9a88f8 100644 --- a/frappe/public/js/frappe/ui/toolbar/global_tags.js +++ b/frappe/public/js/frappe/ui/toolbar/global_tags.js @@ -50,71 +50,16 @@ frappe.global_tags.utils = { }); } - function make_description(content, doc_name) { - var parts = content.split(" ||| "); - var result_max_length = 300; - var field_length = 120; - var fields = []; - var result_current_length = 0; - var field_text = ""; - var colon_index = null; + function make_description(content) { + var field_length = 110; var field_value = null; - for (var i = 0; i < parts.length; i++) { - var part = parts[i]; - if (part.toLowerCase().indexOf(tag) !== -1) { - // If the field contains the keyword - if (part.indexOf(' &&& ') !== -1) { - colon_index = part.indexOf(' &&& '); - field_value = part.slice(colon_index + 5); - } else { - colon_index = part.indexOf(' : '); - field_value = part.slice(colon_index + 3); - } - if (field_value.length > field_length) { - // If field value exceeds field_length, find the keyword in it - // and trim field value by half the field_length at both sides - // ellipsify if necessary - var field_data = ""; - var index = field_value.indexOf(tag); - field_data += index < field_length/2 ? field_value.slice(0, index) - : '...' + field_value.slice(index - field_length/2, index); - field_data += field_value.slice(index, index + field_length/2); - field_data += index + field_length/2 < field_value.length ? "..." : ""; - field_value = field_data; - } - var field_name = part.slice(0, colon_index); - - // Find remaining result_length and add field length to result_current_length - var remaining_length = result_max_length - result_current_length; - result_current_length += field_name.length + field_value.length + 2; - if (result_current_length < result_max_length) { - // We have room, push the entire field - field_text = '' + - me.bolden_match_part(field_name, tag) + ': ' + - me.bolden_match_part(field_value, tag); - if (fields.indexOf(field_text) === -1 && doc_name !== field_value) { - fields.push(field_text); - } - } else { - // Not enough room - if (field_name.length < remaining_length) { - // Ellipsify (trim at word end) and push - remaining_length -= field_name.length; - field_text = '' + - me.bolden_match_part(field_name, tag) + ': '; - field_value = field_value.slice(0, remaining_length); - field_value = field_value.slice(0, field_value.lastIndexOf(' ')) + ' ...'; - field_text += me.bolden_match_part(field_value, tag); - fields.push(field_text); - } else { - // No room for even the field name, skip - fields.push('...'); - } - break; - } - } + if (content.length > field_length) { + field_value = content.slice(0, field_length) + "..."; + } else { + var length = content.length; + field_value = content.slice(0, length) + "..."; } - return fields.join(', '); + return field_value; } data.forEach(function(d) { @@ -122,7 +67,7 @@ frappe.global_tags.utils = { result = { label: d.name, value: d.name, - description: make_description(d.content, d.name), + description: make_description(d.content), route: ['Form', d.doctype, d.name], }; diff --git a/frappe/utils/global_tags.py b/frappe/utils/global_tags.py index 11f745d9ce..93cf82a140 100644 --- a/frappe/utils/global_tags.py +++ b/frappe/utils/global_tags.py @@ -23,13 +23,14 @@ def update_global_tags(doc, tags): new_tags = list(set([tag.strip() for tag in tags.split(",") if tag])) - for tag in new_tags: - if not frappe.db.exists("Tag Link", {"dt": doc.doctype, "dn": doc.name, "tag": tag}): + if not frappe.db.exists("Tag Link", {"parenttype": doc.doctype, "parent": doc.name, "tag": tag}): frappe.get_doc({ "doctype": "Tag Link", "dt": doc.doctype, "dn": doc.name, + "parenttype": doc.doctype, + "parent": doc.name, "title": doc.get_title() or '', "tag": tag }).insert(ignore_permissions=True) From 8cb6528c039b341a4173901e3be0a3659d5074dd Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 2 Oct 2019 13:19:52 +0530 Subject: [PATCH 215/274] fix: validate conditions for raw printing --- frappe/printing/doctype/print_format/print_format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/printing/doctype/print_format/print_format.py b/frappe/printing/doctype/print_format/print_format.py index eb39134d02..1c11f2d519 100644 --- a/frappe/printing/doctype/print_format/print_format.py +++ b/frappe/printing/doctype/print_format/print_format.py @@ -34,7 +34,7 @@ class PrintFormat(Document): if self.custom_format and self.raw_printing and not self.raw_commands: frappe.throw(_('{0} are required').format(frappe.bold(_('Raw Commands'))), frappe.MandatoryError) - if self.custom_format and not self.html: + if self.custom_format and not self.html and not self.raw_printing: frappe.throw(_('{0} is required').format(frappe.bold(_('HTML'))), frappe.MandatoryError) def extract_images(self): From fcd638020ccbe577b79a2b554654d9160f451643 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 2 Oct 2019 14:00:46 +0530 Subject: [PATCH 216/274] fix: Show Text Editor for Content Type Rich Text --- frappe/website/doctype/web_page/web_page.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frappe/website/doctype/web_page/web_page.json b/frappe/website/doctype/web_page/web_page.json index f6898153e3..3dd32a65e9 100644 --- a/frappe/website/doctype/web_page/web_page.json +++ b/frappe/website/doctype/web_page/web_page.json @@ -109,7 +109,7 @@ { "depends_on": "eval:doc.content_type==='Rich Text'", "fieldname": "main_section", - "fieldtype": "HTML Editor", + "fieldtype": "Text Editor", "ignore_xss_filter": 1, "in_global_search": 1, "label": "Main Section" @@ -118,14 +118,14 @@ "depends_on": "eval:doc.content_type==='Markdown'", "fieldname": "main_section_md", "fieldtype": "Markdown Editor", - "label": "Main Section" + "label": "Main Section (Markdown)" }, { "depends_on": "eval:doc.content_type==='HTML'", "fieldname": "main_section_html", "fieldtype": "HTML Editor", "ignore_xss_filter": 1, - "label": "Main Section" + "label": "Main Section (HTML)" }, { "collapsible": 1, @@ -242,7 +242,7 @@ "idx": 1, "is_published_field": "published", "max_attachments": 20, - "modified": "2019-09-03 04:04:29.585330", + "modified": "2019-10-02 13:58:50.825481", "modified_by": "Administrator", "module": "Website", "name": "Web Page", @@ -264,4 +264,4 @@ "sort_order": "ASC", "title_field": "title", "track_changes": 1 -} +} \ No newline at end of file From bd5cc03f4a77a4303c8112038d42e9f99ca7e52d Mon Sep 17 00:00:00 2001 From: Sahil Khan Date: Wed, 2 Oct 2019 16:55:43 +0550 Subject: [PATCH 217/274] bumped to version 12.0.16 --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index dc524cd908..1e801348b6 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -23,7 +23,7 @@ if sys.version[0] == '2': reload(sys) sys.setdefaultencoding("utf-8") -__version__ = '12.0.15' +__version__ = '12.0.16' __title__ = "Frappe Framework" local = Local() From 3f980dbd79844407d60adaf8e470d389ac337e73 Mon Sep 17 00:00:00 2001 From: Himanshu Date: Wed, 2 Oct 2019 17:13:42 +0530 Subject: [PATCH 218/274] fix(Global Search Settings): Show progress while setting global search doctypes (#8515) * fix: add frm dashboard * fix: add search for other domains * fix: set global search doctypes for all domains * fix: add doctypes to global search dict in hooks * fix: Remove unused variable --- .../global_search_settings.js | 10 ++++++ .../global_search_settings.py | 24 +++++++++++-- frappe/hooks.py | 34 ++++++++++--------- 3 files changed, 50 insertions(+), 18 deletions(-) diff --git a/frappe/desk/doctype/global_search_settings/global_search_settings.js b/frappe/desk/doctype/global_search_settings/global_search_settings.js index 97feb951d6..c333f83585 100644 --- a/frappe/desk/doctype/global_search_settings/global_search_settings.js +++ b/frappe/desk/doctype/global_search_settings/global_search_settings.js @@ -3,6 +3,16 @@ frappe.ui.form.on('Global Search Settings', { refresh: function(frm) { + + frappe.realtime.on('global_search_settings', (data) => { + if (data.progress) { + frm.dashboard.show_progress('Setting up Global Search', data.progress / data.total * 100, data.msg); + if (data.progress === data.total) { + frm.dashboard.hide_progress('Setting up Global Search'); + } + } + }); + frm.add_custom_button(__("Reset"), function () { frappe.call({ method: "frappe.desk.doctype.global_search_settings.global_search_settings.reset_global_search_settings_doctypes", diff --git a/frappe/desk/doctype/global_search_settings/global_search_settings.py b/frappe/desk/doctype/global_search_settings/global_search_settings.py index bc10c5da25..0729fca5cb 100644 --- a/frappe/desk/doctype/global_search_settings/global_search_settings.py +++ b/frappe/desk/doctype/global_search_settings/global_search_settings.py @@ -41,7 +41,22 @@ def reset_global_search_settings_doctypes(): update_global_search_doctypes() def update_global_search_doctypes(): - global_search_doctypes = frappe.get_hooks("global_search_doctypes") + global_search_doctypes = [] + show_message(1, _("Fetching default Global Search documents.")) + + installed_apps = [app for app in frappe.get_installed_apps() if app] + active_domains = [domain for domain in frappe.get_active_domains() if domain] + active_domains.append("Default") + + for app in installed_apps: + search_doctypes = frappe.get_hooks(hook="global_search_doctypes", app_name=app) + if not search_doctypes: + continue + + for domain in active_domains: + if search_doctypes.get(domain): + global_search_doctypes.extend(search_doctypes.get(domain)) + doctype_list = set([dt.name for dt in frappe.get_list("DocType")]) allowed_in_global_search = [] @@ -52,6 +67,7 @@ def update_global_search_doctypes(): allowed_in_global_search.append(dt.get("doctype")) + show_message(2, _("Setting up Global Search documents.")) global_search_settings = frappe.get_single("Global Search Settings") global_search_settings.allowed_in_global_search = [] for dt in allowed_in_global_search: @@ -61,4 +77,8 @@ def update_global_search_doctypes(): global_search_settings.append("allowed_in_global_search", { "document_type": dt }) - global_search_settings.save(ignore_permissions=True) \ No newline at end of file + global_search_settings.save(ignore_permissions=True) + show_message(3, "Global Search Documents have been reset.") + +def show_message(progress, msg): + frappe.publish_realtime('global_search_settings', {"progress":progress, "total":3, "msg": msg}, user=frappe.session.user) diff --git a/frappe/hooks.py b/frappe/hooks.py index 24a27d2a2a..fd7c940fa4 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -303,19 +303,21 @@ user_privacy_documents = [ ] -global_search_doctypes = [ - {"doctype": "Contact"}, - {"doctype": "Address"}, - {"doctype": "ToDo"}, - {"doctype": "Note"}, - {"doctype": "Event"}, - {"doctype": "Blog Post"}, - {"doctype": "Dashboard"}, - {"doctype": "Country"}, - {"doctype": "Currency"}, - {"doctype": "Newsletter"}, - {"doctype": "Letter Head"}, - {"doctype": "Workflow"}, - {"doctype": "Web Page"}, - {"doctype": "Web Form"} -] +global_search_doctypes = { + "Default": [ + {"doctype": "Contact"}, + {"doctype": "Address"}, + {"doctype": "ToDo"}, + {"doctype": "Note"}, + {"doctype": "Event"}, + {"doctype": "Blog Post"}, + {"doctype": "Dashboard"}, + {"doctype": "Country"}, + {"doctype": "Currency"}, + {"doctype": "Newsletter"}, + {"doctype": "Letter Head"}, + {"doctype": "Workflow"}, + {"doctype": "Web Page"}, + {"doctype": "Web Form"} + ] +} From 6a56349173540fd0d7a653d6b75b57b86f396846 Mon Sep 17 00:00:00 2001 From: Rucha Mahabal Date: Wed, 2 Oct 2019 17:59:38 +0530 Subject: [PATCH 219/274] fix: webhook label changes --- frappe/integrations/doctype/webhook/webhook.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/integrations/doctype/webhook/webhook.js b/frappe/integrations/doctype/webhook/webhook.js index 74ffb1a7eb..d0f2d99250 100644 --- a/frappe/integrations/doctype/webhook/webhook.js +++ b/frappe/integrations/doctype/webhook/webhook.js @@ -12,7 +12,7 @@ frappe.webhook = { } else if (d.fieldtype === 'Currency' || d.fieldtype === 'Float') { return { label: d.label, value: d.fieldname }; } else { - return { label: d.label + ' (' + d.fieldtype + ')', value: d.fieldname }; + return { label: `${__(d.label)} (${d.fieldtype})`, value: d.fieldname }; } }); @@ -21,7 +21,7 @@ frappe.webhook = { if (field.fieldname == "name") { fields.unshift({ label: "Name (Doc Name)", value: "name" }); } else { - fields.push({ label: field.label + ' (' + field.fieldtype + ')', value: field.fieldname }); + fields.push({ label: `${__(field.label)} (${field.fieldtype})`, value: field.fieldname }); } } From 2ec267f63b6237b29825882d9da8ee5ad38982c9 Mon Sep 17 00:00:00 2001 From: Aditya Hase Date: Wed, 2 Oct 2019 18:34:46 +0530 Subject: [PATCH 220/274] fix(list-view): Remove ugly scroll from list view --- frappe/public/less/filters.less | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/public/less/filters.less b/frappe/public/less/filters.less index 95580857e7..ce40943af9 100644 --- a/frappe/public/less/filters.less +++ b/frappe/public/less/filters.less @@ -2,7 +2,6 @@ .active-tag-filters { display: flex; - overflow: scroll; .filter-button, .filter-tag { margin: 0 10px 10px 0; } From 09b8750d470eb391b4e3f2664ab6fafb9aeb7eca Mon Sep 17 00:00:00 2001 From: Himanshu Date: Wed, 2 Oct 2019 23:53:13 +0530 Subject: [PATCH 221/274] Update frappe/automation/doctype/assignment_rule/assignment_rule.py Co-Authored-By: Shivam Mishra --- frappe/automation/doctype/assignment_rule/assignment_rule.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/automation/doctype/assignment_rule/assignment_rule.py b/frappe/automation/doctype/assignment_rule/assignment_rule.py index f6b986c9be..b431c7c473 100644 --- a/frappe/automation/doctype/assignment_rule/assignment_rule.py +++ b/frappe/automation/doctype/assignment_rule/assignment_rule.py @@ -127,7 +127,7 @@ class AssignmentRule(Document): return False def get_assignment_days(self): - return [d.day for d in self.assignment_days] + return [d.day for d in self.get('assignment_days', [])] def is_rule_not_applicable_today(self): today = frappe.flags.assignment_day or frappe.utils.get_weekday() @@ -245,4 +245,4 @@ def get_repeated(values): else: if value not in diff: diff.append(str(value)) - return " ".join(diff) \ No newline at end of file + return " ".join(diff) From 9dfce7bbbf3d80e19bdc5f9842db5db03188fa03 Mon Sep 17 00:00:00 2001 From: Himanshu Date: Thu, 3 Oct 2019 11:20:36 +0530 Subject: [PATCH 222/274] fix: run specific code only if auto linking is onn (#8542) * fix: run specific code only if auto linking is onn * fix: rerun comm patch again * chore: remove extra comma from dict * fix: change email_account name --- .../doctype/communication/communication.py | 13 +++++-- .../communication/test_communication.py | 34 ++++++++++++++++++- frappe/patches.txt | 4 +-- 3 files changed, 46 insertions(+), 5 deletions(-) diff --git a/frappe/core/doctype/communication/communication.py b/frappe/core/doctype/communication/communication.py index 9e2587bc82..2be07cadd2 100644 --- a/frappe/core/doctype/communication/communication.py +++ b/frappe/core/doctype/communication/communication.py @@ -381,6 +381,9 @@ def parse_email(communication, email_strings): a doctype and docname ie in the format `admin+doctype+docname@example.com`, the email is parsed and doctype and docname is extracted and timeline link is added. """ + if not frappe.get_list("Email Account", filters={"enable_automatic_linking": 1}): + return + delimiter = "+" for email_string in email_strings: @@ -388,9 +391,12 @@ def parse_email(communication, email_strings): for email in email_string.split(","): if delimiter in email: email = email.split("@")[0] + email_local_parts = email.split(delimiter) + if not len(email_local_parts) == 3: + continue - doctype = unquote(email.split(delimiter)[1]) - docname = unquote(email.split(delimiter)[2]) + doctype = unquote(email_local_parts[1]) + docname = unquote(email_local_parts[2]) if doctype and docname and frappe.db.exists(doctype, docname): communication.add_link(doctype, docname) @@ -400,6 +406,9 @@ def get_email_without_link(email): returns email address without doctype links returns admin@example.com for email admin+doctype+docname@example.com """ + if not frappe.get_list("Email Account", filters={"enable_automatic_linking": 1}): + return email + email_id = email.split("@")[0].split("+")[0] email_host = email.split("@")[1] diff --git a/frappe/core/doctype/communication/test_communication.py b/frappe/core/doctype/communication/test_communication.py index 115b711a94..fb859586bb 100644 --- a/frappe/core/doctype/communication/test_communication.py +++ b/frappe/core/doctype/communication/test_communication.py @@ -179,6 +179,8 @@ class TestCommunication(unittest.TestCase): def test_link_in_email(self): frappe.delete_doc_if_exists("Note", "test document link in email") + create_email_account() + note = frappe.get_doc({ "doctype": "Note", "title": "test document link in email", @@ -197,4 +199,34 @@ class TestCommunication(unittest.TestCase): for timeline_link in comm.timeline_links: doc_links.append((timeline_link.link_doctype, timeline_link.link_name)) - self.assertIn(("Note", note.name), doc_links) \ No newline at end of file + self.assertIn(("Note", note.name), doc_links) + +def create_email_account(): + frappe.flags.mute_emails = False + frappe.flags.sent_mail = None + + email_account = frappe.get_doc({ + "is_default": 1, + "is_global": 1, + "doctype": "Email Account", + "domain":"example.com", + "append_to": "ToDo", + "email_account_name": "_Test Comm Account 1", + "enable_outgoing": 1, + "smtp_server": "test.example.com", + "email_id": "test_comm@example.com", + "password": "password", + "add_signature": 1, + "signature": "\nBest Wishes\nTest Signature", + "enable_auto_reply": 1, + "auto_reply_message": "", + "enable_incoming": 1, + "notify_if_unreplied": 1, + "unreplied_for_mins": 20, + "send_notification_to": "test_comm@example.com", + "pop3_server": "pop.test.example.com", + "no_remaining":"0", + "enable_automatic_linking": 1 + }).insert(ignore_permissions=True) + + return email_account \ No newline at end of file diff --git a/frappe/patches.txt b/frappe/patches.txt index d86a8109c1..36aa390d65 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -16,8 +16,8 @@ frappe.patches.v8_0.drop_is_custom_from_docperm execute:frappe.reload_doc('core', 'doctype', 'module_def') #2017-09-22 execute:frappe.reload_doc('core', 'doctype', 'version') #2017-04-01 execute:frappe.reload_doc('email', 'doctype', 'document_follow') -execute:frappe.reload_doc('core', 'doctype', 'communication_link') -execute:frappe.reload_doc('core', 'doctype', 'communication') +execute:frappe.reload_doc('core', 'doctype', 'communication_link') #2019-10-02 +execute:frappe.reload_doc('core', 'doctype', 'communication') #2019-10-02 frappe.patches.v11_0.replicate_old_user_permissions frappe.patches.v11_0.reload_and_rename_view_log #2019-01-03 frappe.patches.v7_1.rename_scheduler_log_to_error_log From 198e999baf4d24c26877e8fc33da5dbb9f5ce301 Mon Sep 17 00:00:00 2001 From: Deepesh Garg <42651287+deepeshgarg007@users.noreply.github.com> Date: Thu, 3 Oct 2019 11:22:32 +0530 Subject: [PATCH 223/274] fix: Show maximum 5 values for a field in filter description (#8539) --- frappe/public/js/frappe/form/controls/link.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index f206cd12d8..0615cea314 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -278,7 +278,7 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ }, merge_duplicates(results) { - // in case of result like this + // in case of result like this // [{value: 'Manufacturer 1', 'description': 'mobile part 1'}, // {value: 'Manufacturer 1', 'description': 'mobile part 2'}] // suggestion list has two items with same value (docname) & description @@ -330,6 +330,11 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ let docfield = frappe.meta.get_docfield(doctype, fieldname); let label = docfield ? docfield.label : frappe.model.unscrub(fieldname); + if (filter[3] && Array.isArray(filter[3]) && filter[3].length > 5) { + filter[3] = filter[3].slice(0, 5); + filter[3].push('...'); + } + let value = filter[3] == null || filter[3] === '' ? __('empty') : String(filter[3]); From 14222cb0781c3cb5ee4a09edd3f73864fc43df2b Mon Sep 17 00:00:00 2001 From: Bob Schulze Date: Thu, 3 Oct 2019 08:17:34 +0200 Subject: [PATCH 224/274] handle case that df is None for this branch too (#8529) --- frappe/model/base_document.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 1bde485ac4..27f0f56ebd 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -670,7 +670,7 @@ class BaseDocument(object): continue else: - sanitized_value = sanitize_html(value, linkify=df.fieldtype=='Text Editor') + sanitized_value = sanitize_html(value, linkify=df and df.fieldtype=='Text Editor') self.set(fieldname, sanitized_value) From f0b59df21ca8843d51de9d6bf212ca5045e0de2f Mon Sep 17 00:00:00 2001 From: ci2014 Date: Thu, 3 Oct 2019 08:25:38 +0200 Subject: [PATCH 225/274] Let developers choose the margins (#8513) * Let developers choose the margins Let the developers choose the margins * fix: remove trailing whitespace --- frappe/utils/pdf.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/frappe/utils/pdf.py b/frappe/utils/pdf.py index a9d4f235f3..d5a5415e2d 100644 --- a/frappe/utils/pdf.py +++ b/frappe/utils/pdf.py @@ -87,13 +87,15 @@ def prepare_options(html, options): 'quiet': None, # 'no-outline': None, 'encoding': "UTF-8", - #'load-error-handling': 'ignore', - - # defaults - 'margin-right': '15mm', - 'margin-left': '15mm' + #'load-error-handling': 'ignore' }) + if not options.get("margin-right"): + options['margin-right'] = '15mm' + + if not options.get("margin-left"): + options['margin-left'] = '15mm' + html, html_options = read_options_from_html(html) options.update(html_options or {}) From e8e8aca4f704085dcc85c36e58b61502461cfa8e Mon Sep 17 00:00:00 2001 From: Sahil Khan Date: Thu, 3 Oct 2019 13:15:40 +0530 Subject: [PATCH 226/274] fix(patch): reload Call Log --- frappe/patches/v11_0/create_contact_for_user.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/patches/v11_0/create_contact_for_user.py b/frappe/patches/v11_0/create_contact_for_user.py index 0e605a6a6b..8a9238572e 100644 --- a/frappe/patches/v11_0/create_contact_for_user.py +++ b/frappe/patches/v11_0/create_contact_for_user.py @@ -8,6 +8,7 @@ def execute(): frappe.reload_doc('integrations', 'doctype', 'google_contacts') frappe.reload_doc('contacts', 'doctype', 'contact') frappe.reload_doc('core', 'doctype', 'dynamic_link') + frappe.reload_doc('communication', 'doctype', 'call_log') contact_meta = frappe.get_meta("Contact") if contact_meta.has_field("phone_nos") and contact_meta.has_field("email_ids"): From 68b30ebbcd3c1307d73172bfa096e9b6d9980d39 Mon Sep 17 00:00:00 2001 From: Nickesh Date: Thu, 3 Oct 2019 15:49:44 +0530 Subject: [PATCH 227/274] [Patch Fix] Move email and phone to child table --- frappe/patches/v12_0/move_email_and_phone_to_child_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/patches/v12_0/move_email_and_phone_to_child_table.py b/frappe/patches/v12_0/move_email_and_phone_to_child_table.py index 3d9086dc52..b18a7487f3 100644 --- a/frappe/patches/v12_0/move_email_and_phone_to_child_table.py +++ b/frappe/patches/v12_0/move_email_and_phone_to_child_table.py @@ -52,7 +52,7 @@ def execute(): phone_values.append(( phone_counter, frappe.generate_hash(contact_detail.email_id, 10), - contact_detail.phone, + contact_detail.mobile_no, 'phone_nos', 'Contact', contact_detail.name, From 02cebdd7d34bf3be21108df183b75c13c8ba60f9 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 3 Oct 2019 16:43:36 +0530 Subject: [PATCH 228/274] fix: use frappe.tags --- frappe/database/database.py | 20 +++++ frappe/desk/doctype/tag/tag.py | 86 +++++++++++++++++-- frappe/desk/doctype/tag_link/tag_link.json | 45 +++++----- frappe/desk/form/load.py | 6 +- frappe/desk/reportview.py | 4 +- frappe/model/delete_doc.py | 4 +- frappe/patches.txt | 2 +- frappe/patches/v12_0/setup_global_tags.py | 24 +----- frappe/public/js/frappe/desk.js | 2 +- frappe/public/js/frappe/ui/filters/filter.js | 1 - frappe/public/js/frappe/ui/tag_editor.js | 4 +- .../js/frappe/ui/toolbar/awesome_bar.js | 4 +- .../js/frappe/ui/toolbar/global_tags.js | 18 ++-- frappe/public/js/frappe/ui/toolbar/search.js | 6 +- frappe/utils/global_tags.py | 80 ----------------- 15 files changed, 153 insertions(+), 153 deletions(-) delete mode 100644 frappe/utils/global_tags.py diff --git a/frappe/database/database.py b/frappe/database/database.py index a1b8d390a9..2ff8094035 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -961,6 +961,26 @@ class Database(object): frappe.flags.touched_tables = set() frappe.flags.touched_tables.update(tables) + def bulk_insert(self, doctype, fields, values): + """ + Insert multiple records at a time + + :param doctype: Doctype name + :param fields: list of fields + :params values: list of list of values + """ + insert_list = [] + fields = ", ".join(["`"+field+"`" for field in fields]) + + for idx, value in enumerate(values): + insert_list.append(tuple(value)) + if idx and (idx%10000 == 0 or idx < len(values)-1): + self.sql("""INSERT INTO `tab{doctype}` ({fields}) VALUES {values}""".format( + doctype=doctype, + fields=fields, + values=", ".join(['%s'] * len(insert_list)) + ), tuple(insert_list)) + insert_list = [] def enqueue_jobs_after_commit(): if frappe.flags.enqueue_after_commit and len(frappe.flags.enqueue_after_commit) > 0: diff --git a/frappe/desk/doctype/tag/tag.py b/frappe/desk/doctype/tag/tag.py index f03bf153f3..e48b6d4f9b 100644 --- a/frappe/desk/doctype/tag/tag.py +++ b/frappe/desk/doctype/tag/tag.py @@ -6,17 +6,10 @@ from __future__ import unicode_literals import frappe import json from frappe.model.document import Document -from frappe.utils.global_tags import update_global_tags from frappe import _ class Tag(Document): - - def on_trash(self): - if check_if_tag_is_linked(self.name): - frappe.throw(_("Cannot delete Tag {0} since it is linked to Documents.").format(frappe.bold(self.name))) - -def check_if_tag_is_linked(tag): - return frappe.db.count("Tag Link", {"tag": frappe.db.escape('%{0}%'.format(tag), False)}) + pass def check_user_tags(dt): "if the user does not have a tags column, then it creates one" @@ -72,7 +65,7 @@ class DocTags: if not tag in tl: tl.append(tag) if not frappe.db.exists("Tag", tag): - frappe.get_doc({"doctype": "Tag", "name": tag, "count": 1}).insert(ignore_permissions=True) + frappe.get_doc({"doctype": "Tag", "name": tag}).insert(ignore_permissions=True) self.update(dn, tl) def remove(self, dn, tag): @@ -111,3 +104,78 @@ class DocTags: """adds the _user_tags column if not exists""" from frappe.database.schema import add_column add_column(self.dt, "_user_tags", "Data") + +def delete_tags_for_document(doc): + """ + Delete the __global_tags entry of a document that has + been deleted + :param doc: Deleted document + """ + if not frappe.db.table_exists("Tag Link"): + return + + frappe.db.sql("""DELETE FROM `tabTag Link` WHERE `document_type`=%s AND `document_name`=%s""", (doc.doctype, doc.name)) + +def update_global_tags(doc, tags): + """ + Adds tags for documents + :param doc: Document to be added to global tags + """ + + new_tags = list(set([tag.strip() for tag in tags.split(",") if tag])) + + for tag in new_tags: + if not frappe.db.exists("Tag Link", {"parenttype": doc.doctype, "parent": doc.name, "tag": tag}): + frappe.get_doc({ + "doctype": "Tag Link", + "document_type": doc.doctype, + "document_name": doc.name, + "parenttype": doc.doctype, + "parent": doc.name, + "title": doc.get_title() or '', + "tag": tag + }).insert(ignore_permissions=True) + + existing_tags = [tag.tag for tag in frappe.get_list("Tag Link", filters={ + "document_type": doc.doctype, + "document_name": doc.name + }, fields=["tag"])] + + deleted_tags = get_deleted_tags(new_tags, existing_tags) + + if deleted_tags: + for tag in deleted_tags: + delete_tag_for_document(doc.doctype, doc.name, tag) + +def get_deleted_tags(new_tags, existing_tags): + + return list(set(existing_tags) - set(new_tags)) + +def delete_tag_for_document(dt, dn, tag): + frappe.db.sql("""DELETE FROM `tabTag Link` WHERE `document_type`=%s, `document_name`=%s, tag=%s""", (dt, dn, tag)) + +@frappe.whitelist() +def get_documents_for_tag(tag): + """ + Search for given text in Tag Link + :param tag: tag to be searched + """ + # remove hastag `#` from tag + tag = tag[1:] + results = [] + + result = frappe.get_list("Tag Link", filters={"tag": tag}, fields=["document_type", "document_name", "title", "tag"]) + + for res in result: + results.append({ + "doctype": res.document_type, + "name": res.document_name, + "content": res.title + }) + + print(results) + return results + +@frappe.whitelist() +def get_tags_list_for_awesomebar(): + return [t.name for t in frappe.get_list("Tag")] \ No newline at end of file diff --git a/frappe/desk/doctype/tag_link/tag_link.json b/frappe/desk/doctype/tag_link/tag_link.json index ce389415e5..00a7349c5c 100644 --- a/frappe/desk/doctype/tag_link/tag_link.json +++ b/frappe/desk/doctype/tag_link/tag_link.json @@ -4,30 +4,12 @@ "editable_grid": 1, "engine": "InnoDB", "field_order": [ - "dt", - "dn", + "document_type", + "document_name", "tag", "title" ], "fields": [ - { - "fieldname": "dt", - "fieldtype": "Link", - "in_list_view": 1, - "in_standard_filter": 1, - "label": "Document Type", - "options": "DocType", - "read_only": 1 - }, - { - "fieldname": "dn", - "fieldtype": "Dynamic Link", - "in_list_view": 1, - "in_standard_filter": 1, - "label": "Document Name", - "options": "dt", - "read_only": 1 - }, { "fieldname": "title", "fieldtype": "Data", @@ -36,14 +18,33 @@ }, { "fieldname": "tag", - "fieldtype": "Data", + "fieldtype": "Link", "in_list_view": 1, "in_standard_filter": 1, "label": "Document Tag", + "options": "Tag", + "read_only": 1 + }, + { + "fieldname": "document_type", + "fieldtype": "Link", + "in_list_view": 1, + "in_standard_filter": 1, + "label": "Document Type", + "options": "DocType", + "read_only": 1 + }, + { + "fieldname": "document_name", + "fieldtype": "Dynamic Link", + "in_list_view": 1, + "in_standard_filter": 1, + "label": "Document Name", + "options": "document_type", "read_only": 1 } ], - "modified": "2019-09-25 22:10:47.671304", + "modified": "2019-10-03 16:42:35.932409", "modified_by": "Administrator", "module": "Desk", "name": "Tag Link", diff --git a/frappe/desk/form/load.py b/frappe/desk/form/load.py index fc1f7e1f4f..4044a3dcfc 100644 --- a/frappe/desk/form/load.py +++ b/frappe/desk/form/load.py @@ -258,5 +258,9 @@ def get_view_logs(doctype, docname): return logs def get_tags(doctype, name): - tags = [tag.tag for tag in frappe.get_all("Tag Link", filters={"dt": doctype, "dn": name}, fields=["tag"])] + tags = [tag.tag for tag in frappe.get_all("Tag Link", filters={ + "document_type": doctype, + "document_name": name + }, fields=["tag"])] + return ",".join([tag for tag in tags]) \ No newline at end of file diff --git a/frappe/desk/reportview.py b/frappe/desk/reportview.py index 3273bd65d7..d5b43807a8 100644 --- a/frappe/desk/reportview.py +++ b/frappe/desk/reportview.py @@ -266,12 +266,12 @@ def get_sidebar_stats(stats, doctype, filters=[]): tags = [tag.name for tag in frappe.get_list("Tag")] _user_tags = [] for tag in tags: - count = frappe.db.count("Tag Link", filters={"dt": doctype, "tag": tag}) + count = frappe.db.count("Tag Link", filters={"document_type": doctype, "tag": tag}) if count > 0: _user_tags.append([tag, count]) frappe.cache().hset("tags_count", doctype, _user_tags) - return {"defined_cat": [], "stats": {"_user_tags": frappe.cache().hget("tags_count", doctype)}} + return {"stats": {"_user_tags": frappe.cache().hget("tags_count", doctype)}} @frappe.whitelist() @frappe.read_only() diff --git a/frappe/model/delete_doc.py b/frappe/model/delete_doc.py index 193dcd417e..ba1372f278 100644 --- a/frappe/model/delete_doc.py +++ b/frappe/model/delete_doc.py @@ -16,11 +16,11 @@ from frappe.core.doctype.file.file import remove_all from frappe.utils.password import delete_all_passwords_for from frappe.model.naming import revert_series_if_last from frappe.utils.global_search import delete_for_document -from frappe.utils.global_tags import delete_tags_for_document +from frappe.desk.doctype.tag.tag import delete_tags_for_document from frappe.exceptions import FileNotFoundError -doctypes_to_skip = ("Communication", "ToDo", "DocShare", "Email Unsubscribe", "Activity Log", "File", "Version", "Document Follow", "Comment" , "View Log") +doctypes_to_skip = ("Communication", "ToDo", "DocShare", "Email Unsubscribe", "Activity Log", "File", "Version", "Document Follow", "Comment" , "View Log", "Tag Link") def delete_doc(doctype=None, name=None, force=0, ignore_doctypes=None, for_reload=False, ignore_permissions=False, flags=None, ignore_on_trash=False, ignore_missing=True): diff --git a/frappe/patches.txt b/frappe/patches.txt index 953b7f2c52..5de9831c79 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -252,4 +252,4 @@ frappe.patches.v12_0.move_email_and_phone_to_child_table frappe.patches.v12_0.delete_duplicate_indexes frappe.patches.v12_0.set_default_incoming_email_port frappe.patches.v12_0.update_global_search -frappe.patches.v12_0.global_tags +frappe.patches.v12_0.setup_global_tags diff --git a/frappe/patches/v12_0/setup_global_tags.py b/frappe/patches/v12_0/setup_global_tags.py index b3bd15745c..4f501c5e92 100644 --- a/frappe/patches/v12_0/setup_global_tags.py +++ b/frappe/patches/v12_0/setup_global_tags.py @@ -5,6 +5,7 @@ def execute(): frappe.delete_doc_if_exists("DocType", "Tag Doc Category") frappe.reload_doc("desk", "doctype", "tag") + frappe.reload_doc("desk", "doctype", "tag_link") tag_list = [] tag_links = [] @@ -20,27 +21,10 @@ def execute(): if not tag: continue - tag_list.append(tag.strip()) + tag_list.append((tag.strip(), time, time, 'Administrator')) tag_link_name = frappe.generate_hash(dt_tags.name + tag.strip(), 10), tag_links.append((tag_link_name, doctype.name, dt_tags.name, tag.strip(), time, time, 'Administrator')) - - temp_list = [] - for count, value in enumerate(set(tag_list)): - temp_list.append((value, time, time, 'Administrator')) - - if count and (count%1000 == 0 or count == len(tag_list)-1): - frappe.db.sql(""" - INSERT INTO `tabTag` (`name`, `creation`, `modified`, `modified_by`) VALUES {} - """.format(", ".join(['%s'] * len(temp_list))), tuple(temp_list)) - temp_list = [] - - for count, value in enumerate(set(tag_links)): - temp_list.append(value) - - if count and (count%1000 == 0 or count == len(tag_links)-1): - frappe.db.sql(""" - INSERT INTO `tabTag Link` (`name`, `dt`, `dn`, `tag`, `creation`, `modified`, `modified_by`) VALUES {} - """.format(", ".join(['%s'] * len(temp_list))), tuple(temp_list)) - temp_list = [] \ No newline at end of file + frappe.db.bulk_insert("Tag", fields=["name", "creation", "modified", "modified_by"], values=tag_list) + frappe.db.bulk_insert("Tag Link", fields=["name", "document_type", "document_name", "tag", "creation", "modified", "modified_by"], values=tag_links) \ No newline at end of file diff --git a/frappe/public/js/frappe/desk.js b/frappe/public/js/frappe/desk.js index fee6f4280a..13fd58a0ea 100644 --- a/frappe/public/js/frappe/desk.js +++ b/frappe/public/js/frappe/desk.js @@ -603,7 +603,7 @@ frappe.Application = Class.extend({ }, set_global_tags() { - frappe.global_tags.utils.set_tags(); + frappe.tags.utils.set_tags(); } }); diff --git a/frappe/public/js/frappe/ui/filters/filter.js b/frappe/public/js/frappe/ui/filters/filter.js index 128ea4e872..c953b221c4 100644 --- a/frappe/public/js/frappe/ui/filters/filter.js +++ b/frappe/public/js/frappe/ui/filters/filter.js @@ -61,7 +61,6 @@ frappe.ui.Filter = class { doctype: this.parent_doctype, filter_fields: this.filter_fields, select: (doctype, fieldname) => { - console.log(doctype, fieldname); this.set_field(doctype, fieldname); } }); diff --git a/frappe/public/js/frappe/ui/tag_editor.js b/frappe/public/js/frappe/ui/tag_editor.js index 00102cf808..5811714bb5 100644 --- a/frappe/public/js/frappe/ui/tag_editor.js +++ b/frappe/public/js/frappe/ui/tag_editor.js @@ -42,7 +42,7 @@ frappe.ui.TagEditor = Class.extend({ user_tags.push(tag) me.user_tags = user_tags.join(","); me.on_change && me.on_change(me.user_tags); - frappe.global_tags.utils.set_tags(); + frappe.tags.utils.set_tags(); } }); } @@ -57,7 +57,7 @@ frappe.ui.TagEditor = Class.extend({ user_tags.splice(user_tags.indexOf(tag), 1); me.user_tags = user_tags.join(","); me.on_change && me.on_change(me.user_tags); - frappe.global_tags.utils.set_tags(); + frappe.tags.utils.set_tags(); } }); } diff --git a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js index bb5f7edbe5..bfcc5a2d77 100644 --- a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +++ b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js @@ -1,7 +1,7 @@ // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors // MIT License. See license.txt frappe.provide('frappe.search'); -frappe.provide('frappe.global_tags'); +frappe.provide('frappe.tags'); frappe.search.AwesomeBar = Class.extend({ setup: function(element) { @@ -181,7 +181,7 @@ frappe.search.AwesomeBar = Class.extend({ frappe.search.utils.get_executables(txt) ); if (txt.charAt(0) === "#") { - options = frappe.global_tags.utils.get_tags(txt); + options = frappe.tags.utils.get_tags(txt); } var out = this.deduplicate(options); return out.sort(function(a, b) { diff --git a/frappe/public/js/frappe/ui/toolbar/global_tags.js b/frappe/public/js/frappe/ui/toolbar/global_tags.js index 1c9f9a88f8..6bbeb10c81 100644 --- a/frappe/public/js/frappe/ui/toolbar/global_tags.js +++ b/frappe/public/js/frappe/ui/toolbar/global_tags.js @@ -1,15 +1,15 @@ // Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors // MIT License. See license.txt -frappe.provide("frappe.global_tags"); +frappe.provide("frappe.tags"); -frappe.global_tags.utils = { +frappe.tags.utils = { get_tags: function(txt) { txt = txt.slice(1); let out = []; - for (let i in frappe.global_tags.tags) { - let tag = frappe.global_tags.tags[i]; + for (let i in frappe.tags.tags) { + let tag = frappe.tags.tags[i]; let level = frappe.search.utils.fuzzy_search(txt, tag); if (level) { out.push({ @@ -31,10 +31,10 @@ frappe.global_tags.utils = { set_tags() { frappe.call({ - method: "frappe.utils.global_tags.get_tags_list_for_awesomebar", + method: "frappe.desk.doctype.tag.tag.get_tags_list_for_awesomebar", callback: function(r) { if (r && r.message) { - frappe.global_tags.tags = $.extend([], r.message); + frappe.tags.tags = $.extend([], r.message); } } }); @@ -51,6 +51,9 @@ frappe.global_tags.utils = { } function make_description(content) { + if (!content) { + return; + } var field_length = 110; var field_value = null; if (content.length > field_length) { @@ -88,12 +91,13 @@ frappe.global_tags.utils = { } return new Promise(function(resolve) { frappe.call({ - method: "frappe.utils.global_tags.get_documents_for_tag", + method: "frappe.desk.doctype.tag.tag.get_documents_for_tag", args: { tag: tag }, callback: function(r) { if (r.message) { + console.log(r.message); resolve(get_results_sets(r.message)); } else { resolve([]); diff --git a/frappe/public/js/frappe/ui/toolbar/search.js b/frappe/public/js/frappe/ui/toolbar/search.js index efd3be2868..7e7cca0768 100644 --- a/frappe/public/js/frappe/ui/toolbar/search.js +++ b/frappe/public/js/frappe/ui/toolbar/search.js @@ -386,7 +386,7 @@ frappe.search.SearchDialog = Class.extend({ global_search: { input_placeholder: __("Search"), empty_state_text: __("Search for anything"), - no_results_status: (keyword) => __("

                                                                                                                          No results found for '" + keyword + "' in Global Search

                                                                                                                          "), + no_results_status: (keyword) => "

                                                                                                                          " + __("No results found for {0} in Global Search", [keyword]) + "

                                                                                                                          ", get_results: function(keywords, callback) { var start = 0, limit = 1000; @@ -403,11 +403,11 @@ frappe.search.SearchDialog = Class.extend({ global_tag: { input_placeholder: __("Search"), empty_state_text: __("Search for anything"), - no_results_status: (keyword) => __("

                                                                                                                          No results found for '" + keyword + "' in Global Tags

                                                                                                                          "), + no_results_status: (keyword) => "

                                                                                                                          " + __("No results found for {0} in Global Tags", [keyword]) + "

                                                                                                                          ", get_results: function(keywords, callback) { var results = frappe.search.utils.get_nav_results(keywords); - frappe.global_tags.utils.get_tag_results(keywords) + frappe.tags.utils.get_tag_results(keywords) .then(function(global_results) { results = results.concat(global_results); callback(results, keywords); diff --git a/frappe/utils/global_tags.py b/frappe/utils/global_tags.py deleted file mode 100644 index 93cf82a140..0000000000 --- a/frappe/utils/global_tags.py +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors -# License: GNU General Public License v3. See license.txt - -from __future__ import unicode_literals -import frappe - -def delete_tags_for_document(doc): - """ - Delete the __global_tags entry of a document that has - been deleted - :param doc: Deleted document - """ - if not frappe.db.table_exists("Tag Link"): - return - - frappe.db.sql("""DELETE FROM `tabTag Link` WHERE `dt`=%s AND `dn`=%s""", (doc.doctype, doc.name)) - -def update_global_tags(doc, tags): - """ - Adds tags for documents - :param doc: Document to be added to global tags - """ - - new_tags = list(set([tag.strip() for tag in tags.split(",") if tag])) - - for tag in new_tags: - if not frappe.db.exists("Tag Link", {"parenttype": doc.doctype, "parent": doc.name, "tag": tag}): - frappe.get_doc({ - "doctype": "Tag Link", - "dt": doc.doctype, - "dn": doc.name, - "parenttype": doc.doctype, - "parent": doc.name, - "title": doc.get_title() or '', - "tag": tag - }).insert(ignore_permissions=True) - - existing_tags = [tag.tag for tag in frappe.get_list("Tag Link", filters={"dt": doc.doctype, "dn": doc.name}, fields=["tag"])] - - deleted_tags = get_deleted_tags(new_tags, existing_tags) - - if deleted_tags: - for tag in deleted_tags: - delete_tag_for_document(doc.doctype, doc.name, tag) - -def get_deleted_tags(new_tags, existing_tags): - - return list(set(existing_tags) - set(new_tags)) - -def delete_tag_for_document(dt, dn, tag): - frappe.db.sql("""DELETE FROM `tabTag Link` WHERE dt=%s, dn=%s, tag=%s""", (dt, dn, tag)) - -@frappe.whitelist() -def get_documents_for_tag(tag): - """ - Search for given text in __global_tags - :param tag: tag to be searched - """ - # remove hastag `#` from tag - tag = tag[1:] - results = [] - - result = frappe.db.sql(""" - SELECT `dt`, `dn`, `title`, `tag` - FROM `tabTag Link` - WHERE `tag`=%s - """, (tag), as_dict=True) - - for res in result: - results.append({ - "doctype": res.dt, - "name": res.dn, - "content": res.title - }) - - return results - -@frappe.whitelist() -def get_tags_list_for_awesomebar(): - return [t.name for t in frappe.get_list("Tag")] \ No newline at end of file From 18516788f749922fd3664b800703b45db5fe9141 Mon Sep 17 00:00:00 2001 From: Himanshu Date: Thu, 3 Oct 2019 16:45:39 +0530 Subject: [PATCH 229/274] Update frappe/model/delete_doc.py Co-Authored-By: Faris Ansari --- frappe/model/delete_doc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/model/delete_doc.py b/frappe/model/delete_doc.py index ba1372f278..2765c7acb4 100644 --- a/frappe/model/delete_doc.py +++ b/frappe/model/delete_doc.py @@ -117,7 +117,7 @@ def delete_doc(doctype=None, name=None, force=0, ignore_doctypes=None, for_reloa # delete global search entry delete_for_document(doc) - # delete tags from __global_tags + # delete tags from Tag Link delete_tags_for_document(doc) if doc and not for_reload: From b891b0c67f7feeb79cb88485d9e9012421d39ab8 Mon Sep 17 00:00:00 2001 From: marination Date: Thu, 3 Oct 2019 18:17:42 +0530 Subject: [PATCH 230/274] fix: Link field validation for set_value Updates fields dependent on Link field via Fetch From when Link Field is set through set_value. --- frappe/public/js/frappe/form/controls/link.js | 4 ++-- frappe/public/js/frappe/form/form.js | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index f206cd12d8..ae61c80991 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -43,7 +43,7 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ me.$link.toggle(false); }, 500); }); - this.$input.attr('data-target', this.df.options); + this.$input.attr('target', this.df.options); this.input = this.$input.get(0); this.has_input = true; this.translate_values = true; @@ -278,7 +278,7 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ }, merge_duplicates(results) { - // in case of result like this + // in case of result like this // [{value: 'Manufacturer 1', 'description': 'mobile part 1'}, // {value: 'Manufacturer 1', 'description': 'mobile part 2'}] // suggestion list has two items with same value (docname) & description diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index dfa00d099f..0d6c9ff0e3 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -190,8 +190,12 @@ frappe.ui.form.Form = class FrappeForm { } else { me.dirty(); } - me.fields_dict[fieldname] - && me.fields_dict[fieldname].refresh(fieldname); + + let field = me.fields_dict[fieldname]; + field && field.refresh(fieldname); + + // Validate value for link field explicitly + field && field.df.fieldtype === "Link" && field.validate && field.validate(value); me.layout.refresh_dependency(); let object = me.script_manager.trigger(fieldname, doc.doctype, doc.name); From 0d0581cb3fb7a8ee9d0df75f8e3de474d30caf7a Mon Sep 17 00:00:00 2001 From: Rucha Mahabal Date: Thu, 3 Oct 2019 19:04:53 +0530 Subject: [PATCH 231/274] fix: include table fields in webhook data --- frappe/integrations/doctype/webhook/webhook.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/integrations/doctype/webhook/webhook.js b/frappe/integrations/doctype/webhook/webhook.js index d0f2d99250..90b5b12dc6 100644 --- a/frappe/integrations/doctype/webhook/webhook.js +++ b/frappe/integrations/doctype/webhook/webhook.js @@ -7,7 +7,7 @@ frappe.webhook = { frappe.model.with_doctype(frm.doc.webhook_doctype, () => { // get doctype fields let fields = $.map(frappe.get_doc("DocType", frm.doc.webhook_doctype).fields, (d) => { - if (frappe.model.no_value_type.includes(d.fieldtype) || frappe.model.table_fields.includes(d.fieldtype)) { + if (frappe.model.no_value_type.includes(d.fieldtype) && !(frappe.model.table_fields.includes(d.fieldtype))) { return null; } else if (d.fieldtype === 'Currency' || d.fieldtype === 'Float') { return { label: d.label, value: d.fieldname }; From f784d5d0263c855430cbd09a70e3a8cbf044461e Mon Sep 17 00:00:00 2001 From: Mangesh-Khairnar Date: Fri, 4 Oct 2019 21:21:03 +0530 Subject: [PATCH 232/274] fix: return default user permission as the leading element --- frappe/core/doctype/user_permission/user_permission.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frappe/core/doctype/user_permission/user_permission.py b/frappe/core/doctype/user_permission/user_permission.py index 49e7fec278..7be915cbec 100644 --- a/frappe/core/doctype/user_permission/user_permission.py +++ b/frappe/core/doctype/user_permission/user_permission.py @@ -143,7 +143,11 @@ def get_applicable_for_doctype_list(doctype, txt, searchfield, start, page_len, return return_list def get_permitted_documents(doctype): - return [d.get('doc') for d in get_user_permissions().get(doctype, []) \ + ''' Returns permitted documents from the given doctype for the session user ''' + # sort permissions in a way to make the first permission in the list to be default + user_perm_list = sorted(get_user_permissions().get(doctype, []), key=lambda x: x.get('is_default'), reverse=True) + + return [d.get('doc') for d in user_perm_list \ if d.get('doc')] @frappe.whitelist() From 12dd61db3843b606b4820e2641d352d8ba5647da Mon Sep 17 00:00:00 2001 From: marination Date: Fri, 4 Oct 2019 22:03:43 +0530 Subject: [PATCH 233/274] fix: Minor change --- frappe/public/js/frappe/form/controls/link.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index ae61c80991..15717aca9a 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -43,7 +43,7 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ me.$link.toggle(false); }, 500); }); - this.$input.attr('target', this.df.options); + this.$input.attr('data-target', this.df.options); this.input = this.$input.get(0); this.has_input = true; this.translate_values = true; From d823417d2f38efe448dde28000b96027e9756e20 Mon Sep 17 00:00:00 2001 From: Raffael Meyer Date: Thu, 22 Aug 2019 02:40:11 +0200 Subject: [PATCH 234/274] feat(tests): add api/resources --- cypress/integration/api.js | 38 +++++++++++++++++++++ cypress/support/commands.js | 66 +++++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+) create mode 100644 cypress/integration/api.js diff --git a/cypress/integration/api.js b/cypress/integration/api.js new file mode 100644 index 0000000000..2db09aec1b --- /dev/null +++ b/cypress/integration/api.js @@ -0,0 +1,38 @@ +context('API Resources', () => { + before(() => { + cy.visit('/login'); + cy.login(); + cy.visit('/desk'); + }); + + it('Creates two Comments', () => { + cy.create_doc('Comment', {comment_type: 'Comment', content: "hello"}); + cy.create_doc('Comment', {comment_type: 'Comment', content: "world"}); + }); + + it('Lists the Comments', () => { + cy.get_list('Comment') + .its('data') + .then(data => expect(data.length).to.be.at.least(2)); + + cy.get_list('Comment', ['name', 'content'], [['content', '=', 'hello']]) + .then(body => { + expect(body).to.have.property('data'); + expect(body.data).to.have.lengthOf(1); + expect(body.data[0]).to.have.property('content'); + expect(body.data[0]).to.have.property('name'); + }); + }); + + it('Gets each Comment', () => { + cy.get_list('Comment').then(body => body.data.forEach(comment => { + cy.get_doc('Comment', comment.name); + })); + }); + + it('Removes the Comments', () => { + cy.get_list('Comment').then(body => body.data.forEach(comment => { + cy.remove_doc('Comment', comment.name); + })); + }); +}); diff --git a/cypress/support/commands.js b/cypress/support/commands.js index 84d896dbb0..464cbbe1d5 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -59,6 +59,72 @@ Cypress.Commands.add('call', (method, args) => { }); }); +Cypress.Commands.add('get_list', (doctype, fields=[], filters=[]) => { + return cy.window().its('frappe.csrf_token').then(csrf_token => { + return cy.request({ + method: 'GET', + url: `/api/resource/${doctype}?fields=${JSON.stringify(fields)}&filters=${JSON.stringify(filters)}`, + headers: { + 'Accept': 'application/json', + 'X-Frappe-CSRF-Token': csrf_token + } + }).then(res => { + expect(res.status).eq(200); + return res.body; + }); + }); +}); + +Cypress.Commands.add('get_doc', (doctype, name) => { + return cy.window().its('frappe.csrf_token').then(csrf_token => { + return cy.request({ + method: 'GET', + url: `/api/resource/${doctype}/${name}`, + headers: { + 'Accept': 'application/json', + 'X-Frappe-CSRF-Token': csrf_token + } + }).then(res => { + expect(res.status).eq(200); + return res.body; + }); + }); +}); + +Cypress.Commands.add('create_doc', (doctype, args) => { + return cy.window().its('frappe.csrf_token').then(csrf_token => { + return cy.request({ + method: 'POST', + url: `/api/resource/${doctype}`, + body: args, + headers: { + 'Accept': 'application/json', + 'Content-Type': 'application/json', + 'X-Frappe-CSRF-Token': csrf_token + } + }).then(res => { + expect(res.status).eq(200); + return res.body; + }); + }); +}); + +Cypress.Commands.add('remove_doc', (doctype, name) => { + return cy.window().its('frappe.csrf_token').then(csrf_token => { + return cy.request({ + method: 'DELETE', + url: `/api/resource/${doctype}/${name}`, + headers: { + 'Accept': 'application/json', + 'X-Frappe-CSRF-Token': csrf_token + } + }).then(res => { + expect(res.status).eq(202); + return res.body; + }); + }); +}); + Cypress.Commands.add('create_records', (doc) => { return cy.call('frappe.tests.ui_test_helpers.create_if_not_exists', { doc }) .then(r => r.message); From 13321ec5f4fed1ec3b1fde88811180a41e3392da Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sat, 5 Oct 2019 09:57:43 +0530 Subject: [PATCH 235/274] chore: rename global_tags to tags --- frappe/desk/doctype/tag/tag.py | 6 +++--- frappe/model/delete_doc.py | 2 +- frappe/patches.txt | 2 +- .../patches/v12_0/{setup_global_tags.py => setup_tags.py} | 7 ++++--- frappe/public/build.json | 2 +- frappe/public/js/frappe/desk.js | 4 ++-- frappe/public/js/frappe/ui/toolbar/search.js | 6 +++--- .../js/frappe/ui/toolbar/{global_tags.js => tags.js} | 2 +- 8 files changed, 16 insertions(+), 15 deletions(-) rename frappe/patches/v12_0/{setup_global_tags.py => setup_tags.py} (81%) rename frappe/public/js/frappe/ui/toolbar/{global_tags.js => tags.js} (96%) diff --git a/frappe/desk/doctype/tag/tag.py b/frappe/desk/doctype/tag/tag.py index e48b6d4f9b..ca26789d4d 100644 --- a/frappe/desk/doctype/tag/tag.py +++ b/frappe/desk/doctype/tag/tag.py @@ -89,7 +89,7 @@ class DocTags: frappe.db.sql("update `tab%s` set _user_tags=%s where name=%s" % \ (self.dt,'%s','%s'), (tags , dn)) doc= frappe.get_doc(self.dt, dn) - update_global_tags(doc, tags) + update_tags(doc, tags) except Exception as e: if frappe.db.is_column_missing(e): if not tags: @@ -107,7 +107,7 @@ class DocTags: def delete_tags_for_document(doc): """ - Delete the __global_tags entry of a document that has + Delete the Tag Link entry of a document that has been deleted :param doc: Deleted document """ @@ -116,7 +116,7 @@ def delete_tags_for_document(doc): frappe.db.sql("""DELETE FROM `tabTag Link` WHERE `document_type`=%s AND `document_name`=%s""", (doc.doctype, doc.name)) -def update_global_tags(doc, tags): +def update_tags(doc, tags): """ Adds tags for documents :param doc: Document to be added to global tags diff --git a/frappe/model/delete_doc.py b/frappe/model/delete_doc.py index ba1372f278..33d7f8e0af 100644 --- a/frappe/model/delete_doc.py +++ b/frappe/model/delete_doc.py @@ -117,7 +117,7 @@ def delete_doc(doctype=None, name=None, force=0, ignore_doctypes=None, for_reloa # delete global search entry delete_for_document(doc) - # delete tags from __global_tags + # delete tag link entry delete_tags_for_document(doc) if doc and not for_reload: diff --git a/frappe/patches.txt b/frappe/patches.txt index 5de9831c79..3a1706cda1 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -252,4 +252,4 @@ frappe.patches.v12_0.move_email_and_phone_to_child_table frappe.patches.v12_0.delete_duplicate_indexes frappe.patches.v12_0.set_default_incoming_email_port frappe.patches.v12_0.update_global_search -frappe.patches.v12_0.setup_global_tags +frappe.patches.v12_0.setup_tags diff --git a/frappe/patches/v12_0/setup_global_tags.py b/frappe/patches/v12_0/setup_tags.py similarity index 81% rename from frappe/patches/v12_0/setup_global_tags.py rename to frappe/patches/v12_0/setup_tags.py index 4f501c5e92..33ea39c898 100644 --- a/frappe/patches/v12_0/setup_global_tags.py +++ b/frappe/patches/v12_0/setup_tags.py @@ -21,10 +21,11 @@ def execute(): if not tag: continue - tag_list.append((tag.strip(), time, time, 'Administrator')) + escaped_tag = frappe.db.escape(tag.strip()) + tag_list.append((escaped_tag, time, time, 'Administrator')) - tag_link_name = frappe.generate_hash(dt_tags.name + tag.strip(), 10), - tag_links.append((tag_link_name, doctype.name, dt_tags.name, tag.strip(), time, time, 'Administrator')) + tag_link_name = frappe.generate_hash(dt_tags.name + escaped_tag, 10), + tag_links.append((tag_link_name, doctype.name, dt_tags.name, escaped_tag, time, time, 'Administrator')) frappe.db.bulk_insert("Tag", fields=["name", "creation", "modified", "modified_by"], values=tag_list) frappe.db.bulk_insert("Tag Link", fields=["name", "document_type", "document_name", "tag", "creation", "modified", "modified_by"], values=tag_links) \ No newline at end of file diff --git a/frappe/public/build.json b/frappe/public/build.json index 13583f01eb..343acde05d 100755 --- a/frappe/public/build.json +++ b/frappe/public/build.json @@ -186,7 +186,7 @@ "public/js/frappe/ui/toolbar/awesome_bar.js", "public/js/frappe/ui/toolbar/energy_points_notifications.js", "public/js/frappe/ui/toolbar/search.js", - "public/js/frappe/ui/toolbar/global_tags.js", + "public/js/frappe/ui/toolbar/tags.js", "public/js/frappe/ui/toolbar/search.html", "public/js/frappe/ui/toolbar/search_header.html", "public/js/frappe/ui/toolbar/search_utils.js", diff --git a/frappe/public/js/frappe/desk.js b/frappe/public/js/frappe/desk.js index 13fd58a0ea..dbbdb268b3 100644 --- a/frappe/public/js/frappe/desk.js +++ b/frappe/public/js/frappe/desk.js @@ -148,7 +148,7 @@ frappe.Application = Class.extend({ }, 300000); // check every 5 minutes } - this.set_global_tags(); + this.setup_tags(); }, setup_frappe_vue() { @@ -602,7 +602,7 @@ frappe.Application = Class.extend({ }); }, - set_global_tags() { + setup_tags() { frappe.tags.utils.set_tags(); } }); diff --git a/frappe/public/js/frappe/ui/toolbar/search.js b/frappe/public/js/frappe/ui/toolbar/search.js index 7e7cca0768..42898c73f2 100644 --- a/frappe/public/js/frappe/ui/toolbar/search.js +++ b/frappe/public/js/frappe/ui/toolbar/search.js @@ -185,7 +185,7 @@ frappe.search.SearchDialog = Class.extend({ } if (this.current_keyword.charAt(0) === "#") { - this.search = this.searches["global_tag"]; + this.search = this.searches["tags"]; } else { this.search = this.searches["global_search"]; } @@ -400,10 +400,10 @@ frappe.search.SearchDialog = Class.extend({ }); } }, - global_tag: { + tags: { input_placeholder: __("Search"), empty_state_text: __("Search for anything"), - no_results_status: (keyword) => "

                                                                                                                          " + __("No results found for {0} in Global Tags", [keyword]) + "

                                                                                                                          ", + no_results_status: (keyword) => "

                                                                                                                          " + __("No results found for {0} in Tags", [keyword]) + "

                                                                                                                          ", get_results: function(keywords, callback) { var results = frappe.search.utils.get_nav_results(keywords); diff --git a/frappe/public/js/frappe/ui/toolbar/global_tags.js b/frappe/public/js/frappe/ui/toolbar/tags.js similarity index 96% rename from frappe/public/js/frappe/ui/toolbar/global_tags.js rename to frappe/public/js/frappe/ui/toolbar/tags.js index 6bbeb10c81..c8b4d629a4 100644 --- a/frappe/public/js/frappe/ui/toolbar/global_tags.js +++ b/frappe/public/js/frappe/ui/toolbar/tags.js @@ -20,7 +20,7 @@ frappe.tags.utils = { match: tag, onclick() { // Use Global Search Dialog for tag search too. - frappe.searchdialog.search.init_search("#".concat(tag), "global_tag"); + frappe.searchdialog.search.init_search("#".concat(tag), "tags"); } }); } From b100b59ee01081d1d1fe333a6654cd94c84e7220 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sat, 5 Oct 2019 18:59:01 +0530 Subject: [PATCH 236/274] chore: rename file --- frappe/public/js/frappe/desk.js | 4 ++-- frappe/public/js/frappe/ui/toolbar/search.js | 2 +- frappe/public/js/frappe/ui/toolbar/{tags.js => tag_utils.js} | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) rename frappe/public/js/frappe/ui/toolbar/{tags.js => tag_utils.js} (98%) diff --git a/frappe/public/js/frappe/desk.js b/frappe/public/js/frappe/desk.js index dbbdb268b3..d75b50e05c 100644 --- a/frappe/public/js/frappe/desk.js +++ b/frappe/public/js/frappe/desk.js @@ -148,7 +148,7 @@ frappe.Application = Class.extend({ }, 300000); // check every 5 minutes } - this.setup_tags(); + this.fetch_tags(); }, setup_frappe_vue() { @@ -602,7 +602,7 @@ frappe.Application = Class.extend({ }); }, - setup_tags() { + fetch_tags() { frappe.tags.utils.set_tags(); } }); diff --git a/frappe/public/js/frappe/ui/toolbar/search.js b/frappe/public/js/frappe/ui/toolbar/search.js index 42898c73f2..acc623fa20 100644 --- a/frappe/public/js/frappe/ui/toolbar/search.js +++ b/frappe/public/js/frappe/ui/toolbar/search.js @@ -403,7 +403,7 @@ frappe.search.SearchDialog = Class.extend({ tags: { input_placeholder: __("Search"), empty_state_text: __("Search for anything"), - no_results_status: (keyword) => "

                                                                                                                          " + __("No results found for {0} in Tags", [keyword]) + "

                                                                                                                          ", + no_results_status: (keyword) => "

                                                                                                                          " + __("No documents found tagged with {0}", [keyword]) + "

                                                                                                                          ", get_results: function(keywords, callback) { var results = frappe.search.utils.get_nav_results(keywords); diff --git a/frappe/public/js/frappe/ui/toolbar/tags.js b/frappe/public/js/frappe/ui/toolbar/tag_utils.js similarity index 98% rename from frappe/public/js/frappe/ui/toolbar/tags.js rename to frappe/public/js/frappe/ui/toolbar/tag_utils.js index c8b4d629a4..aab94775d6 100644 --- a/frappe/public/js/frappe/ui/toolbar/tags.js +++ b/frappe/public/js/frappe/ui/toolbar/tag_utils.js @@ -97,7 +97,6 @@ frappe.tags.utils = { }, callback: function(r) { if (r.message) { - console.log(r.message); resolve(get_results_sets(r.message)); } else { resolve([]); From 014c0360dda5eea684ee3adfdf0282c243a4b691 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sun, 6 Oct 2019 16:09:30 +0530 Subject: [PATCH 237/274] fix: list filters for tags --- frappe/desk/doctype/tag/tag.py | 2 +- frappe/public/build.json | 2 +- frappe/public/js/frappe/desk.js | 2 +- frappe/public/js/frappe/list/list_view.js | 2 +- frappe/public/js/frappe/ui/filters/filter.js | 6 ++++-- frappe/public/js/frappe/ui/tag_editor.js | 4 ++-- frappe/public/js/frappe/ui/toolbar/tag_utils.js | 2 +- 7 files changed, 11 insertions(+), 9 deletions(-) diff --git a/frappe/desk/doctype/tag/tag.py b/frappe/desk/doctype/tag/tag.py index ca26789d4d..8711b190f3 100644 --- a/frappe/desk/doctype/tag/tag.py +++ b/frappe/desk/doctype/tag/tag.py @@ -152,7 +152,7 @@ def get_deleted_tags(new_tags, existing_tags): return list(set(existing_tags) - set(new_tags)) def delete_tag_for_document(dt, dn, tag): - frappe.db.sql("""DELETE FROM `tabTag Link` WHERE `document_type`=%s, `document_name`=%s, tag=%s""", (dt, dn, tag)) + frappe.db.sql("""DELETE FROM `tabTag Link` WHERE `document_type`=%s AND `document_name`=%s AND tag=%s""", (dt, dn, tag)) @frappe.whitelist() def get_documents_for_tag(tag): diff --git a/frappe/public/build.json b/frappe/public/build.json index 343acde05d..c59df8034c 100755 --- a/frappe/public/build.json +++ b/frappe/public/build.json @@ -186,7 +186,7 @@ "public/js/frappe/ui/toolbar/awesome_bar.js", "public/js/frappe/ui/toolbar/energy_points_notifications.js", "public/js/frappe/ui/toolbar/search.js", - "public/js/frappe/ui/toolbar/tags.js", + "public/js/frappe/ui/toolbar/tag_utils.js", "public/js/frappe/ui/toolbar/search.html", "public/js/frappe/ui/toolbar/search_header.html", "public/js/frappe/ui/toolbar/search_utils.js", diff --git a/frappe/public/js/frappe/desk.js b/frappe/public/js/frappe/desk.js index d75b50e05c..88a3ba9803 100644 --- a/frappe/public/js/frappe/desk.js +++ b/frappe/public/js/frappe/desk.js @@ -603,7 +603,7 @@ frappe.Application = Class.extend({ }, fetch_tags() { - frappe.tags.utils.set_tags(); + frappe.tags.utils.fetch_tags(); } }); diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index 19079e1c24..ac6511fcd6 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -432,7 +432,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { tag_editor.wrapper.on('click', '.tagit-label', (e) => { const $this = $(e.currentTarget); - this.filter_area.add(this.doctype, '_user_tags', '=', $this.text()); + this.filter_area.add('Tag Link', 'tag', '=', $this.text()); }); }); } diff --git a/frappe/public/js/frappe/ui/filters/filter.js b/frappe/public/js/frappe/ui/filters/filter.js index c953b221c4..2a99253b11 100644 --- a/frappe/public/js/frappe/ui/filters/filter.js +++ b/frappe/public/js/frappe/ui/filters/filter.js @@ -174,8 +174,10 @@ frappe.ui.Filter = class { let original_docfield = (this.fieldselect.fields_by_name[doctype] || {})[fieldname]; - if (doctype === "Tag Link") { - original_docfield = {fieldname: "tag", fieldtype: "Data", label: "Tags", parent: doctype}; + if (doctype === "Tag Link" || fieldname === "_user_tags") { + original_docfield = {fieldname: "tag", fieldtype: "Data", label: "Tags", parent: "Tag Link"}; + doctype = "Tag Link"; + condition = "="; } if(!original_docfield) { diff --git a/frappe/public/js/frappe/ui/tag_editor.js b/frappe/public/js/frappe/ui/tag_editor.js index 5811714bb5..bf5844e790 100644 --- a/frappe/public/js/frappe/ui/tag_editor.js +++ b/frappe/public/js/frappe/ui/tag_editor.js @@ -42,7 +42,7 @@ frappe.ui.TagEditor = Class.extend({ user_tags.push(tag) me.user_tags = user_tags.join(","); me.on_change && me.on_change(me.user_tags); - frappe.tags.utils.set_tags(); + frappe.tags.utils.fetch_tags(); } }); } @@ -57,7 +57,7 @@ frappe.ui.TagEditor = Class.extend({ user_tags.splice(user_tags.indexOf(tag), 1); me.user_tags = user_tags.join(","); me.on_change && me.on_change(me.user_tags); - frappe.tags.utils.set_tags(); + frappe.tags.utils.fetch_tags(); } }); } diff --git a/frappe/public/js/frappe/ui/toolbar/tag_utils.js b/frappe/public/js/frappe/ui/toolbar/tag_utils.js index aab94775d6..9ba0b4d59e 100644 --- a/frappe/public/js/frappe/ui/toolbar/tag_utils.js +++ b/frappe/public/js/frappe/ui/toolbar/tag_utils.js @@ -29,7 +29,7 @@ frappe.tags.utils = { return out; }, - set_tags() { + fetch_tags() { frappe.call({ method: "frappe.desk.doctype.tag.tag.get_tags_list_for_awesomebar", callback: function(r) { From 1553426807a290889f98722855e913618857c44f Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sun, 6 Oct 2019 16:30:16 +0530 Subject: [PATCH 238/274] fix: do not capitalize tag name --- frappe/public/js/frappe/ui/tags.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/tags.js b/frappe/public/js/frappe/ui/tags.js index 1508e3651e..90c53beae7 100644 --- a/frappe/public/js/frappe/ui/tags.js +++ b/frappe/public/js/frappe/ui/tags.js @@ -67,7 +67,6 @@ frappe.ui.Tags = class { } addTag(label) { - label = toTitle(label); if(label && label!== '' && !this.tagsList.includes(label)) { let $tag = this.getTag(label); this.getListElement($tag).insertBefore(this.$inputWrapper); From b4fcadca2fcf06c32fcab6362ddf1aa7e791bb18 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sun, 6 Oct 2019 21:58:48 +0530 Subject: [PATCH 239/274] fix: codacy fixes --- frappe/desk/doctype/tag/tag.py | 2 -- frappe/public/js/frappe/form/sidebar/form_sidebar.js | 1 - frappe/public/js/frappe/ui/toolbar/tag_utils.js | 1 - 3 files changed, 4 deletions(-) diff --git a/frappe/desk/doctype/tag/tag.py b/frappe/desk/doctype/tag/tag.py index 8711b190f3..0e2afbb35c 100644 --- a/frappe/desk/doctype/tag/tag.py +++ b/frappe/desk/doctype/tag/tag.py @@ -4,9 +4,7 @@ from __future__ import unicode_literals import frappe -import json from frappe.model.document import Document -from frappe import _ class Tag(Document): pass diff --git a/frappe/public/js/frappe/form/sidebar/form_sidebar.js b/frappe/public/js/frappe/form/sidebar/form_sidebar.js index 87d6c21614..5034b8969c 100644 --- a/frappe/public/js/frappe/form/sidebar/form_sidebar.js +++ b/frappe/public/js/frappe/form/sidebar/form_sidebar.js @@ -119,7 +119,6 @@ frappe.ui.form.Sidebar = Class.extend({ }, make_tags: function() { - var me = this; if (this.frm.meta.issingle) { this.sidebar.find(".form-tags").toggle(false); return; diff --git a/frappe/public/js/frappe/ui/toolbar/tag_utils.js b/frappe/public/js/frappe/ui/toolbar/tag_utils.js index 9ba0b4d59e..c6466d2000 100644 --- a/frappe/public/js/frappe/ui/toolbar/tag_utils.js +++ b/frappe/public/js/frappe/ui/toolbar/tag_utils.js @@ -41,7 +41,6 @@ frappe.tags.utils = { }, get_tag_results: function(tag) { - var me = this; function get_results_sets(data) { var results_sets = [], result, set; function get_existing_set(doctype) { From 118bba4a8330600f92b3d468cbf2e78b695403ca Mon Sep 17 00:00:00 2001 From: John Clarke Date: Sun, 6 Oct 2019 10:34:19 -0600 Subject: [PATCH 240/274] report the name of the DocType when the associated table is missing Reported here https://discuss.erpnext.com/t/bench-migrate-fails-with-pymysql-err-programmingerror-it-doesnt-print-what-is-the-error/53540 --- frappe/database/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/database/database.py b/frappe/database/database.py index a1b8d390a9..4903d7d1b1 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -854,7 +854,7 @@ class Database(object): """Returns list of column names from given doctype.""" columns = self.get_db_table_columns('tab' + doctype) if not columns: - raise self.TableMissingError + raise self.TableMissingError('DocType', doctype) return columns def has_column(self, doctype, column): From 254ce39cc53329e9cc7ba8832c9bda724bd708c9 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Mon, 7 Oct 2019 09:32:51 +0530 Subject: [PATCH 241/274] chore: return empty string --- frappe/public/js/frappe/ui/toolbar/tag_utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/ui/toolbar/tag_utils.js b/frappe/public/js/frappe/ui/toolbar/tag_utils.js index c6466d2000..12ede1cfcb 100644 --- a/frappe/public/js/frappe/ui/toolbar/tag_utils.js +++ b/frappe/public/js/frappe/ui/toolbar/tag_utils.js @@ -51,7 +51,7 @@ frappe.tags.utils = { function make_description(content) { if (!content) { - return; + return ""; } var field_length = 110; var field_value = null; From b47b9ef5a84b308d3334dd16024b0df92c0c3f8f Mon Sep 17 00:00:00 2001 From: Sun Howwrongbum Date: Mon, 7 Oct 2019 11:12:42 +0530 Subject: [PATCH 242/274] fix: pdf report js issues (#8554) * fix: pdf report js issues * fix: template being set to null --- frappe/public/js/frappe/views/reports/query_report.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/views/reports/query_report.js b/frappe/public/js/frappe/views/reports/query_report.js index 51845a10dc..4bfa791403 100644 --- a/frappe/public/js/frappe/views/reports/query_report.js +++ b/frappe/public/js/frappe/views/reports/query_report.js @@ -859,17 +859,20 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList { const landscape = print_settings.orientation == 'Landscape'; const custom_format = this.report_settings.html_format || null; + const columns = this.get_columns_for_print(print_settings, custom_format); const data = this.get_data_for_print(); const applied_filters = this.get_filter_values(); const filters_html = this.get_filters_html_for_print(); - const content = frappe.render_template(print_settings.columns ? 'print_grid' : custom_format, { + const template = + print_settings.columns || !custom_format ? 'print_grid' : custom_format; + const content = frappe.render_template(template, { title: __(this.report_name), subtitle: filters_html, filters: applied_filters, data: data, original_data: this.data, - columns: this.get_columns_for_print(print_settings, custom_format), + columns: columns, report: this }); From 5666429a8887456d0b73c0b8d7dbc6d297ec31a4 Mon Sep 17 00:00:00 2001 From: Deepesh Garg <42651287+deepeshgarg007@users.noreply.github.com> Date: Mon, 7 Oct 2019 12:00:26 +0530 Subject: [PATCH 243/274] fix: Allow searching in multiselect field by fields in search fields and show search field related info (#8558) * fix: Allow searching in multiselect field by fileds in search fields and show search field related info * fix: Check icon alignment --- .../js/frappe/form/controls/multiselect_list.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/multiselect_list.js b/frappe/public/js/frappe/form/controls/multiselect_list.js index 7592b80a62..d81eec0ed8 100644 --- a/frappe/public/js/frappe/form/controls/multiselect_list.js +++ b/frappe/public/js/frappe/form/controls/multiselect_list.js @@ -35,10 +35,10 @@ frappe.ui.form.ControlMultiSelectList = frappe.ui.form.ControlData.extend({ if (this.values.includes(opt.value)) { return true; } - match = Awesomplete.FILTER_CONTAINS(opt.label, txt); - if (!match) { - match = Awesomplete.FILTER_CONTAINS(opt.value, txt); - } + match = Awesomplete.FILTER_CONTAINS(opt.label, txt) + || Awesomplete.FILTER_CONTAINS(opt.value, txt) + || Awesomplete.FILTER_CONTAINS(opt.description, txt); + return match; }); let options = this._selected_values @@ -195,8 +195,11 @@ frappe.ui.form.ControlMultiSelectList = frappe.ui.form.ControlData.extend({ let encoded_value = encodeURIComponent(option.value); let selected = this.values.includes(option.value) ? 'selected' : ''; return `
                                                                                                                        6. - ${option.label} - +
                                                                                                                          + ${option.label} +
                                                                                                                          ${option.description}
                                                                                                                          +
                                                                                                                          +
                                                                                                                        7. `; }).join(''); if (!html) { From f5792ffefa770b643548b07efdfb0e34f682f4a2 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 7 Oct 2019 12:47:48 +0530 Subject: [PATCH 244/274] fix: Add a check for Dynamic Link --- frappe/public/js/frappe/form/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index 0d6c9ff0e3..234974d1b3 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -195,7 +195,7 @@ frappe.ui.form.Form = class FrappeForm { field && field.refresh(fieldname); // Validate value for link field explicitly - field && field.df.fieldtype === "Link" && field.validate && field.validate(value); + field && ["Link", "Dynamic Link"].includes(field.df.fieldtype) && field.validate && field.validate(value); me.layout.refresh_dependency(); let object = me.script_manager.trigger(fieldname, doc.doctype, doc.name); From 6fc5cb584ff97b36ca42ed4d839db2787a6b3f43 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Mon, 7 Oct 2019 17:18:11 +0530 Subject: [PATCH 245/274] fix: codacy --- frappe/public/js/frappe/ui/toolbar/tag_utils.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/frappe/public/js/frappe/ui/toolbar/tag_utils.js b/frappe/public/js/frappe/ui/toolbar/tag_utils.js index 12ede1cfcb..0982260624 100644 --- a/frappe/public/js/frappe/ui/toolbar/tag_utils.js +++ b/frappe/public/js/frappe/ui/toolbar/tag_utils.js @@ -50,9 +50,6 @@ frappe.tags.utils = { } function make_description(content) { - if (!content) { - return ""; - } var field_length = 110; var field_value = null; if (content.length > field_length) { @@ -66,10 +63,14 @@ frappe.tags.utils = { data.forEach(function(d) { // more properties + var description = ""; + if (d.content) { + description = make_description(d.content); + } result = { label: d.name, value: d.name, - description: make_description(d.content), + description: description, route: ['Form', d.doctype, d.name], }; From 86263e05f457474adac7dbeccfdfc0c783457afa Mon Sep 17 00:00:00 2001 From: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> Date: Mon, 7 Oct 2019 19:09:40 +0530 Subject: [PATCH 246/274] perf: Cache db columns to avoid redundant database calls (#8543) * perf: Cache db columns to avoid redundant database calls * fix: Move cache clearing code from doctype to schema.py * fix: self.table_name instead of self.name * fix: Cache columns in "table_columns" key `table_columns` was cached in meta but columns were also getting accessed directly using frappe.db.get_table_columns. Now, it is cached at `frappe.db` layer Co-authored-by: Suraj Shetty --- frappe/core/doctype/doctype/doctype.py | 1 - frappe/database/database.py | 15 +++++++++++---- frappe/database/mariadb/framework_mariadb.sql | 6 ++++++ frappe/database/postgres/framework_postgres.sql | 6 ++++++ frappe/database/schema.py | 1 + frappe/model/meta.py | 3 +-- 6 files changed, 25 insertions(+), 7 deletions(-) diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index bfc5ba845a..1223d50878 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -312,7 +312,6 @@ class DocType(Document): clear_linked_doctype_cache() - def delete_duplicate_custom_fields(self): if not (frappe.db.table_exists(self.name) and frappe.db.table_exists("Custom Field")): return diff --git a/frappe/database/database.py b/frappe/database/database.py index 0a3d5da25d..95096ed2d9 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -845,10 +845,17 @@ class Database(object): def get_db_table_columns(self, table): """Returns list of column names from given table.""" - return [r[0] for r in self.sql(''' - select column_name - from information_schema.columns - where table_name = %s ''', table)] + columns = frappe.cache().hget('table_columns', table) + if columns is None: + columns = [r[0] for r in self.sql(''' + select column_name + from information_schema.columns + where table_name = %s ''', table)] + + if columns: + frappe.cache().hset('table_columns', table, columns) + + return columns def get_table_columns(self, doctype): """Returns list of column names from given doctype.""" diff --git a/frappe/database/mariadb/framework_mariadb.sql b/frappe/database/mariadb/framework_mariadb.sql index 07e4021107..7058ed0325 100644 --- a/frappe/database/mariadb/framework_mariadb.sql +++ b/frappe/database/mariadb/framework_mariadb.sql @@ -49,6 +49,12 @@ CREATE TABLE `tabDocField` ( `default` text, `description` text, `in_list_view` int(1) NOT NULL DEFAULT 0, + `fetch_if_empty` int(1) NOT NULL DEFAULT 0, + `in_filter` int(1) NOT NULL DEFAULT 0, + `remember_last_selected_value` int(1) NOT NULL DEFAULT 0, + `ignore_xss_filter` int(1) NOT NULL DEFAULT 0, + `print_hide_if_no_value` int(1) NOT NULL DEFAULT 0, + `allow_bulk_edit` int(1) NOT NULL DEFAULT 0, `in_standard_filter` int(1) NOT NULL DEFAULT 0, `in_preview` int(1) NOT NULL DEFAULT 0, `read_only` int(1) NOT NULL DEFAULT 0, diff --git a/frappe/database/postgres/framework_postgres.sql b/frappe/database/postgres/framework_postgres.sql index a2270c0235..df59de92df 100644 --- a/frappe/database/postgres/framework_postgres.sql +++ b/frappe/database/postgres/framework_postgres.sql @@ -49,6 +49,12 @@ CREATE TABLE "tabDocField" ( "default" text, "description" text, "in_list_view" smallint NOT NULL DEFAULT 0, + "fetch_if_empty" smallint NOT NULL DEFAULT 0, + "in_filter" smallint NOT NULL DEFAULT 0, + "remember_last_selected_value" smallint NOT NULL DEFAULT 0, + "ignore_xss_filter" smallint NOT NULL DEFAULT 0, + "print_hide_if_no_value" smallint NOT NULL DEFAULT 0, + "allow_bulk_edit" smallint NOT NULL DEFAULT 0, "in_standard_filter" smallint NOT NULL DEFAULT 0, "in_preview" smallint NOT NULL DEFAULT 0, "read_only" smallint NOT NULL DEFAULT 0, diff --git a/frappe/database/schema.py b/frappe/database/schema.py index 1663eed95f..88cda9340b 100644 --- a/frappe/database/schema.py +++ b/frappe/database/schema.py @@ -33,6 +33,7 @@ class DBTable: if self.is_new(): self.create() else: + frappe.cache().hdel('table_columns', self.table_name) self.alter() def create(self): diff --git a/frappe/model/meta.py b/frappe/model/meta.py index fe6483a3ea..0b1011b119 100644 --- a/frappe/model/meta.py +++ b/frappe/model/meta.py @@ -46,8 +46,7 @@ def load_meta(doctype): return Meta(doctype) def get_table_columns(doctype): - return frappe.cache().hget("table_columns", doctype, - lambda: frappe.db.get_table_columns(doctype)) + return frappe.db.get_table_columns(doctype) def load_doctype_from_file(doctype): fname = frappe.scrub(doctype) From f2f49ef3bba16d1c46bfb60e59d88018387ed43d Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Mon, 7 Oct 2019 19:10:05 +0530 Subject: [PATCH 247/274] fix: rate auto changing from 3.9 to 39 (#8560) * fix: rate auto changing from 3.9 to 39 * fix: codacy --- .../js/frappe/form/controls/currency.js | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/currency.js b/frappe/public/js/frappe/form/controls/currency.js index 1961985117..5f893c9495 100644 --- a/frappe/public/js/frappe/form/controls/currency.js +++ b/frappe/public/js/frappe/form/controls/currency.js @@ -1,12 +1,23 @@ frappe.ui.form.ControlCurrency = frappe.ui.form.ControlFloat.extend({ eval_expression: function(value) { if (typeof value === 'string' - && value.match(/^[0-9+-/* ]+$/) - // paresFloat('1,44,000') returns 1.0 - // 1,44,000 are being passed when we paste rows from excel sheet to a table - && value.includes(',')) { - return value.replace(",", ""); + && value.match(/^[0-9+-/* ]+$/)) { + if (value.includes(',')) { + // paresFloat('1,44,000') returns 1.0 + // 1,44,000 are being passed when we paste rows from excel sheet to a table) + + const regex = new RegExp("\\,", "g"); + value = value.replace(regex, ""); + } + + try { + return eval(value); + } catch (e) { + return value; + } } + + // If not string return value; }, From e9e2a89dc8a1fb2b63ba11d2bdfae195e875d235 Mon Sep 17 00:00:00 2001 From: Mangesh-Khairnar Date: Wed, 9 Oct 2019 10:00:55 +0530 Subject: [PATCH 248/274] Fix: lock click version (#8561) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c11b023c54..5e56468c0e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -19,7 +19,7 @@ babel==2.6.0 ipython html2text==2016.9.19 email_reply_parser -click +click==7.0 num2words==0.5.5 watchdog==0.8.0 bleach==2.1.4 From a47d1b3e57260d2276be5119c37edb37b11ee031 Mon Sep 17 00:00:00 2001 From: sahil28297 <37302950+sahil28297@users.noreply.github.com> Date: Wed, 9 Oct 2019 11:30:15 +0530 Subject: [PATCH 249/274] fix(hooks): check for updates daily instead of weekly --- frappe/hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index fd7c940fa4..aeba3c7445 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -190,13 +190,13 @@ scheduler_events = { ], "daily_long": [ "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_daily", + "frappe.utils.change_log.check_for_update", "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_daily", "frappe.integrations.doctype.google_drive.google_drive.daily_backup" ], "weekly_long": [ "frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_weekly", "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_weekly", - "frappe.utils.change_log.check_for_update", "frappe.desk.doctype.route_history.route_history.flush_old_route_records", "frappe.desk.form.document_follow.send_weekly_updates", "frappe.social.doctype.energy_point_log.energy_point_log.send_weekly_summary", From e08779c362536c4af1597de87a81b5522bcc5d01 Mon Sep 17 00:00:00 2001 From: marination Date: Wed, 9 Oct 2019 12:36:35 +0530 Subject: [PATCH 250/274] fix: Importable docs via Customize Form set in redis cache can_import list is set in redis cache Data Import's set query will fetch from cache ad update list --- .../core/doctype/data_import/data_import.js | 23 +++++++++++-------- .../core/doctype/data_import/data_import.py | 5 ++++ .../customize_form/customize_form.json | 2 +- frappe/utils/user.py | 6 ++--- 4 files changed, 23 insertions(+), 13 deletions(-) diff --git a/frappe/core/doctype/data_import/data_import.js b/frappe/core/doctype/data_import/data_import.js index eeaa5ac34e..c5bd4e99c9 100644 --- a/frappe/core/doctype/data_import/data_import.js +++ b/frappe/core/doctype/data_import/data_import.js @@ -7,15 +7,20 @@ frappe.ui.form.on('Data Import', { frm.set_value("action", ""); } - frm.set_query("reference_doctype", function() { - return { - "filters": { - "issingle": 0, - "istable": 0, - "name": ['in', frappe.boot.user.can_import] - } - }; - }); + frappe.call({ + method: "frappe.core.doctype.data_import.data_import.get_importable_doc", + callback: function (r) { + frm.set_query("reference_doctype", function () { + return { + "filters": { + "issingle": 0, + "istable": 0, + "name": ['in', r.message] + } + }; + }); + } + }), // should never check public frm.fields_dict["import_file"].df.is_private = 1; diff --git a/frappe/core/doctype/data_import/data_import.py b/frappe/core/doctype/data_import/data_import.py index 5500f1c617..80f8553121 100644 --- a/frappe/core/doctype/data_import/data_import.py +++ b/frappe/core/doctype/data_import/data_import.py @@ -29,6 +29,11 @@ class DataImport(Document): upload(data_import_doc=self, from_data_import="Yes", validate_template=True) +@frappe.whitelist() +def get_importable_doc(): + import_lst = frappe.cache().hget("can_import", frappe.session.user) + return import_lst + @frappe.whitelist() def import_data(data_import): frappe.db.set_value("Data Import", data_import, "import_status", "In Progress", update_modified=False) diff --git a/frappe/custom/doctype/customize_form/customize_form.json b/frappe/custom/doctype/customize_form/customize_form.json index 539051e4ef..0b1df62f9d 100644 --- a/frappe/custom/doctype/customize_form/customize_form.json +++ b/frappe/custom/doctype/customize_form/customize_form.json @@ -180,7 +180,7 @@ "icon": "fa fa-glass", "idx": 1, "issingle": 1, - "modified": "2019-09-27 00:01:19.609039", + "modified": "2019-10-08 11:16:36.698006", "modified_by": "Administrator", "module": "Custom", "name": "Customize Form", diff --git a/frappe/utils/user.py b/frappe/utils/user.py index ec899d5c47..0959316ee8 100755 --- a/frappe/utils/user.py +++ b/frappe/utils/user.py @@ -157,11 +157,11 @@ class UserPermissions: self.can_read.remove(dt) if "System Manager" in self.get_roles(): - docs = [x['name'] for x in frappe.get_all("DocType", "name")] - frappe.clear_cache() + docs = [x["name"] for x in frappe.get_all("DocType", "name")] for docname in docs: - if frappe.get_meta(docname).allow_import == 1: + if frappe.get_meta(docname, cached=False).allow_import == 1: self.can_import.append(docname) + frappe.cache().hset("can_import", frappe.session.user, self.can_import) def get_defaults(self): import frappe.defaults From 5787ea3c5a48147b4c26848f9ed80222d1458457 Mon Sep 17 00:00:00 2001 From: deepeshgarg007 Date: Wed, 9 Oct 2019 13:02:53 +0530 Subject: [PATCH 251/274] fix: Provision to ignore disabled link validations in a doctype --- frappe/model/base_document.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 27f0f56ebd..2e386e6c26 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -464,7 +464,7 @@ class BaseDocument(object): or frappe.flags.in_patch ): disabled = frappe.get_value(doctype, self.get(df.fieldname), 'disabled') - if disabled: + if disabled and (not self.flags.ignore_disabled): frappe.throw(_("{0} is disabled").format(frappe.bold(self.get(df.fieldname)))) else: doctype = self.get(df.options) From 567d7285ce77ca794e5abc041c773c200d87f3d6 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Wed, 9 Oct 2019 13:07:32 +0530 Subject: [PATCH 252/274] fix: comma in rate field not changing to dot for the number format #.###,## --- frappe/public/js/frappe/form/controls/currency.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frappe/public/js/frappe/form/controls/currency.js b/frappe/public/js/frappe/form/controls/currency.js index 5f893c9495..e831bcfc0c 100644 --- a/frappe/public/js/frappe/form/controls/currency.js +++ b/frappe/public/js/frappe/form/controls/currency.js @@ -1,5 +1,10 @@ frappe.ui.form.ControlCurrency = frappe.ui.form.ControlFloat.extend({ eval_expression: function(value) { + if (typeof value === 'string' && value.includes(',') + && frappe.sys_defaults.number_format.startsWith("#.")) { + return value; + } + if (typeof value === 'string' && value.match(/^[0-9+-/* ]+$/)) { if (value.includes(',')) { From d97689f33a9a731781e098cca58c65543d8183fc Mon Sep 17 00:00:00 2001 From: sahil28297 <37302950+sahil28297@users.noreply.github.com> Date: Wed, 9 Oct 2019 14:26:26 +0530 Subject: [PATCH 253/274] fix(email_domian): set domain_name as non_unique --- frappe/email/doctype/email_domain/email_domain.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/email/doctype/email_domain/email_domain.json b/frappe/email/doctype/email_domain/email_domain.json index 4e3499e4bd..677bf876aa 100644 --- a/frappe/email/doctype/email_domain/email_domain.json +++ b/frappe/email/doctype/email_domain/email_domain.json @@ -30,7 +30,7 @@ "fieldtype": "Data", "label": "domain name", "read_only": 1, - "unique": 1 + "unique": 0 }, { "fieldname": "email_id", @@ -109,7 +109,7 @@ } ], "icon": "icon-inbox", - "modified": "2019-08-31 17:56:48.834704", + "modified": "2019-10-09 17:56:48.834704", "modified_by": "Administrator", "module": "Email", "name": "Email Domain", @@ -127,4 +127,4 @@ ], "sort_field": "modified", "sort_order": "DESC" -} \ No newline at end of file +} From c560d2fb51ed0dfe34e04fbe5df7caf7f4bcb316 Mon Sep 17 00:00:00 2001 From: "Chinmay D. Pai" Date: Wed, 9 Oct 2019 15:47:25 +0530 Subject: [PATCH 254/274] fix: handle site expired exception Signed-off-by: Chinmay D. Pai Co-authored-by: Sahil Khan --- frappe/frappeclient.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/frappeclient.py b/frappe/frappeclient.py index 57f9bb771f..c7498319dc 100644 --- a/frappe/frappeclient.py +++ b/frappe/frappeclient.py @@ -42,6 +42,8 @@ class FrappeClient(object): if r.status_code==200 and r.json().get('message') in ("Logged In", "No App"): return r.json() else: + if json.loads(r.text).get('exc_type') == "SiteExpiredError": + return {"exc_type": "SiteExpiredError"} print(r.text) raise AuthError From 989cd82e90d3c8647a1d69f12977ed80fd15e1e9 Mon Sep 17 00:00:00 2001 From: "Chinmay D. Pai" Date: Wed, 9 Oct 2019 16:02:17 +0530 Subject: [PATCH 255/274] fix: raise SiteExpiredError if site has expired Signed-off-by: Chinmay D. Pai --- frappe/frappeclient.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frappe/frappeclient.py b/frappe/frappeclient.py index c7498319dc..fe5b5844c8 100644 --- a/frappe/frappeclient.py +++ b/frappe/frappeclient.py @@ -11,6 +11,9 @@ FrappeClient is a library that helps you connect with other frappe systems class AuthError(Exception): pass +class SiteExpiredError(Exception): + pass + class FrappeException(Exception): pass @@ -43,7 +46,7 @@ class FrappeClient(object): return r.json() else: if json.loads(r.text).get('exc_type') == "SiteExpiredError": - return {"exc_type": "SiteExpiredError"} + raise SiteExpiredError print(r.text) raise AuthError From 0740fddae35f34a03ec1bff64ae8bbef9b0ef92f Mon Sep 17 00:00:00 2001 From: Chinmay Pai Date: Wed, 9 Oct 2019 16:04:04 +0530 Subject: [PATCH 256/274] chore: remove print from frappeclient Co-Authored-By: Shivam Mishra --- frappe/frappeclient.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/frappeclient.py b/frappe/frappeclient.py index fe5b5844c8..1a79ca3618 100644 --- a/frappe/frappeclient.py +++ b/frappe/frappeclient.py @@ -47,7 +47,6 @@ class FrappeClient(object): else: if json.loads(r.text).get('exc_type') == "SiteExpiredError": raise SiteExpiredError - print(r.text) raise AuthError def logout(self): From 5bd5e02a309f2aba0fa996d00041fb3837132e97 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Wed, 9 Oct 2019 17:51:16 +0530 Subject: [PATCH 257/274] feat: Add API to check all table rows --- frappe/public/js/frappe/form/controls/table.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frappe/public/js/frappe/form/controls/table.js b/frappe/public/js/frappe/form/controls/table.js index 85af73823a..14fad1c010 100644 --- a/frappe/public/js/frappe/form/controls/table.js +++ b/frappe/public/js/frappe/form/controls/table.js @@ -102,5 +102,8 @@ frappe.ui.form.ControlTable = frappe.ui.form.Control.extend({ }, validate: function() { return this.get_value(); + }, + check_all_rows() { + this.$wrapper.find('.grid-row-check')[0].click(); } }); From dea1f3ca501473ce070604a7c88b3988d499fd75 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Thu, 10 Oct 2019 13:58:57 +0530 Subject: [PATCH 258/274] fix: Nonetype object has no attribute options --- frappe/core/doctype/communication/communication.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/core/doctype/communication/communication.json b/frappe/core/doctype/communication/communication.json index 909999b0bd..5e34804b93 100644 --- a/frappe/core/doctype/communication/communication.json +++ b/frappe/core/doctype/communication/communication.json @@ -383,7 +383,7 @@ ], "icon": "fa fa-comment", "idx": 1, - "modified": "2019-09-05 14:22:27.664645", + "modified": "2019-10-09 14:22:27.664645", "modified_by": "Administrator", "module": "Core", "name": "Communication", From 3ff3e71d343cc7aaa761b39b2c9fa28aed95d8e0 Mon Sep 17 00:00:00 2001 From: "Chinmay D. Pai" Date: Thu, 10 Oct 2019 15:08:40 +0530 Subject: [PATCH 259/274] chore: make communication list exception helpful * fixes infinite error recursion caused by window.history.back(); * throw an actually useful message instead of using msgprint Signed-off-by: Chinmay D. Pai --- frappe/public/js/frappe/views/inbox/inbox_view.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/views/inbox/inbox_view.js b/frappe/public/js/frappe/views/inbox/inbox_view.js index 72a28c6489..2b35d38683 100644 --- a/frappe/public/js/frappe/views/inbox/inbox_view.js +++ b/frappe/public/js/frappe/views/inbox/inbox_view.js @@ -17,9 +17,7 @@ frappe.views.InboxView = class InboxView extends frappe.views.ListView { frappe.set_route("List", "Communication", "Inbox", email_account); return true; } else if (!route[3] || (route[3] !== "All Accounts" && !is_valid(route[3]))) { - frappe.msgprint(__('Invalid Email Account')); - window.history.back(); - return true; + frappe.throw(__('No email account associated with the User. Please add an account under User > Email Inbox.')); } return false; From bad90cf6ef037f1585a404743777d0a1b887cc58 Mon Sep 17 00:00:00 2001 From: gavin Date: Thu, 10 Oct 2019 15:30:28 +0530 Subject: [PATCH 260/274] chore: updated GitHub contributing templates (#8565) --- .github/CONTRIBUTING.md | 8 ++-- .github/ISSUE_TEMPLATE/bug_report.md | 47 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 28 +++++++++++ .../question-about-using-frappe.md | 19 ++++++++ .github/PULL_REQUEST_TEMPLATE.md | 34 +++++++++++++- 5 files changed, 131 insertions(+), 5 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/question-about-using-frappe.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 511b682f37..8f300706b9 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,12 +1,12 @@ ### Introduction (first timers) -Thank you for your interest in raising an Issue with ERPNext. An Issue could mean a bug report or a request for a missing feature. By raising a bug report, you are contributing to the development of ERPNext and this is the first step of participating in the community. Bug reports are very helpful for developers as they quickly fix the issue before other users start facing it. +Thank you for your interest in raising an Issue with the Frappe Framework. An Issue could mean a bug report or a request for a missing feature. By raising a bug report, you are contributing to the development of the Frappe Framework and this is the first step of participating in the community. Bug reports are very helpful for developers as they quickly fix the issue before other users start facing it. Feature requests are also a great way to take the product forward. New ideas can come in any user scenario and the issue list also acts a roadmap of future features. When you are raising an Issue, you should keep a few things in mind. Remember that the developer does not have access to your machine so you must give all the information you can while raising an Issue. If you are suggesting a feature, you should be very clear about what you want. -The Issue list is not the right place to ask a question or start a general discussion. If you want to do that , then the right place is the forum [https://discuss.erpnext.com](https://discuss.erpnext.com). +The Issue list is not the right place to ask a question or start a general discussion. If you want to do that , then the right place is the forum [https://discuss.frappe.io](https://discuss.frappe.io). ### Reply and Closing Policy @@ -15,8 +15,8 @@ If your issue is not clear or does not meet the guidelines, then it will be clos ### General Issue Guidelines 1. **Search existing Issues:** Before raising a Issue, search if it has been raised before. Maybe add a 👍 or give additional help by creating a mockup if it is not already created. -1. **Report each issue separately:** Don't club multiple, unreleated issues in one note. -1. **Brief:** Please don't include long explanations. Use screenshots and bullet points instead of descriptive paragraphs. +2. **Report each issue separately:** Don't club multiple, unreleated issues in one note. +3. **Brief:** Please don't include long explanations. Use screenshots and bullet points instead of descriptive paragraphs. ### Bug Report Guidelines diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000000..62897d048d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,47 @@ +--- +name: Bug report +about: Report a bug encountered while using the Frappe Framework + +--- + + + +## Description of the issue + +## Context information (for bug reports) + +**Output of `bench version`** +``` +(paste here) +``` + +## Steps to reproduce the issue + +1. +2. +3. + +### Observed result + +### Expected result + +### Stacktrace / full error message + +``` +(paste here) +``` + +## Additional information + +OS version / distribution, `Frappe` install method, etc. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000000..4c9b9e6fb5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,28 @@ +--- +name: Feature request +about: Suggest an idea to improve Frappe + +--- + + + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/question-about-using-frappe.md b/.github/ISSUE_TEMPLATE/question-about-using-frappe.md new file mode 100644 index 0000000000..74f9c5279f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question-about-using-frappe.md @@ -0,0 +1,19 @@ +--- +name: Question about using Frappe/Frappe Apps +about: This is not the appropriate channel + +--- + +Please post on our forums: + +for questions about using the `Frappe Framework`: https://discuss.frappe.io + +for questions about using `ERPNext`: https://discuss.erpnext.com + +for questions about using `bench`, probably the best place to start is the [bench repo](https://github.com/frappe/bench) + +For documentation issues, use the [Frappe Framework Documentation](https://frappe.io/docs/user/en) or the [developer cheetsheet](https://github.com/frappe/frappe/wiki/Developer-Cheatsheet) + +For a slightly outdated yet informative developer guide: https://www.youtube.com/playlist?list=PL3lFfCEoMxvzHtsZHFJ4T3n5yMM3nGJ1W + +> **Posts that are not bug reports or feature requests will not be addressed on this issue tracker.** \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 73b92062d2..8fc5248b7b 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1 +1,33 @@ -Please read the [Pull Request Checklist](https://github.com/frappe/erpnext/wiki/Pull-Request-Checklist) to ensure you have everything that is needed to get your contribution merged. \ No newline at end of file + + +> Please provide enough information so that others can review your pull request: + + + +> Explain the **details** for making this change. What existing problem does the pull request solve? + + + +> Screenshots/GIFs + + From 86245cc890f5fb865facb95a7b4e6456b7780a66 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 10 Oct 2019 21:58:59 +0530 Subject: [PATCH 261/274] fix: autoset recipient if email_field in doc --- frappe/public/js/frappe/views/communication.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/frappe/public/js/frappe/views/communication.js b/frappe/public/js/frappe/views/communication.js index adc440469a..1960520e6b 100755 --- a/frappe/public/js/frappe/views/communication.js +++ b/frappe/public/js/frappe/views/communication.js @@ -127,9 +127,9 @@ frappe.views.CommunicationComposer = Class.extend({ this.setup_last_edited_communication(); this.setup_email_template(); - this.dialog.fields_dict.recipients.set_value(this.recipients || ''); - this.dialog.fields_dict.cc.set_value(this.cc || ''); - this.dialog.fields_dict.bcc.set_value(this.bcc || ''); + this.dialog.set_value("recipients", this.recipients || ''); + this.dialog.set_value("cc", this.cc || ''); + this.dialog.set_value("bcc", this.bcc || ''); if(this.dialog.fields_dict.sender) { this.dialog.fields_dict.sender.set_value(this.sender || ''); @@ -181,6 +181,10 @@ frappe.views.CommunicationComposer = Class.extend({ } } } + + if (!this.recipients) { + this.recipients = this.frm.doc[this.frm.email_field]; + } }, setup_email_template: function() { @@ -690,6 +694,7 @@ frappe.views.CommunicationComposer = Class.extend({ } fields.content.set_value(content); }, + html2text: function(html) { // convert HTML to text and try and preserve whitespace var d = document.createElement( 'div' ); From 2ace6739d74c47d92872b39cbfc827c09ebc3ca3 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 10 Oct 2019 22:06:59 +0530 Subject: [PATCH 262/274] fix: rename fields --- frappe/contacts/doctype/contact/contact.json | 4 ++-- frappe/contacts/doctype/contact/contact.py | 6 ------ frappe/core/doctype/dynamic_link/dynamic_link.json | 4 ++-- .../global_search_settings/global_search_settings.json | 4 ++-- 4 files changed, 6 insertions(+), 12 deletions(-) diff --git a/frappe/contacts/doctype/contact/contact.json b/frappe/contacts/doctype/contact/contact.json index 7bc13accf8..7dd5aad4ce 100644 --- a/frappe/contacts/doctype/contact/contact.json +++ b/frappe/contacts/doctype/contact/contact.json @@ -193,7 +193,7 @@ { "fieldname": "phone_nos", "fieldtype": "Table", - "label": "Numbers", + "label": "Contact Numbers", "options": "Contact Phone" }, { @@ -245,7 +245,7 @@ "icon": "fa fa-user", "idx": 1, "image_field": "image", - "modified": "2019-09-24 17:48:26.790985", + "modified": "2019-10-10 22:04:41.070479", "modified_by": "Administrator", "module": "Contacts", "name": "Contact", diff --git a/frappe/contacts/doctype/contact/contact.py b/frappe/contacts/doctype/contact/contact.py index f851e19b46..b9239dc1f6 100644 --- a/frappe/contacts/doctype/contact/contact.py +++ b/frappe/contacts/doctype/contact/contact.py @@ -32,7 +32,6 @@ class Contact(Document): self.set_primary_email() self.set_primary("phone") self.set_primary("mobile_no") - self.check_if_primary_phone_and_mobile_no_same() self.set_user() @@ -119,11 +118,6 @@ class Contact(Document): setattr(self, fieldname, d.phone) break - def check_if_primary_phone_and_mobile_no_same(self): - if self.phone and self.mobile_no and self.phone == self.mobile_no: - number = frappe.bold(self.phone) - frappe.throw(_("Number {0} cannot be set as primary for Phone as well as Mobile No.").format(number)) - def get_default_contact(doctype, name): '''Returns default contact for the given doctype, name''' out = frappe.db.sql('''select parent, diff --git a/frappe/core/doctype/dynamic_link/dynamic_link.json b/frappe/core/doctype/dynamic_link/dynamic_link.json index abc47df100..b99f77f139 100644 --- a/frappe/core/doctype/dynamic_link/dynamic_link.json +++ b/frappe/core/doctype/dynamic_link/dynamic_link.json @@ -13,7 +13,7 @@ "fieldname": "link_doctype", "fieldtype": "Link", "in_list_view": 1, - "label": "Link DocType", + "label": "Link Document Type", "options": "DocType", "reqd": 1 }, @@ -34,7 +34,7 @@ } ], "istable": 1, - "modified": "2019-05-16 19:54:31.400026", + "modified": "2019-10-10 22:05:54.736093", "modified_by": "Administrator", "module": "Core", "name": "Dynamic Link", diff --git a/frappe/desk/doctype/global_search_settings/global_search_settings.json b/frappe/desk/doctype/global_search_settings/global_search_settings.json index e0b4b11d05..6fa25f72b7 100644 --- a/frappe/desk/doctype/global_search_settings/global_search_settings.json +++ b/frappe/desk/doctype/global_search_settings/global_search_settings.json @@ -10,12 +10,12 @@ { "fieldname": "allowed_in_global_search", "fieldtype": "Table", - "label": "Document Types", + "label": "Search Priorities", "options": "Global Search DocType" } ], "issingle": 1, - "modified": "2019-09-18 18:00:17.388486", + "modified": "2019-10-10 22:05:02.692689", "modified_by": "Administrator", "module": "Desk", "name": "Global Search Settings", From e1a7112d861be08458d5f07e52ea74f7423635cc Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 10 Oct 2019 23:33:11 +0530 Subject: [PATCH 263/274] fix: test cases for contacts --- .../contacts/doctype/contact/test_contact.py | 31 ------------------- 1 file changed, 31 deletions(-) diff --git a/frappe/contacts/doctype/contact/test_contact.py b/frappe/contacts/doctype/contact/test_contact.py index 2e6f9ad422..4929873dc4 100644 --- a/frappe/contacts/doctype/contact/test_contact.py +++ b/frappe/contacts/doctype/contact/test_contact.py @@ -33,37 +33,6 @@ class TestContact(unittest.TestCase): self.assertEqual(contact.phone, "+91 0000000002") self.assertEqual(contact.mobile_no, "+91 0000000003") - def test_same_phone_and_mobile(self): - phones = [ - {"phone": "+91 0000000000", "is_primary_phone": 1, "is_primary_mobile_no": 1}, - ] - contact = create_contact("Phone", "Mr", phones=phones, save=False) - self.assertRaises(ValidationError, contact.save) - - def test_no_primary_set(self): - emails = [ - {"email": "test1@example.com", "is_primary": 0}, - {"email": "test2@example.com", "is_primary": 0}, - {"email": "test3@example.com", "is_primary": 0}, - {"email": "test4@example.com", "is_primary": 0}, - {"email": "test5@example.com", "is_primary": 0}, - ] - phones = [ - {"phone": "+91 0000000000", "is_primary_phone": 0, "is_primary_mobile_no": 0}, - {"phone": "+91 0000000001", "is_primary_phone": 0, "is_primary_mobile_no": 0}, - {"phone": "+91 0000000002", "is_primary_phone": 1, "is_primary_mobile_no": 1}, - {"phone": "+91 0000000003", "is_primary_phone": 0, "is_primary_mobile_no": 0}, - ] - - contact_email = create_contact("Default", "Mr", emails=emails, phones=phones, save=False) - contact_phone = create_contact("Default", "Mr", emails=emails, phones=phones, save=False) - - # No default set for emails if many emails are passed as params - self.assertRaises(ValidationError, contact_email.save) - - # No default set for phones if many phones are passed as params - self.assertRaises(ValidationError, contact_phone.save) - def create_contact(name, salutation, emails=None, phones=None, save=True): doc = frappe.get_doc({ "doctype": "Contact", From cc479144d9c7dd20f6bfbc44f6a47f575806818e Mon Sep 17 00:00:00 2001 From: Himanshu Date: Fri, 11 Oct 2019 00:33:23 +0530 Subject: [PATCH 264/274] =?UTF-8?q?fix(patch):=20remove=20quotes=20from=20?= =?UTF-8?q?tags=20due=20to=20db.escape=20and=20fix=20pr=E2=80=A6=20(#8566)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frappe/patches/v12_0/setup_tags.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/frappe/patches/v12_0/setup_tags.py b/frappe/patches/v12_0/setup_tags.py index 33ea39c898..cd50b0d505 100644 --- a/frappe/patches/v12_0/setup_tags.py +++ b/frappe/patches/v12_0/setup_tags.py @@ -21,11 +21,10 @@ def execute(): if not tag: continue - escaped_tag = frappe.db.escape(tag.strip()) - tag_list.append((escaped_tag, time, time, 'Administrator')) + tag_list.append((tag.strip(), time, time, 'Administrator')) - tag_link_name = frappe.generate_hash(dt_tags.name + escaped_tag, 10), - tag_links.append((tag_link_name, doctype.name, dt_tags.name, escaped_tag, time, time, 'Administrator')) + tag_link_name = frappe.generate_hash(dt_tags.name + tag.strip() + doctype.name, 10), + tag_links.append((tag_link_name, doctype.name, dt_tags.name, tag.strip(), time, time, 'Administrator')) - frappe.db.bulk_insert("Tag", fields=["name", "creation", "modified", "modified_by"], values=tag_list) - frappe.db.bulk_insert("Tag Link", fields=["name", "document_type", "document_name", "tag", "creation", "modified", "modified_by"], values=tag_links) \ No newline at end of file + frappe.db.bulk_insert("Tag", fields=["name", "creation", "modified", "modified_by"], values=set(tag_list)) + frappe.db.bulk_insert("Tag Link", fields=["name", "document_type", "document_name", "tag", "creation", "modified", "modified_by"], values=set(tag_links)) \ No newline at end of file From 5e6ce7d2eb0fc64326e169a62dea4dba85bff31e Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Fri, 11 Oct 2019 15:07:26 +0530 Subject: [PATCH 265/274] fix: TypeError: 'NoneType' object is not iterable --- frappe/integrations/doctype/google_calendar/google_calendar.py | 2 +- frappe/integrations/doctype/google_contacts/google_contacts.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/integrations/doctype/google_calendar/google_calendar.py b/frappe/integrations/doctype/google_calendar/google_calendar.py index d6ba82ed5a..fa2eea6ce1 100644 --- a/frappe/integrations/doctype/google_calendar/google_calendar.py +++ b/frappe/integrations/doctype/google_calendar/google_calendar.py @@ -220,7 +220,7 @@ def sync_events_from_google_calendar(g_calendar, method=None, page_length=10): except HttpError as err: frappe.throw(_("Google Calendar - Could not fetch event from Google Calendar, error code {0}.").format(err.resp.status)) - for event in events.get("items"): + for event in events.get("items", []): results.append(event) if not events.get("nextPageToken"): diff --git a/frappe/integrations/doctype/google_contacts/google_contacts.py b/frappe/integrations/doctype/google_contacts/google_contacts.py index 522a0e31a6..0e28c1306c 100644 --- a/frappe/integrations/doctype/google_contacts/google_contacts.py +++ b/frappe/integrations/doctype/google_contacts/google_contacts.py @@ -155,7 +155,7 @@ def sync_contacts_from_google_contacts(g_contact): except HttpError as err: frappe.throw(_("Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}.").format(account.name, err.resp.status)) - for contact in contacts.get("connections"): + for contact in contacts.get("connections", []): results.append(contact) if not contacts.get("nextPageToken"): From 30c672039811e7790ef52f091d6fe1d38de56410 Mon Sep 17 00:00:00 2001 From: Sahil Khan Date: Fri, 11 Oct 2019 16:03:24 +0530 Subject: [PATCH 266/274] fix(patch): check if contact already exists for user --- frappe/patches/v11_0/create_contact_for_user.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/patches/v11_0/create_contact_for_user.py b/frappe/patches/v11_0/create_contact_for_user.py index 8a9238572e..b4722ab3ae 100644 --- a/frappe/patches/v11_0/create_contact_for_user.py +++ b/frappe/patches/v11_0/create_contact_for_user.py @@ -17,6 +17,8 @@ def execute(): users = frappe.get_all('User', filters={"name": ('not in', 'Administrator, Guest')}, fields=["*"]) for user in users: + if frappe.db.exists("Contact", {"email_id": user.email}) or frappe.db.exists("Contact Email", {"email_id": user.email}): + continue if user.first_name: user.first_name = re.sub("[<>]+", '', frappe.safe_decode(user.first_name)) if user.last_name: From 106b7e995c6c2fd51fdec412964ab9dfa4e2e16c Mon Sep 17 00:00:00 2001 From: Sahil Khan Date: Fri, 11 Oct 2019 16:08:16 +0530 Subject: [PATCH 267/274] fix(patch): reload prepared report doctype --- frappe/patches/v11_0/delete_all_prepared_reports.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/patches/v11_0/delete_all_prepared_reports.py b/frappe/patches/v11_0/delete_all_prepared_reports.py index 10bc049895..de36db66af 100644 --- a/frappe/patches/v11_0/delete_all_prepared_reports.py +++ b/frappe/patches/v11_0/delete_all_prepared_reports.py @@ -3,6 +3,7 @@ import frappe def execute(): if frappe.db.table_exists('Prepared Report'): + frappe.reload_doc("core", "doctype", "prepared_doctype") prepared_reports = frappe.get_all("Prepared Report") for report in prepared_reports: frappe.delete_doc("Prepared Report", report.name) From 30f30d57ffa7973827af3e38fcb1d9862d278eea Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Wed, 9 Oct 2019 14:47:00 +0530 Subject: [PATCH 268/274] fix: notification is not working if recipients is not set and cc is set --- frappe/email/doctype/notification/notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index 6ae4243775..d40f64b8bd 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -143,7 +143,7 @@ def get_context(context): attachments = self.get_attachment(doc) recipients, cc, bcc = self.get_list_of_recipients(doc, context) - if not recipients: + if not (recipients or cc or bcc): return sender = None if self.sender and self.sender_email: From a42283db994dda89be73b8ef16b3e97058898c29 Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Sat, 12 Oct 2019 12:06:36 +0530 Subject: [PATCH 269/274] chore: updated Security policy and issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/ISSUE_TEMPLATE/question-about-using-frappe.md | 2 +- SECURITY.md | 7 +++++++ 4 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 SECURITY.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 62897d048d..0935b4a73a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,7 @@ --- name: Bug report about: Report a bug encountered while using the Frappe Framework - +labels: bug ---